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

Side by Side Diff: chrome/browser/resources/md_user_manager/control_bar.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 Dan'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 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 */
Dan Beam 2016/02/12 23:42:24 this should be on the previous line: * found in
Moe 2016/02/20 00:20:58 Done.
5
6 #login-header-bar {
7 bottom: 0;
8 left: 0;
9 min-height: 32px;
10 padding-bottom: 12px;
11 padding-top: 12px;
12 position: absolute;
13 right: 0;
14 }
15
16 paper-button {
17 border-radius: 2px;
18 font-size: 13px;
19 line-height: 32px;
20 min-width: 52px;
21 padding: 0 16px;
22 }
23
24 #add-user-button {
25 -webkit-margin-end: 16px;
26 }
27
28 #logo {
29 content: -webkit-image-set(
30 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x,
31 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x);
32 height: 18px;
33 left: 24px;
34 position: absolute;
35 top: 19px;
36 }
37
38 :host-context([dir='rtl']) #logo {
39 left: auto;
40 right: 24px;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698