diff --git a/docs/en_US/release_notes_4_3.rst b/docs/en_US/release_notes_4_3.rst index 8744040d2..6863682bf 100644 --- a/docs/en_US/release_notes_4_3.rst +++ b/docs/en_US/release_notes_4_3.rst @@ -9,5 +9,6 @@ This release contains a number of fixes reported since the release of pgAdmin4 4 Bug fixes ********* +| `Bug #3873 `_ - Fix context sub-menu alignment on Safari. | `Bug #3942 `_ - Close connections gracefully when the user logs out of pgAdmin. -| `Bug #3963 `_ - Fix alignment of import/export toggle switch. \ No newline at end of file +| `Bug #3963 `_ - Fix alignment of import/export toggle switch. diff --git a/web/pgadmin/static/scss/_pgadmin.style.scss b/web/pgadmin/static/scss/_pgadmin.style.scss index 6879b81d5..b4ae917f6 100644 --- a/web/pgadmin/static/scss/_pgadmin.style.scss +++ b/web/pgadmin/static/scss/_pgadmin.style.scss @@ -868,7 +868,7 @@ table.table-empty-rows{ font-family: $font-family-icon; content: "\f054" !important; right: 15px; - top: auto; + top: 3px; font-size: 0.6rem; line-height: 2; border-style: none; diff --git a/web/pgadmin/static/scss/_webcabin.pgadmin.scss b/web/pgadmin/static/scss/_webcabin.pgadmin.scss index 0423c0e35..35b5e6774 100644 --- a/web/pgadmin/static/scss/_webcabin.pgadmin.scss +++ b/web/pgadmin/static/scss/_webcabin.pgadmin.scss @@ -265,7 +265,8 @@ } .wcMenuSeparator, .context-menu-separator { - border: 0.5px solid $dropdown-border-color; + border: 1px solid $dropdown-border-color; + transform: scaleY(0.5); } .wcLoadingBackground { @@ -307,10 +308,10 @@ } .context-menu-submenu::after { - font-family: 'FontAwesome'; + font-family: $font-family-icon; content: "\f054" !important; right: 15px; - top: auto; + top: 3px; font-size: 0.6rem; line-height: 2; border-style: none;