Add generic class for scroll delay

b0d6bba5a7ebf40634288917fcf2663871485b69

Cohee <18619528+Cohee1207@users.noreply.github.com>

4 files changed, +14 -6Ignore whitespace
public/css/animations.css+10 -0
@@ -55,6 +55,7 @@
5555
56/* Flashing for highlighting animation */56/* Flashing for highlighting animation */
57@keyframes flash {57@keyframes flash {
58
58 0%,59 0%,
59 50%,60 50%,
60 100% {61 100% {
@@ -122,3 +123,12 @@
122 border-top-color: var(--progFlashColor);123 border-top-color: var(--progFlashColor);
123 }124 }
124}125}
126
127/* Scroll delay animations */
128@keyframes hide-scroll {
129
130 from,
131 to {
132 overflow-y: hidden;
133 }
134}
public/css/st-tailwind.css+1 -1
@@ -618,4 +618,4 @@ ul.li-padding-bot10 li {
618618
619.wordBreakAll {619.wordBreakAll {
620 word-break: break-all;620 word-break: break-all;
621}
621 \ No newline at end of file \ No newline at end of file
621}
public/css/toggle-dependent.css+1 -1
@@ -528,4 +528,4 @@ label[for="trim_spaces"]:not(:has(input:checked)) small {
528528
529label[for="bind_preset_to_connection"]:has(input:checked) {529label[for="bind_preset_to_connection"]:has(input:checked) {
530 color: var(--active);530 color: var(--active);
531}
531 \ No newline at end of file \ No newline at end of file
531}
public/style.css+2 -4
@@ -5393,10 +5393,6 @@ body:has(#character_popup.open) #top-settings-holder:has(.drawer-content.openDra
5393 }5393 }
5394}5394}
53955395
5396@keyframes hide-scroll {
5397 from, to { overflow-y: hidden; }
5398}
5399
5400body.movingUI .inline-drawer-maximize {5396body.movingUI .inline-drawer-maximize {
5401 display: none;5397 display: none;
5402}5398}
@@ -5484,11 +5480,13 @@ body:not(.movingUI) .drawer-content.maximized {
5484 }5480 }
5485}5481}
54865482
5483.drawer-content .scrollDelay,
5487.fillRight #rm_characters_block,5484.fillRight #rm_characters_block,
5488.fillRight #rm_print_characters_block {5485.fillRight #rm_print_characters_block {
5489 overflow-y: hidden;5486 overflow-y: hidden;
5490}5487}
54915488
5489.drawer-content.openDrawer .scrollDelay,
5492.fillRight.openDrawer #rm_characters_block,5490.fillRight.openDrawer #rm_characters_block,
5493.fillRight.openDrawer #rm_print_characters_block {5491.fillRight.openDrawer #rm_print_characters_block {
5494 overflow-y: auto;5492 overflow-y: auto;