Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(342)

Side by Side Diff: chrome/browser/resources/options/clear_browser_data_overlay.css

Issue 1813023002: Add a notice about other forms of history to the CBD dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_component
Patch Set: Update strings. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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: url(googleg.svg) left no-repeat;
65 margin: 0 0 0.8em 0;
66 min-height: 16px;
67 }
68
69 #clear-browser-data-general-footer {
70 background: url(info.svg) left no-repeat;
71 margin: 0;
72 min-height: 18px;
73 }
74
75 html[dir='rtl'] #clear-browser-data-history-footer,
76 html[dir='rtl'] #clear-browser-data-general-footer {
77 background-position: right center;
78 }
79
80 #clear-browser-data-history-notice {
81 width: 300px;
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698