sync both themes with suite classic changes in SeaMonkey 2.21
[themes.git] / LCARStrek / browser / devtools / common.css
index b226c7e25af013fabf063c066927d57b36be6c6e..14b2f830d4233307b2a2d9d90c798f427bf8256e 100644 (file)
@@ -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;
+  }
+}