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

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

Issue 3146030: Changing options page so it is in the center, has less padding, a drop shadow... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 body { 1 body {
2 font-size: 100%; 2 font-size: 100%;
3 -webkit-user-select: none; 3 -webkit-user-select: none;
4 } 4 }
5 5
6 #settings-title { 6 #settings-title {
7 -webkit-padding-end: 24px; 7 -webkit-padding-end: 24px;
8 padding-top: 1em; 8 padding-top: 1em;
9 padding-bottom: 1em; 9 padding-bottom: 1em;
10 text-align: end; 10 text-align: end;
11 font-size: 125%; 11 font-size: 125%;
12 font-weight: normal; 12 font-weight: normal;
13 color: #53627d; 13 color: #53627d;
14 margin: 0; 14 margin: 0;
15 } 15 }
16 16
17 #main-content { 17 #main-content {
18 display: -webkit-box; 18 display: -webkit-box;
19 position: absolute; 19 position: absolute;
20 left: 0; 20 left: 0;
21 right: 0; 21 right: 0;
22 top: 0; 22 top: 0;
23 bottom: 0; 23 bottom: 0;
24 } 24 }
25 25
26 .overlay { 26 .overlay {
27 position: fixed; 27 position: fixed;
28 left: 0; 28 left: 0;
29 right: 0; 29 right: 0;
30 background: rgba(0, 0, 0, .5); 30 background: rgba(0, 0, 0, .2);
31 top: 0; 31 top: 0;
32 bottom: 0; 32 bottom: 0;
33 z-index: 10; 33 z-index: 10;
34 padding: 20px; 34 padding: 20px;
35 display: -webkit-box; 35 display: -webkit-box;
36 -webkit-box-align: start; 36 -webkit-box-align: center;
37 -webkit-box-pack: center; 37 -webkit-box-pack: center;
38 } 38 }
39 39
40 #close-overlay { 40 #close-overlay {
41 position: relative; 41 position: relative;
42 top: -20px; 42 top: -20px;
43 width: 20px; 43 width: 20px;
44 height: 20px; 44 height: 20px;
45 } 45 }
46 46
47 html[dir='ltr'] #close-overlay { 47 html[dir='ltr'] #close-overlay {
48 float: right; 48 float: right;
49 right: -20px; 49 right: -20px;
50 } 50 }
51 51
52 html[dir='rtl'] #close-overlay { 52 html[dir='rtl'] #close-overlay {
53 float: left; 53 float: left;
54 left: -20px; 54 left: -20px;
55 } 55 }
56 56
57 .overlay .button-strip { 57 .overlay .button-strip {
58 text-align: end; 58 text-align: end;
59 } 59 }
60 60
61 .overlay > div { 61 .overlay > div {
62 background: white; 62 background: white;
63 border-radius: 5px; 63 border-radius: 5px;
64 padding: 30px; 64 padding: 15px;
65 border: 1px solid #666;
66 -webkit-box-shadow: 3px 3px 3px #666;
65 } 67 }
66 68
67 #navbar { 69 #navbar {
68 margin: 0; 70 margin: 0;
69 } 71 }
70 72
71 #navbar-container { 73 #navbar-container {
72 background: -webkit-gradient(linear, 74 background: -webkit-gradient(linear,
73 left top, 75 left top,
74 left bottom, 76 left bottom,
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 } 295 }
294 296
295 .favicon-cell { 297 .favicon-cell {
296 background-position: left; 298 background-position: left;
297 background-repeat: no-repeat; 299 background-repeat: no-repeat;
298 -webkit-padding-start: 20px; 300 -webkit-padding-start: 20px;
299 } 301 }
300 html[dir=rtl] .favicon-cell { 302 html[dir=rtl] .favicon-cell {
301 background-position: right; 303 background-position: right;
302 } 304 }
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