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

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

Issue 9838064: Add a sign-in promo message to the Other Devices menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix copyright header. Created 8 years, 8 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab.html » ('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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 416
417 /* Put the recently closed menu to the left when it's not visible. */ 417 /* Put the recently closed menu to the left when it's not visible. */
418 #recently-closed-menu-button.invisible { 418 #recently-closed-menu-button.invisible {
419 -webkit-flex-order: -1; 419 -webkit-flex-order: -1;
420 visibility: hidden; 420 visibility: hidden;
421 } 421 }
422 422
423 #other-sessions-menu-button.invisible { 423 #other-sessions-menu-button.invisible {
424 display: none; 424 display: none;
425 } 425 }
426
427 .other-sessions-promo-message {
428 display: none;
429 padding: 0;
430 }
431
432 .other-sessions-promo-message:only-child {
433 display: block;
434 }
435
436 .other-sessions-promo-message p {
437 margin: 0;
438 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/ntp4/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698