| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 .close-subpage { | 56 .close-subpage { |
| 57 background-image: url('chrome://theme/IDR_CLOSE_BAR'); | 57 background-image: url('chrome://theme/IDR_CLOSE_BAR'); |
| 58 height: 16px; | 58 height: 16px; |
| 59 min-width: 0; | 59 min-width: 0; |
| 60 position: relative; | 60 position: relative; |
| 61 top: 16px; | 61 top: 16px; |
| 62 width: 16px; | 62 width: 16px; |
| 63 } | 63 } |
| 64 | 64 |
| 65 /* In TOUCH_UI builds, the IDR_CLOSE_BAR resource is double-size. */ |
| 66 <if expr="pp_ifdef('touchui')"> |
| 67 .close-subpage { |
| 68 height: 32px; |
| 69 width: 32px; |
| 70 } |
| 71 </if> |
| 72 |
| 65 .close-subpage:hover { | 73 .close-subpage:hover { |
| 66 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 74 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); |
| 67 } | 75 } |
| 68 | 76 |
| 69 .close-subpage:active { | 77 .close-subpage:active { |
| 70 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 78 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); |
| 71 } | 79 } |
| 72 | 80 |
| 73 html[dir='ltr'] .close-subpage { | 81 html[dir='ltr'] .close-subpage { |
| 74 float: right; | 82 float: right; |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 display: table-cell; | 588 display: table-cell; |
| 581 vertical-align: baseline; | 589 vertical-align: baseline; |
| 582 border-bottom: 1px solid #eeeeee; | 590 border-bottom: 1px solid #eeeeee; |
| 583 } | 591 } |
| 584 | 592 |
| 585 /* do not display a border after the last section in the table */ | 593 /* do not display a border after the last section in the table */ |
| 586 .displaytable:not([searching='true']) > section:last-child > * { | 594 .displaytable:not([searching='true']) > section:last-child > * { |
| 587 border-bottom: none; | 595 border-bottom: none; |
| 588 } | 596 } |
| 589 | 597 |
| OLD | NEW |