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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
364 | 364 |
365 #contentSettingsPage :invalid { | 365 #contentSettingsPage :invalid { |
366 background-color: pink; | 366 background-color: pink; |
367 } | 367 } |
368 | 368 |
369 .settings-list { | 369 .settings-list { |
370 border: 1px solid #d9d9d9; | 370 border: 1px solid #d9d9d9; |
371 border-radius: 2px; | 371 border-radius: 2px; |
372 } | 372 } |
373 | 373 |
374 .list-title { | |
arv (Not doing code reviews)
2010/12/22 18:14:07
Maybe you should have used a hx in the markup for
James Hawkins
2010/12/22 21:22:31
Done.
| |
375 font-weight: bold; | |
376 margin: 20px 0 10px 0; | |
377 } | |
378 | |
374 list > * { | 379 list > * { |
375 -webkit-box-align: center; | 380 -webkit-box-align: center; |
376 -webkit-transition: .15s background-color; | 381 -webkit-transition: .15s background-color; |
377 box-sizing: border-box; | 382 box-sizing: border-box; |
378 border-radius: 0px; | 383 border-radius: 0px; |
379 display: -webkit-box; | 384 display: -webkit-box; |
380 height: 32px; | 385 height: 32px; |
381 border: none; | 386 border: none; |
382 margin: 0; | 387 margin: 0; |
383 } | 388 } |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
523 } | 528 } |
524 | 529 |
525 .suboption { | 530 .suboption { |
526 -webkit-margin-start: 16px; | 531 -webkit-margin-start: 16px; |
527 } | 532 } |
528 | 533 |
529 html[os=mac] label > input[type=checkbox], | 534 html[os=mac] label > input[type=checkbox], |
530 html[os=mac] label > input[type=radio] { | 535 html[os=mac] label > input[type=radio] { |
531 margin-top: 2px; | 536 margin-top: 2px; |
532 } | 537 } |
OLD | NEW |