1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/debugger/debugger.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 1.4 +/* -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim: set ft=javascript ts=2 et sw=2 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +/* Side pane views */ 1.11 + 1.12 +#sources-pane > tabpanels > tabpanel, 1.13 +#instruments-pane > tabpanels > tabpanel { 1.14 + -moz-box-orient: vertical; 1.15 +} 1.16 + 1.17 +/* Toolbar controls */ 1.18 + 1.19 +.devtools-toolbarbutton:not([label]) > .toolbarbutton-text { 1.20 + display: none; 1.21 +} 1.22 + 1.23 +/* Horizontal vs. vertical layout */ 1.24 + 1.25 +#body[layout=vertical] #debugger-widgets { 1.26 + -moz-box-orient: vertical; 1.27 +} 1.28 + 1.29 +#body[layout=vertical] #sources-pane { 1.30 + -moz-box-flex: 1; 1.31 +} 1.32 + 1.33 +#body[layout=vertical] #instruments-pane { 1.34 + -moz-box-flex: 2; 1.35 +} 1.36 + 1.37 +#body[layout=vertical] #instruments-pane-toggle { 1.38 + display: none; 1.39 +} 1.40 + 1.41 +#body[layout=vertical] #sources-and-editor-splitter, 1.42 +#body[layout=vertical] #editor-and-instruments-splitter { 1.43 + display: none; 1.44 +} 1.45 + 1.46 +#body[layout=horizontal] #vertical-layout-splitter, 1.47 +#body[layout=horizontal] #vertical-layout-panes-container { 1.48 + display: none; 1.49 +} 1.50 + 1.51 +#body[layout=vertical] #stackframes { 1.52 + visibility: hidden; 1.53 +}