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

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, 2 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 .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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 width: 100%; 183 width: 100%;
184 min-width: 651px; 184 min-width: 651px;
185 } 185 }
186 186
187 .subpage-sheet-contents { 187 .subpage-sheet-contents {
188 box-sizing: border-box; 188 box-sizing: border-box;
189 padding: 0px 20px 20px 20px; 189 padding: 0px 20px 20px 20px;
190 width: 650px; 190 width: 650px;
191 } 191 }
192 192
193 #managed-prefs-banner { 193 .managed-prefs-banner {
194 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787); 194 background: -webkit-linear-gradient(#fff2b7, #fae691 97%, #878787);
195 height: 31px; 195 height: 31px;
196 width: 100%; 196 width: 100%;
197 }
198
199 #managed-prefs-banner {
200 margin: 0; 197 margin: 0;
201 padding: 0; 198 padding: 0;
202 vertical-align: middle; 199 vertical-align: middle;
203 } 200 }
204 201
205 #managed-prefs-icon { 202 .managed-prefs-banner.clickable:active {
203 background: -webkit-linear-gradient(#878787, #fae691 3%, #fff2b7);
204 }
205
206 .managed-prefs-icon {
206 background-image: url("chrome://theme/IDR_WARNING"); 207 background-image: url("chrome://theme/IDR_WARNING");
207 background-repeat: no-repeat; 208 background-repeat: no-repeat;
208 background-position:center; 209 background-position:center;
209 display: inline-block; 210 display: inline-block;
210 padding: 5px; 211 padding: 5px;
211 height: 21px; 212 height: 21px;
212 vertical-align: middle; 213 vertical-align: middle;
213 width: 24px; 214 width: 24px;
214 } 215 }
215 216
216 #managed-prefs-text { 217 .managed-prefs-text {
217 vertical-align: middle; 218 vertical-align: middle;
218 } 219 }
219 220
220 .subpage-sheet .page h1 { 221 .subpage-sheet .page h1 {
221 margin-bottom: 10px; 222 margin-bottom: 10px;
222 } 223 }
223 224
224 .overlay .page h1 { 225 .overlay .page h1 {
225 background: -webkit-linear-gradient(white, #F8F8F8); 226 background: -webkit-linear-gradient(white, #F8F8F8);
226 border-bottom: 1px solid rgba(188, 193, 208, .5); 227 border-bottom: 1px solid rgba(188, 193, 208, .5);
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 display: table-cell; 589 display: table-cell;
589 vertical-align: baseline; 590 vertical-align: baseline;
590 border-bottom: 1px solid #eeeeee; 591 border-bottom: 1px solid #eeeeee;
591 } 592 }
592 593
593 /* do not display a border after the last section in the table */ 594 /* do not display a border after the last section in the table */
594 .displaytable:not([searching='true']) > section:last-child > * { 595 .displaytable:not([searching='true']) > section:last-child > * {
595 border-bottom: none; 596 border-bottom: none;
596 } 597 }
597 598
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698