Skip to content

Commit

Permalink
Fixed camera styles
Browse files Browse the repository at this point in the history
  • Loading branch information
saif-ellafi committed Apr 15, 2022
1 parent 81fe09b commit d221e2b
Show file tree
Hide file tree
Showing 4 changed files with 15 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.4.23
Not my fault :) I hope Foundry stops renaming CSS class names across minor builds. But well.
* Bugfix: Support Foundry 9.268

### 1.4.22
* Bugfix: Support Foundry 9.255+ Patch 4 Support (Fixed colors)

Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"description": "Minimal UI allows customizing Foundry interface, by hiding, collapsing or resizing specific parts.",
"version": "1.4.22",
"version": "1.4.23",
"minimumCoreVersion": "9.233",
"compatibleCoreVersion": "9",
"dependencies": [
Expand Down Expand Up @@ -42,6 +42,6 @@
],
"url": "https://github.com/saif-ellafi/foundryvtt-minimal-ui.git",
"manifest": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/latest/download/module.json",
"download": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/download/1.4.22/foundryvtt-minimal-ui_1.4.22.zip",
"download": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/releases/download/1.4.23/foundryvtt-minimal-ui_1.4.23.zip",
"changelog": "https://github.com/saif-ellafi/foundryvtt-minimal-ui/blob/main/CHANGELOG.md"
}
3 changes: 1 addition & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions styles/component/camera.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,24 @@
--novidleftleft: inherit;
}

:not(.camera-view-popout) > .no-video {
:not(.camera-view) > .no-video {
display: var(--novid);
}

:not(.camera-view-popout) > .no-video > .video-container {
:not(.camera-view) > .no-video > .video-container {
display: var(--noviddis);
}

:not(.camera-view-popout) > .no-video > .notification-bar {
:not(.camera-view) > .no-video > .notification-bar {
display: var(--noviddis);
}

:not(.camera-view-popout) > .no-video > .control-bar.left {
:not(.camera-view) > .no-video > .control-bar.left {
flex-direction: var(--novidleftflex);
top: var(--novidlefttop);
left: var(--novidleftleft);
}

#camera-views {
margin: 0 0 65px 110px;
}

0 comments on commit d221e2b

Please sign in to comment.