| 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 | 5 |
| 6 #accessibility-menu { | 6 #accessibility-menu { |
| 7 -webkit-padding-after: 25px; | |
| 8 -webkit-padding-before: 15px; | |
| 9 -webkit-padding-end: 80px; | 7 -webkit-padding-end: 80px; |
| 10 -webkit-padding-start: 25px; | 8 -webkit-padding-start: 25px; |
| 9 padding-bottom: 25px; |
| 10 padding-top: 15px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .checkboxrow { | 13 .checkboxrow { |
| 14 -webkit-margin-before: 10px; | |
| 15 display: -webkit-box; | 14 display: -webkit-box; |
| 15 margin-top: 10px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .checkboxlabel { | 18 .checkboxlabel { |
| 19 -webkit-margin-start: 10px; | 19 -webkit-margin-start: 10px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .close-button { | 22 .close-button { |
| 23 background: url('chrome://theme/IDR_CLOSE_DIALOG') center no-repeat; | 23 background: url('chrome://theme/IDR_CLOSE_DIALOG') center no-repeat; |
| 24 height: 14px; | 24 height: 14px; |
| 25 position: absolute; | 25 position: absolute; |
| 26 right: 7px; | 26 right: 7px; |
| 27 top: 7px; | 27 top: 7px; |
| 28 width: 14px; | 28 width: 14px; |
| 29 } | 29 } |
| 30 | 30 |
| 31 .close-button:hover { | 31 .close-button:hover { |
| 32 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); | 32 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); |
| 33 } | 33 } |
| 34 | 34 |
| 35 .close-button:active { | 35 .close-button:active { |
| 36 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); | 36 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); |
| 37 } | 37 } |
| 38 | 38 |
| 39 html[dir=rtl] .close-button { | 39 html[dir=rtl] .close-button { |
| 40 left: 10px; | 40 left: 10px; |
| 41 right: auto; | 41 right: auto; |
| 42 } | 42 } |
| 43 | 43 |
| OLD | NEW |