Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. */
7 /* Side pane views */
9 #sources-pane > tabpanels > tabpanel,
10 #instruments-pane > tabpanels > tabpanel {
11 -moz-box-orient: vertical;
12 }
14 /* Toolbar controls */
16 .devtools-toolbarbutton:not([label]) > .toolbarbutton-text {
17 display: none;
18 }
20 /* Horizontal vs. vertical layout */
22 #body[layout=vertical] #debugger-widgets {
23 -moz-box-orient: vertical;
24 }
26 #body[layout=vertical] #sources-pane {
27 -moz-box-flex: 1;
28 }
30 #body[layout=vertical] #instruments-pane {
31 -moz-box-flex: 2;
32 }
34 #body[layout=vertical] #instruments-pane-toggle {
35 display: none;
36 }
38 #body[layout=vertical] #sources-and-editor-splitter,
39 #body[layout=vertical] #editor-and-instruments-splitter {
40 display: none;
41 }
43 #body[layout=horizontal] #vertical-layout-splitter,
44 #body[layout=horizontal] #vertical-layout-panes-container {
45 display: none;
46 }
48 #body[layout=vertical] #stackframes {
49 visibility: hidden;
50 }