提交 cc72e1bc 编写于 作者: P Phil Hughes

Merge branch '42579-fix-sidebar-dropdown-hover-style' into 'master'

Resolve "Hover style for sidebar dropdowns is wrong"

Closes #42579

See merge request gitlab-org/gitlab-ce!17519
......@@ -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;
}
}
}
}
......
---
title: Fix hover style of dropdown items in the right sidebar
merge_request: 17519
author:
type: fixed
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册