Skip to content

Commit

Permalink
1.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Sep 25, 2022
1 parent 21f844a commit d5afe0e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.6.7

Fixed secret roll-notes being unreadable on dark mode chat messages.

# 1.6.6

Fixed certain button labels having the wrong color on dark PC sheets.
Expand Down
6 changes: 3 additions & 3 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"discord": "Dorako#0657"
}
],
"version": "1.6.6",
"version": "1.6.7",
"compatibility": {
"minimum": "10",
"verified": "10.285"
"verified": "10.286"
},
"relationship": {
"systems": [
Expand All @@ -31,6 +31,6 @@
},

"scripts": ["scripts/dorako-ui.js"],
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.6.6.zip",
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.6.7.zip",
"manifest": "https://github.com/Dorako/pf2e-dorako-ui/raw/main/module.json"
}
16 changes: 11 additions & 5 deletions styles/chat-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
--pf2e-body-secondary: hsl(0, 0%, 60%);
--pf2e-body-inverse: hsl(0, 0%, 00%); */

/* --pf2e-shadow-dynamic: var(--pf2e-half-transparent-dark);
--pf2e-shadow-dynamic: var(--pf2e-half-transparent-dark);
--pf2e-color-ornament: var(--pf2e-color-ornament-for-dark);
--pf2e-translucent-middle: var(--pf2e-translucent-middle-for-dark);
--pf2e-translucent-very: var(--pf2e-translucent-very-for-dark);
--filter-img: var(--filter-dark); */
/* --filter-img: var(--filter-dark); */
}


Expand Down Expand Up @@ -125,11 +125,13 @@
}

.dark-theme .damage-tag-modifier {
background: var(--pf2e-translucent-very-for-dark);
background: hsla(0, 0%, 50%, 0.25);
}

.dark-theme [data-visibility=owner]:is(div, em, p, span, strong) {
background: var(--pf2e-translucent-very-for-dark);
.dark-theme [data-visibility=gm]:is(div, em, h4, section p, span, strong),
.dark-theme [data-visibility=owner]:is(div, em, h4, section p, span, strong),
.dark-theme [data-visibility]:is(div, em, h4, p, section, span, strong):not([data-visibility=all])[data-visibility=gm] {
background: hsla(0, 0%, 50%, 0.25);
}

.dark-theme .damage-tag-base {
Expand Down Expand Up @@ -160,4 +162,8 @@

.dark-theme .vr {
border-color: gray;
}

#sidebar [data-tab=cards] {
display: none;
}

0 comments on commit d5afe0e

Please sign in to comment.