You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Components/Form/EnhancedSelectInputOption.css

42 lines
529 B

.option {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
width: 100%;
cursor: default;
&:hover {
background-color: #f9f9f9;
}
}
.isSelected {
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;
}
}