Skip to content

Commit

Permalink
1.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Mar 13, 2022
1 parent 90e3491 commit 2ba99c5
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 24 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 1.3.9

Fixed support for Monk's hotbar. Fixed layout of Strike cards.

# 1.3.9

Fixed issue that caused degree-of-success colors to disappear. Added support for Damage Log's revert functionality. Removed sheet stylings, as the system changes them too frequently.

# 1.3.8
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.9",
"version": "1.3.10",
"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.9.zip",
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.3.10.zip",
"manifest": "https://github.com/Dorako/pf2e-dorako-ui/raw/main/module.json"
}
4 changes: 2 additions & 2 deletions styles/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -1337,10 +1337,10 @@ div#scrollToBottom:hover {
color: var(--pf2e-body-primary);
}

.pf2e.chat-card .card-buttons[data-visibility=owner],
/* .pf2e.chat-card .card-buttons[data-visibility=owner],
.pf2e.chat-card .card-buttons .spell-attack-buttons {
flex-direction: row;
}
} */

.pf2e.chat-card .card-buttons-two-column {
display: flex;
Expand Down
46 changes: 26 additions & 20 deletions styles/hotbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
#hotbar .bar-controls,
#hotbar #macro-list,
#hotbar .macro.inactive,
#hotbar .macro
{
#hotbar .macro {
border: none;
border-radius: 0px;
box-shadow: none;
Expand All @@ -22,8 +21,7 @@
#hotbar #hotbar-page-controls,
#hotbar #macro-list,
#hotbar .macro.inactive,
#hotbar .macro:not(.active)
{
#hotbar .macro:not(.active) {
border: none;
border-radius: var(--dorako-radius);
background-color: var(--dorako-bg-current);
Expand Down Expand Up @@ -106,7 +104,7 @@
flex-grow: 0;
}

#hotbar-page-controls .bar-controls{
#hotbar-page-controls .bar-controls {
display: flex;
align-items: center;
justify-content: center;
Expand Down Expand Up @@ -156,17 +154,17 @@
} */

#hotbar .macro.active::before {
transition: box-shadow 0.5s ease-in-out;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: var(--glassy);
border-radius: 2px;
overflow: hidden;
pointer-events: none;
transition: box-shadow 0.5s ease-in-out;
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: var(--glassy);
border-radius: 2px;
overflow: hidden;
pointer-events: none;
}

#hotbar .macro.active:hover::before {
Expand All @@ -177,7 +175,7 @@
left: 0;
width: 100%;
height: 100%;
box-shadow: 0px 0px 10px rgba(220,200,100,0.5) inset, var(--glassy);
box-shadow: 0px 0px 10px rgba(220, 200, 100, 0.5) inset, var(--glassy);
border-radius: 2px;
overflow: hidden;
pointer-events: none;
Expand All @@ -199,22 +197,30 @@
position: absolute;
bottom: 52px;
width: 592px;
left: -32px;
/* left: -32px; */
transition: unset;
gap: 2px;
max-height: 270px;
overflow: visible;
}

#hotbar .macro-list {
margin: 0px;
}

.hotbar-page-row {
gap: 9px
}

.hotbar-page .action-bar {
gap: 10px;
display: contents;
}

.hotbar-page .macro-list {
flex: 0 0 518px;
height: 100%;
list-style: none;
margin:0px;
margin: 0px;
padding: 0px;
border: none;
border-radius: 3px;
Expand Down

0 comments on commit 2ba99c5

Please sign in to comment.