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

Unified Diff: chrome/browser/resources/collected_cookies.css

Issue 6644002: [ChromeOS] Implement collected cookies in webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: exclude for non-chromeos build Created 9 years, 9 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/collected_cookies.css
diff --git a/chrome/browser/resources/collected_cookies.css b/chrome/browser/resources/collected_cookies.css
new file mode 100644
index 0000000000000000000000000000000000000000..7f732e5beca8b8f6646a126c144c2f5afbda7cf3
--- /dev/null
+++ b/chrome/browser/resources/collected_cookies.css
@@ -0,0 +1,27 @@
+body {
+ font-size: 84%;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.hidden {
arv (Not doing code reviews) 2011/03/09 18:42:47 Can you use the hidden property instead?
xiyuan 2011/03/09 21:33:31 Done.
+ display: none;
+}
+
+.cookies-tree {
+ border: 1px solid lightgrey;
+ padding: 5px;
+ width: 450px;
+ height: 135px;
+}
+
+#info-banner {
+ background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
+ margin: 3px 0;
+ padding: 0;
arv (Not doing code reviews) 2011/03/09 18:42:47 padding 0 should be default already?
xiyuan 2011/03/09 21:33:31 Done.
+ width: 100%;
+ height: 20px;
+}
+
+#info-text {
+ vertical-align: middle;
+}

Powered by Google App Engine
This is Rietveld 408576698