contour 1.0.0.beta6 → 1.0.0.beta7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +2 -0
- data/app/assets/images/twitter-bootstrap/v2.0.3/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/twitter-bootstrap/v2.0.3/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/contour.js +1 -1
- data/app/assets/javascripts/twitter-bootstrap/v2.0.3/bootstrap.js +1824 -0
- data/app/assets/stylesheets/bootstrap_and_overrides.css +14 -0
- data/app/assets/stylesheets/contour.css +2 -0
- data/app/assets/stylesheets/twitter-bootstrap/v2.0.3/bootstrap-responsive.css +808 -0
- data/app/assets/stylesheets/twitter-bootstrap/v2.0.3/bootstrap.css +4960 -0
- data/app/views/contour/authentications/_menu.html.erb +1 -1
- data/app/views/contour/authentications/index.html.erb +4 -3
- data/app/views/contour/layouts/_menu.html.erb +2 -2
- data/contour.gemspec +0 -1
- data/lib/contour/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +528 -0
- metadata +30 -38
- data/app/assets/javascripts/contour/errors.js.coffee +0 -10
- data/app/assets/javascripts/external/waypoints.js +0 -610
- data/app/assets/stylesheets/bootstrap_and_overrides.css.less +0 -42
@@ -1,42 +0,0 @@
|
|
1
|
-
@import "twitter/bootstrap/bootstrap";
|
2
|
-
body { padding-top: 60px; }
|
3
|
-
|
4
|
-
@import "twitter/bootstrap/responsive";
|
5
|
-
|
6
|
-
// Set the correct sprite paths
|
7
|
-
@iconSpritePath: asset-path('twitter/bootstrap/glyphicons-halflings.png');
|
8
|
-
@iconWhiteSpritePath: asset-path('twitter/bootstrap/glyphicons-halflings-white.png');
|
9
|
-
|
10
|
-
// Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
|
11
|
-
@fontAwesomeEotPath: asset-path('fontawesome-webfont.eot');
|
12
|
-
@fontAwesomeWoffPath: asset-path('fontawesome-webfont.woff');
|
13
|
-
@fontAwesomeTtfPath: asset-path('fontawesome-webfont.ttf');
|
14
|
-
@fontAwesomeSvgzPath: asset-path('fontawesome-webfont.svgz');
|
15
|
-
@fontAwesomeSvgPath: asset-path('fontawesome-webfont.svg');
|
16
|
-
|
17
|
-
// Font Awesome
|
18
|
-
@import "fontawesome";
|
19
|
-
|
20
|
-
// Your custom LESS stylesheets goes here
|
21
|
-
//
|
22
|
-
// Since bootstrap was imported above you have access to its mixins which
|
23
|
-
// you may use and inherit here
|
24
|
-
//
|
25
|
-
// If you'd like to override bootstrap's own variables, you can do so here as well
|
26
|
-
// See http://twitter.github.com/bootstrap/less.html for their names and documentation
|
27
|
-
//
|
28
|
-
// Example:
|
29
|
-
// @linkColor: #ff0000;
|
30
|
-
|
31
|
-
dt, dd {
|
32
|
-
display: block;
|
33
|
-
float: left;
|
34
|
-
margin-top: 20px;
|
35
|
-
}
|
36
|
-
|
37
|
-
dt { clear: both; }
|
38
|
-
dl { overflow: hidden; }
|
39
|
-
|
40
|
-
.dl-horizontal dd {
|
41
|
-
margin-left: 30px;
|
42
|
-
}
|