mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
[Feature] Extended Scene Range Measurements (#1255)
* Extended the capabilities of scene rangemeasurement settings * Corrected darkmode tab title
This commit is contained in:
parent
7055591a76
commit
052b6baefe
13 changed files with 182 additions and 21 deletions
|
|
@ -28,3 +28,5 @@
|
|||
|
||||
@import './sidebar/tabs.less';
|
||||
@import './sidebar/daggerheartMenu.less';
|
||||
|
||||
@import './scene-config/scene-config.less';
|
||||
|
|
|
|||
40
styles/less/ui/scene-config/scene-config.less
Normal file
40
styles/less/ui/scene-config/scene-config.less
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
.theme-light .application.sheet.scene-config {
|
||||
.sheet-tabs.tabs a[data-tab='dh'] {
|
||||
&.active img,
|
||||
&:hover img {
|
||||
filter: @grey-filter drop-shadow(0 0 4px var(--color-shadow-primary));
|
||||
}
|
||||
|
||||
img {
|
||||
filter: @grey-filter;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.application.sheet.scene-config {
|
||||
.sheet-tabs.tabs {
|
||||
a[data-tab='dh'] {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
|
||||
&.active,
|
||||
&:hover {
|
||||
img {
|
||||
filter: @beige-filter drop-shadow(0 0 4px var(--color-shadow-primary));
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: 18px;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
filter: @beige-filter;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.helper-text {
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
|
@ -56,6 +56,8 @@
|
|||
@dark-80: #22222280;
|
||||
@dark-filter: brightness(0) saturate(100%);
|
||||
|
||||
@grey-filter: brightness(15%) saturate(20%);
|
||||
|
||||
@deep-black: #0e0d15;
|
||||
|
||||
@beige: #efe6d8;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue