2019-03-22 10:52:06 -05:00
|
|
|
$meta-element-margin: 6px;
|
|
|
|
|
2018-12-13 01:17:08 -06:00
|
|
|
.lightbox-wrapper .lightbox {
|
2013-09-05 14:37:07 -05:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2018-12-14 16:44:38 -06:00
|
|
|
overflow: hidden;
|
2013-09-05 14:37:07 -05:00
|
|
|
&:hover .meta {
|
2018-08-28 14:25:54 -05:00
|
|
|
opacity: 0.9;
|
2018-06-08 04:49:31 -05:00
|
|
|
transition: opacity 0.5s;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2018-12-10 14:44:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.d-lazyload-hidden {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2018-12-21 10:29:29 -06:00
|
|
|
.onebox img.d-lazyload-hidden {
|
|
|
|
border: 1px solid $primary-low;
|
|
|
|
}
|
|
|
|
|
2018-12-10 14:44:38 -06:00
|
|
|
.cooked img.d-lazyload {
|
|
|
|
transition: opacity 0.4s 0.75s ease;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
2013-12-12 09:57:56 -06:00
|
|
|
.lightbox-wrapper {
|
|
|
|
display: inline-block;
|
2018-12-11 05:23:39 -06:00
|
|
|
img {
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: top;
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
&,
|
|
|
|
* {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2013-12-12 09:57:56 -06:00
|
|
|
}
|
|
|
|
|
2013-09-05 14:37:07 -05:00
|
|
|
.meta {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2018-08-28 14:25:54 -05:00
|
|
|
color: $secondary;
|
|
|
|
background: $primary;
|
2013-09-05 14:37:07 -05:00
|
|
|
opacity: 0;
|
2018-06-08 04:49:31 -05:00
|
|
|
transition: opacity 0.2s;
|
2019-03-22 10:52:06 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2013-09-05 14:37:07 -05:00
|
|
|
|
|
|
|
.filename {
|
2019-03-22 10:52:06 -05:00
|
|
|
margin: $meta-element-margin;
|
2019-11-06 13:00:29 -06:00
|
|
|
@include ellipsis;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
2019-03-22 10:52:06 -05:00
|
|
|
.d-icon {
|
|
|
|
margin: $meta-element-margin;
|
|
|
|
opacity: 0.8;
|
|
|
|
color: $secondary;
|
|
|
|
+ .filename {
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 14:37:07 -05:00
|
|
|
.informations {
|
2019-03-22 10:52:06 -05:00
|
|
|
margin: $meta-element-margin;
|
2013-09-05 14:37:07 -05:00
|
|
|
padding-right: 20px;
|
2018-08-28 14:25:54 -05:00
|
|
|
color: $secondary-high;
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-0;
|
2019-03-22 10:52:06 -05:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 3;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
}
|
2019-04-17 12:24:03 -05:00
|
|
|
|
|
|
|
.mfp-preloader .spinner {
|
|
|
|
margin: auto;
|
|
|
|
}
|
2019-11-26 08:06:30 -06:00
|
|
|
|
2019-11-28 03:51:08 -06:00
|
|
|
.discourse-no-touch {
|
|
|
|
@if is-light-color-scheme() {
|
|
|
|
a.lightbox {
|
|
|
|
-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
|
|
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
|
|
}
|
2019-11-26 08:06:30 -06:00
|
|
|
|
2019-11-28 03:51:08 -06:00
|
|
|
a.lightbox:hover {
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 2px 5px 0 rgba($primary, 0.2),
|
|
|
|
0 2px 10px 0 rgba($primary, 0.2);
|
|
|
|
}
|
2019-11-26 08:06:30 -06:00
|
|
|
}
|
|
|
|
}
|