diff --git a/changedetectionio/blueprint/watchlist/templates/watch-overview.html b/changedetectionio/blueprint/watchlist/templates/watch-overview.html
index 791bd012..52480bdc 100644
--- a/changedetectionio/blueprint/watchlist/templates/watch-overview.html
+++ b/changedetectionio/blueprint/watchlist/templates/watch-overview.html
@@ -137,7 +137,11 @@ document.addEventListener('DOMContentLoaded', function() {
-
{{watch.title if watch.title is not none and watch.title|length > 0 else watch.url}}
+
+ |
+
+
+ {{watch.title if watch.title is not none and watch.title|length > 0 else watch.url}}
diff --git a/changedetectionio/static/styles/scss/parts/_lister_extra.scss b/changedetectionio/static/styles/scss/parts/_lister_extra.scss
index 99c26765..c67d98cd 100644
--- a/changedetectionio/static/styles/scss/parts/_lister_extra.scss
+++ b/changedetectionio/static/styles/scss/parts/_lister_extra.scss
@@ -24,9 +24,11 @@
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* soft shadow */
filter: contrast(1.05) saturate(1.1) drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.2));
object-fit: cover; /* crop/fill if needed */
- opacity: 0.5;
+ opacity: 0.7;
height: 100%;
- max-height: 100%;
+ vertical-align: middle;
+ max-width: 40px;
+ max-height: 60px;
}
}
}
diff --git a/changedetectionio/static/styles/styles.css b/changedetectionio/static/styles/styles.css
index bfd3c1db..a0049e65 100644
--- a/changedetectionio/static/styles/styles.css
+++ b/changedetectionio/static/styles/styles.css
@@ -707,9 +707,11 @@ ul#conditions_match_logic {
filter: contrast(1.05) saturate(1.1) drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.2));
object-fit: cover;
/* crop/fill if needed */
- opacity: 0.5;
+ opacity: 0.7;
height: 100%;
- max-height: 100%; }
+ vertical-align: middle;
+ max-width: 40px;
+ max-height: 60px; }
.title-col {
/* Optional, for spacing */
|