From 0ecb859d2d826f1813b49e2b63fa37d1e7151a1d Mon Sep 17 00:00:00 2001
From: Marco Ciotola <McCio@users.noreply.github.com>
Date: Sun, 02 Nov 2025 10:35:23 +0000
Subject: [PATCH] feat(i18n): update Italian translations for coherency (#2189)
---
quartz/components/styles/explorer.scss | 28 +++++++++-------------------
1 files changed, 9 insertions(+), 19 deletions(-)
diff --git a/quartz/components/styles/explorer.scss b/quartz/components/styles/explorer.scss
index 55c4372..bc33353 100644
--- a/quartz/components/styles/explorer.scss
+++ b/quartz/components/styles/explorer.scss
@@ -133,12 +133,16 @@
}
.folder-outer {
+ visibility: collapse;
display: grid;
grid-template-rows: 0fr;
- transition: grid-template-rows 0.3s ease-in-out;
+ transition-property: grid-template-rows, visibility;
+ transition-duration: 0.3s;
+ transition-timing-function: ease-in-out;
}
.folder-outer.open {
+ visibility: visible;
grid-template-rows: 1fr;
}
@@ -239,7 +243,7 @@
margin-top: 0;
background-color: var(--light);
max-width: 100vw;
- width: 100%;
+ width: 100vw;
transform: translateX(-100vw);
transition:
transform 200ms ease,
@@ -263,22 +267,8 @@
}
}
-.no-scroll {
- opacity: 0;
- overflow: hidden;
-}
-
-html:has(.no-scroll) {
- overflow: hidden;
-}
-
-@media all and not ($mobile) {
- .no-scroll {
- opacity: 1 !important;
- overflow: auto !important;
- }
-
- html:has(.no-scroll) {
- overflow: auto !important;
+.mobile-no-scroll {
+ @media all and ($mobile) {
+ overscroll-behavior: none;
}
}
--
Gitblit v1.10.0