e-valuation / EvaP

a university course evaluation system written in Python using Django
Other
95 stars 144 forks source link

Remove underlines from results evaluation lines #2115

Closed janno42 closed 7 months ago

janno42 commented 7 months ago

On the results index and results detail pages, the text in evaluation lines is underlined when hovering. The text should not be underlined on hover state.

image

richardebeling commented 7 months ago

This broke in #1771 / baaa7dd5c55749a9fa17f5ad1f14e2e2bd4fec53 on main

Bootstrap applies text-decoration: underline to a:hover in _reboot.scss:247. Before that commit, our override in _grid.scss:55 to have text-decoration: none was more important. After the commit, the bootstrap rule has become more important. Seems like both rules have identical specificity (one class, one type), and we unintentionally changed their order due to some additional includes in that PR.