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 #languagePage .content-area { | 5 #languagePage .content-area { |
6 width: 660px; | 6 width: 660px; |
7 } | 7 } |
8 | 8 |
9 .language-options { | 9 .language-options { |
10 display: -webkit-box; | 10 display: -webkit-box; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 } | 84 } |
85 | 85 |
86 #language-options-input-method-list button { | 86 #language-options-input-method-list button { |
87 -webkit-margin-start: 20px; | 87 -webkit-margin-start: 20px; |
88 display: block; | 88 display: block; |
89 /* Same margin as .settings-row. */ | 89 /* Same margin as .settings-row. */ |
90 margin-bottom: 0.65em; | 90 margin-bottom: 0.65em; |
91 margin-top: 0.65em; | 91 margin-top: 0.65em; |
92 } | 92 } |
93 | 93 |
| 94 .language-options-ime-menu-desc { |
| 95 -webkit-margin-start: 18px; |
| 96 font-size: 80%; |
| 97 padding-bottom: 2px; |
| 98 } |
| 99 |
94 #language-options-list { | 100 #language-options-list { |
95 -webkit-box-flex: 1; | 101 -webkit-box-flex: 1; |
96 outline: none; | 102 outline: none; |
97 padding: 0; | 103 padding: 0; |
98 width: 100%; | 104 width: 100%; |
99 } | 105 } |
100 | 106 |
101 #language-options-list .language-name { | 107 #language-options-list .language-name { |
102 -webkit-box-flex: 1; | 108 -webkit-box-flex: 1; |
103 overflow: hidden; | 109 overflow: hidden; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 } | 189 } |
184 | 190 |
185 #add-language-overlay-page .content-area { | 191 #add-language-overlay-page .content-area { |
186 padding-bottom: 10px; | 192 padding-bottom: 10px; |
187 } | 193 } |
188 | 194 |
189 /* TODO(hshi): Remove this temporary hack once the bug is fixed in Chrome. */ | 195 /* TODO(hshi): Remove this temporary hack once the bug is fixed in Chrome. */ |
190 #add-language-overlay-language-list { | 196 #add-language-overlay-language-list { |
191 width: -webkit-calc(100% - 4px); | 197 width: -webkit-calc(100% - 4px); |
192 } | 198 } |
OLD | NEW |