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

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

Issue 2223213003: ChromeOS: Implement Accessibility Options screen of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit. 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 { 5 :host {
6 display: flex; 6 display: flex;
7 flex-direction: column; 7 flex-direction: column;
8 position: relative; 8 position: relative;
9 } 9 }
10 10
(...skipping 12 matching lines...) Expand all
23 .oobe-footer { 23 .oobe-footer {
24 background-color: white; 24 background-color: white;
25 position: relative; 25 position: relative;
26 } 26 }
27 27
28 .header-container { 28 .header-container {
29 padding: 50px 40px 18px; 29 padding: 50px 40px 18px;
30 } 30 }
31 31
32 .footer-container { 32 .footer-container {
33 overflow-y: auto;
33 padding: 24px 40px 34px; 34 padding: 24px 40px 34px;
34 } 35 }
35 36
36 #oobe-bottom { 37 #oobe-bottom {
37 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); 38 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14);
38 padding: 24px 40px 34px; 39 padding: 24px 40px 34px;
39 z-index: 1; 40 z-index: 1;
40 } 41 }
41 42
42 ::content div.oobe-body-text { 43 ::content div.oobe-body-text {
(...skipping 15 matching lines...) Expand all
58 } 59 }
59 60
60 ::content h1.welcome-message-hint { 61 ::content h1.welcome-message-hint {
61 color: rgba(0, 0, 0, 0.87); 62 color: rgba(0, 0, 0, 0.87);
62 font-size: 12px; 63 font-size: 12px;
63 font-weight: normal; 64 font-weight: normal;
64 margin-bottom: 0; 65 margin-bottom: 0;
65 } 66 }
66 67
67 68
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698