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:
authorClement Ho <ClemMakesApps@gmail.com>2018-05-30 02:54:05 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-05-30 02:54:05 +0300
commit4d6f6f9347ffc60d7fc4c4f8d69087d8f178b942 (patch)
treeccaeb5ef5a44dc620abf4e1b373c9a448bca59fe /app/views/users
parentff575b782e53e42a85ebfe65a559864f45c848b1 (diff)
Convert remaining pull-* to float-*
Diffstat (limited to 'app/views/users')
-rw-r--r--app/views/users/terms/index.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/terms/index.html.haml b/app/views/users/terms/index.html.haml
index c5406696bdd..e0fe551cf36 100644
--- a/app/views/users/terms/index.html.haml
+++ b/app/views/users/terms/index.html.haml
@@ -4,10 +4,10 @@
= markdown_field(@term, :terms)
.row-content-block.footer-block.clearfix
- if can?(current_user, :accept_terms, @term)
- .pull-right
+ .float-right
= button_to accept_term_path(@term, redirect_params), class: 'btn btn-success prepend-left-8' do
= _('Accept terms')
- if can?(current_user, :decline_terms, @term)
- .pull-right
+ .float-right
= button_to decline_term_path(@term, redirect_params), class: 'btn btn-default prepend-left-8' do
= _('Decline and sign out')