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

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: Fix unit tests Created 4 years, 8 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/resources/sync_confirmation/sync_confirmation.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 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 {
11 color: rgb(85, 149, 254); 11 color: rgb(85, 149, 254);
12 text-decoration: none; 12 text-decoration: none;
13 } 13 }
14 14
15 .picture img { 15 .picture img {
16 border-radius: 50%; 16 border-radius: 50%;
17 max-height: 100%; 17 max-height: 100%;
18 max-width: 100%; 18 max-width: 100%;
19 } 19 }
20 20
21 .container { 21 .container {
22 background-color: white; 22 background-color: white;
23 height: 351px;
24 overflow: hidden; 23 overflow: hidden;
25 width: 448px; 24 width: 448px;
26 } 25 }
27 26
28 .top-title-bar { 27 .top-title-bar {
29 -webkit-padding-start: 24px; 28 -webkit-padding-start: 24px;
30 align-items: center; 29 align-items: center;
31 border-bottom: 1px solid lightgray; 30 border-bottom: 1px solid lightgray;
32 color: #333; 31 color: #333;
33 display: flex; 32 display: flex;
34 font-size: 16px; 33 font-size: 16px;
35 height: 52px; 34 height: 52px;
36 } 35 }
37 36
38 .details { 37 .details {
39 height: 250px; 38 font-size: 13px;
40 padding: 20px 24px; 39 padding: 20px 24px;
41 } 40 }
42 41
43 .sync-message { 42 .sync-message {
44 color: #595959; 43 color: #595959;
45 line-height: 150%; 44 line-height: 150%;
46 padding-bottom: 32px; 45 padding-bottom: 32px;
47 } 46 }
48 47
49 #picture-container { 48 #picture-container {
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 @keyframes fade-in-icon-bottom-right { 316 @keyframes fade-in-icon-bottom-right {
318 from { 317 from {
319 opacity: 0; 318 opacity: 0;
320 transform: translate(0, 0); 319 transform: translate(0, 0);
321 } 320 }
322 to { 321 to {
323 opacity: 0.1; 322 opacity: 0.1;
324 transform: translate(4px, 4px); 323 transform: translate(4px, 4px);
325 } 324 }
326 } 325 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_confirmation/sync_confirmation.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698