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

Unified Diff: chrome/browser/resources/md_user_manager/control_bar.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: Addressed 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/control_bar.css
diff --git a/chrome/browser/resources/md_user_manager/control_bar.css b/chrome/browser/resources/md_user_manager/control_bar.css
new file mode 100644
index 0000000000000000000000000000000000000000..9acd85db1ad697c03a1eceafba26adac44e27057
--- /dev/null
+++ b/chrome/browser/resources/md_user_manager/control_bar.css
@@ -0,0 +1,40 @@
+/* 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. */
+
+#login-header-bar {
+ bottom: 0;
+ left: 0;
+ min-height: 32px;
+ padding-bottom: 12px;
+ padding-top: 12px;
+ position: absolute;
+ right: 0;
+}
+
+paper-button {
+ border-radius: 2px;
+ font-size: 13px;
Dan Beam 2016/03/02 23:19:23 can this just inherit from body instead of copying
Moe 2016/03/03 18:05:45 Done.
+ line-height: 32px;
Dan Beam 2016/03/02 23:19:23 why does this differ from polymer?
Moe 2016/03/03 18:05:45 using padding-top(-bottom) set to zero and line-he
+ min-width: 52px;
+ padding: 0 16px;
+}
+
+#add-user-button {
+ -webkit-margin-end: 16px;
+}
+
+#logo {
+ content: -webkit-image-set(
+ url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_name_48.png) 1x,
+ url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_name_48.png) 2x);
+ height: 18px;
+ left: 24px;
+ position: absolute;
+ top: 19px;
+}
+
+:host-context([dir='rtl']) #logo {
+ left: auto;
+ right: 24px;
+}

Powered by Google App Engine
This is Rietveld 408576698