mirror of
https://codeberg.org/tacerus/teddit.git
synced 2024-11-22 14:59:26 +01:00
fix video duration CSS
This commit is contained in:
parent
bd010e3b36
commit
0dab483a17
@ -378,6 +378,18 @@ footer a {
|
|||||||
max-height: 80px;
|
max-height: 80px;
|
||||||
float: left;
|
float: left;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#links .link .image .duration {
|
||||||
|
left: 0;
|
||||||
|
background: gray;
|
||||||
|
position: absolute;
|
||||||
|
background-color: rgba(0,0,0,0.6);
|
||||||
|
color: white;
|
||||||
|
bottom: 0px;
|
||||||
|
font-size: var(--sm-font);
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
#links .link .image img {
|
#links .link .image img {
|
||||||
width: auto;
|
width: auto;
|
||||||
@ -1049,6 +1061,15 @@ footer a {
|
|||||||
font-size: var(--sm-font);
|
font-size: var(--sm-font);
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
#user .entries .link .image a span {
|
||||||
|
bottom: 0;
|
||||||
|
background: #0000005e;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
font-size: var(--sm-font);
|
||||||
|
}
|
||||||
#user .entries .link .image img {
|
#user .entries .link .image img {
|
||||||
max-width: 80px;
|
max-width: 80px;
|
||||||
}
|
}
|
||||||
|
@ -9,12 +9,12 @@
|
|||||||
a(href="" + link.permalink + "")
|
a(href="" + link.permalink + "")
|
||||||
img(src="" + link.images.thumb + "", alt="")
|
img(src="" + link.images.thumb + "", alt="")
|
||||||
if link.duration
|
if link.duration
|
||||||
span #{secondsToMMSS(link.duration)}
|
span.duration #{secondsToMMSS(link.duration)}
|
||||||
else
|
else
|
||||||
a(href=""+ link.url +"", rel="noopener noreferrer")
|
a(href=""+ link.url +"", rel="noopener noreferrer")
|
||||||
img(src="" + link.images.thumb + "", alt="")
|
img(src="" + link.images.thumb + "", alt="")
|
||||||
if link.duration
|
if link.duration
|
||||||
span #{secondsToMMSS(link.duration)}
|
span.duration #{secondsToMMSS(link.duration)}
|
||||||
else
|
else
|
||||||
a(href="" + link.permalink + "")
|
a(href="" + link.permalink + "")
|
||||||
.no-image no image
|
.no-image no image
|
||||||
|
Loading…
Reference in New Issue
Block a user