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

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: Add missing files. 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 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
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 max-height: 44px;
23 min-height: 44px;
24 padding-left: 20px;
michaelpg 2016/08/18 19:40:59 padding: 0 20px;
Alexander Alekseev 2016/08/19 06:00:06 Done.
25 padding-right: 20px;
31 } 26 }
32 27
33 .language-selection-entry:last-of-type { 28 .language-selection-entry:last-of-type {
34 border-bottom: 1px solid lightgrey; 29 border-bottom: 1px solid lightgrey;
35 } 30 }
36 31
32 .language-selection-title {
33 color: rgba(0, 0, 0, 0.87);
34 font-family: Roboto, sans-serif;
35 font-size: 13px;
36 font-weight: normal;
37 }
38
37 oobe-a11y-option { 39 oobe-a11y-option {
38 border-top: 1px solid lightgrey; 40 border-top: 1px solid lightgrey;
41 min-height: 56px;
39 } 42 }
40 43
41 oobe-a11y-option:last-of-type { 44 oobe-a11y-option:last-of-type {
42 border-bottom: 1px solid lightgrey; 45 border-bottom: 1px solid rgba(0,0,0,0.14);
michaelpg 2016/08/18 19:40:59 nit: spaces after ,
Alexander Alekseev 2016/08/19 06:00:06 Done.
43 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698