Remove width:100%; from menu-item styles (was there for icon-support, which was dropped); also fixed the nested-menu visual test to position properly in IE6

This commit is contained in:
jzaefferer 2010-03-22 21:44:32 +01:00
parent 7e79eee1b0
commit e7c2eb42d0
2 changed files with 10 additions and 6 deletions

View File

@ -106,11 +106,16 @@
$("button").click(function(event) { $("button").click(function(event) {
// TODO required to prevent the click handler below from handling this event // TODO required to prevent the click handler below from handling this event
event.stopPropagation(); event.stopPropagation();
nestedmenu.nestedmenu("show").position({ nestedmenu.nestedmenu("show")
my: "left top", .css({
at: "right top", top: 0,
of: event.pageX > 0 ? event : this left: 0
}); })
.position({
my: "left top",
at: "right top",
of: this
});
$(document).one("click", function() { $(document).one("click", function() {
nestedmenu.nestedmenu("hide"); nestedmenu.nestedmenu("hide");
}) })

View File

@ -20,7 +20,6 @@
.ui-menu .ui-menu-item { .ui-menu .ui-menu-item {
margin:0; margin:0;
padding: 0; padding: 0;
width: 100%;
} }
.ui-menu .ui-menu-item a { .ui-menu .ui-menu-item a {
text-decoration:none; text-decoration:none;