Minor search provider enhancement. Minor UI updates.
All checks were successful
ci / build-test (push) Successful in 3m19s
ci / publish-image (push) Has been skipped

This commit is contained in:
2025-11-23 17:14:22 -05:00
parent 8490b49354
commit 1f533c6ec1
8 changed files with 204 additions and 55 deletions

View File

@@ -132,6 +132,11 @@ code {
align-items: center;
}
.search-filter-control-container > .search-filter-control-span-1 {
display: flex;
align-items: center;
}
.search-filter-control-container > .search-filter-control-span-2 {
display: flex;
align-items: center;

View File

@@ -4,7 +4,7 @@
border: 1px solid var(--input-border-color);
background-color: var(--input-background-color);
transition: background-color .2s,color .2s,border-color .2s,box-shadow .2s;
padding: .25rem .5rem;
/*padding: .25rem .5rem;*/
}
.bit-tfl-fgp {
@@ -25,6 +25,14 @@
}
/* DropDownList */
.bit-drp {
font-family: var(--font-family);
}
.bit-drp-lbl {
font-weight: 500;
}
.bit-drp-cal {
background-color: var(--input-background-color);
}
@@ -38,4 +46,23 @@
.bit-drp-sel:hover {
color: #ffffffde;
background: rgba(100,181,246,.16);
}
.bit-drp-scn {
max-height: 200px !important;
padding: .5rem 0;
}
.bit-drp-itm,
.bit-drp-mcn {
justify-content: flex-start; /* To get around Mud Blazor, until Mud Blazor is removed */
padding: .5rem 1rem;
}
.bit-drp-sch .bit-drp-tcn {
padding: 0;
}
.bit-drp-pre, .bit-drp-suf {
background: rgb(57, 79, 94);
}