| 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 line-height: 1.4em; |
| 37 } | 38 } |
| 38 | 39 |
| 39 .clear-browser-data-counter:not(:empty)::before { | 40 .clear-browser-data-counter:not(:empty)::before { |
| 40 content: '\00a0–\00a0\00a0'; | 41 content: '\00a0–\00a0\00a0'; |
| 41 } | 42 } |
| 42 | 43 |
| 43 input[type=checkbox]:not(:checked) ~ span > .clear-browser-data-counter { | 44 input[type=checkbox]:not(:checked) ~ span > .clear-browser-data-counter { |
| 44 display: none; | 45 display: none; |
| 45 } | 46 } |
| 46 | 47 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 73 } | 74 } |
| 74 | 75 |
| 75 html[dir='rtl'] #clear-browser-data-history-footer, | 76 html[dir='rtl'] #clear-browser-data-history-footer, |
| 76 html[dir='rtl'] #clear-browser-data-general-footer { | 77 html[dir='rtl'] #clear-browser-data-general-footer { |
| 77 background-position: right center; | 78 background-position: right center; |
| 78 } | 79 } |
| 79 | 80 |
| 80 #clear-browser-data-history-notice { | 81 #clear-browser-data-history-notice { |
| 81 width: 300px; | 82 width: 300px; |
| 82 } | 83 } |
| OLD | NEW |