Resolve "Hover style for sidebar dropdowns is wrong"

This commit is contained in:
Lukas Eipert 2018-03-12 15:01:53 +00:00 committed by Phil Hughes
parent 30bebe049d
commit 91e87ab542
2 changed files with 32 additions and 13 deletions

View File

@ -137,12 +137,22 @@
z-index: 200;
overflow: hidden;
a:not(.btn-retry),
.btn-link {
a:not(.btn) {
color: inherit;
&:hover {
color: $gl-link-hover-color;
.avatar {
border-color: rgba($avatar-border, .2);
}
}
}
.btn-link {
color: inherit;
outline: none;
}
@ -214,7 +224,7 @@
&:hover {
text-decoration: underline;
color: $md-link-color;
color: $gl-link-hover-color;
}
}
}
@ -486,16 +496,6 @@
}
}
a:not(.btn-retry) {
&:hover {
color: $md-link-color;
.avatar {
border-color: rgba($avatar-border, .2);
}
}
}
.dropdown-menu-toggle {
width: 100%;
padding-top: 6px;
@ -503,6 +503,20 @@
.dropdown-menu {
width: 100%;
/*
* Overwrite hover style for dropdown items, so that they are not blue
* This should be removed during dev of https://gitlab.com/gitlab-org/gitlab-ce/issues/44040
*/
li a {
&:hover,
&:active,
&:focus,
&.is-focused {
@include dropdown-item-hover;
}
}
}
}

View File

@ -0,0 +1,5 @@
---
title: Fix hover style of dropdown items in the right sidebar
merge_request: 17519
author:
type: fixed