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

Side by Side 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: Rebased patch. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 body { 1 body {
2 color: black; 2 color: black;
3 cursor: default; 3 cursor: default;
4 font-family: Arial, sans-serif; 4 font-family: Arial, sans-serif;
5 font-size: 14px; 5 font-size: 14px;
6 margin: 0 10px; 6 margin: 0 10px;
7 min-width: 47em; 7 min-width: 47em;
8 } 8 }
9 9
10 button { 10 button {
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 padding: 10px; 134 padding: 10px;
135 } 135 }
136 136
137 #policy-table td { 137 #policy-table td {
138 background-color: #eaeef3; 138 background-color: #eaeef3;
139 overflow: hidden; 139 overflow: hidden;
140 padding: 10px; 140 padding: 10px;
141 text-overflow: ellipsis; 141 text-overflow: ellipsis;
142 width: 20%; 142 width: 20%;
143 } 143 }
144
145 .toggler {
146 color: #808080;
147 }
148
149 .collapsed {
150 overflow: hidden;
151 text-overflow: ellipsis;
152 white-space: nowrap;
153 }
154
155 .expanded {
156 overflow: visible;
157 word-wrap: break-word;
158 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/configuration_policy_reader.cc ('k') | chrome/browser/resources/policy.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698