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

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

Issue 22855002: Remove gray line in the new user dialog and remove margin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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) 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 #manage-profile-overlay { 5 #manage-profile-overlay {
6 width: 612px; 6 width: 612px;
7 } 7 }
8 8
9 .profile-icon-grid-item { 9 .profile-icon-grid-item {
10 height: 31px; 10 height: 31px;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 max-height: 0; 54 max-height: 0;
55 padding: 0 10px; 55 padding: 0 10px;
56 } 56 }
57 57
58 #create-profile-icon-grid, 58 #create-profile-icon-grid,
59 #manage-profile-icon-grid { 59 #manage-profile-icon-grid {
60 background-color: rgba(255, 255, 255, 0.75); 60 background-color: rgba(255, 255, 255, 0.75);
61 padding: 2px; 61 padding: 2px;
62 } 62 }
63 63
64 /* Adds a grey horizontal line below content area. */
65 #create-profile-content::after,
66 #manage-profile-content::after {
67 background: #c0c0c0;
68 content: '';
69 display: block;
70 height: 1px;
71 margin-top: 25px;
72 width: 100%;
73 }
74
75 :-webkit-any(#create-profile-content, #manage-profile-content) > 64 :-webkit-any(#create-profile-content, #manage-profile-content) >
76 :not(:last-child) { 65 :not(:last-child) {
77 margin-bottom: 10px; 66 margin-bottom: 10px;
78 } 67 }
79 68
80 :-webkit-any(#create-profile-content, #manage-profile-content) > 69 :-webkit-any(#create-profile-content, #manage-profile-content) >
81 :not(:first-child) { 70 :not(:first-child) {
82 margin-top: 10px; 71 margin-top: 10px;
83 } 72 }
84 73
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 107
119 #create-profile-managed-not-signed-in { 108 #create-profile-managed-not-signed-in {
120 color: #999; 109 color: #999;
121 } 110 }
122 111
123 #create-profile-managed-not-signed-in-label, 112 #create-profile-managed-not-signed-in-label,
124 #create-profile-managed-account-details-out-of-date-label { 113 #create-profile-managed-account-details-out-of-date-label {
125 white-space: pre-wrap; 114 white-space: pre-wrap;
126 word-wrap: break-word; 115 word-wrap: break-word;
127 } 116 }
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