CSS: fix some border color regressions

This commit is contained in:
Deimos
2020-09-28 17:21:26 -06:00
parent 082e3b51a1
commit de1a64b3d0
2 changed files with 8 additions and 6 deletions

View File

@@ -8,6 +8,10 @@ html {
font-size: $html-font-size;
}
* {
border-color: var(--border-color);
}
a {
text-decoration: none;
@@ -282,10 +286,10 @@ tbody tr:nth-of-type(2n + 1) {
td,
th {
border: $border-width solid;
border: $border-width solid var(--border-color);
padding: $unit-3 $unit-2;
}
th {
border-bottom-width: $border-width-lg;
border-bottom: $border-width-lg solid var(--foreground-highlight-color);
}

View File

@@ -2,8 +2,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
.comment {
border-left: 1px solid;
border-color: inherit;
border-left: 1px solid var(--border-color);
margin-bottom: 0.4rem;
&:target > .comment-itself {
@@ -12,8 +11,7 @@
}
.comment[data-comment-depth="0"] {
border-bottom: 1px solid;
border-color: inherit;
border-bottom: 1px solid var(--border-color);
}
.comment-header {