mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 13:11:08 +01:00
* Fixed so the menu and menuIcon coloration correctly changes with mode change * . * . * .
64 lines
1.3 KiB
Text
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;
|
|
}
|