Browse Source

Bootstrap 3 setup.

master
Ilya Konanykhin 7 years ago
parent
commit
508a1d8d06
  1. 16
      Gemfile
  2. 3
      app/assets/javascripts/application.js
  3. 15
      app/assets/stylesheets/application.css
  4. 4
      app/assets/stylesheets/application.scss
  5. 47
      app/assets/stylesheets/bootstrap_and_overrides.css.less
  6. 7
      app/assets/stylesheets/frontend.scss
  7. 2
      app/views/devise/passwords/new.html.erb
  8. 2
      app/views/devise/registrations/edit.html.erb
  9. 1
      app/views/devise/registrations/new.html.haml
  10. 2
      app/views/devise/sessions/new.html.erb
  11. 25
      app/views/layouts/application.html.haml
  12. 1
      app/views/site/index.html.haml
  13. 3
      config/application.rb

16
Gemfile

@ -19,18 +19,12 @@ gem 'pg', '~> 0.17.1'
gem 'will_paginate', '~> 3.0.3' gem 'will_paginate', '~> 3.0.3'
gem 'jbuilder', '~> 2.0.3' gem 'jbuilder', '~> 2.0.3'
# Gems used only for assets and not required # Assets
# in production environments by default. gem 'sass-rails', '~> 3.0'
group :assets do gem 'coffee-rails', '~> 3.2.1'
gem 'sass-rails', '~> 3.0' gem 'bootstrap-sass', '~> 3.1.1'
gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass', '~> 3.1.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes gem 'uglifier', '>= 1.0.3'
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do group :development, :test do
gem 'rspec-rails', '~> 2.14.0' gem 'rspec-rails', '~> 2.14.0'

3
app/assets/javascripts/application.js

@ -12,8 +12,7 @@
// //
//= require jquery //= require jquery
//= require jquery_ujs //= require jquery_ujs
//= require twitter/bootstrap/bootstrap-button //= require bootstrap
//= require twitter/bootstrap/bootstrap-modal
//= require utils //= require utils
//= require bootstrap-datepicker //= require bootstrap-datepicker
//= require bootstrap-timepicker //= require bootstrap-timepicker

15
app/assets/stylesheets/application.css

@ -1,15 +0,0 @@
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the top of the
* compiled file, but it's generally better to create a new file per style scope.
*
*= require_self
*= require datepicker
*= require bootstrap-timepicker
*= require bootstrap_and_overrides
*/

4
app/assets/stylesheets/application.scss

@ -0,0 +1,4 @@
@import "bootstrap";
@import "datepicker";
@import "bootstrap-timepicker";
@import "frontend";

47
app/assets/stylesheets/bootstrap_and_overrides.css.less

@ -1,47 +0,0 @@
@import "twitter/bootstrap/bootstrap";
body {
padding-top: 60px;
padding-left: 20px;
}
@import "twitter/bootstrap/responsive";
// Set the correct sprite paths
@iconSpritePath: asset-path('twitter/bootstrap/glyphicons-halflings.png');
@iconWhiteSpritePath: asset-path('twitter/bootstrap/glyphicons-halflings-white.png');
// Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
// Note: If you use asset_path() here, your compiled boostrap_and_overrides.css will not
// have the proper paths. So for now we use the absolute path.
@fontAwesomeEotPath: '/assets/fontawesome-webfont.eot';
@fontAwesomeWoffPath: '/assets/fontawesome-webfont.woff';
@fontAwesomeTtfPath: '/assets/fontawesome-webfont.ttf';
@fontAwesomeSvgPath: '/assets/fontawesome-webfont.svg';
// Font Awesome
@import "fontawesome";
// Your custom LESS stylesheets goes here
//
// Since bootstrap was imported above you have access to its mixins which
// you may use and inherit here
//
// If you'd like to override bootstrap's own variables, you can do so here as well
// See http://twitter.github.com/bootstrap/less.html for their names and documentation
//
// Example:
// @linkColor: #ff0000;
[data-toggle="buttons-radio"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
display: none;
}
.inline-block {
display: inline-block;
}
.control-group.error .btn-group > .btn {
color: #b94a48;
border-color: #b94a48;
}

