second part of syncing LCARStrek with Firefox 35 windows theme changes
[themes.git] / LCARStrek / browser / devtools / splitview.css
CommitLineData
e0c47e26 1/* vim:set ts=2 sw=2 sts=2 et: */
9099c61d
RK
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
e0c47e26
RK
5
6.splitview-nav-container {
e0b5363a 7 background-color: #000000;
e0c47e26
RK
8 color: #FF9F00;
9}
10
11.loading .splitview-nav-container {
12 background-image: url("chrome://global/skin/icons/loading.gif");
13 background-repeat: no-repeat;
14 background-position: center center;
15}
16
17.splitview-nav {
18 -moz-appearance: none;
e0c47e26
RK
19 list-style-image: none;
20 list-style: none;
21 padding: 0;
22 margin: 0;
934990f8
RK
23 margin: 0;
24 border-right: #9C9CFF;
e0c47e26
RK
25}
26
27.splitview-nav > li {
934990f8
RK
28 /* To compensate for the top and bottom borders */
29 margin-top: 0;
30 margin-bottom: -1px;
31 -moz-padding-end: 8px;
32 -moz-box-align: center;
e0c47e26
RK
33 outline: 0;
34 vertical-align: bottom;
934990f8
RK
35/* color: white;
36 background-clip: padding-box;*/
37
38 border-bottom: 1px solid #008484;
e0c47e26
RK
39}
40
41.placeholder {
42 -moz-box-flex: 1;
e0c47e26
RK
43 text-align: center;
44}
45
46.splitview-nav > li.splitview-active {
934990f8
RK
47 background-repeat: no-repeat;
48 background-position: center right;
49 background-size: auto;
e0c47e26 50 border-bottom: 1px solid #008484;
934990f8
RK
51
52 background-image: url("itemArrow-ltr.svg");
e0c47e26
RK
53}
54
55.splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
934990f8
RK
56 background-repeat: no-repeat;
57 background-position: center left;
58
59 background-image: url("itemArrow-rtl.svg");
e0c47e26
RK
60}
61
62/* Toolbars */
63
de57e474 64.splitview-main > .devtools-toolbar {
e0c47e26
RK
65 background-origin: border-box;
66 background-clip: border-box;
5a3cfc14
RK
67}
68
69.splitview-main > toolbar {
70 -moz-padding-end: 3px;
71}
72
73.splitview-details > toolbar {
74 -moz-padding-start: 3px;
e0c47e26
RK
75}
76
77.splitview-main > toolbar:-moz-locale-dir(ltr) {
78 border-right: 1px solid #008484;
79}
80
81.splitview-main > toolbar:-moz-locale-dir(rtl) {
82 border-left: 1px solid #008484;
83}
84
de57e474 85.splitview-main > .devtools-toolbarbutton {
e0c47e26
RK
86 width: auto;
87 min-width: 48px;
88 min-height: 0;
89}
90
91
92/* Resizers */
93
b27cc46e
RK
94.splitview-landscape-splitter {
95 /* -moz-border-start-color: transparent; */
e0c47e26
RK
96}
97
98.splitview-portrait-resizer {
99 -moz-appearance: none;
0142a07b 100 background: linear-gradient(top, #000000 1px, #FFCF00 1px);
e0c47e26
RK
101 height: 12px;
102 background-size: 10px 2px, 100% 12px;
103 background-clip: content-box, border-box;
104 background-repeat: repeat-y, no-repeat;
105 background-position: center center;
106 padding: 2px 0;
107 border-top: 1px solid #008484;
108 border-bottom: 1px solid #008484;
109}