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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 | 385 |
386 list > .heading { | 386 list > .heading { |
387 color: #666666; | 387 color: #666666; |
388 } | 388 } |
389 | 389 |
390 list > .heading:hover { | 390 list > .heading:hover { |
391 background-color: transparent; | 391 background-color: transparent; |
392 border-color: transparent; | 392 border-color: transparent; |
393 } | 393 } |
394 | 394 |
| 395 list .deletable-item { |
| 396 display: -webkit-box; |
| 397 } |
| 398 |
| 399 list .deletable-item > :first-child { |
| 400 -webkit-box-flex: 1; |
| 401 } |
| 402 |
| 403 list .close-button { |
| 404 background-color: transparent; |
| 405 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
| 406 background-image: url("../../../app/theme/close_bar.png"); |
| 407 border: none; |
| 408 height: 16px; |
| 409 width: 16px; |
| 410 } |
| 411 |
| 412 list > *:not(:hover) .close-button, list[disabled] .close-button { |
| 413 display: none; |
| 414 } |
| 415 |
| 416 list .close-button:hover { |
| 417 background-image: url("../../../app/theme/close_bar_h.png"); |
| 418 } |
| 419 |
| 420 list .close-button:active { |
| 421 background-image: url("../../../app/theme/close_bar_p.png"); |
| 422 } |
| 423 |
395 .left-side-table { | 424 .left-side-table { |
396 display: -webkit-box; | 425 display: -webkit-box; |
397 } | 426 } |
398 | 427 |
399 .left-side-table > div:first-child { | 428 .left-side-table > div:first-child { |
400 -webkit-box-flex: 1; | 429 -webkit-box-flex: 1; |
401 } | 430 } |
402 | 431 |
403 .left-side-table > :last-child { | 432 .left-side-table > :last-child { |
404 -webkit-padding-start: 20px; | 433 -webkit-padding-start: 20px; |
(...skipping 13 matching lines...) Expand all Loading... |
418 | 447 |
419 .favicon-cell { | 448 .favicon-cell { |
420 -webkit-padding-start: 20px; | 449 -webkit-padding-start: 20px; |
421 background-position: left; | 450 background-position: left; |
422 background-repeat: no-repeat; | 451 background-repeat: no-repeat; |
423 } | 452 } |
424 | 453 |
425 list .favicon-cell { | 454 list .favicon-cell { |
426 -webkit-margin-start: 7px; | 455 -webkit-margin-start: 7px; |
427 -webkit-padding-start: 26px; | 456 -webkit-padding-start: 26px; |
| 457 display: block; |
| 458 text-overflow: ellipsis; |
| 459 overflow: hidden; |
| 460 white-space: nowrap; |
428 } | 461 } |
429 | 462 |
430 html[dir=rtl] .favicon-cell { | 463 html[dir=rtl] .favicon-cell { |
431 background-position: right; | 464 background-position: right; |
432 } | 465 } |
433 | 466 |
434 html[enable-background-mode=false] #background-mode-section { | 467 html[enable-background-mode=false] #background-mode-section { |
435 display: none; | 468 display: none; |
436 } | 469 } |
437 | 470 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 label.radio > span, | 510 label.radio > span, |
478 .suboption { | 511 .suboption { |
479 -webkit-margin-start: 16px; | 512 -webkit-margin-start: 16px; |
480 display: block; | 513 display: block; |
481 } | 514 } |
482 | 515 |
483 html[os=mac] label.checkbox > input, | 516 html[os=mac] label.checkbox > input, |
484 html[os=mac] label.radio > input { | 517 html[os=mac] label.radio > input { |
485 margin-top: 2px; | 518 margin-top: 2px; |
486 } | 519 } |
OLD | NEW |