browser/devtools/debugger/debugger.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:f10ff8a94051
1 /* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ft=javascript ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7 /* Side pane views */
8
9 #sources-pane > tabpanels > tabpanel,
10 #instruments-pane > tabpanels > tabpanel {
11 -moz-box-orient: vertical;
12 }
13
14 /* Toolbar controls */
15
16 .devtools-toolbarbutton:not([label]) > .toolbarbutton-text {
17 display: none;
18 }
19
20 /* Horizontal vs. vertical layout */
21
22 #body[layout=vertical] #debugger-widgets {
23 -moz-box-orient: vertical;
24 }
25
26 #body[layout=vertical] #sources-pane {
27 -moz-box-flex: 1;
28 }
29
30 #body[layout=vertical] #instruments-pane {
31 -moz-box-flex: 2;
32 }
33
34 #body[layout=vertical] #instruments-pane-toggle {
35 display: none;
36 }
37
38 #body[layout=vertical] #sources-and-editor-splitter,
39 #body[layout=vertical] #editor-and-instruments-splitter {
40 display: none;
41 }
42
43 #body[layout=horizontal] #vertical-layout-splitter,
44 #body[layout=horizontal] #vertical-layout-panes-container {
45 display: none;
46 }
47
48 #body[layout=vertical] #stackframes {
49 visibility: hidden;
50 }

mercurial