| OLD | NEW |
| 1 .hbox { | 1 .hbox { |
| 2 display: -webkit-box; | 2 display: -webkit-box; |
| 3 -webkit-box-orient: horizontal; | 3 -webkit-box-orient: horizontal; |
| 4 } | 4 } |
| 5 | 5 |
| 6 .vbox { | 6 .vbox { |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 .raw-button:active { | 84 .raw-button:active { |
| 85 -webkit-box-shadow: none; | 85 -webkit-box-shadow: none; |
| 86 background-color: transparent; | 86 background-color: transparent; |
| 87 background-repeat: no-repeat; | 87 background-repeat: no-repeat; |
| 88 border: none; | 88 border: none; |
| 89 min-width: 0; | 89 min-width: 0; |
| 90 padding: 1px 6px; | 90 padding: 1px 6px; |
| 91 } | 91 } |
| 92 | 92 |
| 93 .close-subpage { | 93 .close-subpage { |
| 94 background-image: url('chrome://theme/IDR_CLOSE_BAR'); | 94 background-image: url('../../../../ui/resources/close_bar.png'); |
| 95 height: 16px; | 95 height: 16px; |
| 96 min-width: 0; | 96 min-width: 0; |
| 97 position: relative; | 97 position: relative; |
| 98 top: 16px; | 98 top: 16px; |
| 99 width: 16px; | 99 width: 16px; |
| 100 } | 100 } |
| 101 | 101 |
| 102 .close-subpage:hover { | 102 .close-subpage:hover { |
| 103 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 103 background-image: url('../../../../ui/resources/close_bar_h.png'); |
| 104 } | 104 } |
| 105 | 105 |
| 106 .close-subpage:active { | 106 .close-subpage:active { |
| 107 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 107 background-image: url('../../../../ui/resources/close_bar_p.png'); |
| 108 } | 108 } |
| 109 | 109 |
| 110 html[dir='ltr'] .close-subpage { | 110 html[dir='ltr'] .close-subpage { |
| 111 float: right; | 111 float: right; |
| 112 right: 20px; | 112 right: 20px; |
| 113 } | 113 } |
| 114 | 114 |
| 115 html[dir='rtl'] .close-subpage { | 115 html[dir='rtl'] .close-subpage { |
| 116 float: left; | 116 float: left; |
| 117 left: 20px; | 117 left: 20px; |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 -webkit-box-align: center; | 422 -webkit-box-align: center; |
| 423 -webkit-box-flex: 1; | 423 -webkit-box-flex: 1; |
| 424 -webkit-padding-end: 5px; | 424 -webkit-padding-end: 5px; |
| 425 display: -webkit-box; | 425 display: -webkit-box; |
| 426 } | 426 } |
| 427 | 427 |
| 428 list .close-button { | 428 list .close-button { |
| 429 -webkit-transition: 150ms opacity; | 429 -webkit-transition: 150ms opacity; |
| 430 background-color: transparent; | 430 background-color: transparent; |
| 431 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 431 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
| 432 background-image: url("../../../app/theme/close_bar.png"); | 432 background-image: url("../../../../ui/resources/close_bar.png"); |
| 433 border: none; | 433 border: none; |
| 434 display: block; | 434 display: block; |
| 435 height: 16px; | 435 height: 16px; |
| 436 opacity: 1; | 436 opacity: 1; |
| 437 width: 16px; | 437 width: 16px; |
| 438 } | 438 } |
| 439 | 439 |
| 440 list > *:not(:hover):not([lead]) .close-button, | 440 list > *:not(:hover):not([lead]) .close-button, |
| 441 list > *:not(:hover):not([selected]) .close-button, | 441 list > *:not(:hover):not([selected]) .close-button, |
| 442 list:not([hasElementFocus]) > *:not(:hover) .close-button, | 442 list:not([hasElementFocus]) > *:not(:hover) .close-button, |
| 443 list[disabled] .close-button, | 443 list[disabled] .close-button, |
| 444 list .close-button[disabled] { | 444 list .close-button[disabled] { |
| 445 opacity: 0; | 445 opacity: 0; |
| 446 pointer-events: none; | 446 pointer-events: none; |
| 447 } | 447 } |
| 448 | 448 |
| 449 list .close-button:hover { | 449 list .close-button:hover { |
| 450 background-image: url("../../../app/theme/close_bar_h.png"); | 450 background-image: url("../../../../ui/resources/close_bar_h.png"); |
| 451 } | 451 } |
| 452 | 452 |
| 453 list .close-button:active { | 453 list .close-button:active { |
| 454 background-image: url("../../../app/theme/close_bar_p.png"); | 454 background-image: url("../../../../ui/resources/close_bar_p.png"); |
| 455 } | 455 } |
| 456 | 456 |
| 457 list .static-text { | 457 list .static-text { |
| 458 overflow: hidden; | 458 overflow: hidden; |
| 459 text-overflow: ellipsis; | 459 text-overflow: ellipsis; |
| 460 white-space: nowrap; | 460 white-space: nowrap; |
| 461 } | 461 } |
| 462 | 462 |
| 463 list[inlineeditable] input { | 463 list[inlineeditable] input { |
| 464 box-sizing: border-box; | 464 box-sizing: border-box; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 726 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 727 } | 727 } |
| 728 | 728 |
| 729 html[dir='rtl'] .controlled-setting-bubble-text { | 729 html[dir='rtl'] .controlled-setting-bubble-text { |
| 730 background-position: right top; | 730 background-position: right top; |
| 731 } | 731 } |
| 732 | 732 |
| 733 .controlled-setting-bubble-action { | 733 .controlled-setting-bubble-action { |
| 734 padding: 0 !important; | 734 padding: 0 !important; |
| 735 } | 735 } |
| OLD | NEW |