Simplify changing "delete/remove" links styles

Since we're only changing the style of the border in one case and the
color in the other case, we don't have to duplicate the code for every
property.

This makes it easier for other CONSUL installations to customize these
borders.
This commit is contained in:
Javi Martín
2021-05-20 00:07:39 +02:00
parent 80dbdeec98
commit 2efc307e59
2 changed files with 2 additions and 2 deletions

View File

@@ -451,7 +451,7 @@ code {
&:hover,
&:active,
&:focus {
border-bottom: 1px dotted #fff;
border-bottom-color: transparent;
color: #cf2a0e;
}
}

View File

@@ -2497,7 +2497,7 @@ table {
&:hover,
&:active,
&:focus {
border-bottom: 1px solid #cf2a0e;
border-bottom-style: solid;
color: #cf2a0e;
text-decoration: none;
}