blob: 0d3c3edb17724cb1c8908d8ecbdcbf22eb996d44 (
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
|
.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;
}
#add-language-overlay-language-list {
-webkit-column-count: 2;
-webkit-column-gap: 20px;
}
#add-language-overlay-cancel-button {
/* Place the button in the center. */
display: block;
margin: auto;
}
#add-language-overlay-page {
width: 800px;
}
#add-language-overlay-page button {
padding: 0px;
text-align: left;
}
#add-language-overlay-page ul {
padding: 0px;
margin: 0px;
}
|