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,6 +34,7 @@
}
}
body.theme-dark {
.daggerheart.chat {
&.domain-card {
display: flex;
@ -142,3 +143,4 @@
}
}
}
}

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,6 +31,7 @@
}
}
body.theme-dark {
.daggerheart.chat {
&.action {
display: flex;
@ -79,6 +80,7 @@
display: flex;
flex-direction: column;
gap: 5px;
color: @beige;
.title {
font-size: 20px;
@ -122,3 +124,4 @@
}
}
}
}

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,6 +67,7 @@
}
}
body.theme-dark {
.chat-message.dh-chat-message {
.message-content {
padding: 0;
@ -205,3 +206,4 @@ fieldset.daggerheart.chat {
margin-top: 5px;
}
}
}