| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 .raw-button:active { | 89 .raw-button:active { |
| 90 -webkit-box-shadow: none; | 90 -webkit-box-shadow: none; |
| 91 background-color: transparent; | 91 background-color: transparent; |
| 92 background-repeat: no-repeat; | 92 background-repeat: no-repeat; |
| 93 border: none; | 93 border: none; |
| 94 min-width: 0; | 94 min-width: 0; |
| 95 padding: 1px 6px; | 95 padding: 1px 6px; |
| 96 } | 96 } |
| 97 | 97 |
| 98 .close-subpage { | 98 .close-subpage { |
| 99 background-image: url('chrome://theme/IDR_CLOSE_BAR'); | 99 background-image: url('../../../../ui/resources/close_bar.png'); |
| 100 height: 16px; | 100 height: 16px; |
| 101 min-width: 0; | 101 min-width: 0; |
| 102 position: relative; | 102 position: relative; |
| 103 top: 16px; | 103 top: 16px; |
| 104 width: 16px; | 104 width: 16px; |
| 105 } | 105 } |
| 106 | 106 |
| 107 .close-subpage:hover { | 107 .close-subpage:hover { |
| 108 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 108 background-image: url('../../../../ui/resources/close_bar_h.png'); |
| 109 } | 109 } |
| 110 | 110 |
| 111 .close-subpage:active { | 111 .close-subpage:active { |
| 112 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 112 background-image: url('../../../../ui/resources/close_bar_p.png'); |
| 113 } | 113 } |
| 114 | 114 |
| 115 html[dir='ltr'] .close-subpage { | 115 html[dir='ltr'] .close-subpage { |
| 116 float: right; | 116 float: right; |
| 117 right: 20px; | 117 right: 20px; |
| 118 } | 118 } |
| 119 | 119 |
| 120 html[dir='rtl'] .close-subpage { | 120 html[dir='rtl'] .close-subpage { |
| 121 float: left; | 121 float: left; |
| 122 left: 20px; | 122 left: 20px; |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 -webkit-box-align: center; | 429 -webkit-box-align: center; |
| 430 -webkit-box-flex: 1; | 430 -webkit-box-flex: 1; |
| 431 -webkit-padding-end: 5px; | 431 -webkit-padding-end: 5px; |
| 432 display: -webkit-box; | 432 display: -webkit-box; |
| 433 } | 433 } |
| 434 | 434 |
| 435 list .close-button { | 435 list .close-button { |
| 436 -webkit-transition: 150ms opacity; | 436 -webkit-transition: 150ms opacity; |
| 437 background-color: transparent; | 437 background-color: transparent; |
| 438 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 438 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
| 439 background-image: url("../../../app/theme/close_bar.png"); | 439 background-image: url("../../../../ui/resources/close_bar.png"); |
| 440 border: none; | 440 border: none; |
| 441 display: block; | 441 display: block; |
| 442 height: 16px; | 442 height: 16px; |
| 443 opacity: 1; | 443 opacity: 1; |
| 444 width: 16px; | 444 width: 16px; |
| 445 } | 445 } |
| 446 | 446 |
| 447 list > *:not(:hover):not([lead]) .close-button, | 447 list > *:not(:hover):not([lead]) .close-button, |
| 448 list > *:not(:hover):not([selected]) .close-button, | 448 list > *:not(:hover):not([selected]) .close-button, |
| 449 list:not([hasElementFocus]) > *:not(:hover) .close-button, | 449 list:not([hasElementFocus]) > *:not(:hover) .close-button, |
| 450 list[disabled] .close-button, | 450 list[disabled] .close-button, |
| 451 list .close-button[disabled] { | 451 list .close-button[disabled] { |
| 452 opacity: 0; | 452 opacity: 0; |
| 453 pointer-events: none; | 453 pointer-events: none; |
| 454 } | 454 } |
| 455 | 455 |
| 456 list .close-button:hover { | 456 list .close-button:hover { |
| 457 background-image: url("../../../app/theme/close_bar_h.png"); | 457 background-image: url("../../../../ui/resources/close_bar_h.png"); |
| 458 } | 458 } |
| 459 | 459 |
| 460 list .close-button:active { | 460 list .close-button:active { |
| 461 background-image: url("../../../app/theme/close_bar_p.png"); | 461 background-image: url("../../../../ui/resources/close_bar_p.png"); |
| 462 } | 462 } |
| 463 | 463 |
| 464 list .static-text { | 464 list .static-text { |
| 465 overflow: hidden; | 465 overflow: hidden; |
| 466 text-overflow: ellipsis; | 466 text-overflow: ellipsis; |
| 467 white-space: nowrap; | 467 white-space: nowrap; |
| 468 } | 468 } |
| 469 | 469 |
| 470 list[inlineeditable] input { | 470 list[inlineeditable] input { |
| 471 box-sizing: border-box; | 471 box-sizing: border-box; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 733 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 734 } | 734 } |
| 735 | 735 |
| 736 html[dir='rtl'] .controlled-setting-bubble-text { | 736 html[dir='rtl'] .controlled-setting-bubble-text { |
| 737 background-position: right top; | 737 background-position: right top; |
| 738 } | 738 } |
| 739 | 739 |
| 740 .controlled-setting-bubble-action { | 740 .controlled-setting-bubble-action { |
| 741 padding: 0 !important; | 741 padding: 0 !important; |
| 742 } | 742 } |
| OLD | NEW |