From e0bb01aea6d171007661e487f34183beba160089 Mon Sep 17 00:00:00 2001 From: Josh Hunt Date: Mon, 30 May 2022 17:07:01 +0100 Subject: [PATCH] Dashboard: Fix panel menu styling issues (#49806) * Dashboard: Fix panel menu styling issues * remove !importants I added --- public/sass/components/_dropdown.scss | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/public/sass/components/_dropdown.scss b/public/sass/components/_dropdown.scss index f3613f6b7da..ee69ba95656 100644 --- a/public/sass/components/_dropdown.scss +++ b/public/sass/components/_dropdown.scss @@ -207,8 +207,8 @@ // Right aligned dropdowns // --------------------------- .pull-right > .dropdown-menu { - right: 0; - left: auto; + left: 100%; + right: unset; } // Allow for dropdowns to go bottom up (aka, dropup-menu) @@ -243,7 +243,6 @@ left: 100%; margin-top: 0px; margin-left: -1px; - @include border-radius(0 6px 6px 6px); } .dropdown-submenu:hover > .dropdown-menu { display: block; @@ -255,7 +254,6 @@ bottom: 0; margin-top: 0; margin-bottom: -2px; - @include border-radius(5px 5px 5px 0); } // .dropdown-submenu > a::after { // position: absolute; @@ -284,7 +282,6 @@ left: -100%; width: 100%; margin-left: 2px; - @include border-radius(6px 0 6px 6px); } }