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

Unified Diff: chrome/browser/resources/ntp4/footer_menu.css

Issue 9959030: Allow hiding of sessions from Other Devices via context menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/other_sessions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..99b046e46cc3484885af94d432c9ee8d301b1ad8 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,18 @@
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;
+}
+
html[dir='rtl'] .footer-menu-item {
background: no-repeat 100% 50%;
}
@@ -128,3 +145,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;
+}
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/other_sessions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698