#6797: Fix Safari anchor element styling issue

This commit is contained in:
checktheroads 2021-07-24 01:07:53 -07:00
parent 7b3d285884
commit a60e8d3e12
3 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -119,6 +119,11 @@
}
}
// Fix the hideous way Safari shows button anchor elements.
a[type='button'] {
-webkit-appearance: unset !important;
}
// Ensure progress bars (utilization graph) in tables aren't too narrow to display the percentage.
table td > .progress {
min-width: 6rem;