From 80f81e670c721067cddf0ffff4ed4f2def1ad69c Mon Sep 17 00:00:00 2001 From: Vinzenz Vietzke Date: Mon, 26 Aug 2019 23:33:03 +0200 Subject: [PATCH] adding desaturation and transition for forumlist widget --- view/theme/frio/css/style.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index ea81717f3d..2cfc63d367 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1067,6 +1067,23 @@ aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover{ padding-left: 27px; } +.forumlist-img { + -webkit-filter: grayscale(100%); + filter: grayscale(100%); + opacity: 0.5; + filter: alpha(opacity=50); /* For IE8 and earlier */ + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#forumlist-sidbar-ul li:hover a > .forumlist-img { + -webkit-filter: unset; + filter: unset; + opacity: unset; +} + /* help page widget */ aside > .help-aside-wrapper p strong:first-child { display: block;