Merge pull request #4480 from humhub/fix/navigationTextColor

Fix: Tab menu text coloring on hover and activation.
This commit is contained in:
buddh4 2020-10-13 14:49:06 +02:00 committed by GitHub
commit ff614c3731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -15,6 +15,15 @@
}
}
.nav-tabs > li > a {
color: @text-color-main;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
color: @text-color-highlight;
}
.tab-menu {
padding-top: 10px;
background-color: @background-color-main;

File diff suppressed because one or more lines are too long