Skip to content
Snippets Groups Projects

Make figcaption visible

Merged codecraft requested to merge make_figcaption_visible into master
Files
2
+ 17
4
@@ -4,11 +4,24 @@
}
.caption {
display: flex;
justify-content: center;
padding: 4px 10px 4px 10px;
position: absolute;
width: 100%;
opacity: 75%;
padding: 4px 4px 4px 4px;
bottom: 0;
}
.caption:hover>figcaption {
height: 100%;
text-wrap: wrap;
}
.tag.caption {
.caption>figcaption {
display: block;
margin: 0 0 0 0!important;
padding-top: 3px;
position: relative;
width: 100%;
overflow: hidden;
text-wrap: wrap;
}
Loading