mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
61 lines
968 B
SCSS
61 lines
968 B
SCSS
.lightbox {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
&:hover .meta {
|
|
background: $primary;
|
|
opacity: 1;
|
|
transition: opacity .5s;
|
|
}
|
|
}
|
|
|
|
.lightbox-wrapper {
|
|
display: inline-block;
|
|
&, * { outline: 0; }
|
|
}
|
|
|
|
.meta {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
color: $secondary;
|
|
background: $primary;
|
|
opacity: 0;
|
|
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: scale-color($primary, $lightness: 50%);
|
|
font-size: 1em;
|
|
}
|
|
|
|
.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;
|
|
}
|