Add editable stat names, fix clear cache for quests, update tracker text to use custom stat names

This commit is contained in:
Spicy_Marinara
2025-10-27 09:45:50 +01:00
parent e0164a9ca9
commit a063ae780b
5 changed files with 86 additions and 33 deletions
+6 -3
View File
@@ -1896,7 +1896,8 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
/* Editable field styles */
.rpg-editable,
.rpg-editable-stat {
.rpg-editable-stat,
.rpg-editable-stat-name {
cursor: text;
transition: all 0.2s ease;
border-radius: 2px;
@@ -1904,13 +1905,15 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
}
.rpg-editable:hover,
.rpg-editable-stat:hover {
.rpg-editable-stat:hover,
.rpg-editable-stat-name:hover {
background: var(--rpg-accent);
outline: 1px solid var(--rpg-highlight);
}
.rpg-editable:focus,
.rpg-editable-stat:focus {
.rpg-editable-stat:focus,
.rpg-editable-stat-name:focus {
background: var(--rpg-bg);
outline: 2px solid var(--rpg-highlight);
box-shadow: 0 0 8px var(--rpg-highlight);