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

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

Issue 7399015: Sync Promo: Add a way to collapse the sync promo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extra changes Created 9 years, 5 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
OLDNEW
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 #sync-promo {
7 margin-top: 0px;
8 width:100%;
James Hawkins 2011/07/18 02:37:36 Space after colon, here and elsewhere.
sail 2011/07/20 01:30:46 Done.
9 background-color: #F6F6F6;
James Hawkins 2011/07/18 02:37:36 Lower-case letters for hex color.
James Hawkins 2011/07/18 02:37:36 Alphabetize properties, here and elsewhere.
sail 2011/07/20 01:30:46 Done.
sail 2011/07/20 01:30:46 Done.
10 border-bottom:solid 1px #DBDBDB;
11 position: fixed;
12 }
13
14 #sync-promo-contents {
15 max-width: 850px;
16 margin-left: auto;
17 margin-right: auto;
18 }
19
20 #sync-promo-toggle {
21 margin-left: auto;
22 margin-right: auto;
23 width: 12px;
24 margin-bottom: 2px;
25 }
26
27 #sync-promo.collapsed #sync-promo-toggle-button {
28 -webkit-transform: rotate(180deg);
29 }
30
31 #sync-setup-configure {
32 max-width: 475px;
33 margin-left: auto;
34 margin-right: auto;
35 }
36
37 #sync-setup-login-summary-title {
38 font-weight: bold;
39 font-size: 115%;
40 }
41
42 #sync-setup-login-left-column {
43 padding: 30px;
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698