Index: chrome/browser/resources/md_user_manager/create_profile.css |
diff --git a/chrome/browser/resources/md_user_manager/create_profile.css b/chrome/browser/resources/md_user_manager/create_profile.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e64c0209cbbeb45109082ce520e67e4afbca5f0d |
--- /dev/null |
+++ b/chrome/browser/resources/md_user_manager/create_profile.css |
@@ -0,0 +1,106 @@ |
+/* Copyright 2016 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. */ |
+ |
+.container { |
+ color: var(--paper-grey-800); |
+ margin: 64px auto; |
+ width: 556px; |
+} |
+ |
+#title-bar { |
+ border-bottom: 1px solid rgba(0, 0, 0, .12); |
+ font-size: 16px; |
+ padding-bottom: 20px; |
+} |
+ |
+#nameInput, |
+paper-dropdown-menu { |
+ --paper-input-container-input: { |
+ color: inherit; |
+ font-size: inherit; |
+ }; |
+} |
+ |
+#nameInput { |
+ width: 300px; |
+} |
+ |
+paper-dropdown-menu { |
+ position: relative; |
+ top: -1px; |
+ width: 200px; |
+} |
+ |
+#icons { |
+ margin-top: 24px; |
+} |
+ |
+#icons #wrapper { |
+ margin: -12px -10px; |
+} |
+ |
+#icons paper-button { |
+ background: rgb(222, 222, 222); |
+ border: 1px solid rgba(0, 0, 0, .12); |
+ margin: 12px 10px; |
+ min-width: 0; |
+ padding: 6px 4px; |
+} |
+ |
+#icons paper-button[active] { |
+ border-color: var(--google-blue-500); |
+} |
+ |
+#icons paper-button:focus:not([active]) { |
+ outline: 1px dotted #666; |
+} |
+ |
+#createSupervisedContainer { |
+ margin-top: 10px; |
+} |
+ |
+#messageBubble { |
+ -webkit-transition: max-height 200ms, padding 200ms; |
+ background-color: var(--google-red-700); |
+ border-radius: 4px; |
+ color: white; |
+ font-weight: bold; |
+ margin-left: auto; |
+ margin-right: auto; |
+ margin-top: 16px; |
+ max-height: 50px; |
+ overflow: hidden; |
+ padding: 10px 10px; |
+ text-align: center; |
+ width: 80%; |
+} |
+ |
+#messageBubble:empty { |
+ display: none; |
+} |
+ |
+#actions { |
+ margin-top: 32px; |
+} |
+ |
+#actions paper-button { |
+ border-radius: 2px; |
+ line-height: 32px; |
+ min-width: 52px; |
+ padding: 0 16px; |
+} |
+ |
+#cancel { |
+ color: var(--paper-grey-600); |
+} |
+ |
+#save { |
+ -webkit-margin-end: 0; |
+ background: var(--google-blue-500); |
+ color: white; |
+} |
+ |
+#save[disabled] { |
+ background: rgba(66, 133, 244, .5); |
+} |