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

Unified Diff: resources/bookmark_manager/css/menu.css

Issue 853002: Updating the Chromium reference build for Windows. The continuous... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Added the symbol files back. Created 10 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 | « resources/bookmark_manager/css/list.css ('k') | resources/bookmark_manager/css/tree.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: resources/bookmark_manager/css/menu.css
===================================================================
--- resources/bookmark_manager/css/menu.css (revision 0)
+++ resources/bookmark_manager/css/menu.css (revision 0)
@@ -0,0 +1,47 @@
+
+menu {
+ display: none;
+ position: absolute;
+ border: 1px solid #999;
+ -webkit-box-shadow: 2px 2px 3px hsla(0, 0%, 0%, .3);
+ color: black;
+ background-color: hsla(213, 0%, 100%, .95);
+ left: 0;
+ white-space: nowrap;
+ z-index: 2;
+ padding: 1px;
+ margin: 0;
+ cursor: default;
+}
+
+menu > * {
+ display: block;
+ margin: 0;
+ width: 100%;
+ text-align: start;
+}
+
+menu > :not(hr) {
+ -webkit-appearance: none;
+ background: transparent;
+ font: inherit;
+ border: 0;
+ padding: 3px 8px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+menu > hr {
+ border: 0;
+ border-top: 1px solid rgb(153, 153, 153);
+ margin: 2px 0;
+}
+
+menu > [hidden] {
+ display: none;
+}
+
+menu > [selected] {
+ background-color: hsl(213, 66%, 57%);
+ color: white;
+}
« no previous file with comments | « resources/bookmark_manager/css/list.css ('k') | resources/bookmark_manager/css/tree.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698