2013-09-06 03:37:07 +08:00
|
|
|
.lightbox {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&:hover .meta {
|
2018-08-29 03:25:54 +08:00
|
|
|
opacity: 0.9;
|
2018-06-08 17:49:31 +08:00
|
|
|
transition: opacity 0.5s;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-12 23:57:56 +08:00
|
|
|
.lightbox-wrapper {
|
|
|
|
display: inline-block;
|
2018-06-08 17:49:31 +08:00
|
|
|
&,
|
|
|
|
* {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2013-12-12 23:57:56 +08:00
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.meta {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2018-08-29 03:25:54 +08:00
|
|
|
color: $secondary;
|
|
|
|
background: $primary;
|
2013-09-06 03:37:07 +08:00
|
|
|
opacity: 0;
|
2018-06-08 17:49:31 +08:00
|
|
|
transition: opacity 0.2s;
|
2013-09-06 03:37:07 +08:00
|
|
|
|
|
|
|
span {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filename {
|
2018-08-29 03:25:54 +08:00
|
|
|
margin: 6px 6px 2px 6px;
|
2015-09-16 17:58:06 +08:00
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2013-09-06 03:37:07 +08:00
|
|
|
&:before {
|
|
|
|
font-family: "FontAwesome";
|
|
|
|
content: "\F03E";
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.informations {
|
|
|
|
margin: 6px;
|
|
|
|
padding-right: 20px;
|
2018-08-29 03:25:54 +08:00
|
|
|
color: $secondary-high;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-0;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.expand {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
right: 7px;
|
|
|
|
&:before {
|
|
|
|
font-family: "FontAwesome";
|
|
|
|
content: "\F065";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|