work around SeaMonkey bug 1022354 by specifying yet another copy of the default favicon
[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   margin: 0;
20   border-right: #9C9CFF;
21 }
22
23 .splitview-nav > li {
24   color: white;
25   background-clip: padding-box;
26   border-bottom: 1px solid #008484;
27   -moz-padding-end: 8px;
28   -moz-box-align: center;
29 }
30
31 .splitview-nav {
32   list-style-image: none;
33   list-style: none;
34   padding: 0;
35   margin: 0;
36 }
37
38 .splitview-nav > li {
39   outline: 0;
40   vertical-align: bottom;
41 }
42
43 .placeholder {
44   -moz-box-flex: 1;
45   text-align: center;
46 }
47
48 .splitview-nav > li.splitview-active {
49   background-image: url("itemArrow-ltr.png");
50   background-repeat: no-repeat, no-repeat, repeat-x;
51   background-position: center right, top right, top left;
52   background-size: auto, 1px 100%, auto;
53   border-bottom: 1px solid #008484;
54 }
55
56 .splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
57   background-image: url("itemArrow-rtl.png");
58   background-repeat: no-repeat, no-repeat, repeat-x;
59   background-position: center left, top left, top right;
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 }