fourth and final part of syncing LCARStrek with Firefox 31 windows theme changes
[themes.git] / LCARStrek / browser / devtools / splitview.css
1 /* vim:set ts=2 sw=2 sts=2 et: */
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/. */
5
6 .splitview-nav-container {
7   background-color: #000000;
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;
19   list-style-image: none;
20   list-style: none;
21   padding: 0;
22   margin: 0;
23   margin: 0;
24   border-right: #9C9CFF;
25 }
26
27 .splitview-nav > li {
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;
33   outline: 0;
34   vertical-align: bottom;
35 /*  color: white;
36   background-clip: padding-box;*/
37
38   border-bottom: 1px solid #008484;
39 }
40
41 .placeholder {
42   -moz-box-flex: 1;
43   text-align: center;
44 }
45
46 .splitview-nav > li.splitview-active {
47   background-repeat: no-repeat;
48   background-position: center right;
49   background-size: auto;
50   border-bottom: 1px solid #008484;
51
52   background-image: url("itemArrow-ltr.svg");
53 }
54
55 .splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
56   background-repeat: no-repeat;
57   background-position: center left;
58
59   background-image: url("itemArrow-rtl.svg");
60 }
61
62 /* Toolbars */
63
64 .splitview-main > .devtools-toolbar {
65   background-origin: border-box;
66   background-clip: border-box;
67 }
68
69 .splitview-main > toolbar {
70   -moz-padding-end: 3px;
71 }
72
73 .splitview-details > toolbar {
74   -moz-padding-start: 3px;
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
85 .splitview-main > .devtools-toolbarbutton {
86   width: auto;
87   min-width: 48px;
88   min-height: 0;
89 }
90
91
92 /* Resizers */
93
94 .splitview-landscape-splitter {
95   /* -moz-border-start-color: transparent; */
96 }
97
98 .splitview-portrait-resizer {
99   -moz-appearance: none;
100   background: linear-gradient(top, #000000 1px, #FFCF00 1px);
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 }