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

Unified Diff: chrome/browser/resources/shared/css/menu.css

Issue 2104011: DOMUI shared resources: Update menu style to follow Roma's spec for menus... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/css/menu.css
===================================================================
--- chrome/browser/resources/shared/css/menu.css (revision 47720)
+++ chrome/browser/resources/shared/css/menu.css (working copy)
@@ -2,19 +2,20 @@
menu {
display: none;
position: absolute;
- border: 1px solid #999;
- -webkit-box-shadow: 2px 2px 3px hsla(0, 0%, 0%, .3);
+ border: 1px solid rgba(0, 0, 0, .50);
+ -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, .50);
color: black;
- background-color: white;
+ background: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#eee));
left: 0;
white-space: nowrap;
z-index: 2;
- padding: 2px;
+ padding: 8px 0;
margin: 0;
cursor: default;
- border-radius: 4px;
+ border-radius: 3px;
}
+
menu > * {
display: block;
margin: 0;
@@ -27,22 +28,33 @@
background: transparent;
font: inherit;
border: 0;
- padding: 3px 8px;
+ line-height: 18px;
+ padding: 0 19px;
overflow: hidden;
text-overflow: ellipsis;
}
menu > hr {
+ background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)),
+ to(rgba(0, 0, 0, .02)));
border: 0;
- border-top: 1px solid rgb(153, 153, 153);
- margin: 2px 0;
+ height: 1px;
+ margin: 8px 0;
}
+menu > [disabled] {
+ color: rgba(0, 0, 0, .3);
+}
+
menu > [hidden] {
display: none;
}
menu > [selected] {
- background-color: hsl(213, 66%, 57%);
- color: white;
+ background-color: #dce5fa;
}
+
+menu > [selected]:active {
+ background-color: #426dc9;
+ color: #fff;
+}
« 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