Improve quote video badge
This commit is contained in:
parent
e920e98d10
commit
6f932b53b0
|
@ -659,14 +659,16 @@ video {
|
||||||
}
|
}
|
||||||
|
|
||||||
.quote-badge {
|
.quote-badge {
|
||||||
background: rgba(0,0,0,0.25);
|
left: 0px;
|
||||||
border-radius: 4px;
|
|
||||||
bottom: 8px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
color: #fffffff0;
|
|
||||||
left: 8px;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
line-height: 16px;
|
align-self: flex-end;
|
||||||
padding: 2px;
|
}
|
||||||
|
|
||||||
|
.quote-badge-text {
|
||||||
|
margin: 4px;
|
||||||
|
background: rgba(0, 0, 0, 0.66);
|
||||||
|
border-radius: 4px;
|
||||||
|
color: #fffffff0;
|
||||||
|
padding: 0px 2px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,9 @@
|
||||||
<div class="quote-media">
|
<div class="quote-media">
|
||||||
<img src=${quote.thumb.get().getSigUrl("pic")}>
|
<img src=${quote.thumb.get().getSigUrl("pic")}>
|
||||||
#if quote.badge.isSome:
|
#if quote.badge.isSome:
|
||||||
<div class="quote-badge">${quote.badge.get()}</div>
|
<div class="quote-badge">
|
||||||
|
<div class="quote-badge-text">${quote.badge.get()}</div>
|
||||||
|
</div>
|
||||||
#end if
|
#end if
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue