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

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

Issue 2392273002: ChromeOS: Implement Update screen of material design OOBE. (Closed)
Patch Set: Update after review. Added new screen name. Created 4 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 #update { 5 #update {
6 min-height: 423px; 6 min-height: 423px;
7 padding: 70px 17px 69px; /* Screen has no controls. */ 7 padding: 70px 17px 69px; /* Screen has no controls. */
8 } 8 }
9 9
10 #oobe[md-mode] #update {
11 min-height: unset;
12 padding: unset;
13 }
14
10 #update #update-screen-curtain { 15 #update #update-screen-curtain {
11 -webkit-box-align: start; 16 -webkit-box-align: start;
12 -webkit-box-pack: center; 17 -webkit-box-pack: center;
13 } 18 }
14 19
15 #update #update-checking-progress { 20 #update #update-checking-progress {
16 -webkit-box-align: start; 21 -webkit-box-align: start;
17 -webkit-box-pack: center; 22 -webkit-box-pack: center;
18 color: #9c9c9c; 23 color: #9c9c9c;
19 display: -webkit-box; 24 display: -webkit-box;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #update progress::-webkit-progress-value { 71 #update progress::-webkit-progress-value {
67 background: #bbb; 72 background: #bbb;
68 } 73 }
69 74
70 #update .progress-message { 75 #update .progress-message {
71 color: #a3a3a3; 76 color: #a3a3a3;
72 font-size: 13px; 77 font-size: 13px;
73 margin-top: 4px; 78 margin-top: 4px;
74 text-align: center; 79 text-align: center;
75 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698