mirror of
https://github.com/Readarr/Readarr
synced 2025-12-26 10:14:51 +01:00
* Multi Disc Stage 1 - Backend Work * Quality Group Functionality * Fixed: Only show wanted album types on ArtistDetail page * Add Media Count Column to ArtistDetail Page * Parser updates for multidisc cases, other usenet release title formats * Search for Tracks by Medium Number in Addition to Title and TrackNumber * Medium Renaming Token for Track Naming * fixup Codacy and Comment Cleanup * fixup remove comments
41 lines
529 B
CSS
41 lines
529 B
CSS
.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;
|
|
}
|
|
}
|