summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Bajao <ebajao@gitlab.com>2019-04-10 15:18:37 +0800
committerPatrick Bajao <ebajao@gitlab.com>2019-04-10 15:18:42 +0800
commit7087ff0a5026dee0e632b111e5d76028c816c5b7 (patch)
tree086a99e8e1e1cf124d221861ee97c2739c1febad
parent9d7ff90d9a7bd9dbe9184c9588510f247877274f (diff)
downloadgitlab-ce-60318-fix-selectable-dropdown.tar.gz
Fix selectable dropdown CSS60318-fix-selectable-dropdown
Override more specific selector (`a:not(.btn)`) so we can display selectable dropdowns (checkmarks showing up) correctly.
-rw-r--r--app/assets/stylesheets/framework/dropdowns.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss
index efcd35a2e0e..c840a077930 100644
--- a/app/assets/stylesheets/framework/dropdowns.scss
+++ b/app/assets/stylesheets/framework/dropdowns.scss
@@ -503,7 +503,7 @@
.dropdown-menu-selectable {
li {
- a,
+ a:not(.btn),
button {
padding: 8px 40px;
position: relative;