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.
|
+} |