bootstrap-bookingsync-sass
is a Sass-powered version of Bootstrap with BookingSync theme, ready to drop right into your Sass powered applications.
Support for:
bootstrap-bookingsync-sass
is easy to drop into Rails with the asset pipeline.
In your Gemfile you need to add the bootstrap-bookingsync-sass
gem.
gem 'bootstrap-bookingsync-sass'
bundle install
and restart your server to make the files available through the pipeline.
Import Bootstrap styles in app/assets/stylesheets/application.scss
:
// "bootstrap-bookingsync-sprockets" must be imported before "bootstrap-bookingsync" and "bootstrap-bookingsync/variables"
@import "bootstrap-bookingsync-sprockets";
@import "bootstrap-bookingsync";
bootstrap-bookingsync-sprockets
must be imported before bootstrap-bookingsync
for the icon fonts to work.
Make sure the file has .scss
extension (or .sass
for Sass syntax). If you have just generated a new Rails app,
it may come with a .css
file instead. If this file exists, it will be served instead of Sass, so rename it:
$ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss
Then, remove all the *= require_self
and *= require_tree .
statements from the sass file. Instead, use @import
to import Sass files.
Do not use *= require
in Sass or your other stylesheets will not be [able to access][antirequire] the Bootstrap BookingSync mixins or variables.
Require Bootstrap BookingSync Javascripts in app/assets/javascripts/application.js
:
//= require jquery
//= require bootstrap-bookingsync-sprockets
bootstrap-bookingsync-sprockets
loads all individual Bootstrap BookingSync Javascript files:
form.js
switch.js
stackable.js
You can load each file individually using bookingsync/stackable
for example.
bootstrap-bookingsync-sprockets
won't load any Boostrap javascripts, you have to load them manually if you need them.
The following initializer will make your inputs formatted to work best to Boostrap BookingSync Forms. Note that you need SimpleForm 3.1+.
To use it, create a config/initializers/simple_form_bootstrap_bookingsync.rb
file with the following content:
#
# Copyright 2015 BookingSync SAS.
# Licensed under MIT (https://github.com/BookingSync/bootstrap-bookingsync-sass/blob/master/LICENSE)
#
# Use this setup block to configure all options available in SimpleForm.
SimpleForm.setup do |config|
config.wrappers :bs, tag: 'div', error_class: 'has-error' do |b|
b.wrapper tag: 'div', class: 'form-group' do |ba|
ba.use :html5
ba.use :label
ba.use :input, class: 'form-control'
end
b.use :error, wrap_with: { tag: 'span', class: 'error-message' }
b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
end
config.wrappers :bs_addon, tag: 'div', class: "form-group", error_class: 'error' do |b|
b.use :html5
b.wrapper tag: 'div', class: 'input-group' do |addon|
addon.use :prepend_addon
addon.use :label
addon.use :input, class: 'form-control'
addon.use :append_addon
end
b.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
b.use :error, wrap_with: { tag: 'span', class: 'help-inline' }
end
config.wrappers :bs_checkbox, tag: 'div', error_class: 'has-error' do |b|
b.wrapper tag: 'div', class: 'checkbox' do |ba|
ba.use :html5
ba.use :label_input
end
b.use :error, wrap_with: { tag: 'span', class: 'help-inline' }
b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
end
# Wrappers for forms and inputs using the Twitter Bootstrap toolkit.
# Check the Bootstrap docs (http://twitter.github.com/bootstrap)
# to learn about the different styles for forms and inputs,
# buttons and other elements.
config.default_wrapper = :bs
end
module SimpleForm
module Components
module Addons
def prepend_addon(wrapper_options = nil)
return input_group_addon(options[:prepend_addon]) unless options[:prepend_addon].nil?
end
def append_addon(wrapper_options = nil)
return input_group_addon(options[:append_addon]) unless options[:append_addon].nil?
end
def input_group_addon(content)
template.content_tag(:span, content, class: 'input-group-addon')
end
end
end
end
SimpleForm::Inputs::Base.send(:include, SimpleForm::Components::Addons)
<%= f.input :title %>
<%= f.input :accept_terms, wrapper: :bs_checkbox %>
<%= f.input :twitter, wrapper: :bs_addon, prepend_addon: '@' %>
<%= f.input :pecentage, wrapper: :bs_addon, append_addon: '%' %>
<%= f.input :money, wrapper: :bs_addon, prepend_addon: '$', append_addon: 'USD' %>