Skip to content

Commit

Permalink
2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Apr 9, 2023
1 parent acade12 commit 1e3ed30
Show file tree
Hide file tree
Showing 9 changed files with 112 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 2.0.10

- (New) Add support for Pin Cushion tooltips.
- (New) Add support for Illandril's Token Tooltips courtesy of @Vesselchuck.
- (Fix) Fixed an issue where non-GM's viewing Monk's Enhanced Journals would see no background.

# 2.0.9

- (Fix) Actually compile the stylesheet from 2.0.8 so it is included (whoops).
Expand Down
2 changes: 1 addition & 1 deletion modules/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const baseThemePf2eApplications = ["HotbarPF2e", "EffectsPanel", "SceneDa
export const baseThemePf2eSheets = ["SpellPreparationSheet","ItemSheet","NPCSheetPF2e","VehicleSheetPf2e","FamiliarSheetPF2e","HazardSheetPF2e", "CharacterSheetPF2e","LootSheetPF2e"]; //|| "ItemSheet","ActorSheet"

// prettier-ignore
export const baseThemeModuleApplications = ["CombatCarousel","CommonToolbar","MonksHotbarExpansion","CustomHotbar"];
export const baseThemeModuleApplications = ["PinCushionHUD","CombatCarousel","CommonToolbar","MonksHotbarExpansion","CustomHotbar"];

// prettier-ignore
export const baseThemeApplications = [...baseThemeCoreFoundryApplications,...baseThemePf2eApplications,...baseThemeModuleApplications, ...dorakoUiApplications];
Expand Down
8 changes: 8 additions & 0 deletions sass/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ $adjusted-lower: #cc3311 !default;
--color-border-trait: #d8c384;
--color-border-divider: #baa991;

/* Mats */
--mats-dark: #1c1c1c;
--mats-gold-dark: #dbc682;
--mats-gold-light: #e6d8a7;
--mats-green-light: #99aea1;
--mats-green: #3e644b;
--mats-green-dark: #233b2b;

/* Headers w/ boxes */
--header-color: var(--text-light);
--header-bg: var(--secondary);
Expand Down
32 changes: 32 additions & 0 deletions sass/module/_misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,35 @@
.dorako-ui.dark-theme .chart-dice-stats {
background: #f5deb391;
}

/* ----------------------------------------- */
/* Pin Cushion */
/* ----------------------------------------- */
.pin-cushion-hud-tooltip-default {
// .dorako-ui does not get added to actual HUD div
@include glass;
backdrop-filter: blur(5px);
text-shadow: 0px 0px 3px black;
}
#powerTip:before {
color: var(--glass-bg);
}

/* ----------------------------------------- */
/* Illandril's Token Tooltips */
/* ----------------------------------------- */

.illandril-token-tooltips--tooltip {
@include glass;
backdrop-filter: blur(5px);
text-shadow: 0px 0px 3px black;
color: var(--color-text-light-highlight);
font-size: 1rem;
}

.illandril-token-tooltips--tooltip .illandril-token-tooltips--name {
color: var(--color-text-light-highlight);
font-family: var(--font-primary);
font-size: 1.25rem;
padding: 4px 8px;
}
6 changes: 2 additions & 4 deletions sass/module/_monks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,9 @@
padding: 5px;
}

.monks-enhanced-journal.window-app .window-content {
#MonksEnhancedJournal.window-app .window-content {
// The div only affects the 'GM' view with all the chrome, the class would also remove the background when a non-GM accesses the journal
padding: 0px;
// background-color: rgba(0, 0, 0, 0.5);
// background-blend-mode: multiply;
background: none;
box-shadow: none;
border-radius: 0px 0px 0px 5px;
Expand All @@ -419,7 +418,6 @@
border: none;
box-shadow: 0px 0px 2px 1px rgb(0 0 0), 0px 0px 5px 0px rgb(0 0 0 / 50%);
box-shadow: none;

color: var(--color-text-light-highlight);
}

Expand Down
14 changes: 14 additions & 0 deletions styles/dorako-ui.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/dorako-ui.css.map

Large diffs are not rendered by default.

48 changes: 47 additions & 1 deletion 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 1e3ed30

Please sign in to comment.