X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fdevtools%2Fwebconsole.css;h=4bebb5e600933f5c2ca40f5ec0449507a288e6eb;hp=35b4c457506f4fd35d0325caf328651668cf47e3;hb=de57e474d3ff2537ba1a6e54223db3212b7a553c;hpb=b981e4fd9e29e9b4781f1a4e6dbee38e2e253c2f diff --git a/LCARStrek/browser/devtools/webconsole.css b/LCARStrek/browser/devtools/webconsole.css index 35b4c457..4bebb5e6 100644 --- a/LCARStrek/browser/devtools/webconsole.css +++ b/LCARStrek/browser/devtools/webconsole.css @@ -81,16 +81,14 @@ a { .message > .location { -moz-margin-start: 6px; + display: flex; flex: 0 0 auto; align-self: flex-start; + justify-content: flex-end; width: 10em; margin-top: 4px; - text-align: end; color: #3333FF; - text-overflow: ellipsis; text-decoration: none; - overflow: hidden; - white-space: nowrap; } .message > .location:hover, @@ -98,16 +96,29 @@ a { text-decoration: underline; } +.message > .location > .filename { + text-overflow: ellipsis; + text-align: end; + overflow: hidden; + white-space: nowrap; +} + +.message > .location > .line-number { + flex: 0 0 auto; +} + .hud-msg-node[selected="true"] > .webconsole-timestamp, .hud-msg-node[selected="true"] > .webconsole-location { 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; } @@ -119,6 +130,10 @@ a { align-items: flex-start; } +#output-container.hideTimestamps > .message > .timestamp { + display: none; +} + .filtered-by-type, .filtered-by-string { display: none; @@ -286,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, @@ -298,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; @@ -310,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; @@ -349,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; +}