Remove stroke around selected counters

This commit is contained in:
Catalin Constantin Mititiuc 2025-06-16 22:41:28 -07:00
parent 8d22cac6dc
commit 326c9f914e

View File

@ -239,12 +239,6 @@ g#points g use.counter {
r: 5px;
}
g#points g use.counter.selected {
stroke: orange;
stroke-width: 2px;
r: 6px;
}
g#points g.hover use[href="#point"] {
opacity: 1;
fill: orange;
@ -374,6 +368,21 @@ button.set-firing-arc img {
background-color: white;
}
.soldier-record [slot="troop-number"] {
color: white;
font-weight: bold;
border-radius: 10px;
padding: 0 4px;
}
.soldier-record[data-troop-allegiance="davion"] [slot="troop-number"] {
background-color: red;
}
.soldier-record[data-troop-allegiance="liao"] [slot="troop-number"] {
background-color: green;
}
.soldier-record.selected {
background-color: khaki;
}