blob: 24b543dce76431c7b3c2027d7d746185ee527626 (
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
|
.language-options {
display: -webkit-box;
margin: 15px;
}
.language-options button {
min-width: 70px;
}
.language-options h3 {
-webkit-margin-start: 12px;
font-size: 75%;
font-weight: bold;
margin-top: 12px;
}
.language-options label {
display: block;
}
.language-options-contents {
-webkit-padding-start: 12px;
padding-bottom: 10px;
}
.language-options-left, .language-options-right {
border: 1px solid #cccccc;
vertical-align: top;
padding: 0px;
height: 400px;
}
.language-options-left {
-webkit-box-orient: vertical;
display: -webkit-box;
background-color: #ebeff9;
min-width: 200px;
}
.language-options-lower-left {
-webkit-box-flex: 0;
-webkit-padding-start: 12px;
padding-bottom: 10px;
}
.language-options-right {
/* To share the center line with the left pane. */
-webkit-margin-start: -1px;
min-width: 300px;
}
#language-options-list {
-webkit-box-flex: 1;
padding: 0px;
width: 100%;
display: block;
}
#language-options-list li {
-webkit-padding-start: 12px;
padding-top: 2px;
padding-bottom: 2px;
}
|