summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/modal/lists_dropdown.vue
diff options
context:
space:
mode:
authorAndrew Fontaine <afontaine@gitlab.com>2019-07-16 13:48:28 -0400
committerAndrew Fontaine <afontaine@gitlab.com>2019-07-16 16:07:41 -0400
commiteacef3fb07252ce4741a81376a350919def6bdd4 (patch)
tree66776871a489a42a948065d0644a8c8372c3853c /app/assets/javascripts/boards/components/modal/lists_dropdown.vue
parentfb754a86b214ce6742a14d51fd06b5f1fa2ffa5f (diff)
downloadgitlab-ce-style-dropdown-buttons.tar.gz
Style Dropdown Buttons with New Button Stylesstyle-dropdown-buttons
These dropdown buttons were missing the `btn` class, and were missing the new button styles.
Diffstat (limited to 'app/assets/javascripts/boards/components/modal/lists_dropdown.vue')
-rw-r--r--app/assets/javascripts/boards/components/modal/lists_dropdown.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/javascripts/boards/components/modal/lists_dropdown.vue b/app/assets/javascripts/boards/components/modal/lists_dropdown.vue
index 3fbe8fe1be7..dc07eaf7f59 100644
--- a/app/assets/javascripts/boards/components/modal/lists_dropdown.vue
+++ b/app/assets/javascripts/boards/components/modal/lists_dropdown.vue
@@ -27,7 +27,12 @@ export default {
</script>
<template>
<div class="dropdown inline">
- <button class="dropdown-menu-toggle" type="button" data-toggle="dropdown" aria-expanded="false">
+ <button
+ class="btn btn-default dropdown-menu-toggle"
+ type="button"
+ data-toggle="dropdown"
+ aria-expanded="false"
+ >
<span :style="{ backgroundColor: selected.label.color }" class="dropdown-label-box"> </span>
{{ selected.title }} <icon name="chevron-down" />
</button>