Files
seedit/src/components/sort-dropdown/sort-dropdown.module.css
2023-12-14 16:45:24 +01:00

59 lines
990 B
CSS

.content {
border-bottom: 1px dotted gray;
padding: 5px 10px;
margin: 5px;
margin-top: 0;
overflow: hidden;
font-size: larger;
}
.dropdownTitle {
color: var(--text) !important;
}
.dropdown {
display: inline;
position: relative;
cursor: pointer;
}
.selected {
position: relative;
background: none no-repeat scroll center right;
background-image: url("/public/assets/buttons/droparrowgray.gif");
padding-right: 21px;
text-decoration: underline;
color: gray;
font-weight: bold;
}
.dropChoices {
margin-top: 2px;
position: absolute;
left: 90px;
border: 1px solid gray;
z-index: 100;
background-color: var(--background);
white-space: nowrap;
line-height: normal;
margin-top: 3px;
}
.filter {
cursor: pointer;
padding: 2px 3px 1px 3px;
display: block;
color: var(--text-primary);
}
.filter:hover {
background-color: var(--background-primary);
}
.dropChoicesHidden {
display: none;
}
.dropChoicesVisible {
display: block;
}