This repository has been archived on 2025-09-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
repertory-ui/src/components/UI/DropDown/DropDown.css
2019-04-09 12:18:57 -05:00

39 lines
662 B
CSS

.DropDown {
display: block;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.DropDownSelect {
width: 100%;
height: 100%;
display: block;
margin: 0;
padding: 2px;
border-radius: var(--border_radius);
background: rgba(10, 10, 20, 0.3);
border-color: rgba(10, 10, 20, 0.9);
color: var(--text_color);
box-sizing: border-box;
}
.DropDownOption {
background: rgba(10, 10, 15, 0.8);
border-color: rgba(10, 10, 20, 0.9);
color: var(--text_color);
}
.DropDownSelect:hover:enabled {
cursor: pointer;
}
.DropDownSelect:hover:disabled {
cursor: no-drop;
}
.DropDownSelect:active,
.DropDownSelect.active {
cursor: pointer;
}