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

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

Issue 2756863002: ChromeOS: Powerwash UI update (Closed)
Patch Set: merge Created 3 years, 8 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 .bottom-buttons {
6 width: 100%
7 }
8
9 .reset-popup {
10 background: white;
11 border: 1px solid var(--google-grey-300);
12 border-radius: 2px;
13 box-shadow: 0 5px 80px #505050;
14 min-height: 180px;
15 position: relative;
16 width: 460px;
17 z-index: 10;
18 }
19
20 .reset-popup h1 {
21 -webkit-padding-end: 24px;
22 background: linear-gradient(white, #F8F8F8);
23 color: var(--google-blue-500);
24 font-size: 105%;
25 font-weight: bold;
26 margin: 0;
27 padding: 10px 15px 8px 15px;
28 text-shadow: white 0 1px 2px;
29 user-select: none;
30 }
31
32 .reset-popup-content-area {
33 padding: 20px 20px 30px 20px;
34 }
35
36 #cancel-button {
37 -webkit-margin-end: 22px;
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698