Skip to content

Commit

Permalink
3.3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Mar 10, 2024
1 parent 27cb285 commit e211e47
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 57 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.3.18

- (Maintenance) Updated styling to be compatible with system version 5.14.1.

# 3.3.17

- (Maintenance) Adjustments to tags.
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "system",
"compatibility": {
"minimum": "5.6.0",
"verified": "5.13.0"
"verified": "5.14.1"
}
},
{
Expand Down
8 changes: 7 additions & 1 deletion sass/ui-theme/foundry-core/_app-ui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
h3 {
color: var(--text-color-1);
}
h4 {
h4:not([data-visibility]) {
color: var(--text-color-2);
}
h5 {
Expand Down Expand Up @@ -684,6 +684,12 @@
.pf2e.chat-card .tags {
border: none;
}

.tags.light > .tag,
.tags > .tag.light {
background: white;
}

// .tags > .tag {
// --tag-color: var(--text-color-2);
// --color-pf-alternate-dark: var(--text-color-2);
Expand Down
6 changes: 6 additions & 0 deletions sass/ui-theme/pf2e-system/_actor-sheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,17 @@
border-radius: 3px;
}

&.actor.sheet section.window-content .inventory ul.items > li > .data .item-controls > a.toggle-invested.active,
&.actor.sheet section.window-content .inventory ul.items > li > .data .item-controls > a.item-carry-type.active,
&.actor.sheet .window-content .inventory ul.items > li > .data .item-controls > a.toggle-invested.active,
&.actor.sheet .window-content .inventory ul.items > li > .data .item-controls > a.item-carry-type.active {
--secondary: var(--accent-color);
--color-pf-secondary: var(--accent-color);
--fa-inverse: var(--accent-text-color);
}

&.actor.sheet section.window-content .inventory ul.items > li > .data .item-controls > a.toggle-invested:not(.active),
&.actor.sheet section.window-content .inventory ul.items > li > .data .item-controls > a.item-carry-type:not(.active),
&.actor.sheet .window-content .inventory ul.items > li > .data .item-controls > a.toggle-invested:not(.active),
&.actor.sheet .window-content .inventory ul.items > li > .data .item-controls > a.item-carry-type:not(.active) {
text-shadow: 0px 0px 0px white;
Expand Down Expand Up @@ -52,6 +57,7 @@

&.spellcasting-entry.preparation ol.spell-list > li .item-summary {
border: unset;
background: unset;
}

&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.effects .effects-list .item.unidentified {
Expand Down
33 changes: 24 additions & 9 deletions sass/ui-theme/pf2e-system/_pc-sheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .ability-scores .ability h3.ability-mod,
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .attribute-modifiers .attribute,
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .attribute-modifiers .attribute h3.attribute-mod {
border-image-source: var(--ornamentation);
border-image-source: var(--ornamentation) !important;
}
}

Expand Down Expand Up @@ -48,7 +48,7 @@
}

[data-theme] {
&.actor.sheet[data-theme-color] {
&.actor.sheet.character[data-theme-color] {
.crb-style aside .sidebar header button {
color: var(--theme-color-dark);
}
Expand All @@ -60,7 +60,7 @@
.inventory .item-summary {
background: color-mix(in srgb, var(--theme-color) 25%, transparent);
}
aside {
.crb-style aside {
.logo {
filter: grayscale(0.6);
}
Expand All @@ -81,7 +81,7 @@
}
}

&.actor.sheet[data-theme-color="red"] {
&.actor.sheet.character[data-theme-color="red"] {
--theme-text-color: var(--primary-light);
--theme-color: var(--primary);
--theme-color-dark: var(--primary-dark);
Expand All @@ -92,7 +92,7 @@
}
}

&.actor.sheet[data-theme-color="blue"] {
&.actor.sheet.character[data-theme-color="blue"] {
--scrollbar-thumb-background: var(--secondary-light);
--scrollbar-thumb-border-color: var(--tertiary);
--color-scrollbar-hover: var(--theme-text-color);
Expand Down Expand Up @@ -125,7 +125,7 @@
}
}

&.actor.sheet[data-theme-color="green"] {
&.actor.sheet.character[data-theme-color="green"] {
--scrollbar-thumb-background: var(--remaster-light);
--scrollbar-thumb-border-color: var(--tertiary);
--color-scrollbar-hover: var(--theme-text-color);
Expand Down Expand Up @@ -156,7 +156,7 @@
}
}

&.actor.sheet[data-theme-color="purple"] {
&.actor.sheet.character[data-theme-color="purple"] {
--theme-color-dark: #3b0062;
--theme-color: #520982;
--theme-text-color: rgb(107, 29, 137);
Expand Down Expand Up @@ -187,7 +187,7 @@
}
}

&.actor.sheet[data-theme-color="black"] {
&.actor.sheet.character[data-theme-color="black"] {
--theme-color-dark: black;
--theme-color: #111;
--theme-text-color: #222;
Expand Down Expand Up @@ -220,7 +220,7 @@
}

[data-theme][data-dorako-ui-scope="limited"] {
&.actor.sheet .crb-style {
&.actor.sheet.character .crb-style {
background: unset;
background: var(--header), transparent !important;
background-repeat: repeat-x, no-repeat !important;
Expand Down Expand Up @@ -405,6 +405,8 @@
}
}

//prettier-ignore
&.actor.sheet.character section.window-content .crb-style .sheet-body .sheet-content > .tab.active.feats ol.feats-list li.slot .item-name .feat-slot-title,
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.feats li.feat-item .item-name .feat-slot-title {
--color-pf-secondary: var(--accent-color);
}
Expand Down Expand Up @@ -440,6 +442,11 @@
filter: invert(1);
}

//prettier-ignore
&.actor.sheet.character section.window-content .crb-style .sheet-body .sheet-content > .tab.active.proficiencies ul.proficiencies-list li a.d20 {
filter: drop-shadow(0 0 1px var(--color-shadow-dark));
}

&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .character-details .alignment select {
--input-text-color: black;
--input-background: transparent;
Expand All @@ -459,9 +466,11 @@
}

//prettier-ignore
&.actor.sheet.character section.window-content .crb-style .sheet-body .sheet-content > .tab.active.proficiencies ul.proficiencies-list li a.hover,
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.proficiencies ul.proficiencies-list li a.skill-name:hover,
&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.proficiencies ul.proficiencies-list li a.modifier:hover{
--primary: var(--accent-color-light);
--color-pf-primary-dark: var(--accent-color);
}

&.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.effects .effects-list .item,
Expand Down Expand Up @@ -522,3 +531,9 @@
--color-pf-primary: var(--text-color-1);
}
}

[data-theme] {
h4 a:hover {
--color-pf-secondary: var(--accent-color-light);
}
}
Loading

0 comments on commit e211e47

Please sign in to comment.