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

Side by Side Diff: chrome/browser/resources/sync_promo/sync_promo.css

Issue 9225053: Add a blocking version of the sync promo dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 8 years, 10 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 | chrome/browser/resources/sync_promo/sync_promo.js » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 5
6 html { 6 html {
7 font-family: segoe ui, arial, helvetica, sans-serif; 7 font-family: segoe ui, arial, helvetica, sans-serif;
8 font-size: 13px; 8 font-size: 13px;
9 } 9 }
10 10
11 html, body { 11 html, body {
12 margin: 0; 12 margin: 0;
13 min-height: 100%; 13 min-height: 100%;
14 min-width: 100%; 14 min-width: 100%;
15 padding 0; 15 padding 0;
16 position: absolute; 16 position: absolute;
17 } 17 }
18 18
19 body {
20 -webkit-transition: all 0.2s;
21 opacity: 0;
22 }
23
24 body.loaded {
25 opacity: 1;
26 }
27
19 html[promo-version='0'] body { 28 html[promo-version='0'] body {
20 background-image: -webkit-linear-gradient( 29 background-image: -webkit-linear-gradient(
21 rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.04)); 30 rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.04));
22 } 31 }
23 32
24 #sync-setup-overlay { 33 #sync-setup-overlay {
25 background-color: transparent; 34 background-color: transparent;
26 margin: 0; 35 margin: 0;
27 width: 100%; 36 width: 100%;
28 } 37 }
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 } 119 }
111 120
112 #promo-skip-button { 121 #promo-skip-button {
113 -webkit-margin-end: 25px; 122 -webkit-margin-end: 25px;
114 } 123 }
115 124
116 /* Page Title. ****************************************************************/ 125 /* Page Title. ****************************************************************/
117 126
118 #promo-title-container { 127 #promo-title-container {
119 display: block; 128 display: block;
120 margin-bottom: 35px; 129 margin: 37px 44px 35px;
121 margin-top: 37px;
122 text-align: center; 130 text-align: center;
123 } 131 }
124 132
125 html[promo-version='1'] #promo-title-container,
126 html[promo-version='3'] #promo-title-container {
127 margin-top: 41px;
128 }
129
130 html[promo-version='2'] #promo-title-container { 133 html[promo-version='2'] #promo-title-container {
131 display: none; 134 display: none;
132 } 135 }
133 136
134 h1 { 137 h1 {
135 color: rgb(34, 34, 34); 138 color: rgb(34, 34, 34);
136 font-size: 27px; 139 font-size: 27px;
137 font-weight: normal; 140 font-weight: normal;
138 margin: 0; 141 margin: 0;
139 } 142 }
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 309
307 html[promo-version='0'] #sync-setup-login-promo-column-0, 310 html[promo-version='0'] #sync-setup-login-promo-column-0,
308 html[promo-version='1'] #sync-setup-login-promo-column-1, 311 html[promo-version='1'] #sync-setup-login-promo-column-1,
309 html[promo-version='2'] #sync-setup-login-promo-column-2 { 312 html[promo-version='2'] #sync-setup-login-promo-column-2 {
310 display: block; 313 display: block;
311 } 314 }
312 315
313 #sync-setup-login-promo-column { 316 #sync-setup-login-promo-column {
314 -webkit-margin-end: 385px; 317 -webkit-margin-end: 385px;
315 } 318 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_promo/sync_promo.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698