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

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: Tweak comments Created 9 years, 2 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 /* 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
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
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