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.
128 lines
1.9 KiB
128 lines
1.9 KiB
5 years ago
|
.albumType {
|
||
7 years ago
|
margin-bottom: 20px;
|
||
|
border: 1px solid $borderColor;
|
||
|
border-radius: 4px;
|
||
|
background-color: $white;
|
||
|
|
||
|
&:last-of-type {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
font-size: 24px;
|
||
5 years ago
|
cursor: pointer;
|
||
7 years ago
|
}
|
||
|
|
||
5 years ago
|
.albumTypeLabel {
|
||
|
margin-right: 5px;
|
||
7 years ago
|
margin-left: 5px;
|
||
|
}
|
||
|
|
||
5 years ago
|
.albumCount {
|
||
7 years ago
|
color: #8895aa;
|
||
|
font-style: italic;
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
5 years ago
|
.episodeCountTooltip {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
7 years ago
|
.expandButton {
|
||
6 years ago
|
composes: link from '~Components/Link/Link.css';
|
||
7 years ago
|
|
||
|
flex-grow: 1;
|
||
5 years ago
|
width: 100%;
|
||
7 years ago
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.left {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
5 years ago
|
flex: 1 1 300px;
|
||
7 years ago
|
}
|
||
|
|
||
|
.left,
|
||
|
.actions {
|
||
|
padding: 15px 10px;
|
||
|
}
|
||
|
|
||
|
.actionsMenu {
|
||
6 years ago
|
composes: menu from '~Components/Menu/Menu.css';
|
||
7 years ago
|
|
||
|
flex: 0 0 45px;
|
||
|
}
|
||
|
|
||
|
.actionsMenuContent {
|
||
6 years ago
|
composes: menuContent from '~Components/Menu/MenuContent.css';
|
||
7 years ago
|
|
||
|
white-space: nowrap;
|
||
5 years ago
|
font-size: $defaultFontSize;
|
||
7 years ago
|
}
|
||
|
|
||
|
.actionMenuIcon {
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
.actionButton {
|
||
6 years ago
|
composes: button from '~Components/Link/IconButton.css';
|
||
7 years ago
|
|
||
|
width: 30px;
|
||
|
}
|
||
|
|
||
5 years ago
|
.albums {
|
||
7 years ago
|
padding-top: 15px;
|
||
|
border-top: 1px solid $borderColor;
|
||
|
}
|
||
|
|
||
|
.collapseButtonContainer {
|
||
5 years ago
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
7 years ago
|
padding: 10px 15px;
|
||
|
width: 100%;
|
||
|
border-top: 1px solid $borderColor;
|
||
|
border-bottom-right-radius: 4px;
|
||
|
border-bottom-left-radius: 4px;
|
||
|
background-color: #fafafa;
|
||
5 years ago
|
}
|
||
|
|
||
|
.collapseButtonIcon {
|
||
|
margin-bottom: -4px;
|
||
7 years ago
|
}
|
||
|
|
||
|
.expandButtonIcon {
|
||
|
composes: actionButton;
|
||
|
|
||
5 years ago
|
margin-right: 15px;
|
||
|
|
||
|
/* position: absolute; */
|
||
|
/* top: 50%; */
|
||
|
/* left: 90%; */
|
||
|
/* margin-top: -12px; */
|
||
|
/* margin-left: -15px; */
|
||
7 years ago
|
}
|
||
|
|
||
5 years ago
|
.noAlbums {
|
||
7 years ago
|
margin-bottom: 15px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: $breakpointSmall) {
|
||
5 years ago
|
.albumType {
|
||
7 years ago
|
border-right: 0;
|
||
|
border-left: 0;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
.expandButtonIcon {
|
||
|
position: static;
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|