summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-08-30 08:24:36 +0000
committerPhil Hughes <me@iamphill.com>2017-08-30 08:24:36 +0000
commit3fd0cd7d18064c77eb1fd91efb38924d46bdbc65 (patch)
tree8a78bc18a7ce7b0bb75916daea1264a3c91e5590
parent43ba967b0556e2ff01526ff8298f015ec77830f6 (diff)
parent573f73f22a53ac6d72d4670f925eceb28f3cc8fc (diff)
downloadgitlab-ce-3fd0cd7d18064c77eb1fd91efb38924d46bdbc65.tar.gz
Merge branch 'winh-issuable-dashboard-dropdowns' into 'master'
Make issuable dashboard dropdowns consistent See merge request !13594
-rw-r--r--app/assets/stylesheets/framework/dropdowns.scss5
-rw-r--r--app/assets/stylesheets/framework/filters.scss4
2 files changed, 9 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss
index a45d5a6dca0..4cf2f46c6d3 100644
--- a/app/assets/stylesheets/framework/dropdowns.scss
+++ b/app/assets/stylesheets/framework/dropdowns.scss
@@ -771,6 +771,11 @@
&::before {
top: 16px;
}
+
+ &.dropdown-menu-user-link::before {
+ top: 50%;
+ transform: translateY(-50%);
+ }
}
}
}
diff --git a/app/assets/stylesheets/framework/filters.scss b/app/assets/stylesheets/framework/filters.scss
index 8ebe3da0681..b2847c348eb 100644
--- a/app/assets/stylesheets/framework/filters.scss
+++ b/app/assets/stylesheets/framework/filters.scss
@@ -490,3 +490,7 @@
padding: 8px 16px;
text-align: center;
}
+
+.issues-details-filters {
+ @include new-style-dropdown;
+}