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

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

Issue 2749693002: Chrome OS: Add 'Cancel" icon in 'Add an account' screen in multiprofile mode. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/images/1x/cancel.svg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #login-header-bar {
6 -webkit-padding-start: 15px; 6 -webkit-padding-start: 15px;
7 bottom: 0; 7 bottom: 0;
8 left: 0; 8 left: 0;
9 padding-bottom: 6px; 9 padding-bottom: 6px;
10 position: absolute; 10 position: absolute;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 url(images/2x/more-settings.svg) 2x ); 141 url(images/2x/more-settings.svg) 2x );
142 } 142 }
143 143
144 #login-header-bar #guest-user-button-text { 144 #login-header-bar #guest-user-button-text {
145 background-image: -webkit-image-set( 145 background-image: -webkit-image-set(
146 url(images/1x/browse-as-guest.svg) 1x, 146 url(images/1x/browse-as-guest.svg) 1x,
147 url(images/2x/browse-as-guest.svg) 2x ); 147 url(images/2x/browse-as-guest.svg) 2x );
148 } 148 }
149 149
150 #login-header-bar #cancel-multiple-sign-in-button-text { 150 #login-header-bar #cancel-multiple-sign-in-button-text {
151 /* TODO(dzhioev): replace with appropriate image when possible. */ 151 background-image: -webkit-image-set(
152 background-image: url(chrome://theme/IDR_PANEL_CLOSE); 152 url(images/1x/cancel.svg) 1x,
153 url(images/2x/cancel.svg) 2x );
153 } 154 }
154 155
155 #login-header-bar #sign-out-user-button-text { 156 #login-header-bar #sign-out-user-button-text {
156 background-image: -webkit-image-set( 157 background-image: -webkit-image-set(
157 url(images/1x/signout.svg) 1x, 158 url(images/1x/signout.svg) 1x,
158 url(images/2x/signout.svg) 2x ); 159 url(images/2x/signout.svg) 2x );
159 } 160 }
160 161
161 .button-restricted { 162 .button-restricted {
162 border: 1px solid transparent; 163 border: 1px solid transparent;
163 color: white !important; 164 color: white !important;
164 opacity: 0.4 !important; 165 opacity: 0.4 !important;
165 } 166 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/images/1x/cancel.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698