From 9ee1275162708ce38eb30a15c6799a052835bd0c Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Mon, 30 Dec 2024 21:28:20 +0900 Subject: [PATCH] [Update] root.css: Prevent user drag and select images. --- src-ui/app/_index_css/root.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src-ui/app/_index_css/root.css b/src-ui/app/_index_css/root.css index d2391abf..e2bcc6e7 100644 --- a/src-ui/app/_index_css/root.css +++ b/src-ui/app/_index_css/root.css @@ -42,4 +42,9 @@ svg { p { white-space: pre-wrap; +} +img { + user-select: none; + -webkit-user-drag: none; + -webkit-user-select: none; } \ No newline at end of file