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

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

Issue 5880003: fix a couple of close buttons (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 10 years 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 | « chrome/browser/gtk/extension_installed_bubble_gtk.cc ('k') | 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 body { 1 body {
2 -webkit-user-select: none; 2 -webkit-user-select: none;
3 cursor: default; 3 cursor: default;
4 font-size: 100%; 4 font-size: 100%;
5 } 5 }
6 6
7 #settings-title { 7 #settings-title {
8 -webkit-padding-end: 24px; 8 -webkit-padding-end: 24px;
9 color: #53637d; 9 color: #53637d;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 22 matching lines...) Expand all
33 bottom: 0; 33 bottom: 0;
34 z-index: 10; 34 z-index: 10;
35 padding: 20px; 35 padding: 20px;
36 display: -webkit-box; 36 display: -webkit-box;
37 -webkit-box-align: center; 37 -webkit-box-align: center;
38 -webkit-box-pack: center; 38 -webkit-box-pack: center;
39 } 39 }
40 40
41 .close-subpage { 41 .close-subpage {
42 background-color: transparent; 42 background-color: transparent;
43 /* TODO(stuartmorgan): Replace with real images once they are available. */ 43 background-image: url('chrome://theme/IDR_CLOSE_BAR');
44 background-image: url("../../../app/theme/close_bar.png");
45 border: none; 44 border: none;
46 position: relative; 45 position: relative;
47 top: 12px; 46 top: 12px;
48 height: 16px; 47 height: 16px;
49 width: 16px; 48 width: 16px;
50 } 49 }
51 50
52 .close-subpage:hover { 51 .close-subpage:hover {
53 background-image: url("../../../app/theme/close_bar_h.png"); 52 background-image: url('chrome://theme/IDR_CLOSE_BAR_H');
54 } 53 }
55 54
56 .close-subpage:active { 55 .close-subpage:active {
57 background-image: url("../../../app/theme/close_bar_p.png"); 56 background-image: url('chrome://theme/IDR_CLOSE_BAR_P');
58 } 57 }
59 58
60 html[dir='ltr'] .close-subpage { 59 html[dir='ltr'] .close-subpage {
61 float: right; 60 float: right;
62 right: 0; 61 right: 0;
63 } 62 }
64 63
65 html[dir='rtl'] .close-subpage { 64 html[dir='rtl'] .close-subpage {
66 float: left; 65 float: left;
67 left: 0; 66 left: 0;
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 label.radio > span, 507 label.radio > span,
509 .suboption { 508 .suboption {
510 -webkit-margin-start: 16px; 509 -webkit-margin-start: 16px;
511 display: block; 510 display: block;
512 } 511 }
513 512
514 html[os=mac] label.checkbox > input, 513 html[os=mac] label.checkbox > input,
515 html[os=mac] label.radio > input { 514 html[os=mac] label.radio > input {
516 margin-top: 2px; 515 margin-top: 2px;
517 } 516 }
OLDNEW
« no previous file with comments | « chrome/browser/gtk/extension_installed_bubble_gtk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698