blob: 467d83bb42d27fcbbfcea5a71dcb40d96fef1e27 (
plain)
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
|
/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
html, body {
height: 100%;
margin: 0;
overflow: hidden;
}
.vbox,
.hbox {
display: table;
height: 100%;
width: 100%;
}
.vbox > div {
display: table-row;
}
.hbox > div {
display: table-cell;
vertical-align: top;
}
.vbox > .fill {
height: 100%;
}
.hbox > .fill {
width: 100%;
}
#top-box {
display: -webkit-box;
padding: 9px 9px 0 9px;
}
#theme-graphic {
margin: 2px 20px 2px 2px;
}
#explanation {
-webkit-margin-end: 4px;
margin-bottom: 4px;
margin-top: 4px;
}
#tab-list-scroll-container {
-webkit-margin-end: 5px;
background-color: white;
border-style: solid;
border-width: 1px;
height: 100%;
overflow-y: auto;
}
#tab-table {
-webkit-margin-after: 0;
-webkit-margin-before: 0;
-webkit-padding-start: 0;
height: auto;
}
#tab-table li {
-webkit-padding-start: 19px;
background-position: 0 50%;
background-repeat: no-repeat;
background-size: 16px 16px;
display: block;
height: 16px;
line-height: 16px;
margin: 2px;
}
html[dir=rtl] #tab-table li {
background-position: 100% 50%;
}
.action-area {
-webkit-box-align: center;
-webkit-box-orient: horizontal;
-webkit-box-pack: end;
display: -webkit-box;
padding: 12px;
}
.button-strip {
-webkit-box-orient: horizontal;
display: -webkit-box;
}
.button-strip > button {
-webkit-margin-start: 10px;
display: block;
white-space: nowrap;
}
|