mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 21:21:08 +01:00
parent
3386a9d61d
commit
aaf6c689fc
4 changed files with 35 additions and 3 deletions
|
|
@ -603,9 +603,12 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
gap: .25rem .5rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-size: var(--font-size-16);
|
font-size: var(--font-size-14);
|
||||||
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-fields {
|
.form-fields {
|
||||||
|
|
@ -613,6 +616,20 @@
|
||||||
gap: 4px;
|
gap: 4px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.setting-two-values {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: .25rem .5rem;
|
||||||
|
|
||||||
|
.form-group {
|
||||||
|
justify-content: end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hint {
|
||||||
|
grid-column: 1 / -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,3 +10,17 @@
|
||||||
color: light-dark(@dark-blue-50, @beige-50);
|
color: light-dark(@dark-blue-50, @beige-50);
|
||||||
font-family: @font-body;
|
font-family: @font-body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.daggerheart.dh-style {
|
||||||
|
.hint {
|
||||||
|
flex: 0 0 100%;
|
||||||
|
margin: 0;
|
||||||
|
color: var(--color-form-hint);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.hint {
|
||||||
|
color: var(--color-form-hint-hover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
fieldset {
|
fieldset {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 4px;
|
gap: .5rem;
|
||||||
|
|
||||||
&.two-columns {
|
&.two-columns {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
@ -32,6 +32,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-items {
|
.settings-items {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
data-tab="{{tabs.general.id}}"
|
data-tab="{{tabs.general.id}}"
|
||||||
data-group="{{tabs.general.group}}"
|
data-group="{{tabs.general.group}}"
|
||||||
>
|
>
|
||||||
<div class="form-group">
|
<div class="form-group setting-two-values">
|
||||||
<label>{{localize "DAGGERHEART.SETTINGS.Automation.FIELDS.hopeFear.label"}}</label>
|
<label>{{localize "DAGGERHEART.SETTINGS.Automation.FIELDS.hopeFear.label"}}</label>
|
||||||
{{formGroup settingFields.schema.fields.hopeFear.fields.gm value=settingFields._source.hopeFear.gm localize=true}}
|
{{formGroup settingFields.schema.fields.hopeFear.fields.gm value=settingFields._source.hopeFear.gm localize=true}}
|
||||||
{{formGroup settingFields.schema.fields.hopeFear.fields.players value=settingFields._source.hopeFear.players localize=true}}
|
{{formGroup settingFields.schema.fields.hopeFear.fields.players value=settingFields._source.hopeFear.players localize=true}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue