Chromium Code Reviews| 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 <if expr="pp_ifdef('touchui')"> /* CSS rules for touchui builds. */ | |
| 66 .close-subpage { /* In TOUCH_UI builds, the IDR_CLOSE_BAR resource is double- size. */ | |
|
Rick Byers
2011/09/22 13:30:10
Line too long (80 column limit).
I suggest moving
bshe
2011/09/22 13:47:49
Done.
| |
| 67 height: 32px; | |
| 68 width: 32px; | |
| 69 } | |
| 70 </if> | |
| 71 | |
| 65 .close-subpage:hover { | 72 .close-subpage:hover { |
| 66 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); | 73 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); |
| 67 } | 74 } |
| 68 | 75 |
| 69 .close-subpage:active { | 76 .close-subpage:active { |
| 70 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); | 77 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); |
| 71 } | 78 } |
| 72 | 79 |
| 73 html[dir='ltr'] .close-subpage { | 80 html[dir='ltr'] .close-subpage { |
| 74 float: right; | 81 float: right; |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 580 display: table-cell; | 587 display: table-cell; |
| 581 vertical-align: baseline; | 588 vertical-align: baseline; |
| 582 border-bottom: 1px solid #eeeeee; | 589 border-bottom: 1px solid #eeeeee; |
| 583 } | 590 } |
| 584 | 591 |
| 585 /* do not display a border after the last section in the table */ | 592 /* do not display a border after the last section in the table */ |
| 586 .displaytable:not([searching='true']) > section:last-child > * { | 593 .displaytable:not([searching='true']) > section:last-child > * { |
| 587 border-bottom: none; | 594 border-bottom: none; |
| 588 } | 595 } |
| 589 | 596 |
| OLD | NEW |