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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 7582008: [cros] Various WebUI OOBE issues (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed pointer and font size Created 9 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 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 * 4 *
5 * This is the stylesheet used by the Out of the box experience (OOBE) flow. 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow.
6 */ 6 */
7 7
8 body { 8 body {
9 background: -webkit-gradient(radial, center center, 0, center center, 400, 9 background: -webkit-gradient(radial, center center, 0, center center, 400,
10 from(#fefefe), to(#efefef)); 10 from(#fefefe), to(#efefef));
(...skipping 18 matching lines...) Expand all
29 position: relative; 29 position: relative;
30 width: 640px; 30 width: 640px;
31 } 31 }
32 32
33 #security-info a, 33 #security-info a,
34 #eula a { 34 #eula a {
35 color: #006668; 35 color: #006668;
36 text-decoration: none; 36 text-decoration: none;
37 } 37 }
38 38
39 #eula #stats-help-link {
40 color: #316ac5;
xiyuan 2011/08/05 18:46:58 do we still need "#eula a" above?
whywhat 2011/08/08 06:22:53 I guess we need it if it affects links in EULA ifr
41 }
42
39 hr.topshadow { 43 hr.topshadow {
40 -webkit-mask: -webkit-linear-gradient(left, rgba(0,0,0,0), 44 -webkit-mask: -webkit-linear-gradient(left, rgba(0,0,0,0),
41 black 50%, rgba(0,0,0,0)); 45 black 50%, rgba(0,0,0,0));
42 -webkit-mask-clip: padding-box; 46 -webkit-mask-clip: padding-box;
43 background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0)); 47 background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0));
44 border: none; 48 border: none;
45 border-top: 1px solid rgba(0,0,0,0.5); 49 border-top: 1px solid rgba(0,0,0,0.5);
46 height: 4px; 50 height: 4px;
47 opacity: 0.3; 51 opacity: 0.3;
48 } 52 }
(...skipping 14 matching lines...) Expand all
63 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat; 67 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat;
64 background-size: 48px; 68 background-size: 48px;
65 color: #737373; 69 color: #737373;
66 display: -webkit-box; 70 display: -webkit-box;
67 font-size: 20px; 71 font-size: 20px;
68 height: 48px; 72 height: 48px;
69 line-height: 48px; 73 line-height: 48px;
70 padding-left: 54px; 74 padding-left: 54px;
71 } 75 }
72 76
77 #header span,
78 #logging span,
79 #user-image-screen-curtain p,
80 .label {
81 cursor: default;
xiyuan 2011/08/05 18:46:58 Can we put this into body instead of specifying th
whywhat 2011/08/08 06:22:53 Won't it break the right cursor for links and othe
82 }
83
73 #header-sections { 84 #header-sections {
74 position: relative; 85 position: relative;
75 } 86 }
76 87
77 .header-section:before { 88 .header-section:before {
78 /* Divider in header between product name and title, 89 /* Divider in header between product name and title,
79 like "[Product name] > [step header]" */ 90 like "[Product name] > [step header]" */
80 content: "\00A0\203A\00A0\00A0"; 91 content: "\00A0\203A\00A0\00A0";
81 } 92 }
82 93
83 .header-section { 94 .header-section {
84 -webkit-transition: left .2s, opacity .2s ease-in-out; 95 -webkit-transition: left .2s, opacity .2s ease-in-out;
85 position: absolute; 96 position: absolute;
97 text-transform: lowercase;
86 width: 20em; 98 width: 20em;
87 } 99 }
88 100
89 .header-section.right { 101 .header-section.right {
90 left: 50px; 102 left: 50px;
91 } 103 }
92 104
93 .header-section.left { 105 .header-section.left {
94 left: -20px; 106 left: -20px;
95 } 107 }
96 108
109
97 .step { 110 .step {
98 -webkit-transition: left .2s, opacity .2s, visibility .2s ease-in-out; 111 -webkit-transition: left .2s, opacity .2s, visibility .2s ease-in-out;
99 left: 0; 112 left: 0;
100 min-height: 294px; 113 min-height: 294px;
101 opacity: 1; 114 opacity: 1;
102 position: absolute; 115 position: absolute;
103 width: 640px; 116 width: 640px;
104 } 117 }
105 118
106 .step.right { 119 .step.right {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 width: 250px; 172 width: 250px;
160 } 173 }
161 174
162 #connect { 175 #connect {
163 box-sizing: border-box; 176 box-sizing: border-box;
164 padding: 60px 0 0 145px; 177 padding: 60px 0 0 145px;
165 } 178 }
166 179
167 #logging { 180 #logging {
168 clear: both; 181 clear: both;
182 font-size: small;
169 margin-top: 20px; 183 margin-top: 20px;
170 } 184 }
171 185
172 #user-image-list { 186 #user-image-list {
173 display: inline-block; 187 display: inline-block;
174 width: 360px; 188 width: 360px;
175 } 189 }
176 190
177 #user-image-list img { 191 #user-image-list img {
178 border-radius: 4px; 192 border-radius: 4px;
(...skipping 11 matching lines...) Expand all
190 #user-image-preview { 204 #user-image-preview {
191 border-radius: 4px; 205 border-radius: 4px;
192 float: right; 206 float: right;
193 height: 250px; 207 height: 250px;
194 margin: 4px; 208 margin: 4px;
195 width: 250px; 209 width: 250px;
196 } 210 }
197 211
198 #footer button { 212 #footer button {
199 display: none; 213 display: none;
214 height: 29px;
200 } 215 }
201 216
202 #oobe.connect #continue-button, 217 #oobe.connect #continue-button,
203 #oobe.eula #back-button, 218 #oobe.eula #back-button,
204 #oobe.eula #accept-button, 219 #oobe.eula #accept-button,
205 #oobe.signin #signin-button, 220 #oobe.signin #signin-button,
206 #oobe.user-image #ok-button { 221 #oobe.user-image #ok-button {
207 display: inline-block; 222 display: inline-block;
208 } 223 }
209 224
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 } 275 }
261 276
262 .eula-frame { 277 .eula-frame {
263 border: none; 278 border: none;
264 height: 200px; 279 height: 200px;
265 margin-right: 10px; 280 margin-right: 10px;
266 padding: 0 0 0 5px; 281 padding: 0 0 0 5px;
267 width: 310px; 282 width: 310px;
268 } 283 }
269 284
285 #cros-eula,
286 #oem-eula {
287 border: 1px solid #d9d9d9;
288 }
289
270 #eulas.one-column #cros-eula { 290 #eulas.one-column #cros-eula {
271 width: 100%; 291 width: 100%;
272 } 292 }
273 293
274 #eulas.one-column #cros-eula-frame { 294 #eulas.one-column #cros-eula-frame {
275 width: 100%; 295 width: 100%;
276 } 296 }
277 297
278 #eulas.one-column #oem-eula { 298 #eulas.one-column #oem-eula {
279 display: none; 299 display: none;
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 #version-labels { 547 #version-labels {
528 -webkit-transition: all .5s linear; 548 -webkit-transition: all .5s linear;
529 bottom: 10px; 549 bottom: 10px;
530 color: #999; 550 color: #999;
531 font-size: 11px; 551 font-size: 11px;
532 left: 10px; 552 left: 10px;
533 opacity: 1.0; 553 opacity: 1.0;
534 position: absolute; 554 position: absolute;
535 text-shadow: 0 1px 1px #fff; 555 text-shadow: 0 1px 1px #fff;
536 } 556 }
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