From ad4b4feee507a8e5bf67000e1348fc20af951300 Mon Sep 17 00:00:00 2001 From: Spicy_Marinara Date: Thu, 6 Nov 2025 11:13:25 +0100 Subject: [PATCH] Fix: Add missing CSS for RPG Attributes and Relationship Status delete buttons --- style.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 36f7bc6..ee88288 100644 --- a/style.css +++ b/style.css @@ -5024,7 +5024,9 @@ body:has(.rpg-panel.rpg-position-left) #sheld { font-size: 0.95em; } -.rpg-stat-remove { +.rpg-stat-remove, +.rpg-attr-remove, +.rpg-remove-relationship { flex-shrink: 0; padding: 0.375em 0.625em; background: var(--rpg-highlight); @@ -5035,7 +5037,9 @@ body:has(.rpg-panel.rpg-position-left) #sheld { transition: opacity 0.2s; } -.rpg-stat-remove:hover { +.rpg-stat-remove:hover, +.rpg-attr-remove:hover, +.rpg-remove-relationship:hover { opacity: 0.8; }