Skip to content

Commit

Permalink
1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Mar 2, 2022
1 parent e8e3c54 commit 51b61e9
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 1.3.6
Fixed top left controls that broke in recent core foundry patch.
# 1.3.5
Fixed dark player sheets that broke in recent patch. Made macro bare never fade in compact mode, as it doesn't re-appear when hovering while dragging a macro.
Fixed dark player sheets that broke in recent system patch. Made macro bare never fade in compact mode, as it doesn't re-appear when hovering while dragging a macro.
# 1.3.4
Changed compact mode to client setting. Fixed issue in dark sheets. Themed foundry notifications.
Fixed styling that broke due to data visibility changes in the newest foundry release
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Overhauls the Foundry UI and several modules.",
"url": "https://github.com/Dorako/pf2e-dorako-ui",
"author": "Dorako",
"version": "1.3.5",
"version": "1.3.6",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "9",
"system": ["pf2e"],
Expand All @@ -14,6 +14,6 @@
"templates": [
"templates/*"
],
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.3.5.zip",
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.3.6.zip",
"manifest": "https://github.com/Dorako/pf2e-dorako-ui/raw/main/module.json"
}
2 changes: 1 addition & 1 deletion styles/compact-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#controls {
pointer-events: all;
gap: 5px;
/* gap: 5px; */
flex-wrap: nowrap;
width: 75px;
flex-direction: row;
Expand Down
33 changes: 31 additions & 2 deletions styles/controls.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@

#controls ol .scene-control,
#controls ol .control-tool,
#controls ol .control-tool.toggle, #controls ol .control-tool.toggle.active,
#controls ol.control-tools > li.active, #controls ol.control-tools > li:hover,
#controls ol.control-tools > li,
#controls ol.control-tools > li.toggle,
#controls ol.control-tools > li.toggle.active,
#controls ol .control-tool.toggle,
#controls ol .control-tool.toggle.active,
#controls ol .control-tool.active,
#controls ol .scene-control.active,
#controls ol .control-tool.toggle:hover,
#controls ol .control-tool:hover,
#controls ol .scene-control:hover,

#controls ol.control-tools > li.toggle:hover,
#darkness-adjuster .window-content,
#darkness-adjuster
{
Expand All @@ -33,6 +40,13 @@
#controls ol .control-tool.toggle:hover,
#controls ol .control-tool.toggle.active,
#controls ol .control-tool.toggle.active:hover,
#controls ol.control-tools > li,
#controls ol.control-tools > li.active,
#controls ol.control-tools > li:hover,
#controls ol.control-tools > li.active:hover,
#controls ol.control-tools > li.toggle:hover,
#controls ol.control-tools > li.toggle.active,
#controls ol.sub-controls .control-tool.toggle,
#darkness-adjuster .window-content
{
border: none;
Expand All @@ -51,8 +65,20 @@
#controls {
padding-top: 0px;
margin-top: var(--edge-margin);
margin-left: unset;
margin-left: var(--edge-margin);;
transition: unset;
overflow: visible;
padding: 0px;
}

#controls ol.control-tools > li {
margin-bottom: 5px;
margin-right: 5px;
}

#controls ol.control-tools.main-controls {
padding: 0px;
margin: 0px;
}

#controls ol.main-controls {
Expand All @@ -77,6 +103,8 @@
text-shadow: var(--dorako-text-shadow);
}

#controls ol.control-tools > li.active,
#controls ol.control-tools > li:hover,
#controls ol .scene-control.active,
#controls ol .scene-control:hover {
background-color: var(--paizo-red);
Expand All @@ -101,6 +129,7 @@
/* backdrop-filter: var(--dorako-vibrancy-active) var(--dorako-vibrancy-active); */
}

#controls ol.control-tools > li.toggle:hover,
#controls ol.sub-controls .control-tool.toggle.active {
background-color: var(--paizo-blue-bright);
/* backdrop-filter: brightness(1.5), var(--dorako-vibrancy-active); */
Expand Down
8 changes: 8 additions & 0 deletions styles/sheet-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ crb-style .inventory .encumbrance .encumbrance-light-bulk-overflow {
color: #F1DFB890;
}

.actor.sheet.character .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .skill-score,
.actor.sheet .crb-style .sheet-body .sheet-content .spell-list .item .item-name h4:hover,
.actor.sheet.character .tab.inventory .item-controls .item-control,
.actor.sheet.character .tab.proficiencies .proficiencies-pane h1,
.actor.sheet.character .tab.biography h3 {
Expand All @@ -144,6 +146,7 @@ crb-style .inventory .encumbrance .encumbrance-light-bulk-overflow {
filter: brightness(1.2);
}

.actor.sheet .crb-style .sheet-body .sheet-content .spell-list .item.spell-level-header,
.actor.sheet.character .tab.character h3,
.actor.sheet.character .tab.character .ability-scores .ability .ability-id,
.actor.sheet .crb-style .sheet-body .sheet-content,
Expand All @@ -157,9 +160,14 @@ crb-style .inventory .encumbrance .encumbrance-light-bulk-overflow {
.crb-style input[type="date"],
.crb-style input[type="time"] {
color: white;
}

.actor.sheet .crb-style .sheet-body .sheet-content .content-link {
color: black;
}

.actor.sheet .crb-style .sheet-body .sheet-content .spell-list .item .item-summary,
.crb-style .sheet-body .sheet-content .spell-list .item .item-summary {
background:none;
background-color: transparent;
}

0 comments on commit 51b61e9

Please sign in to comment.