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

Unified Diff: chrome/browser/resources/md_user_manager/create_profile.css

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed tommy's comments Created 4 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/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..19ed6ca096b7c8833e897a4d90d553a57085749a
--- /dev/null
+++ b/chrome/browser/resources/md_user_manager/create_profile.css
@@ -0,0 +1,108 @@
+/* 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;
+ font-family: Roboto;
+ 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);
tommycli 2016/02/08 18:45:18 I think most of the rgb notations do have spaces b
Moe 2016/02/09 00:15:33 Done.
+ border: 1px solid rgba(0,0,0,.12);
+ margin: 12px 10px;
+ min-width: 0;
+ padding: 6px 4px 6px 4px;
+}
+
+#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%;
+}
+
+#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);
+}

Powered by Google App Engine
This is Rietveld 408576698