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

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

Issue 2254733004: ChromeOS: Update styles of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 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
5 :host {
6 display: flex;
7 flex-direction: column;
8 font-size: 18px;
9 overflow: hidden;
10 position: relative;
11 width: 582px;
12 }
13 4
14 #oobe-welcome-md .buttonbox { 5 #oobe-welcome-md .buttonbox {
15 font-size: 32px; 6 font-size: 32px;
16 padding: 15px 24px 24px; 7 padding: 15px 24px 24px;
17 width: 100px; 8 width: 100px;
18 } 9 }
19 10
20 #oobe-welcome-md .welcome-next { 11 #oobe-welcome-md .welcome-next {
21 padding: 15px 24px 24px; 12 padding: 15px 24px 24px;
22 } 13 }
23 14
24 #oobe-welcome-md .bottom-button { 15 #oobe-welcome-md .bottom-button {
25 --iron-icon-height: 32px; 16 --iron-icon-height: 32px;
26 --iron-icon-width: 32px; 17 --iron-icon-width: 32px;
27 } 18 }
28 19
29 .language-selection-entry { 20 .language-selection-entry {
30 border-top: 1px solid lightgrey; 21 border-top: 1px solid lightgrey;
22 height: 44px;
23 padding: 0 20px;
31 } 24 }
32 25
33 .language-selection-entry:last-of-type { 26 .language-selection-entry:last-of-type {
34 border-bottom: 1px solid lightgrey; 27 border-bottom: 1px solid lightgrey;
35 } 28 }
36 29
30 .language-selection-title {
31 color: rgba(0, 0, 0, 0.87);
32 font: 13px Roboto, sans-serif;
33 }
34
37 oobe-a11y-option { 35 oobe-a11y-option {
38 border-top: 1px solid lightgrey; 36 border-top: 1px solid lightgrey;
37 min-height: 56px;
39 } 38 }
40 39
41 oobe-a11y-option:last-of-type { 40 oobe-a11y-option:last-of-type {
42 border-bottom: 1px solid lightgrey; 41 border-bottom: 1px solid rgba(0, 0, 0, 0.14);
43 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698