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

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: rebase and review comments 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 background-image: none;
11 }
12
13 #login-header-bar button,
14 #login-header-bar button:active,
15 #login-header-bar button:focus,
16 #login-header-bar button:hover {
17 -webkit-box-shadow: none;
18 background: transparent none;
19 border: none;
20 border-radius: 3px;
21 cursor: pointer;
22 height: 34px;
23 margin: 0;
24 min-width: 0;
25 opacity: 0.6;
26 padding: 5px 8px;
27 vertical-align: middle;
28 }
29
30 #login-header-bar #add-user-button {
31 background-color: #505050;
32 background-image: url('chrome://theme/IDR_ICON_ADD_USER_WHITE');
33 }
34
35 #login-header-bar #guest-user-button {
36 background-color: #505050;
37 background-image: url('chrome://theme/IDR_ICON_GUEST_WHITE');
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698