daggerheart/styles/less/ui/scene-config/scene-config.less
WBHarry 052b6baefe
[Feature] Extended Scene Range Measurements (#1255)
* Extended the capabilities of scene rangemeasurement settings

* Corrected darkmode tab title
2025-11-10 18:25:31 -05:00

40 lines
885 B
Text

.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;
}
}