lidarr/frontend/src/Components/Form/EnhancedSelectInputOption.css
Qstick 52ec4c4a66 New: HintedSelectInput Component
Co-Authored-By: taloth <taloth@users.noreply.github.com>
2019-08-09 23:19:58 -04:00

45 lines
577 B
CSS

.option {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
width: 100%;
cursor: default;
&:hover {
background-color: #f8f8f8;
}
}
.isSelected {
background-color: #e2e2e2;
&:hover {
background-color: #e2e2e2;
}
&.isMobile {
background-color: inherit;
.iconContainer {
color: $primaryColor;
}
}
}
.isDisabled {
background-color: #aaa;
}
.isHidden {
display: none;
}
.isMobile {
height: 50px;
border-bottom: 1px solid $borderColor;
&:last-child {
border: none;
}
}