From 2b97c469120774dea4b1c357323e2ceaaba5ca7c Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 1 Jan 2023 13:29:31 +0200 Subject: [PATCH] fix gif modal cursor --- files/assets/css/main.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index 78a44a541b..7900713006 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -6503,8 +6503,8 @@ div.markdown { .gif-categories .card .gif-cat-overlay { position: absolute; text-align: center; - height: 93.5%; - width: 93.5%; + height: 100%; + width: 100%; background-color: rgba(0, 0, 0, 0.4); border-radius: 0.35rem; -webkit-transition: all 0.15s ease; @@ -6512,6 +6512,7 @@ div.markdown { -o-transition: all 0.15s ease; -ms-transition: all 0.15s ease; transition: all 0.15s ease; + cursor: pointer; } .gif-categories .card:hover .gif-cat-overlay { background-color: rgba(0, 0, 0, 0.6);