Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 7926010: Fix X button size of subpage for touch ui (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Use full rules in pp_ifdef and only one pp_ifdef for entire rules Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698