Chromium Code Reviews| 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 30 matching lines...) Expand all Loading... | |
| 41 } | 41 } |
| 42 | 42 |
| 43 input[type=checkbox]:not(:checked) ~ .clear-browser-data-counter { | 43 input[type=checkbox]:not(:checked) ~ .clear-browser-data-counter { |
| 44 display: none; | 44 display: none; |
| 45 } | 45 } |
| 46 | 46 |
| 47 #clear-browser-data-info-banner:empty { | 47 #clear-browser-data-info-banner:empty { |
| 48 display: none; | 48 display: none; |
| 49 } | 49 } |
| 50 | 50 |
| 51 #some-stuff-remains-footer { | |
| 52 display: block; | |
| 53 } | |
| 54 | |
| 51 #some-stuff-remains-footer > p { | 55 #some-stuff-remains-footer > p { |
| 52 margin: 0; | 56 -webkit-padding-start: 33px; |
| 53 } | 57 } |
| 54 | 58 |
| 55 #some-stuff-remains-footer button { | 59 #some-stuff-remains-footer button { |
| 56 padding: 0; | 60 padding: 0; |
| 57 } | 61 } |
| 62 | |
| 63 #clear-browser-data-history-footer { | |
| 64 background-image: url(googleg.svg); | |
| 65 background-position: left center; | |
|
Dan Beam
2016/03/31 04:47:00
what extra space is there? I.e. why do you need th
msramek
2016/03/31 18:19:56
The footer also contains text (starting at -webkit
| |
| 66 background-repeat: no-repeat; | |
|
Dan Beam
2016/03/31 04:47:00
nit: background shorthand
msramek
2016/03/31 18:19:56
Done.
| |
| 67 background-size: 16px 16px; | |
| 68 margin: 0 0 0.8em 0; | |
| 69 min-height: 16px; | |
|
msramek
2016/03/21 16:30:25
Since the icons are only in the background, I adde
| |
| 70 } | |
| 71 | |
| 72 #clear-browser-data-general-footer { | |
| 73 background-image: url(info.svg); | |
| 74 background-position: left center; | |
| 75 background-repeat: no-repeat; | |
| 76 background-size: 18px 18px; | |
| 77 margin: 0; | |
| 78 min-height: 18px; | |
| 79 } | |
| 80 | |
| 81 html[dir='rtl'] #clear-browser-data-history-footer, | |
| 82 html[dir='rtl'] #clear-browser-data-general-footer { | |
| 83 background-position: right center; | |
| 84 } | |
| 85 | |
| 86 #clear-browser-data-history-notice { | |
| 87 width: 300px; | |
| 88 } | |
| OLD | NEW |