OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 .language-options { | 5 .language-options { |
6 display: -webkit-box; | 6 display: -webkit-box; |
7 margin: 10px 0; | 7 margin: 10px 0; |
8 } | 8 } |
9 | 9 |
10 .language-options-lower-left button, | 10 .language-options-lower-left button, |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 .language-options-contents span:not(.input-method-label) { | 27 .language-options-contents span:not(.input-method-label) { |
28 display: inline-block; | 28 display: inline-block; |
29 margin: 1px; | 29 margin: 1px; |
30 padding: 0.42em 10px; | 30 padding: 0.42em 10px; |
31 } | 31 } |
32 | 32 |
33 .language-options-header, | 33 .language-options-header, |
34 .language-options-footer { | 34 .language-options-footer { |
| 35 line-height: 1.2em; |
35 margin: 10px 0; | 36 margin: 10px 0; |
36 } | 37 } |
37 | 38 |
38 .language-options-left, | 39 .language-options-left, |
39 .language-options-right { | 40 .language-options-right { |
40 border: 1px solid #ccc; | 41 border: 1px solid #ccc; |
41 height: 400px; | 42 height: 400px; |
42 padding: 0; | 43 padding: 0; |
43 vertical-align: top; | 44 vertical-align: top; |
44 } | 45 } |
(...skipping 29 matching lines...) Expand all Loading... |
74 .language-options-notification { | 75 .language-options-notification { |
75 background-color: rgb(255, 242, 158); | 76 background-color: rgb(255, 242, 158); |
76 border-bottom: 1px solid #ccc; | 77 border-bottom: 1px solid #ccc; |
77 border-top: 1px solid #ccc; | 78 border-top: 1px solid #ccc; |
78 padding: 8px 30px 8px 12px; | 79 padding: 8px 30px 8px 12px; |
79 } | 80 } |
80 | 81 |
81 #language-options-input-method-list button { | 82 #language-options-input-method-list button { |
82 -webkit-margin-start: 20px; | 83 -webkit-margin-start: 20px; |
83 display: block; | 84 display: block; |
| 85 /* Same margin as .settings-row. */ |
| 86 margin-bottom: 0.65em; |
| 87 margin-top: 0.65em; |
84 } | 88 } |
85 | 89 |
86 #language-options-list { | 90 #language-options-list { |
87 -webkit-box-flex: 1; | 91 -webkit-box-flex: 1; |
88 outline: none; | 92 outline: none; |
89 padding: 1px 0 0; | 93 padding: 1px 0 0; |
90 width: 100%; | 94 width: 100%; |
91 } | 95 } |
92 | 96 |
93 #language-options-list .language-name { | 97 #language-options-list .language-name { |
(...skipping 29 matching lines...) Expand all Loading... |
123 margin-top: 4px; | 127 margin-top: 4px; |
124 } | 128 } |
125 | 129 |
126 /* In ChromeOS we present the language choices as a big page of links. */ | 130 /* In ChromeOS we present the language choices as a big page of links. */ |
127 <if expr="pp_ifdef('chromeos')"> | 131 <if expr="pp_ifdef('chromeos')"> |
128 #add-language-overlay-language-list { | 132 #add-language-overlay-language-list { |
129 -webkit-column-count: 2; | 133 -webkit-column-count: 2; |
130 -webkit-column-gap: 20px; | 134 -webkit-column-gap: 20px; |
131 } | 135 } |
132 | 136 |
| 137 #add-language-overlay-language-list > li > button.link-button { |
| 138 padding-bottom: 8px; |
| 139 padding-top: 8px; |
| 140 } |
| 141 |
133 #add-language-overlay-page { | 142 #add-language-overlay-page { |
134 width: 800px; | 143 width: 800px; |
135 } | 144 } |
136 | 145 |
137 #add-language-overlay-page button.link-button { | 146 #add-language-overlay-page button.link-button { |
138 padding-left: 0; | 147 padding-left: 0; |
139 padding-right: 0; | 148 padding-right: 0; |
140 text-align: left; | 149 text-align: left; |
141 } | 150 } |
142 | 151 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 } | 206 } |
198 | 207 |
199 #chewing-max-chi-symbol-len { | 208 #chewing-max-chi-symbol-len { |
200 height: 30%; | 209 height: 30%; |
201 width: 100px; | 210 width: 100px; |
202 } | 211 } |
203 | 212 |
204 #add-language-overlay-page .content-area { | 213 #add-language-overlay-page .content-area { |
205 padding-bottom: 10px; | 214 padding-bottom: 10px; |
206 } | 215 } |
OLD | NEW |