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

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

Issue 7828042: Implemented status section functionality for about:policy. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: . Created 9 years, 3 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/policy.css
diff --git a/chrome/browser/resources/policy.css b/chrome/browser/resources/policy.css
index 2fa9a1bf03750dcf48a0f0d1e5e11e43ebb69feb..cb35b18824446afebf1aae3650d2eef4c100a53d 100644
--- a/chrome/browser/resources/policy.css
+++ b/chrome/browser/resources/policy.css
@@ -141,3 +141,21 @@ legend {
text-overflow: ellipsis;
width: 20%;
}
+
+.toggler {
+ color: #808080;
+}
+
+.collapsed {
+ overflow: hidden;
arv (Not doing code reviews) 2011/09/09 20:59:32 I think also need "white-space: nowrap" here unles
simo 2011/09/12 12:46:30 Done.
+ text-overflow: ellipsis;
+}
+
+.expanded {
+ overflow: visible;
+ word-wrap: break-word;
+}
+
+.hidden {
James Hawkins 2011/09/09 20:54:04 Use the hidden attribute, not a hidden class. Als
simo 2011/09/12 12:46:30 Done.
+ display: none;
+}

Powered by Google App Engine
This is Rietveld 408576698