| 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 #clear-browser-data-overlay { | 5 #clear-browser-data-overlay { |
| 6 width: 500px; | 6 width: 500px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #clear-data-checkboxes { | 9 #clear-data-checkboxes { |
| 10 -webkit-padding-start: 8px; | 10 -webkit-padding-start: 8px; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 background-color: rgb(249, 237, 184); | 27 background-color: rgb(249, 237, 184); |
| 28 border: solid 1px rgb(237, 201, 103); | 28 border: solid 1px rgb(237, 201, 103); |
| 29 border-radius: 2px; | 29 border-radius: 2px; |
| 30 font-weight: bold; | 30 font-weight: bold; |
| 31 margin: 0 20px 11px 17px; | 31 margin: 0 20px 11px 17px; |
| 32 padding: 6px 8px; | 32 padding: 6px 8px; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .clear-browser-data-counter { | 35 .clear-browser-data-counter { |
| 36 color: #999; | 36 color: #999; |
| 37 } |
| 38 |
| 39 input[type=checkbox] ~ span { |
| 37 line-height: 1.4em; | 40 line-height: 1.4em; |
| 38 } | 41 } |
| 39 | 42 |
| 40 .clear-browser-data-counter:not(:empty)::before { | 43 .clear-browser-data-counter:not(:empty)::before { |
| 41 content: '\00a0–\00a0\00a0'; | 44 content: '\00a0–\00a0\00a0'; |
| 42 } | 45 } |
| 43 | 46 |
| 44 input[type=checkbox]:not(:checked) ~ span > .clear-browser-data-counter { | 47 input[type=checkbox]:not(:checked) ~ span > .clear-browser-data-counter { |
| 45 display: none; | 48 display: none; |
| 46 } | 49 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 74 } | 77 } |
| 75 | 78 |
| 76 html[dir='rtl'] #clear-browser-data-history-footer, | 79 html[dir='rtl'] #clear-browser-data-history-footer, |
| 77 html[dir='rtl'] #clear-browser-data-general-footer { | 80 html[dir='rtl'] #clear-browser-data-general-footer { |
| 78 background-position: right center; | 81 background-position: right center; |
| 79 } | 82 } |
| 80 | 83 |
| 81 #clear-browser-data-history-notice { | 84 #clear-browser-data-history-notice { |
| 82 width: 300px; | 85 width: 300px; |
| 83 } | 86 } |
| OLD | NEW |