Compare commits

...

2 Commits

Author SHA1 Message Date
82a1749721 change default avatar picture 2024-03-10 18:26:39 -05:00
b1bf2e382e Add custom dropdown style 2024-03-10 17:59:30 -05:00
2 changed files with 37 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 664 B

View File

@ -201,4 +201,41 @@ button.formbutton a {
margin: 2px !important;
font-size: 0px;
}
}
*.wdropdown > button {
min-width: 130px;
min-height: 30px;
background: var(--primary-container-background);
border: var(--primary-container-border);
cursor: pointer;
text-align: left;
margin: 2px 0;
}
*.wdropdown > div.select {
position: absolute;
display: none;
flex-direction: column;
background: var(--secondary-container-background);
border: var(--secondary-container-border);
border-top: none;
overflow-y: auto;
max-height: 280px;
}
*.wdropdown.active > div.select {
display: inline;
}
*.wdropdown.active > div.select > * {
display: block;
}
*.wdropdown > div.select > button {
background: none;
border: none;
cursor: pointer;
margin: 4px;
text-align: left;
}