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

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 .hbox { 1 .hbox {
2 display: -webkit-box; 2 display: -webkit-box;
3 -webkit-box-orient: horizontal; 3 -webkit-box-orient: horizontal;
4 } 4 }
5 5
6 .vbox { 6 .vbox {
7 display: -webkit-box; 7 display: -webkit-box;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 } 9 }
10 10
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 width: 100%; 221 width: 100%;
222 min-width: 651px; 222 min-width: 651px;
223 } 223 }
224 224
225 .subpage-sheet-contents { 225 .subpage-sheet-contents {
226 box-sizing: border-box; 226 box-sizing: border-box;
227 padding: 0px 20px 20px 20px; 227 padding: 0px 20px 20px 20px;
228 width: 650px; 228 width: 650px;
229 } 229 }
230 230
231 #managed-prefs-banner { 231 .managed-prefs-banner {
232 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787); 232 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
233 height: 31px; 233 height: 31px;
234 width: 100%; 234 width: 100%;
235 }
236
237 #managed-prefs-banner {
238 margin: 0; 235 margin: 0;
239 padding: 0; 236 padding: 0;
240 vertical-align: middle; 237 vertical-align: middle;
241 } 238 }
242 239
243 #managed-prefs-icon { 240 .managed-prefs-banner.clickable:active {
241 background: -webkit-linear-gradient(#878787, #fae691 3%, #fff2b7);
242 }
243
244 .managed-prefs-icon {
244 background-image: url("chrome://theme/IDR_WARNING"); 245 background-image: url("chrome://theme/IDR_WARNING");
245 background-repeat: no-repeat; 246 background-repeat: no-repeat;
246 background-position:center; 247 background-position:center;
247 display: inline-block; 248 display: inline-block;
248 padding: 5px; 249 padding: 5px;
249 height: 21px; 250 height: 21px;
250 vertical-align: middle; 251 vertical-align: middle;
251 width: 24px; 252 width: 24px;
252 } 253 }
253 254
254 #managed-prefs-text { 255 .managed-prefs-text {
255 vertical-align: middle; 256 vertical-align: middle;
256 } 257 }
257 258
258 .subpage-sheet .page h1 { 259 .subpage-sheet .page h1 {
259 margin-bottom: 10px; 260 margin-bottom: 10px;
260 } 261 }
261 262
262 .overlay .page h1 { 263 .overlay .page h1 {
263 background: -webkit-linear-gradient(white, #F8F8F8); 264 background: -webkit-linear-gradient(white, #F8F8F8);
264 border-bottom: 1px solid rgba(188, 193, 208, .5); 265 border-bottom: 1px solid rgba(188, 193, 208, .5);
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 display: table-cell; 638 display: table-cell;
638 vertical-align: baseline; 639 vertical-align: baseline;
639 border-bottom: 1px solid #eeeeee; 640 border-bottom: 1px solid #eeeeee;
640 } 641 }
641 642
642 /* do not display a border after the last section in the table */ 643 /* do not display a border after the last section in the table */
643 .displaytable:not([searching='true']) > section:last-child > * { 644 .displaytable:not([searching='true']) > section:last-child > * {
644 border-bottom: none; 645 border-bottom: none;
645 } 646 }
646 647
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698