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/fonts.less';
@import '../../utils/spacing.less'; @import '../../utils/spacing.less';
.theme-light { body.theme-light {
.daggerheart.chat.domain-card { .daggerheart.chat.domain-card {
.domain-card-move .domain-card-header { .domain-card-move .domain-card-header {
border-bottom: 1px solid @dark-blue; border-bottom: 1px solid @dark-blue;
@ -34,6 +34,7 @@
} }
} }
body.theme-dark {
.daggerheart.chat { .daggerheart.chat {
&.domain-card { &.domain-card {
display: flex; display: flex;
@ -142,3 +143,4 @@
} }
} }
} }
}

View file

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

View file

@ -1,7 +1,7 @@
@import '../../utils/colors.less'; @import '../../utils/colors.less';
@import '../../utils/fonts.less'; @import '../../utils/fonts.less';
.theme-light { body.theme-light {
.chat-message:not(.duality) .message-content { .chat-message:not(.duality) .message-content {
color: @dark; color: @dark;
@ -67,6 +67,7 @@
} }
} }
body.theme-dark {
.chat-message.dh-chat-message { .chat-message.dh-chat-message {
.message-content { .message-content {
padding: 0; padding: 0;
@ -205,3 +206,4 @@ fieldset.daggerheart.chat {
margin-top: 5px; margin-top: 5px;
} }
} }
}