fix style for dropdown
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 47s

This commit is contained in:
2025-04-06 19:50:07 +02:00
parent 91d8dae02d
commit 47c1e91535
2 changed files with 39 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
gap: 6px;
height: 20px;
align-items: center;
z-index: 501;
}
.select-element:hover {
@@ -64,4 +65,32 @@
margin-right: 6px;
}
/***** Filter Theme *****/
.filter {
padding: 2px 6px;
}
.filter:hover {
background: var(--low-white);
}
.filter .select-label {
text-wrap: nowrap;
margin-right: 6px;
}
/***** Filter Theme *****/
.advancedfilter {
padding: 2px 6px;
}
.advancedfilter:hover {
background: var(--low-white);
}
.advancedfilter .select-label {
text-wrap: nowrap;
margin-right: 6px;
}

View File

@@ -5,6 +5,7 @@
.select-container {
margin-top: 4px;
position: absolute;
z-index: 500;
}
.align-right {
@@ -18,6 +19,7 @@
border-radius: var(--small-radius);
animation-name: fade-in;
animation-duration: 0.4s;
z-index: 500;
}
.line {
@@ -47,3 +49,11 @@
min-width: 150px;
}
/***** AdvanceFilter Theme *****/
.select-content.advancedfilter {
background: var(--light-grey);
box-shadow: var(--drop-shadow);
padding: 4px 0;
min-width: 150px;
}