diff options
author | Robert Speicher <robert@gitlab.com> | 2016-06-17 17:56:47 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-06-17 17:56:47 +0000 |
commit | 04f72a3b9641e3af5151d5cfb8ac924c138d6fe2 (patch) | |
tree | 5b54e658fee3d9f4eadd0cb3f26fa4d1f61b4a75 /app | |
parent | 022dfd8eec211e6effaac0927da543109ecdf812 (diff) | |
parent | cd864bbab678e09f46f267ec3ff56b61112bee13 (diff) | |
download | gitlab-ce-04f72a3b9641e3af5151d5cfb8ac924c138d6fe2.tar.gz |
Merge branch 'clipboard-button-styling' into 'master'
Fixed styling of clipboard button
Closes #18773
See merge request !4728
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/button_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/button_helper.rb b/app/helpers/button_helper.rb index 07a3f452460..8420b7652f1 100644 --- a/app/helpers/button_helper.rb +++ b/app/helpers/button_helper.rb @@ -17,7 +17,7 @@ module ButtonHelper def clipboard_button(data = {}) content_tag :button, icon('clipboard'), - class: "btn", + class: "btn btn-clipboard", data: data, type: :button end |