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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 list > .heading { | 383 list > .heading { |
384 color: #666666; | 384 color: #666666; |
385 } | 385 } |
386 | 386 |
387 list > .heading:hover { | 387 list > .heading:hover { |
388 background-color: transparent; | 388 background-color: transparent; |
389 border-color: transparent; | 389 border-color: transparent; |
390 } | 390 } |
391 | 391 |
392 list .deletable-item { | 392 list .deletable-item { |
| 393 -webkit-box-align: center; |
| 394 -webkit-box-flex: 1; |
393 display: -webkit-box; | 395 display: -webkit-box; |
394 } | 396 } |
395 | 397 |
396 list .deletable-item > :first-child { | |
397 -webkit-box-flex: 1; | |
398 } | |
399 | |
400 list .close-button { | 398 list .close-button { |
401 background-color: transparent; | 399 background-color: transparent; |
402 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 400 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
403 background-image: url("../../../app/theme/close_bar.png"); | 401 background-image: url("../../../app/theme/close_bar.png"); |
404 border: none; | 402 border: none; |
405 height: 16px; | 403 height: 16px; |
406 width: 16px; | 404 width: 16px; |
407 } | 405 } |
408 | 406 |
409 list > *:not(:hover) .close-button, list[disabled] .close-button { | 407 list > *:not(:hover) .close-button, list[disabled] .close-button { |
410 display: none; | 408 visibility: hidden; |
411 } | 409 } |
412 | 410 |
413 list .close-button:hover { | 411 list .close-button:hover { |
414 background-image: url("../../../app/theme/close_bar_h.png"); | 412 background-image: url("../../../app/theme/close_bar_h.png"); |
415 } | 413 } |
416 | 414 |
417 list .close-button:active { | 415 list .close-button:active { |
418 background-image: url("../../../app/theme/close_bar_p.png"); | 416 background-image: url("../../../app/theme/close_bar_p.png"); |
419 } | 417 } |
420 | 418 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 label.radio > span, | 505 label.radio > span, |
508 .suboption { | 506 .suboption { |
509 -webkit-margin-start: 16px; | 507 -webkit-margin-start: 16px; |
510 display: block; | 508 display: block; |
511 } | 509 } |
512 | 510 |
513 html[os=mac] label.checkbox > input, | 511 html[os=mac] label.checkbox > input, |
514 html[os=mac] label.radio > input { | 512 html[os=mac] label.radio > input { |
515 margin-top: 2px; | 513 margin-top: 2px; |
516 } | 514 } |
OLD | NEW |