source "https://rubygems.org"
-gem "compass", "0.12.2"
\ No newline at end of file
+gem "sass", "~> 3.4.0"
+gem "compass", "~> 1.0.0"
\ No newline at end of file
GEM
remote: https://rubygems.org/
specs:
- chunky_png (1.3.0)
- compass (0.12.2)
+ chunky_png (1.3.1)
+ compass (1.0.1)
chunky_png (~> 1.2)
- fssm (>= 0.2.7)
- sass (~> 3.1)
- fssm (0.2.10)
- sass (3.2.14)
+ compass-core (~> 1.0.1)
+ compass-import-once (~> 1.0.5)
+ rb-fsevent (>= 0.9.3)
+ rb-inotify (>= 0.9)
+ sass (>= 3.3.13, < 3.5)
+ compass-core (1.0.1)
+ multi_json (~> 1.0)
+ sass (>= 3.3.0, < 3.5)
+ compass-import-once (1.0.5)
+ sass (>= 3.2, < 3.5)
+ ffi (1.9.3)
+ multi_json (1.10.1)
+ rb-fsevent (0.9.4)
+ rb-inotify (0.9.5)
+ ffi (>= 0.5.0)
+ sass (3.4.3)
PLATFORMS
ruby
DEPENDENCIES
- compass (= 0.12.2)
+ compass (~> 1.0.0)
+ sass (~> 3.4.0)
sass: {
dist: {
options: {
- includePaths: ['scss'],
- sourceMap: true
+ loadPath: [__dirname + '/scss'],
+ sourcemap: 'auto',
+ bundleExec: true
},
files: {
'dist/assets/css/foundation.css': '<%= foundation.scss %>',
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
+ grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-rsync');
- grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-jst');
grunt.loadNpmTasks('grunt-string-replace');
//Foundation Libraries
@import
- "scss/foundation/settings",
+ "foundation/settings",
"foundation";
//Marketing Site Common Library
margin-bottom: $paragraph-margin-bottom;
text-rendering: $paragraph-text-rendering;
- &.lead { @extend %lead; }
+ &.lead { @include lead; }
& aside {
font-size: $paragraph-aside-font-size;
// .docs-wrap { margin-top: 30px; }
.docs-wrap .inner-wrap { background: #efefef; }
.docs-wrap .main-section { padding: 0 20px 0 20px; }
-.main-section { @extend %kill-flicker; }
+.main-section { @include kill-flicker; }
.doc-oc-list { background: $off-canvas-bg; }
// Make sure topbar dropdowns are above tab bar.
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
+ "grunt-contrib-sass": "~0.8.1",
"grunt-string-replace": "~0.2.7",
"grunt-karma": "~0.6.2",
"grunt-newer": "~0.7.0",
"grunt-rsync": "~0.5.0",
- "grunt-sass": "~0.13.0",
"handlebars-helper-rel": "~0.1.2",
"handlebars-helper-slugify": "~0.2.0",
"highlight.js": "~7.3.0",
$modules: () !default;
@mixin exports($name) {
@if(not index($modules, $name)) {
- $modules: append($modules, $name);
+ $modules: append($modules, $name) !global;
@content;
}
}
// Off Canvas Menu Variables
$off-canvas-width: rem-calc(250) !default;
$off-canvas-bg: $oil !default;
-$off-canvas-bg-hover: background: scale-color($tabbar-bg, $lightness: -30%) !default;
+$off-canvas-bg-hover: scale-color($tabbar-bg, $lightness: -30%) !default;
// Off Canvas Menu List Variables
$off-canvas-label-padding: 0.3rem rem-calc(15) !default;