| 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 #accessibility-menu { | 5 #accessibility-menu { |
| 6 -webkit-padding-end: 80px; | 6 -webkit-padding-end: 80px; |
| 7 -webkit-padding-start: 25px; | 7 -webkit-padding-start: 25px; |
| 8 padding-bottom: 25px; | 8 padding-bottom: 25px; |
| 9 padding-top: 15px; | 9 padding-top: 15px; |
| 10 z-index: 1; | 10 z-index: 1; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 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 | |
| OLD | NEW |