daggerheart/styles/less/global/global.less
WBHarry 4aa414be00
[Fix] Daggerheart Menu LightMode (#1534)
* Fixed so the menu and menuIcon coloration correctly changes with mode change

* .

* .

* .
2026-01-15 00:53:33 +01:00

64 lines
1.3 KiB
Text

.drag-area {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 100%;
height: 40px;
border: 1px dashed light-dark(@dark-blue-50, @beige-50);
border-radius: 3px;
color: light-dark(@dark-blue-50, @beige-50);
font-family: @font-body;
}
.daggerheart.dh-style {
.hint {
flex: 0 0 100%;
margin: 0;
color: var(--color-form-hint);
}
.form-group:hover {
.hint {
color: var(--color-form-hint-hover);
}
}
.daggerheart-loader {
position: relative;
overflow: hidden !important;
div {
opacity: 0.5;
}
&:before {
font-family: 'Font Awesome 6 Pro';
content: '\f110';
position: absolute;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
animation: spinner 1.5s linear infinite;
}
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
}
/* 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;
}