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.
Radarr/frontend/src/Components/Form/EnhancedSelectInputOption.css

62 lines
883 B

.option {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
width: 100%;
cursor: default;
&:hover {
background-color: var(--inputHoverBackgroundColor);
}
}
.optionCheck {
composes: container from '~./CheckInput.css';
flex: 0 0 0;
}
.optionCheckInput {
composes: input from '~./CheckInput.css';
margin-top: 0;
}
.isSelected {
background-color: var(--inputSelectedBackgroundColor);
&:hover {
background-color: var(--inputSelectedBackgroundColor);
}
&.isMobile {
background-color: inherit;
.iconContainer {
color: var(--primaryColor);
}
}
}
.isDisabled {
background-color: #aaa;
}
.isHidden {
display: none;
}
.isMobile {
height: 50px;
border-bottom: 1px solid var(--borderColor);
&:last-child {
border: none;
}
&:hover {
background-color: unset;
}
}