fixed visual glitch in topbar dropdown menu

bzr revid: mit@openerp.com-20120719152804-zcxvuaicpzfubdv1
This commit is contained in:
Minh Tran 2012-07-19 17:28:04 +02:00
parent 8632675b82
commit cf6af909fb
2 changed files with 6 additions and 4 deletions

View File

@ -945,11 +945,12 @@
}
.openerp .oe_topbar .oe_dropdown_menu li {
float: none;
padding: 3px 12px;
}
.openerp .oe_topbar .oe_dropdown_menu li a {
color: #eeeeee;
}
.openerp .oe_topbar .oe_dropdown_menu li a:hover {
.openerp .oe_topbar .oe_dropdown_menu li:hover {
background-color: #292929;
background-image: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#191919));
background-image: -webkit-linear-gradient(top, #292929, #191919);

View File

@ -735,11 +735,12 @@ $sheet-max-width: 860px
@include background-clip()
li
float: none
padding: 3px 12px
a
color: #eee
&:hover
@include vertical-gradient(#292929, #191919)
@include box-shadow(none)
&:hover
@include vertical-gradient(#292929, #191919)
@include box-shadow(none)
// }}}
// Webclient.leftbar {{{