Ensure context menus never get hidden below the menu bar. Fixes #3789
parent
02642628b0
commit
a804485a4c
|
@ -18,5 +18,6 @@ Housekeeping
|
||||||
Bug fixes
|
Bug fixes
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
| `Issue #3789 <https://redmine.postgresql.org/issues/3789>`_ - Ensure context menus never get hidden below the menu bar.
|
||||||
| `Issue #4845 <https://redmine.postgresql.org/issues/4845>`_ - Fixed potential error in the properties dialog for the Code tab.
|
| `Issue #4845 <https://redmine.postgresql.org/issues/4845>`_ - Fixed potential error in the properties dialog for the Code tab.
|
||||||
| `Issue #4850 <https://redmine.postgresql.org/issues/4850>`_ - Fixed an issue where Datetimepicker control opens when clicking on the label.
|
| `Issue #4850 <https://redmine.postgresql.org/issues/4850>`_ - Fixed an issue where Datetimepicker control opens when clicking on the label.
|
|
@ -260,7 +260,7 @@
|
||||||
|
|
||||||
.wcMenuList, .context-menu-list {
|
.wcMenuList, .context-menu-list {
|
||||||
border: 1px solid $dropdown-border-color;
|
border: 1px solid $dropdown-border-color;
|
||||||
z-index: 999 !important;
|
z-index: 9999 !important;
|
||||||
background-color: $dropdown-bg;
|
background-color: $dropdown-bg;
|
||||||
box-shadow: $dropdown-box-shadow;
|
box-shadow: $dropdown-box-shadow;
|
||||||
border-radius: $dropdown-border-radius;
|
border-radius: $dropdown-border-radius;
|
||||||
|
|
Loading…
Reference in New Issue