Fix an issue where context menu is open along with submenu and the focus is not on context menu or submenu. Fixes #4991.

This commit is contained in:
Murtuza Zabuawala 2019-12-05 11:14:59 +05:30 committed by Akshay Joshi
parent b9c7a9e887
commit f901eeeb4a
2 changed files with 2 additions and 1 deletions

View File

@ -48,3 +48,4 @@ Bug fixes
| `Issue #4966 <https://redmine.postgresql.org/issues/4966>`_ - Fix 'Could not find the object on the server.' error while refreshing the check constraint.
| `Issue #4978 <https://redmine.postgresql.org/issues/4978>`_ - Fix pgAdmin4 failed to start issue after upgrading to version 4.15.
| `Issue #4985 <https://redmine.postgresql.org/issues/4985>`_ - Fix an issue where the inherited table name with quotes did not escape correctly.
| `Issue #4991 <https://redmine.postgresql.org/issues/4991>`_ - Fix an issue where context menu is open along with submenu and the focus is not on context menu or submenu.

View File

@ -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;
}