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..f9788ea37ce5032a6100e82a7c3bea363b5d403e |
--- /dev/null |
+++ b/chrome/browser/resources/md_user_manager/create_profile.css |
@@ -0,0 +1,112 @@ |
+/* 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 { |
+ margin: 64px auto; |
+ width: 556px; |
+} |
+ |
+#title-bar { |
+ border-bottom: 1px solid rgba(0, 0, 0, .12); |
+ font-family: Roboto; |
+ font-size: 16px; |
+ padding-bottom: 20px; |
+} |
+ |
+#nameInput { |
+ --paper-input-container-input: { |
+ color: #333; |
Dan Beam
2016/02/12 23:42:24
should most of these colors be using a --google or
Moe
2016/02/20 00:20:59
Ah! I didn't know those variables existed. Will re
|
+ font-family: Roboto; |
Dan Beam
2016/02/12 23:42:24
nit: font: inherit; for both of these just makes t
Moe
2016/02/20 00:20:59
Done.
|
+ font-size: 13px; |
+ }; |
+ width: 300px; |
+} |
+ |
+paper-dropdown-menu { |
+ --paper-input-container-input: { |
+ color: #333; |
+ font-family: Roboto; |
+ font-size: 13px; |
+ }; |
+ 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 6px 4px; |
Dan Beam
2016/02/12 23:42:24
padding: 6px 4px;
Moe
2016/02/20 00:20:59
Done.
|
+} |
+ |
+#icons paper-button[active] { |
+ border-color: rgb(66, 133, 244); |
+} |
+ |
+#icons paper-button:focus:not([active]) { |
+ outline: 1px dotted #666; |
+} |
+ |
+#createSupervisedContainer { |
+ color: #333; |
+ font-family: Roboto; |
+ font-size: 13px; |
+ margin-top: 10px; |
+} |
+ |
+#messageBubble { |
+ -webkit-transition: max-height 200ms, padding 200ms; |
+ background-color: rgb(238, 185, 57); |
+ border-radius: 4px; |
+ 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; |
+ font-size: 13px; |
+ line-height: 32px; |
+ min-width: 52px; |
+ padding: 0 16px; |
+} |
+ |
+#cancel-button { |
+ color: rgb(90, 90, 90); |
+} |
+ |
+#ok-button { |
+ -webkit-margin-end: 0; |
+ background: rgb(66, 133, 244); |
+ color: #fff; |
+} |
+ |
+#ok-button[disabled] { |
+ background: rgba(66, 133, 244, .5); |
+} |