7
app/assets/stylesheets/frontend.scss

@ -0,0 +1,7 @@
body {
padding-top: 5px;
}
.x-boundlist-item {
white-space: nowrap;
}

2
app/views/devise/passwords/new.html.erb

@ -1,5 +1,3 @@
<%= stylesheet_link_tag "bootstrap_and_overrides", :media => "all" %>
<h2>Forgot your password?</h2> <h2>Forgot your password?</h2>
<br> <br>
<br> <br>

2
app/views/devise/registrations/edit.html.erb

@ -1,5 +1,3 @@
<%= stylesheet_link_tag "bootstrap_and_overrides", :media => "all" %>
<h2>Edit <%= resource_name.to_s.humanize %></h2> <h2>Edit <%= resource_name.to_s.humanize %></h2>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %> <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>

1
app/views/devise/registrations/new.html.haml

@ -1,4 +1,3 @@
= stylesheet_link_tag "bootstrap_and_overrides", :media => "all"
= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| = form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f|
= devise_error_messages! = devise_error_messages!
.controls .controls

2
app/views/devise/sessions/new.html.erb

@ -1,5 +1,3 @@
<%= stylesheet_link_tag "bootstrap_and_overrides", :media => "all" %>
<h2>Velocipede</h2> <h2>Velocipede</h2>
<a href="http://madewithloveinbaltimore.org">Made with &hearts; in Baltimore</a> <a href="http://madewithloveinbaltimore.org">Made with &hearts; in Baltimore</a>
<br> <br>

25
app/views/layouts/application.html.haml

@ -1,29 +1,22 @@
!!! 5 !!! 5
%html{:lang => "en"} %html{lang: 'en'}
%head %head
%meta{:charset => "utf-8"}/ %meta{charset: 'utf-8'}/
%meta{ name: "viewport", content: "width=device-width", "initial-scale" => "1.0"} %meta{name: 'viewport', content: 'width=device-width', "initial-scale": '1.0'}
%title= content_for?(:title) ? yield(:title) : "Velocipede" %title= content_for?(:title) ? yield(:title) : 'Velocipede'
= csrf_meta_tags = csrf_meta_tags
= stylesheet_link_tag "bootstrap_and_overrides", "datepicker", "bootstrap-timepicker", :media => "all" = stylesheet_link_tag 'application', media: 'all'
/[if lt IE 9] /[if lt IE 9]
= javascript_include_tag "http://html5shim.googlecode.com/svn/trunk/html5.js" = javascript_include_tag 'http://html5shim.googlecode.com/svn/trunk/html5.js'
:css
body {
padding-top: 5px;
}
.x-boundlist-item {
white-space: nowrap;
}
%body %body
.container .container
.content .content
- if flash[:notice] - if flash[:notice]
%p{:class => 'notice'}= flash[:notice] %p{class: 'notice'}= flash[:notice]
- if flash[:alert] - if flash[:alert]
%p{:class => 'alert'}= flash[:alert] %p{class: 'alert'}= flash[:alert]
.row .row
.span12 .span12
= yield = yield
@ -31,5 +24,5 @@
%footer %footer
%p &copy; BikeShed #{Time.now.year} %p &copy; BikeShed #{Time.now.year}
= javascript_include_tag "application" = javascript_include_tag 'application'
= javascript_include_tag params[:controller] = javascript_include_tag params[:controller]

1
app/views/site/index.html.haml

@ -1,4 +1,3 @@
= stylesheet_link_tag "bootstrap_and_overrides", :media => "all"
%h2 Dashboard %h2 Dashboard
%p %p

3
config/application.rb

@ -62,5 +62,8 @@ module Velocipede
# Version of your assets, change this if you want to expire all your assets # Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0' config.assets.version = '1.0'
# Enabled for bootstrap-sass gem
config.assets.initialize_on_precompile
end end
end end

Loading…
Cancel
Save