From 6932aa2881f57bafcf2ca399d2b88ee2e9ca2e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20D=C4=9Bdi=C4=8D?= Date: Mon, 7 Oct 2024 12:31:54 +0200 Subject: [PATCH] Fixed CSS compat warnings --- src/lib/ImageView.css | 1 - src/lib/container.css | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ImageView.css b/src/lib/ImageView.css index 688f5ec4..d0680a19 100644 --- a/src/lib/ImageView.css +++ b/src/lib/ImageView.css @@ -13,7 +13,6 @@ cursor: pointer; z-index: 10000; margin: auto; - touch-action: none; box-shadow: 0 0 3.125em rgba(0, 0, 0, 75%); opacity: 0; transition-property: left, opacity; diff --git a/src/lib/container.css b/src/lib/container.css index 0822422b..c20a2f14 100644 --- a/src/lib/container.css +++ b/src/lib/container.css @@ -14,5 +14,6 @@ } .ilb-body { + /* stylelint-disable-next-line plugin/no-unsupported-browser-features -- body will be scrollable in old browsers, there is no polyfill */ overflow: hidden; }