remove text-decoration on hover

This commit is contained in:
Holger Könemann 2017-02-04 11:17:24 +01:00
parent 333f1c90a8
commit 23182dd2e5
5 changed files with 14 additions and 3 deletions

View File

@ -6866,6 +6866,9 @@ aside.widget {
h1.navbar-brand a {
color: inherit; }
h1.navbar-brand a:hover {
text-decoration: none; }
/*!
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)

View File

@ -6866,6 +6866,9 @@ aside.widget {
h1.navbar-brand a {
color: inherit; }
h1.navbar-brand a:hover {
text-decoration: none; }
/*!
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -133,6 +133,11 @@ width:100%;
}
// Adjusting brand link if h1 is used
h1.navbar-brand a {
h1.navbar-brand {
a {
color:inherit;
}
a:hover {
text-decoration:none;
}
}