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

Side by Side 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, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 #login-header-bar {
6 bottom: 0;
7 left: 0;
8 min-height: 32px;
9 padding-bottom: 12px;
10 padding-top: 12px;
11 position: absolute;
12 right: 0;
13 }
14
15 paper-button {
16 border-radius: 2px;
17 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.
18 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
19 min-width: 52px;
20 padding: 0 16px;
21 }
22
23 #add-user-button {
24 -webkit-margin-end: 16px;
25 }
26
27 #logo {
28 content: -webkit-image-set(
29 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x,
30 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x);
31 height: 18px;
32 left: 24px;
33 position: absolute;
34 top: 19px;
35 }
36
37 :host-context([dir='rtl']) #logo {
38 left: auto;
39 right: 24px;
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698