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

Side by Side Diff: chrome/browser/resources/chromeos/login/header_bar.css

Issue 7980012: [ChromeOS] Reland - Make WebUI login use only needed resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2011 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 #login-header-bar {
7 padding: 5px 8px;
8 }
9
10 #login-header-bar button,
11 #login-header-bar button:active,
12 #login-header-bar button:focus,
13 #login-header-bar button:hover {
14 -webkit-box-shadow: none;
15 background: transparent none;
16 border: 0;
17 color: #666;
18 cursor: pointer;
19 height: 24px;
20 margin: 0;
21 min-width: 0;
22 padding: 0;
23 vertical-align: middle;
24 }
25
26 .header-bar-item {
27 -webkit-padding-start: 15px;
28 background-image: url('chrome://theme/IDR_DIVIDER_VERT');
29 background-position: left center;
30 background-repeat: no-repeat;
31 display: inline-block;
32 height: 24px;
33 }
34
35 #login-header-bar #shutdown-button {
36 -webkit-padding-start: 24px;
37 background-image: url('chrome://theme/IDR_ICON_POWER20');
38 background-position: left center;
39 background-repeat: no-repeat;
40 }
41
42 #login-header-bar #add-user-button {
43 -webkit-padding-start: 24px;
44 background-image: url('chrome://theme/IDR_ICON_ADD_USER20');
45 background-position: left center;
46 background-repeat: no-repeat;
47 }
48
49 html[dir=rtl] .header-bar-item,
50 html[dir=rtl] #login-header-bar #shutdown-button,
51 html[dir=rtl] #login-header-bar #add-user-button {
52 background-position: right center;
53 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/display_manager.js ('k') | chrome/browser/resources/chromeos/login/header_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698