blob: c59a07d9404db1c5197d4edb889e1f0a157aaac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  | 
// First import journal variables
$brand-primary: <%= ChouetteIhm::Application.config.company_theme %>
$navbar-default-bg: $brand-primary
$navbar-default-link-color: white
$body-bg: #eee
// Then bootstrap itself
@import 'bootstrap-sass-official/_bootstrap-sprockets.scss'
@import 'bootstrap-sass-official'
// Whatever application styles you have go last
// Modules and Variables
@import 'modules/search'
@import 'modules/index_item'
@import 'modules/icons'
@import 'modules/devise'
@import 'modules/progress_bars'
// Partials
@import 'partials/base'
@import 'partials/header'
@import 'partials/footer'
// Third-party
@import 'tagmanager/tagmanager'
@import 'font-awesome-sprockets'
@import 'font-awesome'
@import 'jquery-ui'
@import 'morrisjs'
@import 'formtastic'
@import 'eonasdan-bootstrap-datetimepicker'
@import 'footable'
@import 'vendor/openlayers_style'
@import 'vendor/openlayers_ie6-style'
@import 'vendor/openlayers_google'
@import 'vendor/openlayers_framedCloud'
@import 'vendor/formtastic_changes'
@import 'vendor/pagination'
@import 'vendor/map_layers'
@import 'vendor/token-input'
@import 'vendor/typeahead'
@import 'vendor/bootstrap_changes'
@import 'vendor/simple_form'
// Select2
@import 'vendor/select2'
@import 'vendor/select2-bootstrap'
// Main css
@import 'main/*'
// Hack to make li simple
li
  list-style: none
 
  |