mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Temp * Dialog setup * Fixed basic beastform * Reworked beastform to hold it's data entirely in the beastformEffect * UpdateActorTokens fix * Removed hardcoded tierlimit on beastform * PR fixes
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
@import '../utils/colors.less';
|
|
@import '../utils/fonts.less';
|
|
|
|
.appTheme({
|
|
&.dialog {
|
|
background-image: url('../assets/parchments/dh-parchment-dark.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
}, {
|
|
&.dialog {
|
|
background-image: url('../assets/parchments/dh-parchment-light.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
});
|
|
|
|
.application.dialog.dh-style {
|
|
border: none;
|
|
|
|
.window-header {
|
|
background: transparent;
|
|
border-bottom: none;
|
|
color: light-dark(@dark-blue, @beige);
|
|
|
|
h1 {
|
|
color: light-dark(@dark-blue, @beige);
|
|
font-family: @font-body;
|
|
}
|
|
|
|
button {
|
|
color: light-dark(@dark-blue, @beige);
|
|
background: light-dark(transparent, @deep-black);
|
|
border: 1px solid light-dark(@dark-blue, transparent);
|
|
padding: 0;
|
|
|
|
&:hover {
|
|
border: 1px solid light-dark(@dark-blue, @golden);
|
|
color: light-dark(@dark-blue, @golden);
|
|
}
|
|
}
|
|
}
|
|
}
|