| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 /* | 137 /* |
| 138 * In ChromeOS we present the language choices as a big page of links. | 138 * In ChromeOS we present the language choices as a big page of links. |
| 139 */ | 139 */ |
| 140 | 140 |
| 141 html[os=chromeos] #add-language-overlay-language-list { | 141 html[os=chromeos] #add-language-overlay-language-list { |
| 142 -webkit-column-count: 2; | 142 -webkit-column-count: 2; |
| 143 -webkit-column-gap: 20px; | 143 -webkit-column-gap: 20px; |
| 144 } | 144 } |
| 145 | 145 |
| 146 html[os=chromeos] #add-language-overlay-cancel-button { | |
| 147 /* Place the button in the center. */ | |
| 148 display: block; | |
| 149 margin: auto; | |
| 150 margin-top: 15px; | |
| 151 } | |
| 152 | |
| 153 html[os=chromeos] #add-language-overlay-page { | 146 html[os=chromeos] #add-language-overlay-page { |
| 154 padding: 20px; | 147 padding: 20px; |
| 155 width: 800px; | 148 width: 800px; |
| 156 } | 149 } |
| 157 | 150 |
| 158 html[os=chromeos] #add-language-overlay-page button.link-button { | 151 html[os=chromeos] #add-language-overlay-page button.link-button { |
| 159 padding: 0; | 152 padding: 0; |
| 160 text-align: left; | 153 text-align: left; |
| 161 } | 154 } |
| 162 | 155 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 229 |
| 237 button[disabled].text-button, | 230 button[disabled].text-button, |
| 238 button[disabled].text-button:active, | 231 button[disabled].text-button:active, |
| 239 button[disabled].text-button:focus, | 232 button[disabled].text-button:focus, |
| 240 button[disabled].text-button:hover { | 233 button[disabled].text-button:hover { |
| 241 -webkit-box-shadow: none; | 234 -webkit-box-shadow: none; |
| 242 background: transparent none; | 235 background: transparent none; |
| 243 border-color: transparent; | 236 border-color: transparent; |
| 244 color: #AAA; | 237 color: #AAA; |
| 245 } | 238 } |
| OLD | NEW |