Skip to content

Commit

Permalink
3.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorako committed Apr 19, 2024
1 parent d2822f2 commit 0e67fcc
Show file tree
Hide file tree
Showing 8 changed files with 201 additions and 84 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.4.9

- (Maintenance) Ensured Vehicle sheets are styled properly again, with respect to sheet theme and PC theme color.
- (Refinement) Added styling for the in-archive search feature in Vauxs' Archives.
- (Refinement) Updated styling for inputs and selects in ITT, ensuring that they are legible regardless of theme.

# 3.4.8

- (Refinement) Added a color for linebreaks in journals for the CRB themes.
Expand Down
2 changes: 1 addition & 1 deletion sass/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
// line-height: var(--input-height);
// padding: 0 0.3rem;
border-radius: 4px;
outline: 1px solid transparent;
outline: 0px solid transparent;
user-select: text;
// font-size: var(--font-size);
transition: outline-color 0.5s;
Expand Down
1 change: 1 addition & 0 deletions sass/module-support/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
@import "token-action-hud";
@import "token-attacher";
@import "tokenizer";
@import "vauxs-archives";
@import "window-tabs";
@import "workbench";
@import "yendors-scene-actors";
11 changes: 11 additions & 0 deletions sass/module-support/_pf2e-idle-hud.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@
border-radius: var(--border-radius);
}

&#pf2e-token-hud input,
&#pf2e-token-hud select,
&#pf2e-token-hud .sidebar .sidebar-toggles .toggle select {
@include dui-input;
--app-border-width: 1px;
}

&#pf2e-token-hud .sidebar .sidebar-toggles {
padding: unset;
}

&#pf2e-token-hud .sidebar .sidebar-content .details input {
@include dui-input;
// padding: 1px;
Expand Down
9 changes: 9 additions & 0 deletions sass/module-support/_vauxs-archives.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[data-theme] .vauxs-archive {
// Would be cool, but does not include an "active" class when depressed
// button {
// @include dui-button-toggle;
// }
input {
@include dui-input;
}
}
10 changes: 9 additions & 1 deletion sass/ui-theme/pf2e-system/_pc-sheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
}

[data-theme] {
&.actor.sheet.vehicle[data-theme-color],
&.actor.sheet.character[data-theme-color] {
.crb-style aside .sidebar header button {
color: var(--theme-color-dark);
Expand Down Expand Up @@ -81,6 +82,7 @@
}
}

&.actor.sheet.vehicle[data-theme-color="red"],
&.actor.sheet.character[data-theme-color="red"] {
--theme-text-color: var(--primary-light);
--theme-color: var(--primary);
Expand All @@ -92,7 +94,7 @@
}
}

&.actor.sheet.character[data-theme-color="blue"] {
&.actor.sheet.vehicle[data-theme-color="blue"] &.actor.sheet.character[data-theme-color="blue"] {
--scrollbar-thumb-background: var(--secondary-light);
--scrollbar-thumb-border-color: var(--tertiary);
--color-scrollbar-hover: var(--theme-text-color);
Expand Down Expand Up @@ -125,6 +127,7 @@
}
}

&.actor.sheet.vehicle[data-theme-color="green"],
&.actor.sheet.character[data-theme-color="green"] {
--scrollbar-thumb-background: var(--remaster-light);
--scrollbar-thumb-border-color: var(--tertiary);
Expand Down Expand Up @@ -156,6 +159,7 @@
}
}

&.actor.sheet.vehicle[data-theme-color="purple"],
&.actor.sheet.character[data-theme-color="purple"] {
--theme-color-dark: #3b0062;
--theme-color: #520982;
Expand Down Expand Up @@ -187,6 +191,7 @@
}
}

&.actor.sheet.vehicle[data-theme-color="black"],
&.actor.sheet.character[data-theme-color="black"] {
--theme-color-dark: black;
--theme-color: #111;
Expand Down Expand Up @@ -220,6 +225,7 @@
}

[data-theme][data-dorako-ui-scope="limited"] {
&.actor.sheet.vehicle .crb-style,
&.actor.sheet.character .crb-style {
background: unset;
background: var(--header), transparent !important;
Expand Down Expand Up @@ -333,6 +339,8 @@
h6 {
--primary: var(--text-color-2);
--secondary: var(--accent-color);
--color-pf-primary: var(--text-color-2); // still used by vehicle sheets
--color-pf-secondary: var(--accent-color); // still used by vehicle sheets
}
}

Expand Down
Loading

0 comments on commit 0e67fcc

Please sign in to comment.