Fix setting dialogs created from overriden light sheet actors (#1939)

This commit is contained in:
Carlos Fernandez 2026-05-27 16:20:53 -04:00 committed by GitHub
parent 1ab8170d2f
commit ac72012387
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 12 deletions

View file

@ -1,17 +1,19 @@
@import '../../utils/colors.less'; @import '../../utils/colors.less';
.theme-light .application.daggerheart.dh-style.dialog { .appTheme({}, {
.tab.details { &.dialog.character-settings {
.traits-inner-container .trait-container { .tab.details {
background: url('../assets/svg/trait-shield-light.svg') no-repeat; .traits-inner-container .trait-container {
background: url('../assets/svg/trait-shield-light.svg') no-repeat;
div { div {
filter: drop-shadow(0 0 3px @beige); filter: drop-shadow(0 0 3px @beige);
text-shadow: 0 0 3px @beige; text-shadow: 0 0 3px @beige;
}
} }
} }
} }
} });
.application.daggerheart.dh-style.dialog { .application.daggerheart.dh-style.dialog {
.tab.details { .tab.details {

View file

@ -5,16 +5,16 @@
*/ */
.appTheme(@darkRules, @lightRules) { .appTheme(@darkRules, @lightRules) {
// Dark theme selectors // Dark theme selectors
.themed.theme-dark .application.daggerheart.sheet.dh-style, .themed.theme-dark .application.daggerheart.dh-style,
.themed.theme-dark.application.daggerheart.sheet.dh-style, .themed.theme-dark.application.daggerheart.dh-style,
body.theme-dark .application.daggerheart, body.theme-dark .application.daggerheart,
body.theme-dark.application.daggerheart { body.theme-dark.application.daggerheart {
@darkRules(); @darkRules();
} }
// Light theme selectors // Light theme selectors
.themed.theme-light .application.daggerheart.sheet.dh-style, .themed.theme-light .application.daggerheart.dh-style,
.themed.theme-light.application.daggerheart.sheet.dh-style, .themed.theme-light.application.daggerheart.dh-style,
body.theme-light .application.daggerheart, body.theme-light .application.daggerheart,
body.theme-light.application.daggerheart { body.theme-light.application.daggerheart {
@lightRules(); @lightRules();