Skip to content

Commit

Permalink
1.3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Apr 30, 2022
1 parent 118a278 commit 4569f0d
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 168 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.3.16

Update to dark mode, courtesy of @Vesselchuck. Made clickability of system buttons more obvious when hovered.

# 1.3.15

Dark-themed sheets are back, courtesy of @Vesselchuck. Disabling macrobar styling is better at its job. Fixed issue with centered macro bar being broken when app-ui styling was disabled.
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"description": "Overhauls the Foundry UI and several modules.",
"url": "https://github.com/Dorako/pf2e-dorako-ui",
"author": "Dorako",
"version": "1.3.15",
"version": "1.3.16",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "9",
"system": ["pf2e"],
"scripts": ["scripts/dorako-ui.js"],
"templates": ["templates/*"],
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.3.15.zip",
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.3.16.zip",
"manifest": "https://github.com/Dorako/pf2e-dorako-ui/raw/main/module.json"
}
4 changes: 4 additions & 0 deletions styles/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -1476,6 +1476,10 @@ div#scrollToBottom:hover {
/* line-height: normal; */
}

.chat-message button:hover,
.chat-message button:focus {
box-shadow: 0px 0px 10px rgba(245, 222, 179, 0.2) inset;
}

.message .message-header.dark-text {
background-blend-mode: luminosity;
Expand Down
10 changes: 8 additions & 2 deletions styles/dorako-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,14 @@

}

button:hover, button:focus {
box-shadow: 0px 0px 10px rgba(245, 222, 179, 0.2) inset;
select:hover,
select:focus,
button:hover,
button:focus,
form button:hover,
form button:focus {
box-shadow: 0px 0px 2px rgb(0 0 0 / 80%) inset, 0px 0px 4px rgb(0 0 0 / 50%) inset;
background-color: rgba(214, 214, 191, 0.8);
}

body {
Expand Down
Loading

0 comments on commit 4569f0d

Please sign in to comment.