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:
@@ -451,7 +451,7 @@ code {
|
|||||||
&:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus {
|
||||||
border-bottom: 1px dotted #fff;
|
border-bottom-color: transparent;
|
||||||
color: #cf2a0e;
|
color: #cf2a0e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2497,7 +2497,7 @@ table {
|
|||||||
&:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus {
|
||||||
border-bottom: 1px solid #cf2a0e;
|
border-bottom-style: solid;
|
||||||
color: #cf2a0e;
|
color: #cf2a0e;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user