Chromium Code Reviews| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 384 list > .heading { | 384 list > .heading { |
| 385 color: #666666; | 385 color: #666666; |
| 386 } | 386 } |
| 387 | 387 |
| 388 list > .heading:hover { | 388 list > .heading:hover { |
| 389 background-color: transparent; | 389 background-color: transparent; |
| 390 border-color: transparent; | 390 border-color: transparent; |
| 391 } | 391 } |
| 392 | 392 |
| 393 list .deletable-item { | 393 list .deletable-item { |
| 394 -webkit-box-align: center; | |
| 395 -webkit-box-flex: 1; | |
|
Evan Stade
2010/12/16 21:06:47
for webkit-box-flex to have an effect, doesn't the
James Hawkins
2010/12/16 23:03:01
The parent div gets -webkit-box from the rule "lis
| |
| 394 display: -webkit-box; | 396 display: -webkit-box; |
| 395 } | 397 } |
| 396 | 398 |
| 397 list .deletable-item > :first-child { | |
| 398 -webkit-box-flex: 1; | |
| 399 } | |
| 400 | |
| 401 list .close-button { | 399 list .close-button { |
| 402 background-color: transparent; | 400 background-color: transparent; |
| 403 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 401 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
| 404 background-image: url("../../../app/theme/close_bar.png"); | 402 background-image: url("../../../app/theme/close_bar.png"); |
| 405 border: none; | 403 border: none; |
| 406 height: 16px; | 404 height: 16px; |
| 407 width: 16px; | 405 width: 16px; |
| 408 } | 406 } |
| 409 | 407 |
| 410 list > *:not(:hover) .close-button, list[disabled] .close-button { | 408 list > *:not(:hover) .close-button, list[disabled] .close-button { |
| 411 display: none; | 409 visibility: hidden; |
| 412 } | 410 } |
| 413 | 411 |
| 414 list .close-button:hover { | 412 list .close-button:hover { |
| 415 background-image: url("../../../app/theme/close_bar_h.png"); | 413 background-image: url("../../../app/theme/close_bar_h.png"); |
| 416 } | 414 } |
| 417 | 415 |
| 418 list .close-button:active { | 416 list .close-button:active { |
| 419 background-image: url("../../../app/theme/close_bar_p.png"); | 417 background-image: url("../../../app/theme/close_bar_p.png"); |
| 420 } | 418 } |
| 421 | 419 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 508 label.radio > span, | 506 label.radio > span, |
| 509 .suboption { | 507 .suboption { |
| 510 -webkit-margin-start: 16px; | 508 -webkit-margin-start: 16px; |
| 511 display: block; | 509 display: block; |
| 512 } | 510 } |
| 513 | 511 |
| 514 html[os=mac] label.checkbox > input, | 512 html[os=mac] label.checkbox > input, |
| 515 html[os=mac] label.radio > input { | 513 html[os=mac] label.radio > input { |
| 516 margin-top: 2px; | 514 margin-top: 2px; |
| 517 } | 515 } |
| OLD | NEW |