commit 543296438edf098cf0d1923278c7c29f124b3de8
parent 5174837dc063ccce0ffd42ed18b9841c2565f4e9
Author: Brian C. Lane <bcl@brianlane.com>
Date: Wed, 25 May 2022 06:57:51 -0700
Add a delay to the thumbnail zoom
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/strix/ui/style.css b/src/strix/ui/style.css
@@ -95,11 +95,12 @@ img.thumbnail {
height: auto;
display: inline;
vertical-align: text-bottom;
-# float: left;
+ transition-delay: 0s;
}
img.thumbnail:hover {
transform: scale(2.0);
+ transition-delay: 2s;
}
img.feed-src {