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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 -webkit-transition: .15s background-color; | 350 -webkit-transition: .15s background-color; |
351 box-sizing: border-box; | 351 box-sizing: border-box; |
352 border-radius: 0; | 352 border-radius: 0; |
353 display: -webkit-box; | 353 display: -webkit-box; |
354 height: 32px; | 354 height: 32px; |
355 border: none; | 355 border: none; |
356 margin: 0; | 356 margin: 0; |
357 } | 357 } |
358 | 358 |
359 list:not([disabled]) > :hover { | 359 list:not([disabled]) > :hover { |
360 background-color: #f2f2f2; | 360 background-color: #e4ecf7; |
361 } | 361 } |
362 | 362 |
363 list > [selected], | 363 list > [selected], |
364 list:focus > [selected], | 364 list:focus > [selected], |
365 list:focus > [lead][selected], | 365 list:focus > [lead][selected], |
366 list > [selected]:hover { | 366 list > [selected]:hover { |
367 background-color: #f2f2f2; | 367 background-color: #bbcee9; |
368 background-image: none; | 368 background-image: none; |
369 } | 369 } |
370 | 370 |
371 list:focus > [lead], | 371 list:focus > [lead], |
372 list:focus > [lead][selected], | 372 list:focus > [lead][selected], |
373 list [lead][selected][editing] { | 373 list [lead][selected][editing] { |
374 border-top: 1px solid #b2b2b2; | 374 border-top: 1px solid #7892b4; |
375 border-bottom: 1px solid #b2b2b2; | 375 border-bottom: 1px solid #7892b4; |
376 } | 376 } |
377 | 377 |
378 list:focus > [lead]:nth-child(2), | 378 list:focus > [lead]:nth-child(2), |
379 list:focus > [lead][selected]:nth-child(2), | 379 list:focus > [lead][selected]:nth-child(2), |
380 list [lead][selected][editing]:nth-child(2) { | 380 list [lead][selected][editing]:nth-child(2) { |
381 border-top: 1px solid #f2f2f2; | 381 border-top: 1px transparent; |
382 } | 382 } |
383 | 383 |
384 list:focus > [lead]:nth-last-child(2), | 384 list:focus > [lead]:nth-last-child(2), |
385 list:focus > [lead][selected]:nth-last-child(2), | 385 list:focus > [lead][selected]:nth-last-child(2), |
386 list [lead][selected][editing]:nth-last-child(2) { | 386 list [lead][selected][editing]:nth-last-child(2) { |
387 border-bottom: 1px solid #f2f2f2; | 387 border-bottom: 1px transparent; |
388 } | 388 } |
389 | 389 |
390 list[disabled] > [lead][selected], | 390 list[disabled] > [lead][selected], |
391 list[disabled]:focus > [lead][selected] { | 391 list[disabled]:focus > [lead][selected] { |
392 border: none; | 392 border: none; |
393 } | 393 } |
394 | 394 |
395 list[disabled] { | 395 list[disabled] { |
396 opacity: 0.6; | 396 opacity: 0.6; |
397 } | 397 } |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 } | 530 } |
531 | 531 |
532 .suboption { | 532 .suboption { |
533 -webkit-margin-start: 16px; | 533 -webkit-margin-start: 16px; |
534 } | 534 } |
535 | 535 |
536 html[os=mac] label > input[type=checkbox], | 536 html[os=mac] label > input[type=checkbox], |
537 html[os=mac] label > input[type=radio] { | 537 html[os=mac] label > input[type=radio] { |
538 margin-top: 2px; | 538 margin-top: 2px; |
539 } | 539 } |
OLD | NEW |