first part of syncing LCARStrek with Firefox 45-48 devtools theme changes
[themes.git] / LCARStrek / 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 {
28e80a05
RK
7 background-color: var(--theme-toolbar-background);
8 color: var(--theme-body-color);
e0c47e26
RK
9}
10
d533ec21
RK
11.splitview-nav-container .devtools-throbber {
12 display: none;
13 text-align: center;
14}
15
16.loading .splitview-nav-container .devtools-throbber {
17 display: block;
e0c47e26
RK
18}
19
20.splitview-nav {
21 -moz-appearance: none;
e0c47e26
RK
22 list-style-image: none;
23 list-style: none;
24 padding: 0;
25 margin: 0;
934990f8
RK
26 margin: 0;
27 border-right: #9C9CFF;
e0c47e26
RK
28}
29
30.splitview-nav > li {
934990f8
RK
31 /* To compensate for the top and bottom borders */
32 margin-top: 0;
33 margin-bottom: -1px;
34 -moz-padding-end: 8px;
35 -moz-box-align: center;
e0c47e26
RK
36 outline: 0;
37 vertical-align: bottom;
934990f8
RK
38/* color: white;
39 background-clip: padding-box;*/
40
41 border-bottom: 1px solid #008484;
e0c47e26
RK
42}
43
44.placeholder {
45 -moz-box-flex: 1;
e0c47e26
RK
46 text-align: center;
47}
48
49.splitview-nav > li.splitview-active {
934990f8
RK
50 background-repeat: no-repeat;
51 background-position: center right;
52 background-size: auto;
e0c47e26 53 border-bottom: 1px solid #008484;
934990f8
RK
54
55 background-image: url("itemArrow-ltr.svg");
e0c47e26
RK
56}
57
58.splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
934990f8
RK
59 background-repeat: no-repeat;
60 background-position: center left;
61
62 background-image: url("itemArrow-rtl.svg");
e0c47e26
RK
63}
64
65/* Toolbars */
66
de57e474 67.splitview-main > .devtools-toolbar {
e0c47e26
RK
68 background-origin: border-box;
69 background-clip: border-box;
5a3cfc14
RK
70}
71
72.splitview-main > toolbar {
73 -moz-padding-end: 3px;
74}
75
76.splitview-details > toolbar {
77 -moz-padding-start: 3px;
e0c47e26
RK
78}
79
80.splitview-main > toolbar:-moz-locale-dir(ltr) {
81 border-right: 1px solid #008484;
82}
83
84.splitview-main > toolbar:-moz-locale-dir(rtl) {
85 border-left: 1px solid #008484;
86}
87
de57e474 88.splitview-main > .devtools-toolbarbutton {
e0c47e26
RK
89 width: auto;
90 min-width: 48px;
91 min-height: 0;
92}