Fix missing button styles in donate and admin sections
This commit is contained in:
parent
5dd5f0b176
commit
6b024dcd45
3 changed files with 15 additions and 16 deletions
|
|
@ -25,18 +25,18 @@
|
|||
%div.controls
|
||||
= f.label :under13 do
|
||||
= f.check_box :under13
|
||||
= t('.under_13')
|
||||
= submit_tag t('admins.stats.go')
|
||||
= t(".under_13")
|
||||
= submit_tag t("admins.stats.go"), class: "btn btn-primary"
|
||||
|
||||
%div.more_invites.span3
|
||||
%h3= t('shared.invitations.invites')
|
||||
%h3= t("shared.invitations.invites")
|
||||
|
||||
!= t('.you_currently', :count => current_user.invitation_code.count, :link => link_to(t(".add_invites"), add_invites_path(current_user.invitation_code)))
|
||||
!= t(".you_currently", count: current_user.invitation_code.count, link: link_to(t(".add_invites"), add_invites_path(current_user.invitation_code)))
|
||||
|
||||
= form_tag 'admin_inviter', method: :get do
|
||||
= t('.email_to')
|
||||
= text_field_tag 'identifier'
|
||||
= submit_tag t('services.remote_friend.invite')
|
||||
= form_tag "admin_inviter", method: :get do
|
||||
= t(".email_to")
|
||||
= text_field_tag "identifier"
|
||||
= submit_tag t("services.remote_friend.invite"), class: "btn btn-default"
|
||||
|
||||
%div.row
|
||||
%div.span12
|
||||
|
|
|
|||
|
|
@ -7,17 +7,16 @@
|
|||
.span12
|
||||
#section_header
|
||||
%h2
|
||||
= t('settings')
|
||||
= render 'shared/settings_nav'
|
||||
= t("settings")
|
||||
= render "shared/settings_nav"
|
||||
|
||||
.container
|
||||
.row-fluid
|
||||
.span3
|
||||
.span6
|
||||
- content_for :submit_block do
|
||||
= link_to t('cancel'), local_or_remote_person_path(current_user.person), :class => "btn"
|
||||
= submit_tag t('.update_profile'), :class => "creation", :id => "update_profile", :class => "btn"
|
||||
= render :partial => 'edit', :locals => {:person => @person,
|
||||
:profile => @profile, :aspect => @aspect, :step => @step}
|
||||
= link_to t("cancel"), local_or_remote_person_path(current_user.person), :class => "btn"
|
||||
= submit_tag t(".update_profile"), class: "btn creation", id: "update_profile"
|
||||
= render partial: "edit", locals: {person: @person, profile: @profile, aspect: @aspect, step: @step}
|
||||
.span3
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
-if AppConfig.settings.paypal_donations.paypal_unhosted_button_encrypted.present?
|
||||
%input{name: "encrypted", type: "hidden", value: AppConfig.settings.paypal_donations.paypal_unhosted_button_encrypted}
|
||||
%input{name: "currency_code", type: "hidden", value: AppConfig.settings.paypal_donations.currency}
|
||||
%input{name: "submit", type: "submit", value: t('aspects.index.donate')}
|
||||
|
||||
%input{name: "submit", type: "submit", value: t("aspects.index.donate"), class: "btn btn-default"}
|
||||
|
||||
- if AppConfig.bitcoin_donation_address
|
||||
Bitcoin:
|
||||
%input{type: "text", id: "bitcoin_address", value: AppConfig.bitcoin_donation_address, readonly: true}
|
||||
|
|
|
|||
Loading…
Reference in a new issue