1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/netmonitor/netmonitor.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +/* vim:set ts=2 sw=2 sts=2 et: */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#toolbar-labels { 1.10 + overflow: hidden; 1.11 +} 1.12 + 1.13 +#details-pane-toggle[disabled] { 1.14 + /* Don't use display: none; to avoid collapsing #requests-menu-toolbar */ 1.15 + visibility: hidden; 1.16 +} 1.17 + 1.18 +#custom-pane { 1.19 + overflow: auto; 1.20 +} 1.21 + 1.22 +#response-content-image-box { 1.23 + overflow: auto; 1.24 +} 1.25 + 1.26 +#timings-summary-blocked { 1.27 + display: none; /* This doesn't work yet. */ 1.28 +} 1.29 + 1.30 +#network-statistics-charts { 1.31 + overflow: auto; 1.32 +} 1.33 + 1.34 +/* Responsive sidebar */ 1.35 +@media (max-width: 700px) { 1.36 + #toolbar-spacer, 1.37 + #details-pane-toggle, 1.38 + #details-pane[pane-collapsed], 1.39 + .requests-menu-waterfall, 1.40 + .requests-menu-footer-label, 1.41 + .requests-menu-status-code { 1.42 + display: none; 1.43 + } 1.44 +}