add orion styling just so that scratchpad and style editor work in newer builds ...
[themes.git] / LCARStrek / browser / devtools / splitview.css
CommitLineData
e0c47e26
RK
1/* vim:set ts=2 sw=2 sts=2 et: */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is Style Editor code.
16 *
17 * The Initial Developer of the Original Code is Mozilla Foundation.
18 * Portions created by the Initial Developer are Copyright (C) 2011
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Cedric Vivier <cedricv@neonux.com> (original author)
23 * Paul Rouget <paul@mozilla.com>
24 *
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
38
39.splitview-nav-container {
40 background-color: #00000;
41 color: #FF9F00;
42}
43
44.loading .splitview-nav-container {
45 background-image: url("chrome://global/skin/icons/loading.gif");
46 background-repeat: no-repeat;
47 background-position: center center;
48}
49
50.splitview-nav {
51 -moz-appearance: none;
52 margin: 0;
53 border-right: #9C9CFF;
54}
55
56.splitview-nav > li {
57 color: white;
58 background-clip: padding-box;
59 border-bottom: 1px solid #008484;
60 -moz-padding-end: 8px;
61 -moz-box-align: center;
62}
63
64.splitview-nav {
65 list-style-image: none;
66 list-style: none;
67 padding: 0;
68 margin: 0;
69}
70
71.splitview-nav > li {
72 outline: 0;
73 vertical-align: bottom;
74}
75
76.placeholder {
77 -moz-box-flex: 1;
78 -moz-box-back: center;
79 text-align: center;
80}
81
82.splitview-nav > li.splitview-active {
83 background-image: url("itemArrow-ltr.png");
84 background-repeat: no-repeat, no-repeat, repeat-x;
85 background-position: center right, top right, top left;
86 background-size: auto, 1px 100%, auto;
87 border-bottom: 1px solid #008484;
88}
89
90.splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
91 background-image: url("itemArrow-rtl.png");
92 background-repeat: no-repeat, no-repeat, repeat-x;
93 background-position: center left, top left, top right;
94}
95
96/* Toolbars */
97
98.devtools-toolbar {
99 height: 26px;
100 background-origin: border-box;
101 background-clip: border-box;
5a3cfc14
RK
102}
103
104.splitview-main > toolbar {
105 -moz-padding-end: 3px;
106}
107
108.splitview-details > toolbar {
109 -moz-padding-start: 3px;
e0c47e26
RK
110}
111
112.splitview-main > toolbar:-moz-locale-dir(ltr) {
113 border-right: 1px solid #008484;
114}
115
116.splitview-main > toolbar:-moz-locale-dir(rtl) {
117 border-left: 1px solid #008484;
118}
119
120.devtools-toolbarbutton {
e0c47e26
RK
121 width: auto;
122 min-width: 48px;
123 min-height: 0;
124}
125
126
127/* Resizers */
128
129.splitview-landscape-resizer {
130 -moz-appearance: none;
131 width: 7px;
5a3cfc14
RK
132 background-image: -moz-linear-gradient(left, #000000 1px, #FFCF00 1px);
133 background-size: 2px 15px;
e0c47e26
RK
134 background-clip: padding-box;
135 background-repeat: repeat-x;
5a3cfc14 136/* border-width: 1px;
e0c47e26 137 border-style: solid;
5a3cfc14 138 border-color: #9C9CFF;*/
e0c47e26 139 margin: 5px 0;
5a3cfc14 140 -moz-transform: translateX(-22px); /* account for startcap as well */
e0c47e26
RK
141}
142
143.splitview-landscape-resizer:-moz-locale-dir(rtl) {
5a3cfc14 144 -moz-transform: translateX(22px);
e0c47e26
RK
145}
146
147.splitview-portrait-resizer {
148 -moz-appearance: none;
5a3cfc14 149 background: -moz-linear-gradient(top, #000000 1px, #FFCF00 1px);
e0c47e26
RK
150 height: 12px;
151 background-size: 10px 2px, 100% 12px;
152 background-clip: content-box, border-box;
153 background-repeat: repeat-y, no-repeat;
154 background-position: center center;
155 padding: 2px 0;
156 border-top: 1px solid #008484;
157 border-bottom: 1px solid #008484;
158}