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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_popup_overlay.css

Issue 609803002: UI rework for reset options including Rollback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Strings and views nits. Rollback view is unset on screen cancel. Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_popup_overlay.css
diff --git a/chrome/browser/resources/chromeos/login/oobe_popup_overlay.css b/chrome/browser/resources/chromeos/login/oobe_popup_overlay.css
new file mode 100644
index 0000000000000000000000000000000000000000..57a6bf4daadaf5f08f82076bc5ab68cbde5ba8dc
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_popup_overlay.css
@@ -0,0 +1,46 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.popup-overlay {
+ -webkit-transition: 250ms opacity;
+ align-items: center;
+ background: rgba(255, 255, 255, .75);
+ bottom: 0;
+ display: flex;
+ justify-content: center;
+ left: 0;
+ padding: 20px;
+ position: fixed;
+ right: 0;
+ top: 0;
+ z-index: 5;
+}
+
+.oobe-popup {
+ background: white;
+ border: 1px solid rgb(188, 193, 208);
+ border-radius: 2px;
+ box-shadow: 0 5px 80px #505050;
+ min-height: 250px;
+ position: relative;
+ width: 460px;
+ z-index: 10;
+}
+
+.oobe-popup h1 {
+ -webkit-padding-end: 24px;
+ -webkit-user-select: none;
+ background: linear-gradient(white, #F8F8F8);
+ color: rgb(83, 99, 125);
+ font-size: 105%;
+ font-weight: bold;
+ margin: 0;
+ padding: 10px 15px 8px 15px;
+ text-shadow: white 0 1px 2px;
+}
+
+.popup-content-area {
+ padding: 20px 20px 60px 20px;
+}

Powered by Google App Engine
This is Rietveld 408576698