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

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

Issue 1806353002: Enhanced Sync Confirmation modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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(51, 103, 214);
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; 23 color: #333;
24 overflow: hidden; 24 overflow: hidden;
25 width: 448px; 25 width: 448px;
26 } 26 }
27 27
28 .top-title-bar { 28 .top-title-bar {
29 -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;
33 display: flex; 31 display: flex;
34 font-size: 16px; 32 font-size: 16px;
35 height: 52px; 33 height: 52px;
34 padding: 0 24px;
36 } 35 }
37 36
38 .details { 37 .details {
39 height: 250px; 38 padding: 0 24px;
40 padding: 20px 24px;
41 }
42
43 .sync-message {
44 color: #595959;
45 line-height: 150%;
46 padding-bottom: 32px;
47 } 39 }
48 40
49 #picture-container { 41 #picture-container {
50 align-items: center; 42 align-items: center;
51 display: flex; 43 display: flex;
52 justify-content: center; 44 justify-content: center;
53 padding-bottom: 32px; 45 padding-bottom: 32px;
46 padding-top: 24px;
54 } 47 }
55 48
56 .picture { 49 .picture {
57 -webkit-margin-start: 84px; 50 -webkit-margin-start: 84px;
58 height: 96px; 51 height: 96px;
59 position: relative; 52 position: relative;
60 width: 96px; 53 width: 96px;
61 } 54 }
62 55
63 #profile-picture, 56 #profile-picture,
64 .checkmark-circle { 57 .checkmark-circle {
65 position: absolute; 58 position: absolute;
66 } 59 }
67 60
61 .message-container {
62 display: flex;
63 margin-bottom: 16px;
64 }
65
66 .message-container:last-child {
67 margin-bottom: 32px;
68 }
69
70 .message-container .logo {
71 -webkit-margin-end: 20px;
72 background-size: cover;
73 flex-shrink: 0;
74 height: 20px;
75 width: 20px;
76 }
77
78 #chrome-logo {
79 background-image: url(../../../../ui/webui/resources/images/200-logo_chrome.pn g);
80 }
81
82 #googleg-logo {
83 background-image: url(../../../../ui/webui/resources/images/200-logo_googleg.p ng);
84 }
85
86 .message-container .title {
87 font-weight: 500;
88 margin-bottom: 4px;
89 }
90
91 .message-container .body {
92 color: #646464;
93 }
94
95 .message-container .text {
96 line-height: 20px;
97 }
98
99 .message-container paper-checkbox {
100 -webkit-margin-start: 40px;
101 }
102
103 .message-container paper-checkbox::shadow #checkboxContainer {
104 height: 20px;
105 width: 20px;
106 }
107
108 .message-container paper-checkbox::shadow #checkbox {
109 border-color: #646464;
110 }
111
112 .message-container paper-checkbox::shadow #checkboxLabel {
113 color: inherit;
114 }
115
68 .action-container { 116 .action-container {
69 align-items: baseline;
70 display: flex; 117 display: flex;
71 justify-content: flex-end; 118 justify-content: flex-end;
119 padding: 16px;
72 } 120 }
73 121
74 paper-button { 122 paper-button {
75 font-weight: 500; 123 font-weight: 500;
76 line-height: 16px; 124 line-height: 16px;
77 margin: 0; 125 margin: 0;
78 padding: 8px 16px; 126 padding: 8px 16px;
79 } 127 }
80 128
81 paper-button + paper-button { 129 paper-button + paper-button {
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 @keyframes fade-in-icon-bottom-right { 365 @keyframes fade-in-icon-bottom-right {
318 from { 366 from {
319 opacity: 0; 367 opacity: 0;
320 transform: translate(0, 0); 368 transform: translate(0, 0);
321 } 369 }
322 to { 370 to {
323 opacity: 0.1; 371 opacity: 0.1;
324 transform: translate(4px, 4px); 372 transform: translate(4px, 4px);
325 } 373 }
326 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698