| OLD | NEW |
| 1 #main-content { | 1 #main-content { |
| 2 display: -webkit-box; | 2 display: -webkit-box; |
| 3 position: absolute; | 3 position: absolute; |
| 4 left: 0; | 4 left: 0; |
| 5 right: 0; | 5 right: 0; |
| 6 top: 0; | 6 top: 0; |
| 7 bottom: 0; | 7 bottom: 0; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #mainview { | 10 #mainview { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 .raw-button:active { | 150 .raw-button:active { |
| 151 -webkit-box-shadow: none; | 151 -webkit-box-shadow: none; |
| 152 background-color: transparent; | 152 background-color: transparent; |
| 153 background-repeat: no-repeat; | 153 background-repeat: no-repeat; |
| 154 border: none; | 154 border: none; |
| 155 min-width: 0; | 155 min-width: 0; |
| 156 padding: 1px 6px; | 156 padding: 1px 6px; |
| 157 } | 157 } |
| 158 | 158 |
| 159 .close-subpage { | 159 .close-subpage { |
| 160 background-image: url('chrome://theme/IDR_CLOSE_BAR'); | 160 background-image: url('../../../../ui/resources/close_bar.png'); |
| 161 height: 16px; | 161 height: 16px; |
| 162 min-width: 0; | 162 min-width: 0; |
| 163 position: relative; | 163 position: relative; |
| 164 top: 16px; | 164 top: 16px; |
| 165 width: 16px; | 165 width: 16px; |
| 166 } | 166 } |
| 167 | 167 |
| 168 .close-subpage:hover { | 168 .close-subpage:hover { |
| 169 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 169 background-image: url('../../../../ui/resources/close_bar_h.png'); |
| 170 } | 170 } |
| 171 | 171 |
| 172 .close-subpage:active { | 172 .close-subpage:active { |
| 173 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 173 background-image: url('../../../../ui/resources/close_bar_p.png'); |
| 174 } | 174 } |
| 175 | 175 |
| 176 html[dir='ltr'] .close-subpage { | 176 html[dir='ltr'] .close-subpage { |
| 177 float: right; | 177 float: right; |
| 178 right: 20px; | 178 right: 20px; |
| 179 } | 179 } |
| 180 | 180 |
| 181 html[dir='rtl'] .close-subpage { | 181 html[dir='rtl'] .close-subpage { |
| 182 float: left; | 182 float: left; |
| 183 left: 20px; | 183 left: 20px; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 -webkit-box-align: center; | 468 -webkit-box-align: center; |
| 469 -webkit-box-flex: 1; | 469 -webkit-box-flex: 1; |
| 470 -webkit-padding-end: 5px; | 470 -webkit-padding-end: 5px; |
| 471 display: -webkit-box; | 471 display: -webkit-box; |
| 472 } | 472 } |
| 473 | 473 |
| 474 list .close-button { | 474 list .close-button { |
| 475 -webkit-transition: 150ms opacity; | 475 -webkit-transition: 150ms opacity; |
| 476 background-color: transparent; | 476 background-color: transparent; |
| 477 /* TODO(stuartmorgan): Replace with real images once they are available. */ | 477 /* TODO(stuartmorgan): Replace with real images once they are available. */ |
| 478 background-image: url("../../../app/theme/close_bar.png"); | 478 background-image: url("../../../../ui/resources/close_bar.png"); |
| 479 border: none; | 479 border: none; |
| 480 display: block; | 480 display: block; |
| 481 height: 16px; | 481 height: 16px; |
| 482 opacity: 1; | 482 opacity: 1; |
| 483 width: 16px; | 483 width: 16px; |
| 484 } | 484 } |
| 485 | 485 |
| 486 list > *:not(:hover):not([lead]) .close-button, | 486 list > *:not(:hover):not([lead]) .close-button, |
| 487 list > *:not(:hover):not([selected]) .close-button, | 487 list > *:not(:hover):not([selected]) .close-button, |
| 488 list:not([hasElementFocus]) > *:not(:hover) .close-button, | 488 list:not([hasElementFocus]) > *:not(:hover) .close-button, |
| 489 list[disabled] .close-button, | 489 list[disabled] .close-button, |
| 490 list .close-button[disabled] { | 490 list .close-button[disabled] { |
| 491 opacity: 0; | 491 opacity: 0; |
| 492 pointer-events: none; | 492 pointer-events: none; |
| 493 } | 493 } |
| 494 | 494 |
| 495 list .close-button:hover { | 495 list .close-button:hover { |
| 496 background-image: url("../../../app/theme/close_bar_h.png"); | 496 background-image: url("../../../../ui/resources/close_bar_h.png"); |
| 497 } | 497 } |
| 498 | 498 |
| 499 list .close-button:active { | 499 list .close-button:active { |
| 500 background-image: url("../../../app/theme/close_bar_p.png"); | 500 background-image: url("../../../../ui/resources/close_bar_p.png"); |
| 501 } | 501 } |
| 502 | 502 |
| 503 list .static-text { | 503 list .static-text { |
| 504 overflow: hidden; | 504 overflow: hidden; |
| 505 text-overflow: ellipsis; | 505 text-overflow: ellipsis; |
| 506 white-space: nowrap; | 506 white-space: nowrap; |
| 507 } | 507 } |
| 508 | 508 |
| 509 list[inlineeditable] input { | 509 list[inlineeditable] input { |
| 510 box-sizing: border-box; | 510 box-sizing: border-box; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 736 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
| 737 } | 737 } |
| 738 | 738 |
| 739 html[dir='rtl'] .controlled-setting-bubble-text { | 739 html[dir='rtl'] .controlled-setting-bubble-text { |
| 740 background-position: right top; | 740 background-position: right top; |
| 741 } | 741 } |
| 742 | 742 |
| 743 .controlled-setting-bubble-action { | 743 .controlled-setting-bubble-action { |
| 744 padding: 0 !important; | 744 padding: 0 !important; |
| 745 } | 745 } |
| OLD | NEW |