Skip to content

Instantly share code, notes, and snippets.

@mnishiguchi
Last active August 29, 2015 14:26
Show Gist options
  • Select an option

  • Save mnishiguchi/730565d3ea5540f5bcba to your computer and use it in GitHub Desktop.

Select an option

Save mnishiguchi/730565d3ea5540f5bcba to your computer and use it in GitHub Desktop.
Bootstrap - checkboxとlabelを水平に一直線にするCSS ref: http://qiita.com/mnishiguchi/items/590d9d17d1c2004bf391
.form-inline
.checkbox
%label
= f.check_box :rooms, options, checked_value, unchecked_value
= room_name
# Deviseのフォーム
- if devise_mapping.rememberable?
.field.form-group
.form-inline
.checkbox
= f.check_box :remember_me
= f.label :remember_me
@media (min-width: 768px) {
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
float: left;
margin-right: 5px;
label {
font-weight: normal;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment