Chromium Code Reviews| Index: chrome/browser/resources/ntp4/footer_menu.css |
| diff --git a/chrome/browser/resources/ntp4/footer_menu.css b/chrome/browser/resources/ntp4/footer_menu.css |
| index ba2be476151d5ce1bbdf24edf50b52ee87142b55..5a42d82a6bd5123809b65181039d6d17afc284b7 100644 |
| --- a/chrome/browser/resources/ntp4/footer_menu.css |
| +++ b/chrome/browser/resources/ntp4/footer_menu.css |
| @@ -45,6 +45,11 @@ |
| z-index: 10; |
| } |
| +.footer-menu, |
| +.footer-menu-context-menu { |
| + min-width: 150px; |
| +} |
| + |
| /* TODO(dubroy): Unify this with tile page scrollbar. */ |
| .footer-menu::-webkit-scrollbar-button { |
| display: none; |
| @@ -105,6 +110,19 @@ |
| margin-top: 4px; |
| } |
| +/* Used to add additional details to a section header */ |
| +.footer-menu section h3 .details { |
| + color: rgb(151, 156, 160); |
| + font-style: italic; |
| + font-weight: normal; |
| +} |
| + |
| +.footer-menu section h3 .details:before { |
| + content: '\2013'; /* En-dash character. */ |
| + margin: 0 0.5em; |
| +} |
| + |
|
Evan Stade
2012/03/30 21:00:30
extra \n
Patrick Dubroy
2012/03/30 21:21:20
Done.
|
| + |
| html[dir='rtl'] .footer-menu-item { |
| background: no-repeat 100% 50%; |
| } |
| @@ -128,3 +146,14 @@ html[dir='rtl'] .footer-menu-item { |
| height: 9px; |
| width: 9px; |
| } |
| + |
| +.footer-menu-context-menu { |
| + /* Needs to be above .footer-menu. */ |
| + z-index: 11; |
| +} |
| + |
| +.footer-menu hr { |
| + background-color: rgb(217, 217, 217); |
| + border: 0; |
| + height: 1px; |
| +} |