also fixed overshoot

main
The_miro 2025-10-17 13:51:24 +02:00
parent 51b9460899
commit b659cdad09
1 changed files with 15 additions and 0 deletions

View File

@ -41,6 +41,21 @@ row:selected:focus {
color: #ffffff; color: #ffffff;
} }
/* Smooth out / disable the dark flash when reaching scroll limits */
overshoot.top,
overshoot.bottom,
overshoot.left,
overshoot.right {
background: none; /* removes the opaque overlay */
background-color: rgba(80, 24, 221, 0.08); /* faint translucent purple instead */
border: none;
}
/* Optional: make it fade faster for less distraction */
overshoot {
transition: background-color 0.15s ease-in-out;
}
/* Buttons and entries */ /* Buttons and entries */
button, entry, .button { button, entry, .button {