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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 background-color: transparent; | 344 background-color: transparent; |
345 border-color: transparent; | 345 border-color: transparent; |
346 } | 346 } |
347 | 347 |
348 #contentSettingsPage :invalid { | 348 #contentSettingsPage :invalid { |
349 background-color: pink; | 349 background-color: pink; |
350 } | 350 } |
351 | 351 |
352 list > * { | 352 list > * { |
353 -webkit-box-align: center; | 353 -webkit-box-align: center; |
| 354 -webkit-transition: .15s background-color; |
354 box-sizing: border-box; | 355 box-sizing: border-box; |
355 border-radius: 0px; | 356 border-radius: 0px; |
356 display: -webkit-box; | 357 display: -webkit-box; |
357 height: 32px; | 358 height: 32px; |
358 border: none; | 359 border: none; |
359 margin: 0; | 360 margin: 0; |
360 } | 361 } |
361 | 362 |
362 list:not([disabled]) > :hover { | 363 list:not([disabled]) > :hover { |
363 background-color: #f2f2f2; | 364 background-color: #f2f2f2; |
(...skipping 19 matching lines...) Expand all Loading... |
383 list > .heading { | 384 list > .heading { |
384 color: #666666; | 385 color: #666666; |
385 } | 386 } |
386 | 387 |
387 list > .heading:hover { | 388 list > .heading:hover { |
388 background-color: transparent; | 389 background-color: transparent; |
389 border-color: transparent; | 390 border-color: transparent; |
390 } | 391 } |
391 | 392 |
392 list .deletable-item { | 393 list .deletable-item { |
| 394 -webkit-box-align: center; |
| 395 -webkit-box-flex: 1; |
393 display: -webkit-box; | 396 display: -webkit-box; |
394 } | 397 } |
395 | 398 |
396 list .deletable-item > :first-child { | |
397 -webkit-box-flex: 1; | |
398 } | |
399 | |
400 list .close-button { | 399 list .close-button { |
| 400 -webkit-transition: .15s opacity; |
401 background-color: transparent; | 401 background-color: transparent; |
402 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 402 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
403 background-image: url("../../../app/theme/close_bar.png"); | 403 background-image: url("../../../app/theme/close_bar.png"); |
404 border: none; | 404 border: none; |
405 height: 16px; | 405 height: 16px; |
| 406 opacity: 1; |
406 width: 16px; | 407 width: 16px; |
407 } | 408 } |
408 | 409 |
409 list > *:not(:hover) .close-button, list[disabled] .close-button { | 410 list > *:not(:hover) .close-button, list[disabled] .close-button { |
410 display: none; | 411 opacity: 0; |
| 412 pointer-events: none; |
411 } | 413 } |
412 | 414 |
413 list .close-button:hover { | 415 list .close-button:hover { |
414 background-image: url("../../../app/theme/close_bar_h.png"); | 416 background-image: url("../../../app/theme/close_bar_h.png"); |
415 } | 417 } |
416 | 418 |
417 list .close-button:active { | 419 list .close-button:active { |
418 background-image: url("../../../app/theme/close_bar_p.png"); | 420 background-image: url("../../../app/theme/close_bar_p.png"); |
419 } | 421 } |
420 | 422 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 label.radio > span, | 509 label.radio > span, |
508 .suboption { | 510 .suboption { |
509 -webkit-margin-start: 16px; | 511 -webkit-margin-start: 16px; |
510 display: block; | 512 display: block; |
511 } | 513 } |
512 | 514 |
513 html[os=mac] label.checkbox > input, | 515 html[os=mac] label.checkbox > input, |
514 html[os=mac] label.radio > input { | 516 html[os=mac] label.radio > input { |
515 margin-top: 2px; | 517 margin-top: 2px; |
516 } | 518 } |
OLD | NEW |