Registration and fuzzy search in progress

This commit is contained in:
Claude Brisson
2023-12-15 13:45:23 +01:00
parent 519eca8af3
commit ea44f6068e
26 changed files with 708 additions and 102 deletions

View File

@@ -32,9 +32,43 @@
justify-content: space-around;
margin: 1px;
background-color: #eeeeee;
&.centered {
align-items: center;
}
}
.inline.fields {
background-color: #eeeeee;
margin-left: -0.5em;
margin-right: -0.5em;
padding-left: 0.5em;
padding-right: 0.5em;
.centered.field > label {
margin-right: 0;
}
}
/* registration section */
#player-form {
&:not(.add) {
#search-form, #search-result {
display: none;
}
}
}
#search-form {
position: relative;
}
#search-result {
position: absolute;
background-color: gray;
z-index: 2;
width:100%;
top: 100%;
padding: 1em;
overflow-y: auto;
&.hidden {
display: none;
}
}
}