fix: placement boutons Tarot/Actions/Épreuve dans le chat FVTT v14

- insertion en haut de #chat (avant sidebar-tab-core) au lieu
  d'insérer avant #chat-controls (caché par le scroll en v14)
- remplacement inline styles → classes CSS .hamalron-chat-tools/.hamalron-chat-btn
- CSS externalisé dans chat.less
This commit is contained in:
2026-07-23 22:22:11 +02:00
parent a468a35e4f
commit b35b0809d4
6 changed files with 64 additions and 8 deletions
+28
View File
@@ -959,3 +959,31 @@
letter-spacing: 2px;
}
}
/* Chat sidebar tools (Tarot, Actions, Épreuve) */
.hamalron-chat-tools {
flex: 0 0 auto;
display: flex;
gap: 4px;
padding: 4px 8px;
border-bottom: 1px solid #444;
flex-wrap: wrap;
}
.hamalron-chat-btn {
display: flex;
align-items: center;
gap: 4px;
padding: 3px 8px;
background: #2a2a4a;
color: #e0e0e0;
border: 1px solid #555;
border-radius: 4px;
cursor: pointer;
font-size: 11px;
white-space: nowrap;
&:hover {
background: #3a3a6a;
}
}