Fixed chat

This commit is contained in:
WBHarry 2026-01-27 19:35:18 +01:00
parent fe4654b1fa
commit 2496440301
2 changed files with 48 additions and 48 deletions

View file

@ -82,7 +82,7 @@
} }
} }
&:not(.duality .fate) { &:not(.duality):not(.fate) {
.font-20 { .font-20 {
color: @dark; color: @dark;
} }
@ -176,7 +176,6 @@
} }
&.fate { &.fate {
&.hope { &.hope {
--text-color: @golden; --text-color: @golden;
--bg-color: @golden-40; --bg-color: @golden-40;
@ -194,7 +193,6 @@
background-color: @chat-blue-bg; background-color: @chat-blue-bg;
} }
} }
} }
&.duality { &.duality {

View file

@ -3,68 +3,70 @@
.daggerheart.chat-sidebar.theme-light, .daggerheart.chat-sidebar.theme-light,
#interface.theme-light { #interface.theme-light {
.chat-message:not(.duality) .message-content { .chat-message:not(.duality):not(.fate) {
color: @dark; .message-content {
color: @dark;
blockquote { blockquote {
border-left: 5px solid @dark-blue-40; border-left: 5px solid @dark-blue-40;
} }
a[href] { a[href] {
color: @dark-blue;
}
a[href]:hover,
a[href].active {
font-weight: bold;
text-shadow: 0 0 8px @dark-blue;
}
button {
background: transparent;
border: 1px solid @dark-blue;
color: @dark-blue;
&:hover {
background: @light-black;
color: @dark-blue; color: @dark-blue;
} }
&:disabled { a[href]:hover,
a[href].active {
font-weight: bold;
text-shadow: 0 0 8px @dark-blue;
}
button {
background: transparent; background: transparent;
border: 1px solid @dark-blue;
color: @dark-blue; color: @dark-blue;
&:hover { &:hover {
background: @light-black;
color: @dark-blue;
}
&:disabled {
background: transparent; background: transparent;
color: @dark-blue; color: @dark-blue;
&:hover {
background: transparent;
color: @dark-blue;
}
}
&.reverted {
background: @dark-blue-10;
color: @dark-blue;
border: 1px solid @dark;
&:hover {
background: transparent;
color: @dark-blue;
}
img {
border-radius: 3px;
}
} }
} }
&.reverted { .roll-buttons button {
background: @dark-blue-10; height: 40px;
font-family: @font-body;
font-weight: bold;
}
.dice-roll .dice-formula,
.dice-roll .dice-total {
background: @dark-blue-40;
color: @dark-blue; color: @dark-blue;
border: 1px solid @dark;
&:hover {
background: transparent;
color: @dark-blue;
}
img {
border-radius: 3px;
}
} }
} }
.roll-buttons button {
height: 40px;
font-family: @font-body;
font-weight: bold;
}
.dice-roll .dice-formula,
.dice-roll .dice-total {
background: @dark-blue-40;
color: @dark-blue;
}
} }
} }