fix(select-entries): no select buttons top radius

This commit is contained in:
Florian Schmitt 2025-01-30 11:34:18 +03:00
parent 3926fb3208
commit 8e115103f3

View file

@ -89,7 +89,12 @@ $modal = ''; // declaration d'une chaine de char vide
min-height: 160px;
position: relative !important;
}
.btn-select {z-index: 1; background-color: var(--neutral-color);}
.btn-select {
z-index: 1;
background-color: var(--neutral-color);
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.btn-select, .btn-select:active, .btn-select:focus {color:#fff}
.deselect {display: none; }
.selected .deselect {display: block;}