mirror of
https://github.com/speatzle/nfsense.git
synced 2025-09-13 15:19:08 +00:00
Feat custom multiselect (#12)
* WIP Multiselect * Reworked Multiselect into multiple Components - Also finished feature implementation --------- Co-authored-by: adroslice <adriel.m.slice@gmail.com>
This commit is contained in:
parent
821fd28863
commit
53fca4f340
7 changed files with 315 additions and 3 deletions
|
@ -20,6 +20,11 @@ button, .button {
|
|||
min-height: 1.5rem;
|
||||
}
|
||||
|
||||
input {
|
||||
height: 1.5rem;
|
||||
padding: 0.25rem;
|
||||
}
|
||||
|
||||
form {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
|
@ -67,7 +72,8 @@ button, .button {
|
|||
.nav-body .button {
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
.button:hover, button:hover {
|
||||
.button:hover, button:hover,
|
||||
.button:focus, button:focus {
|
||||
background-color: var(--cl-bg-hl);
|
||||
}
|
||||
|
||||
|
|
|
@ -3,4 +3,11 @@
|
|||
}
|
||||
.fade-enter-from, .fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.fade-fast-enter-active, .fade-fast-leave-active {
|
||||
transition: all 0.1s ease-out !important;
|
||||
}
|
||||
.fade-fast-enter-from, .fade-fast-leave-to {
|
||||
opacity: 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue