first (largest) part of sync for both themes with toolkit windows theme changes in...
[themes.git] / LCARStrek / devtools / dark-theme.css
index 95061a6ad5e2538bc296ef5e5866aa470ee47580..f371e3275d1a30d922f9c82c5848e1b481309deb 100644 (file)
@@ -6,6 +6,7 @@
 @import url(variables.css);
 @import url(common.css);
 @import url(toolbars.css);
+@import url(tooltips.css);
 
 body, html {
   padding: 0;
@@ -68,13 +69,13 @@ body, html {
 }
 
 .theme-gutter {
-  background-color: #000000;
+  background-color: var(--theme-tab-toolbar-background);
   color: var(--theme-content-color3);
-  border-color: #9C9CFF;
+  border-color: var(--theme-splitter-color);
 }
 
-.theme-separator { /* original: grey */
-  border-color: #8050B0;
+.theme-separator {
+  border-color: var(--theme-splitter-color);
 }
 
 .theme-fg-color1,
@@ -117,8 +118,7 @@ body, html {
 .cm-s-mozilla .cm-tag,
 .cm-s-mozilla .cm-header,
 .cm-s-mozilla .cm-bracket,
-.variables-view-property > .title > .name,
-.variable-or-property[safe-getter] > .title > .name {
+.variables-view-property > .title > .name {
   color: var(--theme-highlight-pink);
 }
 
@@ -170,19 +170,17 @@ body, html {
 .devtools-toolbar,
 .devtools-sidebar-tabs tabs,
 .devtools-sidebar-alltabs,
-.CodeMirror-dialog { /* General toolbar styling */
+.cm-s-mozilla .CodeMirror-dialog { /* General toolbar styling */
 /*  color: var(--theme-body-color-alt);
   background-color: var(--theme-toolbar-background);*/
 }
 
-
 .theme-fg-contrast { /* To be used for text on theme-bg-contrast */
   color: #FFCF00;
 }
 
-.ruleview-colorswatch,
-.computedview-colorswatch,
-.ruleview-bezierswatch {
+.ruleview-swatch,
+.computedview-colorswatch {
 /*  box-shadow: 0 0 0 1px #818181; */
 }
 
@@ -196,14 +194,13 @@ body, html {
  * Best effort to match the existing theme, some of the colors
  * are duplicated here to prevent weirdness in the main theme. */
 
-.CodeMirror,
 .CodeMirror.cm-s-mozilla { /* Inherit platform specific font sizing and styles */
   font-family: inherit;
   font-size: inherit;
   background: transparent;
 }
 
-.CodeMirror pre,
+.CodeMirror.cm-s-mozilla pre,
 .cm-s-mozilla .cm-variable-2,
 .cm-s-mozilla .cm-variable-3,
 .cm-s-mozilla .cm-operator,
@@ -239,17 +236,12 @@ div.CodeMirror div.error-line {
   background: rgba(255, 0, 0, 0.2);
 }
 
-/* Highlight for a line that represents a stack frame's location. */
-div.CodeMirror div.debug-line {
-  background: rgba(156, 156, 255, 0.2);
-}
-
 /* Generic highlighted text */
 div.CodeMirror span.marked-text {
   background: rgba(255,207,0,0.2);
   border: 1px dashed rgba(156, 156, 255, 0.6);
-  -moz-margin-start: -1px;
-  -moz-margin-end: -1px;
+  margin-inline-start: -1px;
+  margin-inline-end: -1px;
 }
 
 /* Highlight for evaluating current statement. */
@@ -276,7 +268,7 @@ div.CodeMirror span.eval-text {
   width: 14px;
   height: 14px;
   background-repeat: no-repeat;
-  background-image: url("chrome://devtools/skin/controls.png");
+  background-image: url("chrome://devtools/skin/images/controls.png");
   background-size: 28px 28px;
 }
 
@@ -311,11 +303,11 @@ div.CodeMirror span.eval-text {
 
 @media (min-resolution: 1.1dppx) {
   .theme-twisty, .theme-checkbox {
-    background-image: url("chrome://devtools/skin/controls@2x.png");
+    background-image: url("chrome://devtools/skin/images/controls@2x.png");
   }
 }
 
-/* XUL panel styling (see browser/devtools/shared/widgets/Tooltip.js) */
+/* XUL panel styling (see devtools/client/shared/widgets/Tooltip.js) */
 
 .theme-tooltip-panel .panel-arrowcontent {
 /*  padding: 5px; */
@@ -327,24 +319,44 @@ div.CodeMirror span.eval-text {
 
 /* Overring panel arrow images to fit with our light and dark themes */
 /*
-.theme-tooltip-panel .panel-arrow[side="top"] {
-  list-style-image: url("chrome://devtools/skin/tooltip/arrow-vertical-dark.png");
-  margin-bottom: -4px;
+.theme-tooltip-panel .panel-arrow {
+  --arrow-margin: -4px;
+}
+
+:root[platform="win"] .theme-tooltip-panel .panel-arrow {
+  --arrow-margin: -7px;
 }
 
+.theme-tooltip-panel .panel-arrow[side="top"],
 .theme-tooltip-panel .panel-arrow[side="bottom"] {
   list-style-image: url("chrome://devtools/skin/tooltip/arrow-vertical-dark.png");
-  margin-top: -4px;
+  / !important is needed to override the popup.css rules in toolkit/themes /
+  width: 39px !important;
+  height: 16px !important;
 }
 
-.theme-tooltip-panel .panel-arrow[side="left"] {
+.theme-tooltip-panel .panel-arrow[side="left"],
+.theme-tooltip-panel .panel-arrow[side="right"] {
   list-style-image: url("chrome://devtools/skin/tooltip/arrow-horizontal-dark.png");
-  margin-right: -4px;
+  / !important is needed to override the popup.css rules in toolkit/themes /
+  width: 16px !important;
+  height: 39px !important;
+}
+
+.theme-tooltip-panel .panel-arrow[side="top"] {
+  margin-bottom: var(--arrow-margin);
+}
+
+.theme-tooltip-panel .panel-arrow[side="bottom"] {
+  margin-top: var(--arrow-margin);
+}
+
+.theme-tooltip-panel .panel-arrow[side="left"] {
+  margin-right: var(--arrow-margin);
 }
 
 .theme-tooltip-panel .panel-arrow[side="right"] {
-  list-style-image: url("chrome://devtools/skin/tooltip/arrow-horizontal-dark.png");
-  margin-left: -4px;
+  margin-left: var(--arrow-margin);
 }
 
 @media (min-resolution: 1.1dppx) {
@@ -365,10 +377,11 @@ div.CodeMirror span.eval-text {
 }
 
 .theme-tooltip-panel .devtools-tooltip-simple-text:last-child {
- border-bottom: 0;
 border-bottom: 0;
 }
 
 .devtools-textinput,
+.devtools-filterinput,
 .devtools-searchinput {
   background-color: #000000;
   color: #E7ADE7;
@@ -376,6 +389,7 @@ div.CodeMirror span.eval-text {
 }
 
 .devtools-textinput:focus,
+.devtools-filterinput:focus,
 .devtools-searchinput:focus {
   border-color: #008484;
 }