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

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

Issue 1722843002: MD user manager (html/js/css for create profile flow) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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..8933f27a59ef324679279aa1f0a29c80caf430a1
--- /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 {
+ font-size: 13px;
Dan Beam 2016/02/25 16:44:39 em or %
Moe 2016/03/02 18:03:17 For the same reason as in control_bar.css, I think
+ margin: 64px auto;
+ width: 556px;
+}
+
+#title-bar {
+ border-bottom: 1px solid rgba(0, 0, 0, .12);
+ font-size: 16px;
Dan Beam 2016/02/25 16:44:38 em or %
Moe 2016/03/02 18:03:17 ditto
+ padding-bottom: 20px;
+}
+
+#nameInput {
+ --paper-input-container-input: {
+ color: #333;
Dan Beam 2016/02/25 16:44:38 is there a --google-grey-* or --paper-grey-* equiv
Moe 2016/03/02 18:03:17 I went through all of them. The ones that are rema
+ font-size: inherit;
+ };
+ width: 300px;
+}
+
+paper-dropdown-menu {
+ --paper-input-container-input: {
+ color: #333;
+ font-size: inherit;
+ };
+ 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 {
+ color: #333;
+ 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;
+ line-height: 32px;
+ min-width: 52px;
+ padding: 0 16px;
+}
+
+#cancel-button {
+ color: rgb(90, 90, 90);
+}
+
+#ok-button {
+ -webkit-margin-end: 0;
+ background: var(--google-blue-500);
+ color: #fff;
+}
+
+#ok-button[disabled] {
+ background: rgba(66, 133, 244, .5);
+}

Powered by Google App Engine
This is Rietveld 408576698