Fix tag rule visibility select box options hidden by save bar

This commit is contained in:
David Rodríguez
2025-11-03 21:15:05 +01:00
parent f18487ea68
commit 9645660d87
3 changed files with 5 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
#save-bar {
position: fixed;
width: 100%;
z-index: 100;
z-index: $save-bar-z-index;
bottom: 0px;
left: 0;
padding: 8px 8px;

View File

@@ -99,6 +99,7 @@
.ts-dropdown {
// Cover up the control with the input
top: 0;
z-index: $ts-dropdown-z-index;
}
.dropdown-input-wrap::after {

View File

@@ -187,3 +187,6 @@ $btn-condensed-height: 26px !default;
$tos-banner-z-index: 1001;
$flash-message-z-index: 1000;
$tag-drop-down-z-index: 999;
$ts-dropdown-z-index: 101;
$save-bar-z-index: 100;