OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |