removed border in tags, checkboxes centered inside the well classes

This commit is contained in:
Pablo Cuadrado 2014-07-11 11:45:51 -03:00
parent beb795e3b3
commit 83b1682750
2 changed files with 13 additions and 3 deletions

View file

@ -2,3 +2,12 @@
#inner_account_delete { #inner_account_delete {
width: 700px; width: 700px;
} }
.as-selections #tags {
border: none;
box-shadow: none;
}
.enclosed-checkbox label {
margin-bottom: 0;
}

View file

@ -42,7 +42,7 @@
%h4 %h4
= t('search') = t('search')
.well .well.enclosed-checkbox
= label_tag 'profile[searchable]', :class => "checkbox" do = label_tag 'profile[searchable]', :class => "checkbox" do
= check_box_tag 'profile[searchable]', true, profile.searchable = check_box_tag 'profile[searchable]', true, profile.searchable
= t('profiles.edit.allow_search') = t('profiles.edit.allow_search')
@ -51,8 +51,9 @@
%h4 %h4
= t('nsfw') = t('nsfw')
%p
= t('profiles.edit.nsfw_explanation') = t('profiles.edit.nsfw_explanation')
.well .well.enclosed-checkbox
= label_tag 'profile[nsfw]', :class => "checkbox" do = label_tag 'profile[nsfw]', :class => "checkbox" do
= check_box_tag 'profile[nsfw]', true, profile.nsfw? = check_box_tag 'profile[nsfw]', true, profile.nsfw?
= t('profiles.edit.nsfw_check') = t('profiles.edit.nsfw_check')