1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Desktop: Accessibility: Add setting to increase scrollbar and other small control sizes (#11627)

This commit is contained in:
Henry Heino
2025-01-13 08:33:42 -08:00
committed by GitHub
parent e177bffb1c
commit 35a0b22df2
23 changed files with 276 additions and 219 deletions

View File

@@ -31,8 +31,8 @@ a {
}
::-webkit-scrollbar {
width: 7px;
height: 7px;
width: var(--scrollbar-size, 7px);
height: var(--scrollbar-size, 7px);
}
::-webkit-scrollbar-corner {
@@ -45,7 +45,7 @@ a {
::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.3);
border-radius: 5px;
border-radius: calc(var(--scrollbar-size, 7px) * 0.7);
}
::-webkit-scrollbar-track:hover {