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

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

Issue 10037022: adjust margin on right of ntp footer menus (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « 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 (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 20 matching lines...) Expand all
31 31
32 .footer-menu-button[menu-shown] { 32 .footer-menu-button[menu-shown] {
33 color: #555; 33 color: #555;
34 } 34 }
35 35
36 .footer-menu-button[menu-shown] .disclosure-triangle { 36 .footer-menu-button[menu-shown] .disclosure-triangle {
37 background-color: #555; 37 background-color: #555;
38 } 38 }
39 39
40 .footer-menu { 40 .footer-menu {
41 -webkit-margin-end: 10px;
41 max-height: 400px; 42 max-height: 400px;
42 overflow: auto; 43 overflow: auto;
43 padding: 6px 8px; 44 padding: 6px 8px;
44 /* Needs to be above #footer. */ 45 /* Needs to be above #footer. */
45 z-index: 10; 46 z-index: 10;
46 } 47 }
47 48
48 .footer-menu, 49 .footer-menu,
49 .footer-menu-context-menu { 50 .footer-menu-context-menu {
50 min-width: 150px; 51 min-width: 150px;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 .footer-menu-context-menu { 150 .footer-menu-context-menu {
150 /* Needs to be above .footer-menu. */ 151 /* Needs to be above .footer-menu. */
151 z-index: 11; 152 z-index: 11;
152 } 153 }
153 154
154 .footer-menu hr { 155 .footer-menu hr {
155 background-color: rgb(217, 217, 217); 156 background-color: rgb(217, 217, 217);
156 border: 0; 157 border: 0;
157 height: 1px; 158 height: 1px;
158 } 159 }
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