Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 body { | 1 body { |
| 2 cursor: default; | 2 cursor: default; |
| 3 font-size: 100%; | 3 font-size: 100%; |
| 4 } | 4 } |
| 5 | 5 |
| 6 #settings-title { | 6 #settings-title { |
| 7 -webkit-padding-end: 24px; | 7 -webkit-padding-end: 24px; |
| 8 color: #53637d; | 8 color: #53637d; |
| 9 cursor: pointer; | 9 cursor: pointer; |
| 10 font-size: 200%; | 10 font-size: 200%; |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 339 } | 339 } |
| 340 | 340 |
| 341 .link-button { | 341 .link-button { |
| 342 background-color: transparent; | 342 background-color: transparent; |
| 343 border: none; | 343 border: none; |
| 344 color: blue; | 344 color: blue; |
| 345 cursor: pointer; | 345 cursor: pointer; |
| 346 text-decoration: underline; | 346 text-decoration: underline; |
| 347 } | 347 } |
| 348 | 348 |
| 349 .text-button { | 349 .text-button, |
|
James Hawkins
2011/01/21 21:08:50
Hmm, need to check out .raw-button and refactor as
| |
| 350 background-color: transparent; | 350 .text-button:active, |
| 351 .text-button:focus, | |
| 352 .text-button:hover { | |
| 353 -webkit-box-shadow: none; | |
| 354 background: transparent none; | |
| 351 border-color: transparent; | 355 border-color: transparent; |
| 356 color: #000; | |
| 352 } | 357 } |
| 353 | 358 |
| 354 .settings-list { | 359 .settings-list { |
| 355 border: 1px solid #d9d9d9; | 360 border: 1px solid #d9d9d9; |
| 356 border-radius: 2px; | 361 border-radius: 2px; |
| 357 } | 362 } |
| 358 | 363 |
| 359 list > * { | 364 list > * { |
| 360 -webkit-box-align: center; | 365 -webkit-box-align: center; |
| 361 -webkit-transition: .15s background-color; | 366 -webkit-transition: .15s background-color; |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 634 } | 639 } |
| 635 | 640 |
| 636 html[os=mac] label > input[type=checkbox], | 641 html[os=mac] label > input[type=checkbox], |
| 637 html[os=mac] label > input[type=radio] { | 642 html[os=mac] label > input[type=radio] { |
| 638 margin-top: 2px; | 643 margin-top: 2px; |
| 639 } | 644 } |
| 640 | 645 |
| 641 .suboption { | 646 .suboption { |
| 642 -webkit-margin-start: 16px; | 647 -webkit-margin-start: 16px; |
| 643 } | 648 } |
| OLD | NEW |