- +{{experience.value}}
+ {{numberFormat experience.value sign=true}}
{{experience.name}}
From c7431d16a75dfab7a55dee592ecbdafc59dc7e45 Mon Sep 17 00:00:00 2001
From: WBHarry <89362246+WBHarry@users.noreply.github.com>
Date: Mon, 9 Feb 2026 01:02:59 +0100
Subject: [PATCH 10/10] Improved the Reaction toggle in dice rolls (#1643)
---
.../less/dialog/dice-roll/roll-selection.less | 27 ++++++++++++++++++-
templates/dialogs/dice-roll/header.hbs | 19 +++++--------
2 files changed, 33 insertions(+), 13 deletions(-)
diff --git a/styles/less/dialog/dice-roll/roll-selection.less b/styles/less/dialog/dice-roll/roll-selection.less
index 0f082460..7fdae77a 100644
--- a/styles/less/dialog/dice-roll/roll-selection.less
+++ b/styles/less/dialog/dice-roll/roll-selection.less
@@ -17,7 +17,9 @@
.dialog-header-inner {
display: flex;
- justify-content: center;
+ flex-direction: column;
+ align-items: center;
+ gap: 2px;
}
h1 {
@@ -45,6 +47,29 @@
}
}
+ .reaction-chip {
+ display: flex;
+ align-items: center;
+ border-radius: 5px;
+ width: fit-content;
+ gap: 5px;
+ cursor: pointer;
+ padding: 5px;
+ background: light-dark(@dark-blue-10, @golden-10);
+ color: light-dark(@dark-blue, @golden);
+
+ .label {
+ font-style: normal;
+ font-weight: 400;
+ font-size: var(--font-size-14);
+ line-height: 17px;
+ }
+
+ &.selected {
+ background: light-dark(@dark-blue-40, @golden-40);
+ }
+ }
+
.tag-team-controller {
display: flex;
align-items: center;
diff --git a/templates/dialogs/dice-roll/header.hbs b/templates/dialogs/dice-roll/header.hbs
index 21967655..0cb58a01 100644
--- a/templates/dialogs/dice-roll/header.hbs
+++ b/templates/dialogs/dice-roll/header.hbs
@@ -1,17 +1,12 @@