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

Side by Side Diff: chrome/browser/resources/md_user_manager/control_bar.css

Issue 1826903002: updated UI, default profile name, check for existing supervised user before create (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 8 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
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #login-header-bar { 5 #container {
6 bottom: 0;
7 left: 0;
8 min-height: 32px;
9 padding-bottom: 12px; 6 padding-bottom: 12px;
10 padding-top: 12px; 7 padding-top: 12px;
11 position: absolute;
12 right: 0;
13 } 8 }
14 9
15 paper-button { 10 paper-button {
16 border-radius: 2px; 11 border-radius: 2px;
12 color: var(--paper-grey-600);
13 font-weight: 500;
17 line-height: 32px; 14 line-height: 32px;
15 margin: 0;
18 min-width: 52px; 16 min-width: 52px;
19 padding: 0 16px; 17 padding: 0 16px;
20 } 18 }
21 19
22 #addUser { 20 #addUser {
23 -webkit-margin-end: 16px; 21 margin: 0 8px;
24 } 22 }
25 23
26 #logo { 24 #logo {
27 content: -webkit-image-set( 25 content: -webkit-image-set(
28 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x, 26 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x,
29 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x); 27 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x);
30 height: 18px; 28 height: 18px;
31 left: 24px; 29 left: 24px;
32 position: absolute; 30 position: absolute;
33 top: 19px; 31 top: 19px;
34 } 32 }
35 33
36 :host-context([dir='rtl']) #logo { 34 :host-context([dir='rtl']) #logo {
37 left: auto; 35 left: auto;
38 right: 24px; 36 right: 24px;
39 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698