mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
6e38df366f
* New: Native Theme Engine Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com> (cherry picked from commit 2291f3e00eb2ff9268a0b2f49da8dde82ee13c04) * Update CSS for themes * Fixup CSS values * Fixup remove duped Color-Impaired setting * Fixup Link Colors Co-Authored-By: Qstick <qstick@gmail.com>
126 lines
1.9 KiB
CSS
126 lines
1.9 KiB
CSS
.bookType {
|
|
margin-bottom: 20px;
|
|
border: 1px solid var(--borderColor);
|
|
border-radius: 4px;
|
|
background-color: var(--cardBackgroundColor);
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bookTypeLabel {
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.bookCount {
|
|
color: #8895aa;
|
|
font-style: italic;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.episodeCountTooltip {
|
|
display: flex;
|
|
}
|
|
|
|
.expandButton {
|
|
composes: link from '~Components/Link/Link.css';
|
|
|
|
flex-grow: 1;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 0 1 300px;
|
|
}
|
|
|
|
.left,
|
|
.actions {
|
|
padding: 15px 10px;
|
|
}
|
|
|
|
.actionsMenu {
|
|
composes: menu from '~Components/Menu/Menu.css';
|
|
|
|
flex: 0 0 45px;
|
|
}
|
|
|
|
.actionsMenuContent {
|
|
composes: menuContent from '~Components/Menu/MenuContent.css';
|
|
|
|
white-space: nowrap;
|
|
font-size: $defaultFontSize;
|
|
}
|
|
|
|
.actionMenuIcon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.actionButton {
|
|
composes: button from '~Components/Link/IconButton.css';
|
|
|
|
width: 30px;
|
|
}
|
|
|
|
.books {
|
|
padding-top: 15px;
|
|
border-top: 1px solid var(--borderColor);
|
|
}
|
|
|
|
.collapseButtonContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px 15px;
|
|
width: 100%;
|
|
border-top: 1px solid var(--borderColor);
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
background-color: var(--collapseButtonBackgroundColor);
|
|
}
|
|
|
|
.collapseButtonIcon {
|
|
margin-bottom: -4px;
|
|
}
|
|
|
|
.expandButtonIcon {
|
|
composes: actionButton;
|
|
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -12px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
.noBooks {
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.bookType {
|
|
border-right: 0;
|
|
border-left: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.expandButtonIcon {
|
|
position: static;
|
|
margin: 0;
|
|
}
|
|
}
|