OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .details-view { | 7 .details-view { |
8 -webkit-padding-end: 10px; | 8 -webkit-padding-end: 10px; |
9 } | 9 } |
10 | 10 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 #get-more-extensions-container { | 258 #get-more-extensions-container { |
259 display: -webkit-box; | 259 display: -webkit-box; |
260 } | 260 } |
261 | 261 |
262 #get-more-extensions { | 262 #get-more-extensions { |
263 padding-top: 5px; | 263 padding-top: 5px; |
264 font-size: 15px; | 264 font-size: 15px; |
265 -webkit-padding-start: 10px; | 265 -webkit-padding-start: 10px; |
266 } | 266 } |
| 267 |
| 268 /* Support full keyboard accessibility without making things ugly |
| 269 for users who click, by hiding some focus outlines when the user |
| 270 clicks anywhere, but showing them when the user presses any key. */ |
| 271 body.hide-some-focus-outlines .extension-zippy-container { |
| 272 outline: none; |
| 273 } |
OLD | NEW |