fifth and final part of synching LCARStrek with windows theme changes in Firefox...
[themes.git] / LCARStrek / browser / devtools / webconsole.css
index 4de0915d270d499fc540a0f171f489a20db413ae..4bebb5e600933f5c2ca40f5ec0449507a288e6eb 100644 (file)
@@ -112,11 +112,13 @@ a {
   color: inherit;
 }
 
+.jsterm-input-container {
+  border-top-width: 1px;
+  border-top-style: solid;
+}
+
 #output-wrapper {
-  background: #000000;
-  color: #FF9F00;
   direction: ltr;
-  border-bottom: 1px solid #9C9CFF;
   overflow: auto;
 }
 
@@ -128,6 +130,10 @@ a {
   align-items: flex-start;
 }
 
+#output-container.hideTimestamps > .message > .timestamp {
+  display: none;
+}
+
 .filtered-by-type,
 .filtered-by-string {
   display: none;
@@ -295,11 +301,11 @@ a {
 .jsterm-complete-node {
   -moz-padding-start: 16px;
   margin: 3px 0 0 0;
+  background-color: transparent;
 }
 
 .jsterm-input-node {
   background: -moz-image-rect(url("chrome://browser/skin/devtools/commandline-icon.png"), 0, 32, 16, 16) no-repeat;
-  background-position: 0%;
 }
 
 :-moz-any(.jsterm-input-node,
@@ -307,10 +313,6 @@ a {
   overflow-x: hidden;
 }
 
-.jsterm-complete-node > .textbox-input-box > .textbox-textarea {
-  color: #8050B0;
-}
-
 .inlined-variables-view .body {
   display: flex;
   flex-direction: column;
@@ -319,6 +321,7 @@ a {
 .inlined-variables-view iframe {
  display: block;
   flex: 1;
+  margin-top: 5px;
   margin-bottom: 15px;
   -moz-margin-end: 15px;
   border: 1px solid #9C9CFF;
@@ -358,7 +361,50 @@ a {
 }
 
 .navigation-marker .url {
-  background-color: #000000;
   -moz-padding-end: 9px;
   text-decoration: none;
 }
+
+/* Replace these values with CSS variables as available */
+.theme-dark .jsterm-input-container {
+  background-color: #000000; /* tabToolbarBackgroundColor */
+  border-color: #9C9CFF; /* mainBackgroundColor */
+}
+
+.theme-dark .jsterm-input-node {
+  color: #E7ADE7; /* textColor */
+}
+
+.theme-dark .jsterm-complete-node {
+  color: #A09090; /* commentColor */
+}
+
+.theme-dark .navigation-marker .url {
+  background: #000000; /* mainBackgroundColor */
+}
+
+.theme-dark .inlined-variables-view iframe {
+  border-color: #A09090;
+}
+
+/* Replace these values with CSS variables as available */
+.theme-light .jsterm-input-container {
+  background-color: #000000; /* tabToolbarBackgroundColor */
+  border-color: #9C9CFF; /* mainBackgroundColor */
+}
+
+.theme-light .jsterm-input-node {
+  color: #E7ADE7; /* textColor */
+}
+
+.theme-light .jsterm-complete-node {
+  color: #A09090; /* commentColor */
+}
+
+.theme-light .navigation-marker .url {
+  background: #000000; /* mainBackgroundColor */
+}
+
+.theme-light .inlined-variables-view iframe {
+  border-color: #A09090;
+}