X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fdevtools%2Fdebugger.css;h=5229761ffdf5472783642fd05830340c6051788d;hb=3886293f5826c7e369d0045678b83cb57ab0e1ef;hp=b44969bb8cd35280a543fe8f7cf91f76d107662d;hpb=6568957a6c8bab01b38e271cec8661f148805538;p=themes.git diff --git a/LCARStrek/browser/devtools/debugger.css b/LCARStrek/browser/devtools/debugger.css index b44969bb..5229761f 100644 --- a/LCARStrek/browser/devtools/debugger.css +++ b/LCARStrek/browser/devtools/debugger.css @@ -6,10 +6,6 @@ window { padding: 0; } -#body { - background-color: #000000; -} - /* Sources and breakpoints pane */ #sources-pane { @@ -150,6 +146,34 @@ window { margin: 2px; } +/* Variable bubble view */ + +.devtools-tooltip-simple-text.token-undefined, +.devtools-tooltip-simple-text.token-null { + text-align: center; + color: #A09090 !important; /* Override the theme's color. */ +} + +.devtools-tooltip-simple-text.token-boolean { + text-align: center; + color: #9C9CFF !important; +} + +.devtools-tooltip-simple-text.token-number { + text-align: center; + color: #E7ADE7 !important; +} + +.devtools-tooltip-simple-text.token-string { + text-align: start; + color: #008484 !important; +} + +.devtools-tooltip-simple-text.token-other { + text-align: center; + color: #FF9F00 !important; +} + /* Instruments pane (watch expressions, variables, event listeners...) */ #instruments-pane > tabs > tab { @@ -206,7 +230,7 @@ window { /* Searchbox and the search operations help panel */ -.devtools-searchinput { +#searchbox { min-width: 220px; -moz-margin-start: 1px; } @@ -377,15 +401,33 @@ window { } #resume { - list-style-image: url("chrome://browser/skin/devtools/debugger-play.png"); + list-style-image: url("chrome://browser/skin/devtools/debugger-pause.png"); -moz-image-region: rect(0px, 16px, 16px, 0px); +/* transition: background 0.15s ease-in-out; */ } -#resume[checked=true], #resume:hover { -moz-image-region: rect(0px, 32px, 16px, 16px); } +#resume[checked=true] { +/* background: none; */ + list-style-image: url("chrome://browser/skin/devtools/debugger-play.png"); + -moz-image-region: rect(0px, 16px, 16px, 0px); +} + +#resume[checked=true]:hover { + -moz-image-region: rect(0px, 32px, 16px, 16px); +} + +#resume ~ toolbarbutton { +/* transition: opacity 0.15s ease-in-out; */ +} + +#resume:not([checked]) ~ toolbarbutton { +/* opacity: 0.5; */ +} + #step-over { list-style-image: url("chrome://browser/skin/devtools/debugger-step-over.png"); -moz-image-region: rect(0px, 16px, 16px, 0px);