first part of sync for LCARStrek with browser windows theme in Firefox 23 cycle
[themes.git] / LCARStrek / browser / devtools / common.css
index b226c7e25af013fabf063c066927d57b36be6c6e..7831a2b7d8c3cb3ccc9a64418ad75c5a4fe9558a 100644 (file)
@@ -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 */
@@ -341,3 +344,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;
+  }
+}