- {% if show_ignored_only %}
-
Ignore: {{ video.title }}
- {% else %}
-
Download: {{ video.title }}
- {% endif %}
+
{{ video.title }}
{% if video.channel_indexed %}
{{ video.channel_name }}
{% else %}
diff --git a/tubearchivist/static/css/style.css b/tubearchivist/static/css/style.css
index 3f4badf0..29d901ca 100644
--- a/tubearchivist/static/css/style.css
+++ b/tubearchivist/static/css/style.css
@@ -672,6 +672,24 @@ button:hover {
width: 30px;
}
+.dl-item:hover > .dl-thumb span {
+ opacity: 1;
+}
+
+.dl-thumb {
+ position: relative;
+}
+
+.dl-thumb span {
+ position: absolute;
+ top: 5px;
+ left: 5px;
+ background-color: var(--accent-font-light);
+ padding: 5px;
+ opacity: 0;
+ transition: 300ms ease-in-out;
+}
+
.dl-thumb.list {
width: 25%;
}