Skip to content

Commit f3f3a6b

Browse files
committed
Fix settings submenu template paths
- also add some rudimentary styling to active effect config
1 parent 3630cfd commit f3f3a6b

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

module/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ class SettingsConfigurationApp extends FUApplication {
901901
/** @type {Record<string, HandlebarsTemplatePart>} */
902902
static PARTS = {
903903
main: {
904-
template: 'systems/projectfu/templates/app/settings-config-app.hbs',
904+
template: 'systems/projectfu/templates/app/settings/settings-config-app.hbs',
905905
},
906906
};
907907

styles/app/_index.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
@import 'combat-hud-config-app.css';
33
@import 'system-controls.css';
44
@import 'combat-hud-controls.css';
5+
6+
@import 'forms.css';

styles/app/forms.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.backgroundstyle {
2+
--color-form-label: var(--color-dark-1);
3+
--color-form-label-hover: var(--color-dark-1);
4+
--color-form-hint: var(--color-dark-2);
5+
--color-form-hint-hover: var(--color-dark-2);
6+
7+
input[type='checkbox'] {
8+
--checkbox-checkmark-color: var(--color-dark-1);
9+
}
10+
11+
.form-group {
12+
background: url(../static/ui/Bkg_highres.png), linear-gradient(to right, #f5f5dc, #c9c7b8);
13+
background-blend-mode: multiply;
14+
background-repeat: repeat-y;
15+
background-position: right top;
16+
border: 1px solid #6f6c66;
17+
background-size: cover;
18+
border-radius: 10px;
19+
padding: 5px;
20+
}
21+
22+
input,
23+
select {
24+
color: var(--color-text-primary);
25+
background-color: var(--pfu-color-app-section-content-secondary);
26+
border: thin solid var(--color-text-primary);
27+
}
28+
}

0 commit comments

Comments
 (0)