Minor Style Improvement: Fix interface table dropdowns being hidden when opened

This commit is contained in:
thatmattlove
2021-10-15 17:45:47 -07:00
parent d0c9a6493a
commit 3e1a3bced3
4 changed files with 10 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -197,9 +197,15 @@ table {
text-decoration: underline;
}
}
.dropdown {
// Presence of 'overflow: scroll' on a table causes dropdowns to be improperly hidden when
// opened. See: https://github.com/twbs/bootstrap/issues/24251
position: static;
}
}
th {
a, a:hover {
a,
a:hover {
color: $body-color;
text-decoration: none;
}