fixed external link styling, minor tweak to seed script

This commit is contained in:
Lucas Jensen
2024-05-11 08:17:54 -07:00
parent f0225aaf09
commit 43db1c2f99
4 changed files with 38 additions and 2 deletions

View File

@@ -66,3 +66,26 @@ body {
border: 0px solid transparent !important;
color: var(--group-info-color) !important;
}
.external-link {
color: var(--external-link-color-blue);
}
.external-link:hover {
color: var(--external-link-color-blue);
background-color: rgb(7, 0, 132, 0.1);
}
.external-link:active {
color: var(--external-link-color-blue);
background-color: rgb(7, 0, 132, 0.1);
}
.external-link:focus {
color: var(--external-link-color-blue);
background-color: rgb(7, 0, 132, 0.1);
}
.external-link:se .external-link:visited {
color: var(--external-link-color-blue);
}