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

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

Issue 3056042: Make the width of overlay pages flexible. (Closed)
Patch Set: get rid of overlayview 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
« no previous file with comments | « chrome/browser/resources/options.html ('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 #settings-title { 1 #settings-title {
2 height: 30px; 2 height: 30px;
3 -webkit-padding-end: 15px; 3 -webkit-padding-end: 15px;
4 padding-top: 20px; 4 padding-top: 20px;
5 text-align: end; 5 text-align: end;
6 font-size: 140%; 6 font-size: 140%;
7 color: #c7c7c7; 7 color: #c7c7c7;
8 } 8 }
9 9
10 #main-content { 10 #main-content {
11 display: -webkit-box; 11 display: -webkit-box;
12 position: absolute; 12 position: absolute;
13 left: 0; 13 left: 0;
14 right: 0; 14 right: 0;
15 top: 0; 15 top: 0;
16 bottom: 0; 16 bottom: 0;
17 } 17 }
18 18
19 .overlay { 19 .overlay {
20 position: fixed; 20 position: fixed;
21 left: 0; 21 left: 0;
22 right: 0; 22 right: 0;
23 background: rgba(0, 0, 0, .5); 23 background: rgba(0, 0, 0, .5);
24 top: 0; 24 top: 0;
25 bottom: 0; 25 bottom: 0;
26 z-index: 10; 26 z-index: 10;
27 padding: 20px; 27 padding: 20px;
28 display: -webkit-box;
29 -webkit-box-align: start;
30 -webkit-box-pack: center;
28 } 31 }
29 32
30 #close-overlay { 33 #close-overlay {
31 position: relative; 34 position: relative;
32 top: -20px; 35 top: -20px;
33 width: 20px; 36 width: 20px;
34 height: 20px; 37 height: 20px;
35 } 38 }
36 39
37 html[dir='ltr'] #close-overlay { 40 html[dir='ltr'] #close-overlay {
38 float: right; 41 float: right;
39 right: -20px; 42 right: -20px;
40 } 43 }
41 44
42 html[dir='rtl'] #close-overlay { 45 html[dir='rtl'] #close-overlay {
43 float: left; 46 float: left;
44 left: -20px; 47 left: -20px;
45 } 48 }
46 49
47 #overlayview .button-strip { 50 .overlay .button-strip {
48 text-align: end; 51 text-align: end;
49 } 52 }
50 53
51 #overlayview { 54 .overlay > div {
52 background: white; 55 background: white;
53 border-radius: 5px; 56 border-radius: 5px;
54 padding: 30px; 57 padding: 30px;
55 } 58 }
56 59
57 #navbar-container { 60 #navbar-container {
58 background: -webkit-gradient(linear, 61 background: -webkit-gradient(linear,
59 left top, 62 left top,
60 left bottom, 63 left bottom,
61 from(rgba(255,255,255,0)), 64 from(rgba(255,255,255,0)),
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 display: none; 176 display: none;
174 } 177 }
175 178
176 .touch-slider { 179 .touch-slider {
177 -webkit-appearance: slider-horizontal; 180 -webkit-appearance: slider-horizontal;
178 } 181 }
179 182
180 input[type="checkbox"] { 183 input[type="checkbox"] {
181 margin-top: 6px; 184 margin-top: 6px;
182 } 185 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698