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

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 the comments Created 4 years, 11 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..ae2164fd1a9a98ba18ba125259d6edf397a14f64
--- /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: #DEDEDE;
tommycli 2016/02/03 01:13:21 I believe the preferred style is the rgb style whe
Moe 2016/02/05 17:58:39 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: #5a5a5a;
+}
+
+#ok-button {
+ -webkit-margin-end: 0;
+ background: rgba(66, 133, 244, 1);
+ color: #fff;
+}
+
+#ok-button[disabled] {
+ background: rgba(66, 133, 244, .5);
+}

Powered by Google App Engine
This is Rietveld 408576698