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

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

Issue 16104008: First try at a user management screen for the desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move util function out of the profile manager Created 7 years, 5 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 (c) 2013 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
6 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js
7 * that are needed by the desktop user chooser screen
8 */
9 #login-header-bar {
10 -webkit-padding-after: 7px;
11 bottom: 0;
12 left: 0;
13 position: absolute;
14 right: 0;
15 }
16
17 #login-header-bar {
18 -webkit-padding-before: 7px;
19 }
20
21 .header-bar-item:first-child {
22 -webkit-padding-start: 15px;
23 }
24
25 .header-bar-item {
26 display: inline-block;
27 height: 34px;
28 }
29
30 html[dir=rtl] .header-bar-item {
31 background-position: right center;
32 }
33
34 html[dir=rtl] #login-header-bar button {
35 background-position: right center;
36 }
37
38 #login-header-bar #add-user-button {
39 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE');
40 }
41
42 #login-header-bar #guest-user-button {
43 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE');
44 }
45
46 #login-header-bar button {
47 -webkit-padding-start: 24px;
48 background-position: left center;
49 background-repeat: no-repeat;
50 background-size: 24px;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698