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

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

Issue 669623006: Add a "device disabled" OOBE screen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits. 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/screen_device_disabled.css
diff --git a/chrome/browser/resources/chromeos/login/screen_device_disabled.css b/chrome/browser/resources/chromeos/login/screen_device_disabled.css
new file mode 100644
index 0000000000000000000000000000000000000000..fa7527dfbbd8caad84a5238108b230d84550f781
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/screen_device_disabled.css
@@ -0,0 +1,42 @@
+/* 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.
+ */
+
+#device-disabled,
+#device-disabled-top-container {
+ display: flex;
+ flex-direction: column;
+}
+
+#device-disabled {
+ font-size: 12px;
+ width: 330px;
+}
+
+#device-disabled-top-container {
+ background-color: rgb(214, 0, 0);
+ color: white;
+ text-align: center;
+}
+
+#device-disabled-heading {
+ font-size: 16px;
+ margin: 60px 20px 0;
+}
+
+#device-disabled-message {
+ font-weight: bold;
+ margin: 20px;
+ max-height: 400px;
+ overflow: auto;
+ white-space: pre-wrap;
+}
+
+#device-disabled-bottom-container {
+ background-color: white;
+}
+
+#device-disabled-explanation {
+ margin: 25px 20px 45px
+}

Powered by Google App Engine
This is Rietveld 408576698