[Web] Revert hover link decoration to underline

This commit is contained in:
Bruno Lemos
2019-03-21 18:30:50 -03:00
parent 324563a38a
commit 7e352e06e7
2 changed files with 4 additions and 9 deletions

View File

@@ -31,15 +31,6 @@ function getStyles(params: { theme: Theme }) {
.join('\n')}
background-color:${t.backgroundColor};
}
a:not(.icon):hover, a:not(.icon):hover *:not(.icon) {
${
t.isDark
? `color: ${lighten(1, t.foregroundColor)} !important;`
: `color: ${darken(1, t.foregroundColor)} !important;`
}
transition: none 0s !important;
}
`
}

View File

@@ -34,6 +34,10 @@ body {
-moz-osx-font-smoothing: grayscale;
}
a:hover, a:hover * {
text-decoration: underline;
}
input:focus {
outline: none !important;
}