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

Unified Diff: chrome/browser/resources/managed_user_passphrase_dialog.css

Issue 12218118: Add a passphrase dialog for managed user accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT. Created 7 years, 10 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/managed_user_passphrase_dialog.css
diff --git a/chrome/browser/resources/managed_user_passphrase_dialog.css b/chrome/browser/resources/managed_user_passphrase_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..745b096e8ceeeaddeb4f72c7aa3932cd76c80d91
--- /dev/null
+++ b/chrome/browser/resources/managed_user_passphrase_dialog.css
@@ -0,0 +1,36 @@
+/* Copyright (c) 2013 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. */
+
+#managed-mode-passphrase-page {
+ min-width: 350px;
+}
+
+#managed-user-logo {
+ background-image: url('managed_user.png');
+ height: 68px;
+ width: 65px;
+}
+
+#instructions,
+#entry,
+#incorrect-passphrase-warning {
+ padding: 5px 15px;
+}
+
+#buttons {
+ float: right;
+}
+
+html[dir=rtl] #buttons {
+ float: left;
+}
+
+#buttons {
+ padding: 15px 15px;
+}
+
+#incorrect-passphrase-warning {
+ color: red;
+ font-weight: bold;
+}

Powered by Google App Engine
This is Rietveld 408576698