Fix tab jumping on form input changes by preventing sheet re-rendering

This commit is contained in:
Alexander Minges 2025-07-29 20:20:50 +02:00
parent d020822012
commit f643999573
Signed by: Athemis
GPG key ID: 31FBDEF92DDB162B
4 changed files with 103 additions and 11 deletions

View file

@ -59,13 +59,11 @@
--ds4-font-heading: "Wood Stamp", sans-serif;
}
// Apply Wood Stamp font only to DS4 sheet-specific elements
.ds4-actor-sheet h1,
// Apply Wood Stamp font only to DS4 sheet-specific elements (excluding window titles)
.ds4-actor-sheet h2,
.ds4-actor-sheet h4,
.ds4-actor-sheet h5,
.ds4-actor-sheet h6,
.ds4-item-sheet h1,
.ds4-item-sheet h2,
.ds4-item-sheet h4,
.ds4-item-sheet h5,
@ -76,3 +74,11 @@
text-transform: uppercase;
font-weight: 100 !important;
}
// Keep window titles readable with standard font
.ds4-actor-sheet .window-title,
.ds4-item-sheet .window-title {
font-family: var(--font-sans) !important;
text-transform: none !important;
font-weight: normal !important;
}