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

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

Issue 5699004: [tabbed options] more work on content settings exceptions lists (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix maybeSetPatternValid Created 10 years 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 -webkit-user-select: none; 2 -webkit-user-select: none;
3 cursor: default; 3 cursor: default;
4 font-size: 100%; 4 font-size: 100%;
5 } 5 }
6 6
7 #settings-title { 7 #settings-title {
8 -webkit-padding-end: 24px; 8 -webkit-padding-end: 24px;
9 color: #53637d; 9 color: #53637d;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 316
317 /* TODO(stuartmorgan): make this less specific once all pages 317 /* TODO(stuartmorgan): make this less specific once all pages
318 * are converted to the non-table style. 318 * are converted to the non-table style.
319 */ 319 */
320 section > div:only-of-type label { 320 section > div:only-of-type label {
321 display: block; 321 display: block;
322 margin: 5px 0; 322 margin: 5px 0;
323 } 323 }
324 324
325 .hidden { 325 .hidden {
326 display: none; 326 display: none !important;
stuartmorgan 2010/12/13 17:49:51 What is the !important for? There's almost certain
arv (Not doing code reviews) 2010/12/13 19:58:35 I'm fine with this !important. I'm also OK with s
327 } 327 }
328 328
329 .touch-slider { 329 .touch-slider {
330 -webkit-appearance: slider-horizontal; 330 -webkit-appearance: slider-horizontal;
331 } 331 }
332 332
333 select { 333 select {
334 margin: 0px; 334 margin: 0px;
335 } 335 }
336 336
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 label.radio > span, 482 label.radio > span,
483 .suboption { 483 .suboption {
484 -webkit-margin-start: 16px; 484 -webkit-margin-start: 16px;
485 display: block; 485 display: block;
486 } 486 }
487 487
488 html[os=mac] label.checkbox > input, 488 html[os=mac] label.checkbox > input,
489 html[os=mac] label.radio > input { 489 html[os=mac] label.radio > input {
490 margin-top: 2px; 490 margin-top: 2px;
491 } 491 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698