diff --git a/docs/en_US/release_notes_4_16.rst b/docs/en_US/release_notes_4_16.rst index aeaf1abc9..9b4741329 100644 --- a/docs/en_US/release_notes_4_16.rst +++ b/docs/en_US/release_notes_4_16.rst @@ -48,3 +48,4 @@ Bug fixes | `Issue #4966 `_ - Fix 'Could not find the object on the server.' error while refreshing the check constraint. | `Issue #4978 `_ - Fix pgAdmin4 failed to start issue after upgrading to version 4.15. | `Issue #4985 `_ - Fix an issue where the inherited table name with quotes did not escape correctly. +| `Issue #4991 `_ - Fix an issue where context menu is open along with submenu and the focus is not on context menu or submenu. diff --git a/web/pgadmin/static/scss/_webcabin.pgadmin.scss b/web/pgadmin/static/scss/_webcabin.pgadmin.scss index fca37c979..7a7dd658d 100644 --- a/web/pgadmin/static/scss/_webcabin.pgadmin.scss +++ b/web/pgadmin/static/scss/_webcabin.pgadmin.scss @@ -271,7 +271,7 @@ background-color: $dropdown-bg; } -.wcMenuItemHover, .wcMenuItem:hover, .context-menu-item:not(.context-menu-not-selectable).hover, .context-menu-item:not(.context-menu-not-selectable):hover { +.wcMenuItemHover, .wcMenuItem:hover, .context-menu-item:not(.context-menu-not-selectable).hover, .context-menu-item:not(.context-menu-not-selectable):hover, .context-menu-hover { color: $dropdown-link-hover-color; background-color: $dropdown-link-hover-bg !important; }