2018-11-14 19:51:25 -08:00
|
|
|
.asset-preview {
|
2019-03-05 01:49:02 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-25 19:37:07 -05:00
|
|
|
background: $card-color;
|
|
|
|
color: $text-color;
|
|
|
|
width: 240px;
|
|
|
|
border: $subtle-border;
|
2019-03-05 01:49:02 -05:00
|
|
|
height: 256px;
|
2019-01-25 19:37:07 -05:00
|
|
|
&:hover {
|
2019-03-05 01:49:02 -05:00
|
|
|
border-color: $highlight-border-color;
|
2019-02-18 13:57:00 -05:00
|
|
|
color: $primary-color;
|
2019-01-25 19:37:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 01:49:02 -05:00
|
|
|
.asset-preview__image {
|
|
|
|
height : 180px;
|
|
|
|
width : 240px;
|
|
|
|
overflow: hidden;
|
|
|
|
object-fit: cover;
|
|
|
|
padding: 0;
|
|
|
|
margin : 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-preview__image-box {
|
|
|
|
width : 240px;
|
|
|
|
height : 180px;
|
|
|
|
padding: 0;
|
|
|
|
margin : 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2019-01-25 19:37:07 -05:00
|
|
|
.asset-preview__label {
|
2019-03-05 01:49:02 -05:00
|
|
|
height: 100%;
|
|
|
|
padding: $thin-padding;
|
2019-01-25 19:37:07 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-preview__label-text {
|
|
|
|
overflow: hidden;
|
2019-03-05 01:49:02 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
2019-01-25 19:37:07 -05:00
|
|
|
box-sizing: border-box;
|
2019-03-05 01:49:02 -05:00
|
|
|
font-size: $text-small;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 54px;
|
2018-11-14 19:51:25 -08:00
|
|
|
}
|
|
|
|
|
2019-03-05 01:49:02 -05:00
|
|
|
.asset-preview__label-info {
|
|
|
|
width: 100%;
|
|
|
|
height: 15px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-01-07 17:44:34 -05:00
|
|
|
box-sizing: border-box;
|
2019-03-05 01:49:02 -05:00
|
|
|
align-items: center;
|
2019-01-07 17:44:34 -05:00
|
|
|
}
|
|
|
|
|
2019-03-05 01:49:02 -05:00
|
|
|
.asset-preview__label-info-datum {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2019-01-25 19:37:07 -05:00
|
|
|
overflow: hidden;
|
|
|
|
box-sizing: border-box;
|
2019-03-05 01:49:02 -05:00
|
|
|
font-size: $text-small;
|
|
|
|
max-width: 40%;
|
2018-05-30 15:00:09 -07:00
|
|
|
}
|
2018-10-11 13:03:39 -04:00
|
|
|
|
2019-03-05 01:49:02 -05:00
|
|
|
.asset-preview__label-info-datum svg{
|
|
|
|
height: 1.2em;
|
|
|
|
width: 1.2em;
|
|
|
|
padding: 0;
|
|
|
|
padding-right: $thin-padding;
|
2018-10-11 13:03:39 -04:00
|
|
|
margin: 0;
|
2019-03-05 01:49:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.asset-preview__label-info-datum .svg-icon{
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-preview__blocked {
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
height: 64%;
|
|
|
|
padding: $thin-padding;
|
|
|
|
margin-bottom: $thin-padding;
|
2018-11-18 20:57:54 -05:00
|
|
|
}
|