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

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

Issue 2847603002: Powerwash UI polish (Closed)
Patch Set: Change according to new specs Created 3 years, 7 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 .bottom-buttons { 5 .bottom-buttons {
6 width: 100% 6 width: 100%;
7 } 7 }
8 8
9 .reset-popup { 9 .reset-popup {
10 background: white; 10 background: white;
11 border: 1px solid var(--google-grey-300); 11 box-shadow: 0 0 16px rgba(0, 0, 0, .12), 0 16px 16px rgba(0, 0, 0, .24);
12 border-radius: 2px; 12 min-height: 158px;
13 box-shadow: 0 5px 80px #505050;
14 min-height: 180px;
15 position: relative; 13 position: relative;
16 width: 460px; 14 width: 512px;
17 z-index: 10;
18 } 15 }
19 16
20 .reset-popup h1 { 17 .reset-popup h1 {
21 -webkit-padding-end: 24px; 18 -webkit-margin-after: 0;
22 background: linear-gradient(white, #F8F8F8); 19 -webkit-margin-before: 0;
23 color: var(--google-blue-500); 20 color: var(--google-grey-900);
24 font-size: 105%; 21 font: 15px Roboto, sans-serif;
25 font-weight: bold; 22 padding: 16px 20px;
26 margin: 0;
27 padding: 10px 15px 8px 15px;
28 text-shadow: white 0 1px 2px;
29 user-select: none;
30 } 23 }
31 24
32 .reset-popup-content-area { 25 .reset-popup-content-area {
33 padding: 20px 20px 30px 20px; 26 color: rgba(0, 0, 0, .54);
27 font: 13px Roboto, sans-serif;
28 line-height: 20px;
29 padding: 0 20px 20.5px;
34 } 30 }
35 31
36 #cancel-button { 32 oobe-text-button {
37 -webkit-margin-end: 22px; 33 -webkit-margin-end: 16px;
34 -webkit-margin-after: 16px;
35 color: #5a5a5a;
38 } 36 }
37
38 #cancelButton {
39 -webkit-margin-end: 4px;
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698