mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-31 09:11:11 -05:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
66 lines
959 B
CSS
66 lines
959 B
CSS
.fileDetails {
|
|
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: 18px;
|
|
}
|
|
|
|
.filename {
|
|
flex-grow: 1;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.expandButton {
|
|
position: relative;
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.actionButton {
|
|
composes: button from '~Components/Link/IconButton.css';
|
|
|
|
width: 30px;
|
|
}
|
|
|
|
.audioTags {
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
border-top: 1px solid $borderColor;
|
|
}
|
|
|
|
.expandButtonIcon {
|
|
composes: actionButton;
|
|
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-top: -12px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.medium {
|
|
border-right: 0;
|
|
border-left: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.expandButtonIcon {
|
|
position: static;
|
|
margin: 0;
|
|
}
|
|
}
|