-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: group weather effects (animals, other, weather) and sort weathe…
…r and filter effects
- Loading branch information
Showing
35 changed files
with
409 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
fxmaster.lock | ||
node_modules/ | ||
client | ||
foundry.js | ||
dist/ | ||
.vscode/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,101 @@ | ||
.fxmaster .directory-header { | ||
:root { | ||
--fxmaster-color-bg-button: rgba(255, 255, 240, 0.8); | ||
} | ||
|
||
.fxmaster-form-header { | ||
box-shadow: 0 0 5px var(--color-shadow-dark, black); | ||
line-height: var(--line-height-12, 12px); | ||
font-size: var(--font-size-12, 12px); | ||
margin: 0; | ||
padding: 2px 0; | ||
padding: 4px 0; | ||
} | ||
|
||
.fxmaster .config { | ||
padding: 4px; | ||
border-bottom: 1px solid var(--color-border-dark-3, #333); | ||
list-style: none; | ||
.fxmaster-groups-list, | ||
.fxmaster-list { | ||
overflow-y: auto; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.fxmaster .config .icon { | ||
border: none; | ||
flex: 0 0 18px; | ||
text-align: center; | ||
line-height: var(--line-height-20, 20px); | ||
font-size: var(--font-size-16, 16px); | ||
.fxmaster-groups-list__item, | ||
.fxmaster-list__item { | ||
padding: 4px; | ||
list-style: none; | ||
} | ||
|
||
.fxmaster .config .collapse { | ||
text-indent: 5px; | ||
.fxmaster-groups-list__item { | ||
border-bottom: 2px solid var(--color-border-dark-3, #333); | ||
} | ||
|
||
.fxmaster .config.collapsible { | ||
padding: 0; | ||
.fxmaster-list__item { | ||
border-bottom: 1px solid var(--color-border-dark-3, #333); | ||
} | ||
|
||
.fxmaster .config.collapsible.collapsed { | ||
display: none; | ||
overflow: hidden; | ||
.fxmaster-groups-list__item:last-of-type, | ||
.fxmaster-list__item:last-of-type { | ||
border-bottom: none; | ||
} | ||
|
||
.fxmaster .config label { | ||
.fxmaster-groups-list__collapse, | ||
.fxmaster-list__collapse { | ||
font-size: var(--font-size-16, 16px); | ||
cursor: pointer; | ||
text-indent: 5px; | ||
} | ||
|
||
.fxmaster .config label:hover { | ||
.fxmaster-groups-list__collapse:hover, | ||
.fxmaster-list__collapse:hover { | ||
text-shadow: 0 0 4px var(--color-shadow-primary, #ff0000); | ||
} | ||
|
||
.fxmaster .directory-item.active { | ||
background: #f56b0066; | ||
.fxmaster-groups-list__collapsible, | ||
.fxmaster-list__collapsible { | ||
overflow: hidden; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.fxmaster .form-footer { | ||
padding: 5px; | ||
.fxmaster-groups-list__collapsible--collapsed, | ||
.fxmaster-list__collapsible--collapsed { | ||
display: none; | ||
} | ||
|
||
.fxmaster .form-footer button { | ||
background-color: rgba(255, 255, 240, 0.8); | ||
border: 1px solid var(--color-border-light-primary, #b5b3a4); | ||
.fxmaster-list__icon { | ||
border: none; | ||
flex: 0 0 18px; | ||
text-align: center; | ||
line-height: var(--line-height-20, 20px); | ||
font-size: var(--font-size-16, 16px); | ||
} | ||
|
||
.fxmaster .directory-item .config input[type="text"] { | ||
color: var(--color-text-light-0, #fff); | ||
.fxmaster-form-footer { | ||
padding: 5px; | ||
} | ||
|
||
.fxmaster-form-footer__button { | ||
background-color: var(--fxmaster-color-bg-button); | ||
border: 1px solid var(--color-border-light-primary, #b5b3a4); | ||
text-align: center; | ||
padding: 2px; | ||
height: 20px; | ||
} | ||
|
||
.fxmaster .directory-item .config select.multi-select { | ||
.fxmaster-multi-select { | ||
border: 1px solid var(--color-border-light-primary, #b5b3a4); | ||
color: var(--color-border-light-1, #ddd); | ||
background: transparent; | ||
border-radius: 0px; | ||
} | ||
|
||
.fxmaster .directory-item .config select.multi-select:focus { | ||
.fxmaster-multi-select:focus { | ||
box-shadow: none; | ||
} | ||
|
||
.fxmaster-multi-select__option { | ||
background: transparent; | ||
} | ||
|
||
.fxmaster-text-input[type="text"] { | ||
color: var(--color-text-light-0, #fff); | ||
border: 1px solid var(--color-border-light-primary, #b5b3a4); | ||
text-align: center; | ||
padding: 2px; | ||
height: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
.layer-toggle { | ||
.fxmaster-layer-toggle { | ||
text-align: center; | ||
} | ||
.layer-toggle span { | ||
|
||
.fxmaster-layer-toggle__icon { | ||
font-size: var(--font-size-12, 12px); | ||
vertical-align: text-top; | ||
} | ||
.layer-toggle input[type="checkbox"] { | ||
|
||
.fxmaster-layer-toggle__checkbox[type="checkbox"] { | ||
flex: 0 0 var(--line-height-12, 12px); | ||
width: var(--line-height-12, 12px); | ||
height: var(--line-height-12, 12px); | ||
margin: 0 3px; | ||
} | ||
|
||
.fxmaster.filters.directory-list { | ||
overflow-y: auto; | ||
height: 35px; | ||
.fxmaster-list--filters { | ||
height: 370px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,3 @@ | ||
.fxmaster .directory-header { | ||
box-shadow: 0 0 5px var(--color-shadow-dark, black); | ||
line-height: var(--line-height-12, 12px); | ||
font-size: var(--font-size-12, 12px); | ||
margin: 0; | ||
padding: 2px 0; | ||
} | ||
|
||
.fxmaster.specials .directory-item.special-effects { | ||
line-height: inherit; | ||
} | ||
|
||
.fxmaster .special-effects .description { | ||
padding: 4px; | ||
overflow: hidden; | ||
} | ||
|
||
.fxmaster .special-effects .description h4 { | ||
line-height: var(--line-height-16, 16px); | ||
text-indent: 5px; | ||
font-size: var(--font-size-14, 14px); | ||
height: 32px; | ||
} | ||
|
||
.fxmaster .special-effects .description .author { | ||
line-height: calc(var(--line-height-12, 12px) / 12 * 10); | ||
color: var(--color-text-light-7, #888); | ||
text-align: right; | ||
font-size: calc(var(--font-size-12, 12px) / 12 * 10); | ||
flex: 0 calc(var(--line-height-12, 12px) / 12 * 10); | ||
} | ||
|
||
.fxmaster .special-effects .controls { | ||
padding: 0 3px; | ||
line-height: 48px; | ||
flex: 0 0 40px; | ||
text-align: right; | ||
} | ||
|
||
.fxmaster.effects.directory-list { | ||
overflow-y: scroll; | ||
.fxmaster-groups-list--weather-effects { | ||
height: 370px; | ||
} | ||
|
||
.fxmaster.filters.directory-list { | ||
overflow-y: auto; | ||
height: 35px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.