| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 464 |
| 465 list > [editing] [editmode=false] { | 465 list > [editing] [editmode=false] { |
| 466 display: none; | 466 display: none; |
| 467 } | 467 } |
| 468 | 468 |
| 469 list > [editing] input:invalid { | 469 list > [editing] input:invalid { |
| 470 /* TODO(stuartmorgan): Replace with validity badge */ | 470 /* TODO(stuartmorgan): Replace with validity badge */ |
| 471 background-color: pink; | 471 background-color: pink; |
| 472 } | 472 } |
| 473 | 473 |
| 474 .left-side-table { | |
| 475 display: -webkit-box; | |
| 476 } | |
| 477 | |
| 478 .left-side-table > div:first-child { | |
| 479 -webkit-box-flex: 1; | |
| 480 } | |
| 481 | |
| 482 .left-side-table > :last-child { | |
| 483 -webkit-padding-start: 20px; | |
| 484 } | |
| 485 | |
| 486 .left-side-table > :last-child button { | |
| 487 width: 100%; | |
| 488 } | |
| 489 | |
| 490 .option-name { | 474 .option-name { |
| 491 padding-right: 5px; | 475 padding-right: 5px; |
| 492 } | 476 } |
| 493 | 477 |
| 494 html[dir=rtl].option-name { | 478 html[dir=rtl].option-name { |
| 495 padding-left: 5px; | 479 padding-left: 5px; |
| 496 } | 480 } |
| 497 | 481 |
| 498 .favicon-cell { | 482 .favicon-cell { |
| 499 -webkit-padding-start: 20px; | 483 -webkit-padding-start: 20px; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 } | 528 } |
| 545 | 529 |
| 546 .suboption { | 530 .suboption { |
| 547 -webkit-margin-start: 16px; | 531 -webkit-margin-start: 16px; |
| 548 } | 532 } |
| 549 | 533 |
| 550 html[os=mac] label > input[type=checkbox], | 534 html[os=mac] label > input[type=checkbox], |
| 551 html[os=mac] label > input[type=radio] { | 535 html[os=mac] label > input[type=radio] { |
| 552 margin-top: 2px; | 536 margin-top: 2px; |
| 553 } | 537 } |
| OLD | NEW |