moved outline/border styles to property

This commit is contained in:
2026-02-25 17:52:13 +01:00
parent debf014615
commit 76bfd344e4
9 changed files with 12 additions and 11 deletions

View File

@@ -134,6 +134,7 @@
--blur-radius-background: 6px;
/* borders */
--border-style: dashed;
--border-dash-size: 2px;
--underline-dash-size: 1px;
@@ -277,7 +278,7 @@
width: 100%;
height: 1px;
border: none;
border-top: var(--border-dash-size) dashed var(--color-highlight);
border-top: var(--border-dash-size) var(--border-style) var(--color-highlight);
margin: 8px 0;
}
@@ -328,7 +329,7 @@
color: var(--color-link-unvisited);
text-decoration-thickness: var(--underline-dash-size);
text-decoration-color: transparent;
text-decoration-style: dashed;
text-decoration-style: var(--border-style);
}
/* visited link */
a:visited {