Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2017-11-07 15:40:24 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2017-11-07 15:40:24 +0300
commitbb112f0fe3eed7a2200e30ab766c67c57e0461d6 (patch)
tree164796b27bf40260c4084237fdddb692c7d31cab /app/helpers
parent719cdd3a9d7a5dc604a89bb4e63904e4eaeaa290 (diff)
Ensure enough space between branch links
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/commits_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/commits_helper.rb b/app/helpers/commits_helper.rb
index 95fc50a476a..f9a666fa1e6 100644
--- a/app/helpers/commits_helper.rb
+++ b/app/helpers/commits_helper.rb
@@ -62,7 +62,7 @@ module CommitsHelper
# Returns a link formatted as a commit branch link
def commit_branch_link(url, text)
- link_to(url, class: 'label label-gray ref-name') do
+ link_to(url, class: 'label label-gray ref-name branch-link') do
icon('code-fork') + " #{text}"
end
end