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

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: Addressed comments 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
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);
Evan Stade 2016/03/31 19:30:53 i feel like link colors should be coming from a sh
Dan Beam 2016/03/31 20:13:32 agree generally with estade@ 1) where is the same
Moe 2016/03/31 21:00:49 1) this constant is used in one other place for hy
Dan Beam 2016/04/01 18:07:07 we may not have one /yet/, but it's not for a lack
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 #activityControlsCheckbox {
100 -webkit-margin-start: 40px;
101 }
102
68 .action-container { 103 .action-container {
69 align-items: baseline;
70 display: flex; 104 display: flex;
71 justify-content: flex-end; 105 justify-content: flex-end;
106 padding: 16px;
72 } 107 }
73 108
74 paper-button { 109 #confirmButton,
110 #undoButton {
75 font-weight: 500; 111 font-weight: 500;
76 line-height: 16px; 112 line-height: 16px;
77 margin: 0; 113 margin: 0;
78 padding: 8px 16px; 114 padding: 8px 16px;
79 } 115 }
80 116
81 paper-button + paper-button {
82 -webkit-margin-start: 8px;
83 }
84
85 #confirmButton { 117 #confirmButton {
86 background-color: rgb(66, 133, 244); 118 background-color: rgb(66, 133, 244);
87 color: white; 119 color: white;
88 } 120 }
89 121
90 #undoButton { 122 #undoButton {
123 -webkit-margin-start: 8px;
91 color: #5A5A5A; 124 color: #5A5A5A;
92 } 125 }
93 126
94 #illustration { 127 #illustration {
95 height: 96px; 128 height: 96px;
96 margin: 0 auto; 129 margin: 0 auto;
97 position: relative; 130 position: relative;
98 width: 264px; 131 width: 264px;
99 } 132 }
100 133
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 @keyframes fade-in-icon-bottom-right { 350 @keyframes fade-in-icon-bottom-right {
318 from { 351 from {
319 opacity: 0; 352 opacity: 0;
320 transform: translate(0, 0); 353 transform: translate(0, 0);
321 } 354 }
322 to { 355 to {
323 opacity: 0.1; 356 opacity: 0.1;
324 transform: translate(4px, 4px); 357 transform: translate(4px, 4px);
325 } 358 }
326 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698