X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fdevtools%2Fcommon.css;h=14b2f830d4233307b2a2d9d90c798f427bf8256e;hp=b226c7e25af013fabf063c066927d57b36be6c6e;hb=0dbf361d328160491ffcb95bf7428443aa7c05fa;hpb=82b4252f7e41007fc93fa3b94fd7418a07c03fd1 diff --git a/LCARStrek/browser/devtools/common.css b/LCARStrek/browser/devtools/common.css index b226c7e2..14b2f830 100644 --- a/LCARStrek/browser/devtools/common.css +++ b/LCARStrek/browser/devtools/common.css @@ -54,8 +54,8 @@ devtools-menulist:-moz-focusring, .devtools-option-toolbarbutton { list-style-image: url("chrome://browser/skin/devtools/option-icon.png"); -moz-image-region: rect(0px 16px 16px 0px); - background: none; - border: none; +/* background: none; + border: none; */ } .devtools-option-toolbarbutton:hover, @@ -178,7 +178,10 @@ devtools-menulist:-moz-focusring, #devtools-side-splitter { min-width: 0; width: 3px; + border: none; + margin: 0 3px; position: relative; + cursor: e-resize; } /* In-tools sidebar */ @@ -258,18 +261,6 @@ devtools-menulist:-moz-focusring, .devtools-sidebar-tabs > tabs > tab[selected=true]:hover:active { } -/* LCARStrek-specific adaptions */ - -#profiler-chrome { - /* HACK for profiler in the dev toolbox in FF 20+. */ - margin: -3px; -} - -#profiler-chrome > box > box > .devtools-toolbar { - border-bottom: none; -} - - /********************** shared/devtools/common.inc.css **********************/ /* Autocomplete Popup */ @@ -341,3 +332,28 @@ devtools-menulist:-moz-focusring, /* color: #666;*/ } +/* Responsive container */ + +.devtools-responsive-container { + -moz-box-orient: horizontal; +} + +@media (max-width: 700px) { + .devtools-responsive-container { + -moz-box-orient: vertical; + } + + .devtools-responsive-container > .devtools-side-splitter { + border: 0; + margin: 3px 0; + min-height: 3px; + height: 3px; + /* In some edge case the cursor is not changed to n-resize */ + cursor: n-resize; + } + + .devtools-responsive-container > .devtools-sidebar-tabs { + min-height: 35vh; + max-height: 75vh; + } +}