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

Unified Diff: chrome/browser/resources/options/clear_browser_data_overlay.css

Issue 6340002: tabbed options - new clear browsing data overlay (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/clear_browser_data_overlay.css
diff --git a/chrome/browser/resources/options/clear_browser_data_overlay.css b/chrome/browser/resources/options/clear_browser_data_overlay.css
new file mode 100644
index 0000000000000000000000000000000000000000..8f0c65b65e6c2169226c1fd0628ed4f43659274f
--- /dev/null
+++ b/chrome/browser/resources/options/clear_browser_data_overlay.css
@@ -0,0 +1,51 @@
+/*
+Copyright (c) 2011 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+*/
+
+/* TODO(estade): these rules override some more general style rules. We
+ * should unify these rules instead of overriding them, but first we need
+ * to update existing overlays. Since a lot of the overlays are going away,
+ * I'm making these rules specific to this overlay for now. */
+
+#clearBrowserDataOverlay {
+ border: 1px solid #c8cdda;
+ border-radius: 0;
+ padding: 0px;
arv (Not doing code reviews) 2011/01/18 20:16:38 s/0px/0/
Evan Stade 2011/01/18 21:56:44 Done.
+ -webkit-box-shadow: 0px 0px 40px -5px #888;
+}
+
+#cbdTitle {
+ background: -webkit-linear-gradient(white, #F8F8F8);
+ border-bottom: 1px solid #bbbbbb;
+ display: block;
+ font-size: 105%;
+ font-weight: bold;
+ padding: 12px;
+}
+
+#cbdContentArea {
+ padding: 5px 15px;
+}
+
+#cbdContentArea label {
+ margin: 5px 0;
+}
+
+#cbdThrobber {
+ background-image: url("../../../../app/resources/throbber.png");
+ display: inline-block;
+ height: 16px;
+ margin: -3px 10px;
+ visibility: hidden;
+ width: 16px;
+}
+
+#cbdActionArea {
+ border-top: 1px solid #eeeeee;
+ display: -webkit-box;
+ padding: 12px;
+ -webkit-box-align: center;
+ -webkit-box-orient: horizontal;
stuartmorgan 2011/01/14 22:25:32 I think we've been putting these first rather than
Evan Stade 2011/01/18 21:56:44 Done.
+}

Powered by Google App Engine
This is Rietveld 408576698