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

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.css

Issue 1145883002: Don't pointerify [☺] User Name nor user@name.com In the top, right corner of chrome://apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/ntp4/new_tab.js » ('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 html { 5 html {
6 /* It's necessary to put this here instead of in body in order to get the 6 /* It's necessary to put this here instead of in body in order to get the
7 background-size of 100% to work properly */ 7 background-size of 100% to work properly */
8 height: 100%; 8 height: 100%;
9 overflow: hidden; 9 overflow: hidden;
10 } 10 }
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 -webkit-transition: none !important; 226 -webkit-transition: none !important;
227 } 227 }
228 228
229 /* Login Status. **************************************************************/ 229 /* Login Status. **************************************************************/
230 230
231 #login-container { 231 #login-container {
232 background: transparent none; 232 background: transparent none;
233 border: none; 233 border: none;
234 box-shadow: none; 234 box-shadow: none;
235 color: inherit; 235 color: inherit;
236 cursor: pointer;
237 font: inherit; 236 font: inherit;
238 /* Leave room for the scrollbar. */ 237 /* Leave room for the scrollbar. */
239 margin-left: 13px; 238 margin-left: 13px;
240 margin-right: 13px; 239 margin-right: 13px;
241 margin-top: 5px; 240 margin-top: 5px;
242 padding: 0; 241 padding: 0;
243 position: fixed; 242 position: fixed;
244 right: 0; 243 right: 0;
245 text-align: right; 244 text-align: right;
246 top: 0; 245 top: 0;
247 z-index: 10; 246 z-index: 10;
248 } 247 }
249 248
249 #login-container:not(.signed-in) {
250 cursor: pointer;
251 }
252
250 html[dir='rtl'] #login-container { 253 html[dir='rtl'] #login-container {
251 left: 0; 254 left: 0;
252 right: auto; 255 right: auto;
253 } 256 }
254 257
255 #login-container [is='action-link'] { 258 #login-container [is='action-link'] {
256 -webkit-margin-start: 0; 259 -webkit-margin-start: 0;
257 } 260 }
258 261
259 .login-status-icon { 262 .login-status-icon {
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 padding: 0; 443 padding: 0;
441 } 444 }
442 445
443 .other-sessions-promo-message:only-child { 446 .other-sessions-promo-message:only-child {
444 display: block; 447 display: block;
445 } 448 }
446 449
447 .other-sessions-promo-message p { 450 .other-sessions-promo-message p {
448 margin: 0; 451 margin: 0;
449 } 452 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698