diff --git a/styles/less/global/global.less b/styles/less/global/global.less index 6c63fe7a..6cc63c2a 100644 --- a/styles/less/global/global.less +++ b/styles/less/global/global.less @@ -51,14 +51,3 @@ } } } - -/* TODO: Remove me when this issue is resolved https://github.com/foundryvtt/foundryvtt/issues/13734 */ -body.theme-dark, -.themed.theme-dark { - color-scheme: dark; -} - -body.theme-light, -.themed.theme-light { - color-scheme: light; -} diff --git a/styles/less/global/index.less b/styles/less/global/index.less index 216dc9f4..f51140de 100644 --- a/styles/less/global/index.less +++ b/styles/less/global/index.less @@ -10,6 +10,7 @@ @import './tab-description.less'; @import './tab-features.less'; @import './tab-effects.less'; +@import './tab-settings.less'; @import './item-header.less'; @import './feature-section.less'; @import './inventory-item.less'; diff --git a/styles/less/global/item-header.less b/styles/less/global/item-header.less index f47ca7dc..073762e0 100755 --- a/styles/less/global/item-header.less +++ b/styles/less/global/item-header.less @@ -160,7 +160,7 @@ .item-description { display: flex; flex-direction: column; - gap: 7px; + gap: 10px; } h3 { diff --git a/styles/less/global/tab-settings.less b/styles/less/global/tab-settings.less new file mode 100644 index 00000000..3d5248be --- /dev/null +++ b/styles/less/global/tab-settings.less @@ -0,0 +1,8 @@ +@import '../utils/colors.less'; +@import '../utils/fonts.less'; + +.sheet.daggerheart.dh-style { + .tab.settings { + margin-bottom: 36px; + } +} diff --git a/styles/less/ui/sidebar/tabs.less b/styles/less/ui/sidebar/tabs.less index c620ff91..e9de2924 100644 --- a/styles/less/ui/sidebar/tabs.less +++ b/styles/less/ui/sidebar/tabs.less @@ -1,4 +1,4 @@ -.theme-light#interface #ui-right #sidebar { +.theme-light #interface #ui-right #sidebar { menu li button img { filter: @grey-filter; }