removed border in tags, checkboxes centered inside the well classes
This commit is contained in:
parent
beb795e3b3
commit
83b1682750
2 changed files with 13 additions and 3 deletions
|
|
@ -2,3 +2,12 @@
|
|||
#inner_account_delete {
|
||||
width: 700px;
|
||||
}
|
||||
|
||||
.as-selections #tags {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.enclosed-checkbox label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
%h4
|
||||
= t('search')
|
||||
|
||||
.well
|
||||
.well.enclosed-checkbox
|
||||
= label_tag 'profile[searchable]', :class => "checkbox" do
|
||||
= check_box_tag 'profile[searchable]', true, profile.searchable
|
||||
= t('profiles.edit.allow_search')
|
||||
|
|
@ -51,8 +51,9 @@
|
|||
|
||||
%h4
|
||||
= t('nsfw')
|
||||
%p
|
||||
= t('profiles.edit.nsfw_explanation')
|
||||
.well
|
||||
.well.enclosed-checkbox
|
||||
= label_tag 'profile[nsfw]', :class => "checkbox" do
|
||||
= check_box_tag 'profile[nsfw]', true, profile.nsfw?
|
||||
= t('profiles.edit.nsfw_check')
|
||||
|
|
|
|||
Loading…
Reference in a new issue