File: splitview.css

package info (click to toggle)
wine-gecko-2.24 2.24%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 740,092 kB
  • ctags: 688,789
  • sloc: cpp: 3,160,639; ansic: 1,619,153; python: 164,084; java: 128,022; asm: 114,527; xml: 69,863; sh: 55,281; makefile: 49,648; perl: 20,454; objc: 2,344; yacc: 2,066; pascal: 995; lex: 982; exp: 449; php: 244; lisp: 228; awk: 211; sed: 61; csh: 21; ada: 16; ruby: 3
file content (114 lines) | stat: -rw-r--r-- 2,981 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* vim:set ts=2 sw=2 sts=2 et: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

.splitview-nav-container {
  background-color: hsl(208,11%,27%);
  color: white;
}

.loading .splitview-nav-container {
  background-image: url(chrome://global/skin/icons/loading_16.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.splitview-nav {
  -moz-appearance: none;
  margin: 0;
  box-shadow: inset -1px 0 0 #222426;
}

.splitview-nav > li {
  color: white;
  background-clip: padding-box;
  border-bottom: 1px solid hsla(210,16%,76%,.1);
  box-shadow: inset 0 -1px 0 hsla(210,8%,5%,.25);
  -moz-padding-end: 8px;
  -moz-box-align: center;
}

.splitview-nav {
  list-style-image: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.splitview-nav > li {
  outline: 0;
  vertical-align: bottom;
}

.placeholder {
  -moz-box-flex: 1;
  text-align: center;
}

.splitview-nav > li.splitview-active {
  background-image: url(itemArrow-ltr.png),
                    linear-gradient(to right, black, black),
                    linear-gradient(hsl(206,61%,40%), hsl(206,61%,31%));
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: center right, top right, top left;
  background-size: auto, 1px 100%, auto;
  border-bottom: 1px solid hsla(210,8%,5%,.25);
  box-shadow: inset 0 1px 0 hsla(210,40%,83%,.15),
              inset 0 -1px 0 hsla(210,40%,83%,.05);
}

.splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
  background-image: url(itemArrow-rtl.png),
                    linear-gradient(to right, black, black),
                    linear-gradient(hsl(206,61%,40%), hsl(206,61%,31%));
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: center left, top left, top right;
}

/* Toolbars */

.devtools-toolbar {
  height: 26px;
  background-origin: border-box;
  background-clip: border-box;
  border-bottom: 1px solid hsla(210,8%,5%,.65);
  padding: 3px;
}

.splitview-main > toolbar:-moz-locale-dir(ltr) {
  border-right: 1px solid hsla(210,8%,5%,.5);
}

.splitview-main > toolbar:-moz-locale-dir(rtl) {
  border-left: 1px solid hsla(210,8%,5%,.5);
}

.devtools-toolbarbutton {
  font-size: 11px;
  padding: 0 8px;
  width: auto;
  min-width: 48px;
  min-height: 0;
}


/* Resizers */

.splitview-landscape-splitter {
  -moz-border-start-color: transparent;
}

.splitview-portrait-resizer {
  -moz-appearance: none;
  background: linear-gradient(black 1px, rgba(255,255,255,0.2) 1px),
              linear-gradient(hsl(210,11%,36%), hsl(210,11%,18%));
  height: 12px;
  background-size: 10px 2px, 100% 12px;
  background-clip: content-box, border-box;
  background-repeat: repeat-y, no-repeat;
  background-position: center center;
  padding: 2px 0;
  border-top: 1px solid hsla(210,8%,5%,.5);
  border-bottom: 1px solid hsla(210,8%,5%,.5);
}