Skip to content

Commit

Permalink
3.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed May 18, 2024
1 parent f8112ae commit 2b9d2ae
Show file tree
Hide file tree
Showing 9 changed files with 343 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.4.11

- (Maintenance) Styling touchups for the Global Progress Clocks module.
- (Module) Added support for Theatre Inserts.

# 3.4.10

- (Maintenance) Added Wardens of Wildwood to the premium module exclusion system.
Expand Down Expand Up @@ -30,6 +35,10 @@
- (Refinement) Updated styling of certain secret labels to keep in track with the system.
- (Refinement) Added a border around icons in certain messages with small icons.

# 3.4.4

- Does not exist

# 3.4.3

- (Module) Added support for Vauxs' Archives.
Expand Down
25 changes: 24 additions & 1 deletion sass/module-support/_global-progress-clocks.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[data-theme] {
&.clock-panel {
z-index: 1;
// z-index: 1;
right: 5px;

.clock-list {
overflow: unset; // auto crops box shadows
}

.clock-entry {
@include dui-app;
}
Expand All @@ -12,4 +16,23 @@
margin: unset;
}
}

.add-clock-form .dropdown-wrapper {
@include dui-input;
input {
--input-box-shadow: none !important;
--input-background: none !important;
--input-border-color: transparent !important;
--input-focus-outline-color: transparent !important;
}
.dropdown {
color: black;
}
}
&[data-theme^="crb"][data-color-scheme="light"] .add-clock-form .dropdown-wrapper {
--input-background: rgba(0, 0, 0, 0.05);
}
&[data-theme^="crb"].clock-panel [data-action="add-clock"] {
--button-background: var(--app-background);
}
}
1 change: 1 addition & 0 deletions sass/module-support/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
@import "swade";
@import "tagger";
@import "target-damage";
@import "theatre-inserts";
@import "token-action-hud";
@import "token-attacher";
@import "tokenizer";
Expand Down
47 changes: 47 additions & 0 deletions sass/module-support/_theatre-inserts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[data-chat-interface-theme] {
.theatre-control-group {
display: flex;
gap: 5px;
margin: 0px var(--sidebar-margin);
align-items: center;

.theatre-control-nav-bar {
@include dui-app;
display: flex;
gap: 5px;
align-self: center;
}
}

.theatre-control-btn {
@include dui-button-toggle;
}
.theatre-control-nav-bar-item-active,
.theatre-control-nav-bar-item-speakingas,
.theatre-control-btn-down {
@include dui-button-toggle;
background: var(--button-hover-background);
outline: 1px solid var(--button-focus-outline-color);
border-color: var(--button-hover-border-color);
color: var(--button-hover-text-color);
}
.theatre-control-nav-bar-item {
@include dui-button-toggle;
&:hover {
transform: unset;
}
}

.theatre-control-nav-bar-item-speakingas {
animation: speakingasitempulse 1s linear 0.2s infinite alternate;
}
}

@keyframes speakingasitempulse {
0% {
border: 1px solid var(--button-hover-background);
}
100% {
border: 1px solid var(--button-hover-text-color);
}
}
2 changes: 2 additions & 0 deletions sass/ui-theme/foundry-core/_app-ui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,8 @@

&.pf2e.item.sheet form > nav > .tabs {
gap: 5px;
padding-left: 2px;
padding-right: 2px;
}

&.sheet nav.sheet-tabs {
Expand Down
6 changes: 3 additions & 3 deletions sass/ui-theme/pf2e-system/_actor-sheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
color: white;
background: var(--color-primary-2);
text-shadow: 0px 1px 2px black;
border-radius: 3px;
border-radius: 2px;
}

&.actor.sheet section.window-content .inventory ul.items > li > .data .item-controls > a.toggle-invested.active,
Expand Down Expand Up @@ -111,14 +111,14 @@
}

&.spellcasting-entry.preparation ol.spell-list > li .item-name .item-image,
&.actor.sheet .item-image {
&.actor.sheet section.window-content .item-image {
@include dui-app;
margin: 1px 2px;
border: 1px solid;
border-color: var(--icon-border-color);
border-radius: 3px;
img {
border-radius: 3px;
border-radius: 2px;
}
}

Expand Down
2 changes: 2 additions & 0 deletions sass/ui-theme/pf2e-system/_party-sheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
&.sheet.party nav.sub-nav {
background: unset;
box-shadow: unset;
gap: 5px;

a,
.tab {
@include dui-button;
Expand Down
Loading

0 comments on commit 2b9d2ae

Please sign in to comment.