mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
60 lines
1021 B
SCSS
60 lines
1021 B
SCSS
.lightbox {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
&:hover .meta {
|
|
background: lighten($secondary_background_color, 60%);
|
|
opacity: 1;
|
|
@include transition(opacity .5s);
|
|
}
|
|
}
|
|
|
|
.lightbox-wrapper {
|
|
display: inline-block;
|
|
}
|
|
|
|
.meta {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
color: $tertiary_text_color;
|
|
background: $secondary_background_color;
|
|
opacity: 0;
|
|
@include transition(opacity .2s);
|
|
|
|
span {
|
|
float: left;
|
|
}
|
|
|
|
.filename {
|
|
margin: 5px;
|
|
&:before {
|
|
font-family: "FontAwesome";
|
|
content: "\F03E";
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.informations {
|
|
margin: 6px;
|
|
padding-right: 20px;
|
|
color: lighten($primary_text_color, 35%);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.expand {
|
|
position: absolute;
|
|
bottom: 4px;
|
|
right: 7px;
|
|
&:before {
|
|
font-family: "FontAwesome";
|
|
content: "\F065";
|
|
}
|
|
}
|
|
}
|
|
|
|
// this should be removed once all the posts have been rebaked with the new lightboxes overlays
|
|
.lightbox > span {
|
|
display: none;
|
|
}
|