From 04cf2ee71870568e17f5461ebb23b798844da75b Mon Sep 17 00:00:00 2001 From: Daniel Scalzi Date: Sun, 22 Jul 2018 23:33:48 -0400 Subject: [PATCH] Fixed styling issue with a.commit-links. Text outside the tt element did not behave properly on hover. This has been corrected. --- app/assets/css/launcher.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/assets/css/launcher.css b/app/assets/css/launcher.css index 1d00243..97aa0a3 100644 --- a/app/assets/css/launcher.css +++ b/app/assets/css/launcher.css @@ -1760,7 +1760,7 @@ input:checked + .toggleSwitchSlider:before { text-decoration: none; } #settingsChangelogText a.commit-link:hover { - text-decoration: underline; + text-decoration: underline !important; text-decoration-color: black; } #settingsChangelogText tt { @@ -1771,6 +1771,10 @@ input:checked + .toggleSwitchSlider:before { color: black; font-weight: bold; } +#settingsChangelogText a.commit-link:hover tt { + text-decoration: underline; + text-decoration-color: black; +} #settingsChangelogText .highlight { background: rgba(0, 0, 0, 0.30); user-select: initial;