Retain default text color for hyperlinks inside tables

This commit is contained in:
Jeremy Stretch 2024-08-01 15:17:15 -04:00
parent d3e054686d
commit d2a2b00338
2 changed files with 0 additions and 15 deletions

Binary file not shown.

View File

@ -1,11 +1,6 @@
// Object list tables // Object list tables
table.object-list { table.object-list {
// Adjust object list link color without affecting buttons
a:not(.btn) {
color: var(--#{$prefix}body-color);
}
// Hide border of last row // Hide border of last row
tbody > tr:last-child > td { tbody > tr:last-child > td {
border-bottom-width: 0; border-bottom-width: 0;
@ -74,14 +69,4 @@ body[data-bs-theme=dark] {
} }
} }
table.object-list {
a {
color: var(--#{$prefix}body-color)!important;
// Ensures primary button color remains legible
&.btn-primary {
color: $rich-black!important;
}
}
}
} }