Skip to content

Commit

Permalink
1.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Feb 19, 2023
1 parent b06adcb commit d95d0f3
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.12.5

- (SWADE) Finally exluded SWPF sheets once and for all. Thanks, Pinnacle Entertainment Group!

# 1.12.4

- (Fix) Rejiggered some css to fix an issue where certain window apps unintentionally got a sheet background. This also undoes the second SWADE bullet in 1.12.3.
Expand Down
1 change: 1 addition & 0 deletions modules/base-theme-hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ for (const app of [...baseThemePf2eSheets]) {
Hooks.on("render" + app, (app, html, data) => {
let html0 = html[0];
if (!html0.classList.contains("window-app")) return;
if (app.constructor.name === "SWPFSheet") return; // Extended from ActorSheet
const theme = game.settings.get("pf2e-dorako-ui", "theme.application-theme");
if (theme === "no-theme") {
console.debug(`${MODULE_NAME} | render${app.constructor.name} | theme: ${theme} => do not add .dorako-ui`);
Expand Down
3 changes: 0 additions & 3 deletions sass/foundry/_app-ui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
}
}

.dorako-ui.app {
}

.dorako-ui.app.journal-entry {
.window-content {
box-shadow: none;
Expand Down
3 changes: 3 additions & 0 deletions sass/module/_chat-reactions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
background-color: #cfa436;
}
}
.emoji-button-content .emoji-image {
filter: drop-shadow(0px 1px 2px black);
}
}

.dorako-ui.light-theme {
Expand Down
8 changes: 4 additions & 4 deletions sass/module/_monks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -702,10 +702,6 @@ body.compact-ui #navigation.dorako-ui .monks-scene-navigation #nav-toggle {
}
}

&#navigation .monks-scene-navigation .scene-list > li a {
@include glass;
}

&#navigation .monks-scene-navigation .scene-list > li {
a {
@include glass;
Expand Down Expand Up @@ -758,3 +754,7 @@ body.compact-ui #navigation.dorako-ui .monks-scene-navigation #nav-toggle {
gap: 5px;
}
}

.frosted-glass .monks-scene-navigation:not(.category-filter) {
backdrop-filter: unset;
}
16 changes: 11 additions & 5 deletions sass/module/_target-damage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,23 @@ wrapper.pf2e-td.name-top .pf2e-td.name {
display: none !important; // inline style overwrite
}
}
.dorako-ui.dark-theme.message.chat-message .pf2e.chat-card .card-buttons {
.pf2e-td.target-section .target-button {
@include glass;
@include quick-transition;
height: calc(100% - 12px);
&:hover {
box-shadow: var(--gold-and-glow);
background-color: var(--glass-bg);
}
}
}

.dorako-ui.dark-theme.chat-message {
hr.pf2e-td {
display: none !important; // inline style overwrite
}

.pf2e-td.target-section .target-button {
@include glass;
height: calc(100% - 12px);
}

button.small-button.pf2e-td {
@include glass;
@include quick-transition;
Expand Down
2 changes: 1 addition & 1 deletion styles/dorako-ui.css.map

Large diffs are not rendered by default.

28 changes: 17 additions & 11 deletions styles/module-support.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion styles/module-support.css.map

Large diffs are not rendered by default.

0 comments on commit d95d0f3

Please sign in to comment.