blob: 348ab3ef0a8326b86252bbae09c2f17616501244 (
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
|
// First import journal variables
// @import "bootswatch/cerulean/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";
// And finally bootswatch style itself
// @import "bootswatch/cerulean/bootswatch";
// Whatever application styles you have go last
// Modules and Variables
@import "modules/search";
// Partials
@import "partials/header";
@import "partials/footer";
// Third-party
@import "tagmanager";
@import "font-awesome";
@import "jquery.ui.all";
@import "morris";
@import "formtastic";
@import "twitter-typeahead-rails";
@import "bootstrap-timepicker";
@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.css";
// Main css
@import "main/*";
// Hack to make li simple
li{
list-style: none;
}
|