Fix #3896: Top menu dropdown double border on focus/hover

This commit is contained in:
buddh4 2020-03-05 15:56:57 +01:00
parent fb49d4339b
commit 6943d44515
3 changed files with 6 additions and 6 deletions

View File

@ -9,3 +9,4 @@ HumHub Change Log (DEVELOP)
- Fix #3861: Improved warning details when auto delete inconsistent notification
- Enh: Added gradient to `ui.showMore` feature
- Fix #3873: Invalid visibility handling in `Content::canView()` for private global content
- Fix #3896: Top menu dropdown double border on focus/hover

View File

@ -317,13 +317,12 @@
padding-top: 15px;
}
.nav > li > a:hover,
.nav .open > a,
.nav > li.active {
border-bottom: 3px solid @info;
background-color: @background-color-secondary;
color: @text-color-highlight;
}
.nav > li.active > a:hover {
.nav > li.active > a:hover, .nav > li.active > a:focus {
border-bottom: none;
}
#space-menu-dropdown li > ul > li > a > .media .media-body p {

File diff suppressed because one or more lines are too long