Sync LCARStrek with all remeaining Firefox 11 changes
[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;
102 border-top: 1px solid #008484;
103 border-bottom: 1px solid #008484;
104 padding: 3px;
105}
106
107.splitview-main > toolbar:-moz-locale-dir(ltr) {
108 border-right: 1px solid #008484;
109}
110
111.splitview-main > toolbar:-moz-locale-dir(rtl) {
112 border-left: 1px solid #008484;
113}
114
115.devtools-toolbarbutton {
116 font-size: 11px;
117 padding: 0 8px;
118 width: auto;
119 min-width: 48px;
120 min-height: 0;
121}
122
123
124/* Resizers */
125
126.splitview-landscape-resizer {
127 -moz-appearance: none;
128 width: 7px;
129 background-image: -moz-linear-gradient(left, #FFCF00 1px, #000000 1px);
130 background-size: 2px 10px;
131 background-clip: padding-box;
132 background-repeat: repeat-x;
133 border-width: 1px;
134 border-style: solid;
135 border-color: #9C9CFF;
136 margin: 5px 0;
137 -moz-transform: translateX(-7px);
138}
139
140.splitview-landscape-resizer:-moz-locale-dir(rtl) {
141 -moz-transform: translateX(7px);
142}
143
144.splitview-portrait-resizer {
145 -moz-appearance: none;
146 background: -moz-linear-gradient(top, #FFCF00 1px, #000000 1px);
147 height: 12px;
148 background-size: 10px 2px, 100% 12px;
149 background-clip: content-box, border-box;
150 background-repeat: repeat-y, no-repeat;
151 background-position: center center;
152 padding: 2px 0;
153 border-top: 1px solid #008484;
154 border-bottom: 1px solid #008484;
155}