fix light theme issues

This commit is contained in:
moliloo 2025-08-23 20:22:34 -03:00
parent 1ee7a1f742
commit 2344278a3d
3 changed files with 266 additions and 259 deletions

View file

@ -2,7 +2,7 @@
@import '../../utils/fonts.less';
@import '../../utils/spacing.less';
.theme-light {
body.theme-light {
.daggerheart.chat.domain-card {
.domain-card-move .domain-card-header {
border-bottom: 1px solid @dark-blue;
@ -34,7 +34,8 @@
}
}
.daggerheart.chat {
body.theme-dark {
.daggerheart.chat {
&.domain-card {
display: flex;
flex-direction: column;
@ -141,4 +142,5 @@
}
}
}
}
}

View file

@ -2,7 +2,7 @@
@import '../../utils/fonts.less';
@import '../../utils/spacing.less';
.theme-light {
body.theme-light {
.daggerheart.chat.action {
.action-move .action-section {
border-bottom: 1px solid @dark-blue;
@ -31,7 +31,8 @@
}
}
.daggerheart.chat {
body.theme-dark {
.daggerheart.chat {
&.action {
display: flex;
flex-direction: column;
@ -79,6 +80,7 @@
display: flex;
flex-direction: column;
gap: 5px;
color: @beige;
.title {
font-size: 20px;
@ -121,4 +123,5 @@
}
}
}
}
}

View file

@ -1,7 +1,7 @@
@import '../../utils/colors.less';
@import '../../utils/fonts.less';
.theme-light {
body.theme-light {
.chat-message:not(.duality) .message-content {
color: @dark;
@ -67,13 +67,14 @@
}
}
.chat-message.dh-chat-message {
body.theme-dark {
.chat-message.dh-chat-message {
.message-content {
padding: 0;
}
}
}
.chat-message {
.chat-message {
.duality-modifiers,
.duality-result,
.dice-title {
@ -178,9 +179,9 @@
height: 34px;
}
}
}
}
fieldset.daggerheart.chat {
fieldset.daggerheart.chat {
padding: 0;
border-left-width: 0;
border-right-width: 0;
@ -204,4 +205,5 @@ fieldset.daggerheart.chat {
.daggerheart.chat {
margin-top: 5px;
}
}
}