Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Sep 11, 2022
1 parent 034ce42 commit 3baf59d
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 30 deletions.
17 changes: 12 additions & 5 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
"title": "PF2e Dorako UI",
"description": "Overhauls the Foundry UI and several modules.",
"url": "https://github.com/Dorako/pf2e-dorako-ui",
"author": "Dorako",
"version": "1.6.0",
"authors": [
{
"name": "Dorako",
"url": "https://github.com/Dorako/pf2e-dorako-ui",
"email": "[email protected]",
"discord": "Dorako#0657"
}
],
"version": "1.6.1",
"compatibility": {
"minimum": 10,
"verified": 10
"minimum": "10",
"verified": "10"
},
"relationships": {
"systems": [
Expand All @@ -18,6 +25,6 @@
]
},
"scripts": ["scripts/dorako-ui.js"],
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.6.0.zip",
"download": "https://github.com/Dorako/pf2e-dorako-ui/archive/refs/tags/v1.6.1.zip",
"manifest": "https://github.com/Dorako/pf2e-dorako-ui/raw/main/module.json"
}
22 changes: 13 additions & 9 deletions styles/app-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,20 @@

/* Glass - Add new styling */

#players {
background-color: var(--dorako-bg-current);
backdrop-filter: var(--dorako-vibrancy);
}

#players,
.window-app:not(.outlaws-wrapper, .journal-entry) .window-header,
.window-app.minimized .window-header {
border: none;
background-color: var(--dorako-bg-current);
backdrop-filter: var(--dorako-vibrancy);
/* background-color: var(--dorako-bg-current);
backdrop-filter: var(--dorako-vibrancy); */
/*will-change: backdrop-filter;*/
/* transform: translate3d(0px, 0px, 0px); */
box-shadow: var(--glassy);
/* box-shadow: var(--glassy); */
}

#ui-top.offset {
Expand All @@ -51,7 +56,8 @@

.window-app .window-header {
border-radius: 5px 5px 0px 0px;
box-shadow: var(--glassy);
/* box-shadow: var(--glassy); */
margin-bottom: 0px;
}

.window-app .window-content {
Expand All @@ -66,7 +72,7 @@
#players,
.window-app .window-header a,
.window-app .window-header .window-title {
text-shadow: var(--dorako-text-shadow);
text-shadow: var(--dorako-text-shadow), var(--dorako-text-shadow);
}

.editable .crb-style {
Expand All @@ -87,9 +93,6 @@
border-radius: 0px 0px 5px 5px;
}

.window-app .window-header {
margin-bottom: 0px;
}

.app {
color: var(--color-text-light-1);
Expand Down Expand Up @@ -198,7 +201,7 @@


.window-app.image-popout .window-content {
background: var(--dorako-bg-current);
background: unset;
padding: 0px;
}

Expand Down Expand Up @@ -230,6 +233,7 @@
box-shadow: var(--glassy);
position: unset;
border: none;
border-radius: 3px;
}


Expand Down
2 changes: 1 addition & 1 deletion styles/dorako-ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ button>i {

.window-app {
/* box-shadow: var(--glassy) !important; */
border-radius: 5px !important;
border-radius: 8px !important;
}


Expand Down
57 changes: 42 additions & 15 deletions styles/window-control.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
.window-app.minimized .window-header {
/* border: 1px solid transparent; */
border: none;
border-radius: 5px;
background-color: var(--dorako-bg-current);
backdrop-filter: var(--dorako-vibrancy);
/* border-radius: 5px; */
/* background-color: var(--dorako-bg-current); */
/* backdrop-filter: var(--dorako-vibrancy); */
/* box-shadow: 0 0 3px black; */
}

Expand All @@ -19,36 +19,33 @@

.app.window-app {
transition: background-color 0.25s;
backdrop-filter: var(--dorako-vibrancy);
background-color: var(--dorako-bg-current);
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5),
1px 1px 1px rgba(0, 0, 0, 1),
1px -1px 1px rgba(0, 0, 0, 1),
-1px -1px 1px rgba(0, 0, 0, 1),
-1px 1px 1px rgba(0, 0, 0, 1),
0px 0px 3px rgba(0, 0, 0, 1),
0px 0px 4px rgba(0, 0, 0, 0.5);
var(--glassy);
}

.app.window-app .window-header {
border-bottom: 1px solid black
border-bottom: 1px solid #484848;
}

.app.window-app.minimized .window-header {
border-bottom: none;
}

.app.window-app.minimized {
box-shadow: none;
/* box-shadow: none; */
}

.app.window-app.minimized.hazard .window-header {
.app.window-app.minimized.hazard {
background-color: #1C3531
}

.app.window-app.minimized.character .window-header {
.app.window-app.minimized.character {
background-color: #5D0E08
}

.app.window-app.minimized.npc .window-header {
.app.window-app.minimized.npc {
background-color: #422d01
}

Expand Down Expand Up @@ -92,6 +89,7 @@
border-bottom: 1px solid wheat;
}

.sheet.journal-entry .pages-list .directory-item:not(.active)+.active,
.sheet.journal-entry .pages-list .directory-item.active+ :not(.active),
.sheet.journal-entry .pages-list .directory-item.active:first-of-type {
border-top: 1px solid wheat;
Expand Down Expand Up @@ -131,4 +129,33 @@
visibility: hidden;
opacity: 0;
transition: visibility 0s 500ms, opacity 500ms; */
}
}

.app.window-app.image-popout .window-header,
.app.window-app.journal-sheet .window-header {
border-bottom: none;
}

/* Windows Vista styling */
/* .window-app .window-content {
border-radius: 5px;
}
.pf2e.actor .window-content,
.sheet.hazard .window-content,
section.window-content {
margin: 0px 5px 5px 5px;
border-radius: 3px;
box-shadow: var(--gold-and-glow);
}
.image-popout section.window-content,
.journal-sheet section.window-content {
margin: unset;
box-shadow: unset;
}
.app.window-app .window-header {
border-bottom: unset;
}
*/

0 comments on commit 3baf59d

Please sign in to comment.