make network panel look decent even in current nightlies
authorRobert Kaiser <kairo@kairo.at>
Fri, 9 Dec 2016 00:13:25 +0000 (01:13 +0100)
committerRobert Kaiser <kairo@kairo.at>
Fri, 9 Dec 2016 00:13:25 +0000 (01:13 +0100)
LCARStrek/devtools/images/profiler-stopwatch.svg
LCARStrek/devtools/netmonitor.css
LCARStrek/devtools/toolbars.css

index 6f8e1bf9c121e9727637b9aeb2f473265d24c77c..f8be61e04113a67ccdb62a9348a6044d3c4e6b35 100644 (file)
@@ -1,7 +1,7 @@
 <!-- This Source Code Form is subject to the terms of the Mozilla Public
    - License, v. 2.0. If a copy of the MPL was not distributed with this
    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="#FFCF00">
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="#000000">
   <g fill-rule="evenodd">
     <path d="M15 9.004C14.51 12.394 11.578 15 8.035 15 4.15 15 1 11.866 1 8s3.15-7 7.036-7c1.941 0 3.7.783 4.972 2.048l-.709.709A6.027 6.027 0 0 0 8.036 2c-3.33 0-6.03 2.686-6.03 6s2.7 6 6.03 6a6.023 6.023 0 0 0 5.946-4.993l1.017-.003z"/>
     <path d="M4.137 9H3.1a5.002 5.002 0 0 0 9.8 0h-.965a4.023 4.023 0 0 1-3.9 3 4.023 4.023 0 0 1-3.898-3z" fill-opacity=".5"/>
index 8daf3d4c0da4c2ab37898013456f38f5420dabc4..78784ae61d7ae4ecf82ef6c3a1803c6ae595bd04 100644 (file)
@@ -7,6 +7,62 @@ window {
   padding: 0;
 }
 
+#toolbar-labels {
+  overflow: hidden;
+}
+
+.devtools-toolbar-container {
+  display: flex;
+  justify-content: space-between;
+}
+
+.devtools-toolbar-group {
+  display: flex;
+  flex: 0 0 auto;
+  flex-wrap: nowrap;
+  align-items: stretch;
+}
+
+/**
+ * Collapsed details pane needs to be truly hidden to prevent both accessibility
+ * tools and keyboard from accessing its contents.
+ */
+#details-pane.pane-collapsed {
+  visibility: hidden;
+}
+
+#details-pane-toggle[disabled] {
+  display: none;
+}
+
+#custom-pane {
+  overflow: auto;
+}
+
+#response-content-image-box {
+  overflow: auto;
+}
+
+#network-statistics-charts {
+  overflow: auto;
+}
+
+.cropped-textbox .textbox-input {
+  /* workaround for textbox not supporting the @crop attribute */
+  text-overflow: ellipsis;
+}
+
+/* Responsive sidebar */
+@media (max-width: 700px) {
+  #toolbar-spacer,
+  #details-pane-toggle,
+  #details-pane.pane-collapsed,
+  .requests-menu-waterfall,
+  #requests-menu-network-summary-button > .summary-info-text {
+    display: none;
+  }
+}
+
 :root.theme-dark,
 :root.theme-light {
   --table-splitter-color: #A09090;
@@ -61,6 +117,11 @@ window {
 #requests-menu-toolbar {
 }
 
+#requests-menu-filter-buttons {
+  display: flex;
+  flex-wrap: nowrap;
+}
+
 #requests-menu-toolbar > .toolbar-box > .toolbar-startcap,
 #requests-menu-toolbar > .toolbar-box > .toolbar-endcap {
   display: none;
@@ -454,6 +515,16 @@ window {
   list-style-image: var(--theme-pane-expand-image);
 }
 
+#details-pane-toggle:-moz-locale-dir(ltr)::before,
+#details-pane-toggle.pane-collapsed:-moz-locale-dir(rtl)::before {
+  background-image: var(--theme-pane-collapse-image);
+}
+
+#details-pane-toggle.pane-collapsed:-moz-locale-dir(ltr)::before,
+#details-pane-toggle:-moz-locale-dir(rtl)::before {
+  background-image: var(--theme-pane-expand-image);
+}
+
 /* Network request details tabpanels */
 
 .tabpanel-content {
@@ -625,6 +696,10 @@ window {
 /* Performance analysis buttons */
 
 #requests-menu-network-summary-button {
+  display: flex;
+  flex-wrap: nowrap;
+  align-items: center;
+  font: inherit;
   box-shadow: none;
   border-color: transparent;
   list-style-image: url("images/profiler-stopwatch-tbutton.svg");
index 2bddea0aa73568b54a2eb68c3b921c1dd4dcd121..13a5a467a833d8e1f7269a56f05ae9a3da0f4974 100644 (file)
@@ -229,6 +229,7 @@ div.devtools-toolbar::after {
 .menu-filter-button {
   border: none;
 /*  min-height: 32px; */
+  font: inherit;
   background-color: var(--theme-button-background);
   color: var(--theme-button-color);
   border-radius: 300px;
@@ -496,6 +497,10 @@ div.devtools-toolbar::after {
   position: relative;
 }
 
+button + .devtools-searchbox {
+  margin-inline-start: 2px;
+}
+
 /* The spacing is accomplished with a padding on the searchbox */
 .devtools-searchbox > .devtools-textinput,
 .devtools-searchbox > .devtools-searchinput {