Use custom datalist implement

This commit is contained in:
2023-06-30 15:57:34 +08:00
parent 42cb28e38e
commit 5aa432fc10
4 changed files with 106 additions and 51 deletions

View File

@@ -35,6 +35,28 @@ body {
top: 64px;
}
.b-text-field .datalist {
width: 100%;
display: none;
}
.b-text-field .datalist.open {
display: grid;
}
.b-text-field .datalist .mdc-list-item {
display: grid;
}
.b-text-field .datalist .mdc-list-item .value {
width: 100%;
}
.b-text-field .datalist .mdc-list-item .label {
width: 100%;
font-size: smaller;
}
.settings {
margin: 0 18%;
padding-top: 40px;