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

Side by Side Diff: chrome/browser/resources/ntp4/footer_menu.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: Address comments, and only enable menu when tab sync is enabled. Created 8 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 | Annotate | Revision Log
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 .footer-menu-button { 5 .footer-menu-button {
6 -webkit-appearance: none; 6 -webkit-appearance: none;
7 -webkit-padding-end: 15px; 7 -webkit-padding-end: 15px;
8 -webkit-padding-start: 9px; 8 -webkit-padding-start: 9px;
9 -webkit-transition: opacity 200ms; 9 -webkit-transition: opacity 200ms;
10 -webkit-transition-delay: 100ms; 10 -webkit-transition-delay: 100ms;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } 121 }
122 122
123 .disclosure-triangle { 123 .disclosure-triangle {
124 -webkit-margin-start: 2px; 124 -webkit-margin-start: 2px;
125 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); 125 -webkit-mask-image: url('images/disclosure_triangle_mask.png');
126 background-color: #7F7F7F; 126 background-color: #7F7F7F;
127 display: inline-block; 127 display: inline-block;
128 height: 9px; 128 height: 9px;
129 width: 9px; 129 width: 9px;
130 } 130 }
131
132 .footer-menu .promo-message {
133 padding: 2px 4px;
134 }
135
136 .footer-menu p {
137 margin: 0;
138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698