remove text-decoration on hover
This commit is contained in:
parent
333f1c90a8
commit
23182dd2e5
|
@ -6866,6 +6866,9 @@ aside.widget {
|
||||||
h1.navbar-brand a {
|
h1.navbar-brand a {
|
||||||
color: inherit; }
|
color: inherit; }
|
||||||
|
|
||||||
|
h1.navbar-brand a:hover {
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||||
|
|
|
@ -6866,6 +6866,9 @@ aside.widget {
|
||||||
h1.navbar-brand a {
|
h1.navbar-brand a {
|
||||||
color: inherit; }
|
color: inherit; }
|
||||||
|
|
||||||
|
h1.navbar-brand a:hover {
|
||||||
|
text-decoration: none; }
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -133,6 +133,11 @@ width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjusting brand link if h1 is used
|
// Adjusting brand link if h1 is used
|
||||||
h1.navbar-brand a {
|
h1.navbar-brand {
|
||||||
|
a {
|
||||||
color:inherit;
|
color:inherit;
|
||||||
}
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue