blob: 53dfdca4b8c4c52ed57fba65b6d2f81c9931845a (
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
.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;
-webkit-padding-end: 12px;
padding-bottom: 10px;
}
.language-options-header, .language-options-footer {
margin: 15px;
}
.language-options-left, .language-options-right {
border: 1px solid #cccccc;
vertical-align: top;
padding: 0;
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;
width: 360px;
}
.language-options-notification {
display: none;
background-color: #fff29e;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 12px 30px 12px 12px;
}
#language-options-input-method-list button {
display: block;
-webkit-margin-start: 20px;
}
#language-options-input-method-list label {
margin: 4px 0;
}
#language-options-list {
-webkit-box-flex: 1;
padding: 0;
width: 100%;
}
#language-options-list li {
-webkit-padding-start: 12px;
padding-top: 2px;
padding-bottom: 2px;
}
#language-options-ui-restart-button {
margin-top: 12px;
}
#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;
margin-top: 15px;
}
#add-language-overlay-page {
width: 800px;
}
#add-language-overlay-page button {
padding: 0;
text-align: left;
}
#add-language-overlay-page ul {
padding: 0;
margin: 0;
}
/* TODO(kochi): This is temporary copy from new_new_tab.css */
/* Notification */
#notification {
position: relative;
background-color: hsl(52, 100%, 80%);
border: 1px solid rgb(211, 211, 211);
border-radius: 6px;
padding: 7px 15px;
white-space: nowrap;
display: table;
/* Set the height and margin so that the element does not use any vertical
space */
height: 16px;
margin: -44px auto 12px auto;
font-weight: bold;
opacity: 0;
pointer-events: none;
-webkit-transition: opacity .15s;
z-index: 1;
color: black;
}
#notification > * {
display: table-cell;
max-width: 500px;
overflow: hidden;
text-overflow: ellipsis;
}
#notification.show {
opacity: 1;
pointer-events: all;
-webkit-transition: opacity 1s;
}
#notification .link {
cursor: pointer;
text-decoration: underline;
-webkit-appearance: none;
border: 0;
background: none;
color: rgba(0, 102, 204, 0.3);
-webkit-padding-start: 20px;
}
#notification .link-color {
color: rgb(0, 102, 204);
}
#chewing-max-chi-symbol-len {
width: 100px;
height: 30%;
}
|