From 3ae89a1d16b4cdd642cac8bf080cfe952c93e278 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 04 Apr 2025 17:17:57 +0000
Subject: [PATCH] fix(search): make closest sidebar z-index adjustment optional (closes #1905)
---
quartz/components/styles/popover.scss | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/quartz/components/styles/popover.scss b/quartz/components/styles/popover.scss
index b1694f9..872045a 100644
--- a/quartz/components/styles/popover.scss
+++ b/quartz/components/styles/popover.scss
@@ -36,6 +36,8 @@
box-shadow: 6px 6px 36px 0 rgba(0, 0, 0, 0.25);
overflow: auto;
white-space: normal;
+ user-select: none;
+ cursor: default;
}
& > .popover-inner[data-content-type] {
@@ -70,7 +72,7 @@
opacity 0.3s ease,
visibility 0.3s ease;
- @media all and (max-width: $mobileBreakpoint) {
+ @media all and ($mobile) {
display: none !important;
}
}
--
Gitblit v1.10.0