compass grunt task working

pull/378/head
xavijam 11 years ago
parent 539e859809
commit 9cda413530

1
.gitignore vendored

@ -33,5 +33,6 @@ cartodb.sublime-workspace
cartodb.sublime-project
lib/build/dist
lib/build/node_modules
npm-debug.log
.idea
.ruby-gemset

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

@ -367,10 +367,7 @@
margin: 0 0 27px 0;
padding: 19px 7px 30px 0;
// TODO: review because precompile is
// throwing a warning message with this
// extend.
@extend .clearfix;
@include clearfix();
h2 i {
@include inline-block();

@ -12,7 +12,7 @@
@import "compass/css3/border-radius";
@import "compass/css3/images";
@import "../../common/mixins";
@import "../common/mixins";
@mixin progress-bar($h, $r, $grad, $min) {

@ -4,7 +4,7 @@
*/
@import "compass/css3/inline-block";
@import "../../elements/progress-bar";
@import "../elements/progress-bar";
aside {

@ -4,7 +4,7 @@
*
*/
@import "../../elements/progress-bar";
@import "../elements/progress-bar";
.org-user-form {

@ -6,9 +6,9 @@
@import "compass/css3/inline-block";
@import "compass/css3/transform";
@import "compass/css3/transition";
@import "../../common/vars";
@import "../../common/mixins";
@import "../../elements/progress-bar";
@import "../common/vars";
@import "../common/mixins";
@import "../elements/progress-bar";
// Local variables

@ -6,7 +6,7 @@
@import "../common/vars";
@import "../common/form-elements";
@import "../table/table-sprite";
@import "../../elements/progress-bar";
@import "../elements/progress-bar";
// Table/vis options menu

@ -24,7 +24,7 @@
@include size(65px, auto);
letter-spacing:0;
@include border-left-radius(4px);
@include single-box-shadow(rgba(black,0.03), -4px, 0, 5px, 0, true);
@include single-box-shadow( -4px, 0, 5px, 0, rgba(black,0.03), true);
z-index:6;
nav {

@ -1,5 +1,5 @@
source 'http://rubygems.org'
gem "compass", "0.12.2"
gem "compass", "1.0.0.alpha.19 "

@ -2,15 +2,34 @@ GEM
remote: http://rubygems.org/
specs:
chunky_png (1.3.0)
compass (0.12.2)
compass (1.0.0.alpha.19)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
fssm (0.2.10)
sass (3.2.14)
compass-core (~> 1.0.0.alpha.19)
compass-import-once (~> 1.0.3)
json
listen (~> 1.1.0)
sass (>= 3.3.0, < 3.5)
compass-core (1.0.0.alpha.19)
multi_json (~> 1.0)
sass (>= 3.3.0, < 3.5)
compass-import-once (1.0.3)
sass (>= 3.2, < 3.5)
ffi (1.9.3)
json (1.8.1)
listen (1.1.6)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
multi_json (1.9.0)
rb-fsevent (0.9.4)
rb-inotify (0.9.3)
ffi (>= 0.5.0)
rb-kqueue (0.2.2)
ffi (>= 0.5.0)
sass (3.3.2)
PLATFORMS
ruby
DEPENDENCIES
compass (= 0.12.2)
compass (= 1.0.0.alpha.19)

@ -3,18 +3,18 @@
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "dist/css"
sass_dir = "../../app/assets/stylesheets/"
sass_dir = "../../app/assets/stylesheets/tmp/"
images_dir = "../../app/assets/images/"
#javascripts_dir = "javascripts"
# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
output_style = :compact
# To enable relative paths to assets via compass helper functions. Uncomment:
relative_assets = true
# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false
line_comments = false
# If you prefer the indented syntax, you might want to regenerate this

@ -25,11 +25,11 @@
"grunt": "~0.4.2",
"grunt-contrib-concat": "",
"grunt-contrib-jasmine": "",
"grunt-contrib-watch": "",
"grunt-contrib-copy": "",
"grunt-contrib-jst": "git://github.com/javisantana/grunt-contrib-jst.git#master",
"grunt-mustache": "~0.1.6",
"grunt-contrib-sass": "~0.7.1",
"grunt-contrib-compass": "~0.7.2"
"grunt-compass-multiple": ""
},
"files": [
"dist"

Loading…
Cancel
Save