v3.3.1: Fix Recent Events reading from lastGeneratedData and add desktop thought panel collapse

This commit is contained in:
Spicy_Marinara
2026-01-08 23:29:18 +01:00
parent 39e2a07829
commit 0d71dcca04
7 changed files with 70 additions and 27 deletions
+9 -4
View File
@@ -4732,11 +4732,16 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
}
}
/* Force hide class for desktop mode - overrides media query */
#rpg-thought-icon.rpg-force-hide {
/* Force hide class for desktop mode - overrides media query (unless collapsed) */
#rpg-thought-icon.rpg-force-hide:not(.rpg-collapsed-desktop) {
display: none !important;
}
/* When collapsed in desktop, show icon */
#rpg-thought-icon.rpg-collapsed-desktop {
display: flex !important;
}
/* Hidden state that allows transitions */
#rpg-thought-icon.rpg-hidden {
opacity: 0;
@@ -4780,10 +4785,10 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
color: var(--rpg-highlight, #e94560);
}
/* Hide close button in desktop view (panel doesn't close) */
/* Show close button in desktop view for collapsing */
@media (min-width: 1001px) {
.rpg-thought-close {
display: none !important;
display: flex !important;
}
}