|
@@ -36,9 +36,8 @@
|
|
--color-widget-background-highlight: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 4%)));
|
|
--color-widget-background-highlight: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 4%)));
|
|
--color-popover-background: hsl(var(--bgh), calc(var(--bgs) + 3%), calc(var(--bgl) + 3%));
|
|
--color-popover-background: hsl(var(--bgh), calc(var(--bgs) + 3%), calc(var(--bgl) + 3%));
|
|
--color-popover-border: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 12%)));
|
|
--color-popover-border: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 12%)));
|
|
-
|
|
|
|
- --color-progress-bar-border: hsl(var(--bghs), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 10% * var(--cm))));
|
|
|
|
- --color-progress-bar-background: hsl(var(--bgh), calc(var(--bgs) * var(--tsm)), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 27% * var(--cm))));
|
|
|
|
|
|
+ --color-progress-border: hsl(var(--bghs), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 10% * var(--cm))));
|
|
|
|
+ --color-progress-value: hsl(var(--bgh), calc(var(--bgs) * var(--tsm)), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 27% * var(--cm))));
|
|
--color-graph-gridlines: hsl(var(--bghs), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 6% * var(--cm))));
|
|
--color-graph-gridlines: hsl(var(--bghs), calc(var(--scheme) ((var(--scheme) var(--bgl)) + 6% * var(--cm))));
|
|
|
|
|
|
--ths: var(--bgh), calc(var(--bgs) * var(--tsm));
|
|
--ths: var(--bgh), calc(var(--bgs) * var(--tsm));
|
|
@@ -1134,12 +1133,11 @@ details[open] .summary::after {
|
|
.dns-stats-graph-bar {
|
|
.dns-stats-graph-bar {
|
|
width: 14px;
|
|
width: 14px;
|
|
height: calc((var(--bar-height) / 100) * var(--graph-height));
|
|
height: calc((var(--bar-height) / 100) * var(--graph-height));
|
|
- border: 1px solid var(--color-progress-bar-border);
|
|
|
|
|
|
+ border: 1px solid var(--color-progress-border);
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
display: flex;
|
|
display: flex;
|
|
background: var(--color-widget-background);
|
|
background: var(--color-widget-background);
|
|
padding: 2px 2px 0 2px;
|
|
padding: 2px 2px 0 2px;
|
|
- display: flex;
|
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
gap: 2px;
|
|
transition: border-color .2s;
|
|
transition: border-color .2s;
|
|
@@ -1148,12 +1146,12 @@ details[open] .summary::after {
|
|
|
|
|
|
.dns-stats-graph-column.popover-active .dns-stats-graph-bar {
|
|
.dns-stats-graph-column.popover-active .dns-stats-graph-bar {
|
|
border-color: var(--color-text-subdue);
|
|
border-color: var(--color-text-subdue);
|
|
- border-bottom-color: var(--color-progress-bar-border);
|
|
|
|
|
|
+ border-bottom-color: var(--color-progress-border);
|
|
}
|
|
}
|
|
|
|
|
|
.dns-stats-graph-bar > * {
|
|
.dns-stats-graph-bar > * {
|
|
border-radius: 2px;
|
|
border-radius: 2px;
|
|
- background: var(--color-progress-bar-background);
|
|
|
|
|
|
+ background: var(--color-progress-value);
|
|
min-height: 1px;
|
|
min-height: 1px;
|
|
}
|
|
}
|
|
|
|
|