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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 html[dir=rtl].option-name { | 468 html[dir=rtl].option-name { |
469 padding-left: 5px; | 469 padding-left: 5px; |
470 } | 470 } |
471 | 471 |
472 .favicon-cell { | 472 .favicon-cell { |
473 -webkit-padding-start: 20px; | 473 -webkit-padding-start: 20px; |
474 background-position: left; | 474 background-position: left; |
475 background-repeat: no-repeat; | 475 background-repeat: no-repeat; |
476 } | 476 } |
477 | 477 |
| 478 input.favicon-cell { |
| 479 -webkit-padding-start: 22px; |
| 480 background-position-x: 4px; |
| 481 } |
| 482 |
| 483 /* TODO(jhawkins): Use something better than 99.3% when CSS3 background |
| 484 * positioning is available. |
| 485 */ |
| 486 html[dir=rtl] input.favicon-cell { |
| 487 background-position-x: 99.3%; |
| 488 } |
| 489 |
478 list .favicon-cell { | 490 list .favicon-cell { |
479 -webkit-margin-start: 7px; | 491 -webkit-margin-start: 7px; |
480 -webkit-padding-start: 26px; | 492 -webkit-padding-start: 26px; |
481 display: block; | 493 display: block; |
482 text-overflow: ellipsis; | 494 text-overflow: ellipsis; |
483 overflow: hidden; | 495 overflow: hidden; |
484 white-space: nowrap; | 496 white-space: nowrap; |
485 } | 497 } |
486 | 498 |
487 html[dir=rtl] list .favicon-cell { | 499 html[dir=rtl] list .favicon-cell { |
(...skipping 30 matching lines...) Expand all Loading... |
518 } | 530 } |
519 | 531 |
520 .suboption { | 532 .suboption { |
521 -webkit-margin-start: 16px; | 533 -webkit-margin-start: 16px; |
522 } | 534 } |
523 | 535 |
524 html[os=mac] label > input[type=checkbox], | 536 html[os=mac] label > input[type=checkbox], |
525 html[os=mac] label > input[type=radio] { | 537 html[os=mac] label > input[type=radio] { |
526 margin-top: 2px; | 538 margin-top: 2px; |
527 } | 539 } |
OLD | NEW |