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

Side by Side Diff: chrome/browser/resources/chromeos/login/encryption_migration.css

Issue 2819613003: cros: Update design of encryption migration UI for ext4 dircrypto. (Closed)
Patch Set: Created 3 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 2017 The Chromium Authors. All rights reserved. 1 /* Copyright 2017 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 oobe-dialog {
6 max-width: 768px;
7 }
8
9 oobe-dialog div {
10 line-height: 1.54; /* 20px height for 13px font. */
11 }
12
5 paper-progress { 13 paper-progress {
6 --paper-progress-active-color: var(--google-blue-500); 14 --paper-progress-active-color: var(--google-blue-500);
7 bottom: 0;
8 height: 3px; 15 height: 3px;
16 margin-bottom: 28px;
9 width: 100%; 17 width: 100%;
10 } 18 }
11 19
12 .bottom-buttons { 20 .bottom-buttons {
13 -webkit-padding-end: 16px; 21 -webkit-padding-end: 16px;
14 } 22 }
23
24 oobe-text-button {
25 color: rgb(90, 90, 90);
26 }
27
28 oobe-dialog > iron-icon {
29 height: 32px;
30 width: 32px;
31 }
32
33 oobe-dialog > iron-icon.warning {
34 --iron-icon-fill-color: rgb(219, 68, 55);
35 }
36
37 .chrome-logo {
38 background-image: -webkit-image-set(
39 url(images/chrome_icon_1x.png) 1x, url(images/chrome_icon_2x.png) 2x);
fukino 2017/04/13 19:35:23 Chrome-logo's svg file was huge and complex even w
xiyuan 2017/04/13 20:33:08 Understand. But it is tricky when involving chrome
fukino 2017/04/13 21:33:41 Oh I did not know that there already is a product
40 }
41
42 .footer div {
43 color: rgb(51, 51, 51);
44 font-size: 13px;
45 }
46
47 .footer div.warning {
48 color: rgb(197, 57, 41);
49 font-weight: 500;
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698