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

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

Issue 1814513002: Fix sizing issues in the tab modal signin flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback. Created 4 years, 9 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 | « no previous file | chrome/browser/ui/cocoa/profiles/signin_view_controller_delegate_mac.mm » ('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 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 body { 5 body {
6 margin: 0; 6 margin: 0;
7 padding: 0; 7 padding: 0;
8 } 8 }
9 9
10 a { 10 a {
(...skipping 18 matching lines...) Expand all
29 -webkit-padding-start: 24px; 29 -webkit-padding-start: 24px;
30 align-items: center; 30 align-items: center;
31 border-bottom: 1px solid lightgray; 31 border-bottom: 1px solid lightgray;
32 color: #333; 32 color: #333;
33 display: flex; 33 display: flex;
34 font-size: 16px; 34 font-size: 16px;
35 height: 52px; 35 height: 52px;
36 } 36 }
37 37
38 .details { 38 .details {
39 font-size: 13px;
Dan Beam 2016/03/17 22:37:26 how does this differ from the effective font-size
anthonyvd 2016/03/18 18:01:48 This way, the font size doesn't change when Conten
Dan Beam 2016/03/18 18:10:08 a) I'm not sure I agree with "this isn't content"
39 height: 250px; 40 height: 250px;
40 padding: 20px 24px; 41 padding: 20px 24px;
41 } 42 }
42 43
43 .sync-message { 44 .sync-message {
44 color: #595959; 45 color: #595959;
45 line-height: 150%; 46 line-height: 150%;
46 padding-bottom: 32px; 47 padding-bottom: 32px;
47 } 48 }
48 49
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 @keyframes fade-in-icon-bottom-right { 318 @keyframes fade-in-icon-bottom-right {
318 from { 319 from {
319 opacity: 0; 320 opacity: 0;
320 transform: translate(0, 0); 321 transform: translate(0, 0);
321 } 322 }
322 to { 323 to {
323 opacity: 0.1; 324 opacity: 0.1;
324 transform: translate(4px, 4px); 325 transform: translate(4px, 4px);
325 } 326 }
326 } 327 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/profiles/signin_view_controller_delegate_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698