X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fdevtools%2Fdebugger.css;h=8692aa2e18dd4458fb7129acf0e7a56e7a56d964;hp=6126a54667ae5a72cde27722af1f31b0fd1ca459;hb=3e7d9b4db20c0556c92704dbb443e3513fae3012;hpb=37953ab48bd07b740b15610e6b7acb2f10333996 diff --git a/LCARStrek/browser/devtools/debugger.css b/LCARStrek/browser/devtools/debugger.css index 6126a546..8692aa2e 100644 --- a/LCARStrek/browser/devtools/debugger.css +++ b/LCARStrek/browser/devtools/debugger.css @@ -28,6 +28,14 @@ window { max-width: 350px; } +/** + * This hardcoded width likely due to a toolkit Windows specific bug. + * See http://hg.mozilla.org/mozilla-central/annotate/f38d6df93cad/toolkit/themes/winstripe/global/textbox-aero.css#l7 + */ +#scripts-search { + width: 200px; +} + /** * Lists and headers */ @@ -36,6 +44,10 @@ window { padding: 2px; } +.list-item:not(.selected):not(.empty):hover { + /* background: #cddae5; */ +} + .list-item.selected { background: #008484; color: #FFCF00; @@ -43,6 +55,7 @@ window { .list-item.empty { color: #8050B0; + /* padding: 4px; */ } /** @@ -63,6 +76,22 @@ window { font-weight: 600; } +/** + * Breakpoints view + */ + +#breakpoints { + background-color: #000000; +} + +.dbg-breakpoint-info { + font-weight: 600; +} + +.dbg-breakpoint-text { + font: 12px "Liberation Mono", Consolas, "Courier New", monospace; +} + /** * Properties view */ @@ -111,17 +140,17 @@ window { -moz-margin-end: 1px; margin-top: 2px; border-bottom: 1px dotted #008484; - -moz-transition: background 1s ease-in-out; + transition: background 1s ease-in-out; background: #000000; } .variable[changed] { - -moz-transition-duration: 0.4s; + transition-duration: 0.4s; background: #FFCF00; } .variable[added] { - -moz-transition-duration: 0.4s; + transition-duration: 0.4s; background: #008484; } @@ -176,6 +205,16 @@ window { opacity: 0.5; } +#element-tooltip > label { + margin: 0 2px 0 2px; +} + +#element-tooltip > label[non-enumerable], +#element-tooltip > label[non-configurable], +#element-tooltip > label[non-writable]{ + text-decoration: line-through; +} + /** * Property values colors */ @@ -247,14 +286,14 @@ window { @-moz-keyframes showblock { from { opacity: 0; - -moz-transform-origin: top; - -moz-transform: scaleY(0); + transform-origin: top; + transform: scaleY(0); } to { opacity: 1; - -moz-transform-origin: top; - -moz-transform: scaleY(1); + transform-origin: top; + transform: scaleY(1); } }