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

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

Issue 373163002: Fix the hover/focus CSS for the buttons in the desktop User Manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 5
6 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js 6 /* Overrides of styles in chrome/browser/resources/chromeos/login/header_bar.js
7 * that are needed by the desktop user chooser screen 7 * that are needed by the desktop user chooser screen
8 */ 8 */
9 #login-header-bar { 9 #login-header-bar {
10 -webkit-padding-after: 16px; 10 -webkit-padding-after: 16px;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 #login-header-bar button { 56 #login-header-bar button {
57 -webkit-padding-start: 24px; 57 -webkit-padding-start: 24px;
58 background-color: white; 58 background-color: white;
59 background-position: left center; 59 background-position: left center;
60 background-repeat: no-repeat; 60 background-repeat: no-repeat;
61 border: none; 61 border: none;
62 box-shadow: none; 62 box-shadow: none;
63 cursor: pointer; 63 cursor: pointer;
64 font-size: 12px; 64 font-size: 12px;
65 opacity: 0.8;
66 }
67
68 #login-header-bar button:active,
69 #login-header-bar button:focus,
70 #login-header-bar button:hover {
71 opacity: 1;
72 }
73
74 #login-header-bar button:focus {
75 text-decoration: underline;
65 } 76 }
66 77
67 #logo { 78 #logo {
68 content: -webkit-image-set( 79 content: -webkit-image-set(
69 url('../../../app/theme/%DISTRIBUTION%/product_logo_name_48.png') 1x, 80 url('../../../app/theme/%DISTRIBUTION%/product_logo_name_48.png') 1x,
70 url('../../../app/theme/%DISTRIBUTION%/product_logo_name_96.png') 2x); 81 url('../../../app/theme/%DISTRIBUTION%/product_logo_name_96.png') 2x);
71 height: 18px; 82 height: 18px;
72 position: absolute; 83 position: absolute;
73 right: 16px; 84 right: 16px;
74 top: 20px; 85 top: 20px;
75 } 86 }
76 87
77 html[dir=rtl] #logo { 88 html[dir=rtl] #logo {
78 left: 16px; 89 left: 16px;
79 } 90 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698