diff --git a/zkdoc/release-note b/zkdoc/release-note index bb2d84cfa3e..46ada1a6749 100644 --- a/zkdoc/release-note +++ b/zkdoc/release-note @@ -61,6 +61,7 @@ ZK 10.0.0 ZK-5539: $init() will call twice on Keikai component ZK-5540: zk.wpd with browser condition won't work with ZK 10 ZK-5530: users cannot focus on the icons on the Calendar header + ZK-5025: redundant selection highlight on a menupopup * Upgrade Notes + The Java binary-compatible level is Java 11 since ZK 10. diff --git a/zul/src/main/resources/web/js/zul/menu/less/menu.less b/zul/src/main/resources/web/js/zul/menu/less/menu.less index 445128cea2e..85b52105aa8 100644 --- a/zul/src/main/resources/web/js/zul/menu/less/menu.less +++ b/zul/src/main/resources/web/js/zul/menu/less/menu.less @@ -216,9 +216,7 @@ .z-menuitem-content { color: @menuPopupItemColor; background: @menuPopupItemBackground; - &:hover { - .contentStyle(@menuPopupItemHoverColor, @menuPopupItemHoverBackground); - } + // Disable `.z-menupopup > .z-menuitem-content:hover` to avoid ZK-5025 &:focus { .contentStyle(@menuPopupItemHoverColor, @menuPopupItemHoverBackground); }