StyleSass 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/Guardfile +72 -0
  3. data/README.md +2 -12
  4. data/StyleSass.gemspec +1 -0
  5. data/app/assets/stylesheets/neat/_neat-helpers.scss +8 -0
  6. data/app/assets/stylesheets/neat/_neat.scss +23 -0
  7. data/app/assets/stylesheets/neat/functions/_new-breakpoint.scss +49 -0
  8. data/app/assets/stylesheets/neat/functions/_private.scss +114 -0
  9. data/app/assets/stylesheets/neat/grid/_box-sizing.scss +15 -0
  10. data/app/assets/stylesheets/neat/grid/_direction-context.scss +33 -0
  11. data/app/assets/stylesheets/neat/grid/_display-context.scss +28 -0
  12. data/app/assets/stylesheets/neat/grid/_fill-parent.scss +22 -0
  13. data/app/assets/stylesheets/neat/grid/_media.scss +92 -0
  14. data/app/assets/stylesheets/neat/grid/_omega.scss +87 -0
  15. data/app/assets/stylesheets/neat/grid/_outer-container.scss +38 -0
  16. data/app/assets/stylesheets/neat/grid/_pad.scss +25 -0
  17. data/app/assets/stylesheets/neat/grid/_private.scss +35 -0
  18. data/app/assets/stylesheets/neat/grid/_row.scss +52 -0
  19. data/app/assets/stylesheets/neat/grid/_shift.scss +50 -0
  20. data/app/assets/stylesheets/neat/grid/_span-columns.scss +94 -0
  21. data/app/assets/stylesheets/neat/grid/_to-deprecate.scss +97 -0
  22. data/app/assets/stylesheets/neat/grid/_visual-grid.scss +42 -0
  23. data/app/assets/stylesheets/neat/settings/_disable-warnings.scss +13 -0
  24. data/app/assets/stylesheets/neat/settings/_grid.scss +51 -0
  25. data/app/assets/stylesheets/neat/settings/_visual-grid.scss +27 -0
  26. data/app/assets/stylesheets/neat.scss +1 -0
  27. data/lib/StyleSass/engine.rb +0 -1
  28. data/lib/StyleSass/version.rb +1 -1
  29. data/lib/generators/style_sass/install_generator.rb +1 -2
  30. metadata +39 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f9d5936d8b6d305a28f6040a8d6accec5a817635
4
- data.tar.gz: a8baaa4f056245bf0ac84edd81b816b7fd5fb127
3
+ metadata.gz: c1fe5b13c3054fc4d64f0a649c4dbdb41f3efc1c
4
+ data.tar.gz: bebcb91a108eb11a178ff8689b53d3ea3eecb2bd
5
5
  SHA512:
6
- metadata.gz: d0666580a71378c66e2887a9117ed3ed5db09b8a12c1558fa4937e6b7a8c227a3ae1f9f77e273096d84472a2456fe805f5ad97d03897c9ec57827092f9205611
7
- data.tar.gz: 0cd5791db768d06520b5d481088cca05ca8287c6b3ecef197d3b98f5f16c6c013817624c3a9a4f5831c8cdcf5ff33e2571f8312e7d17bd1355426221d8314ae7
6
+ metadata.gz: ece904562860f9fe7806cf2a8d2195e6730b95be3d1d52cb8789ba83daa8040ae26fd90513f287d106c46f6acbb50697ababd3a3166ea3632a5a13051319bf6e
7
+ data.tar.gz: d0b4022c53b5bc8b4b573de35275d1278b6066d156656fc0c1316b28ac2fad2f7dacd9ba9cb1bb08574f00822f71f61cc0742ddd99358a10df46b8bd477632cc
data/Guardfile ADDED
@@ -0,0 +1,72 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ # Note: The cmd option is now required due to the increasing number of ways
19
+ # rspec may be run, below are examples of the most common uses.
20
+ # * bundler: 'bundle exec rspec'
21
+ # * bundler binstubs: 'bin/rspec'
22
+ # * spring: 'bin/rspec' (This will use spring if running and you have
23
+ # installed the spring binstubs per the docs)
24
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
25
+ # * 'just' rspec: 'rspec'
26
+
27
+ guard :rspec, cmd: "bundle exec rspec" do
28
+ require "guard/rspec/dsl"
29
+ dsl = Guard::RSpec::Dsl.new(self)
30
+
31
+ # Feel free to open issues for suggestions and improvements
32
+
33
+ # RSpec files
34
+ rspec = dsl.rspec
35
+ watch(rspec.spec_helper) { rspec.spec_dir }
36
+ watch(rspec.spec_support) { rspec.spec_dir }
37
+ watch(rspec.spec_files)
38
+
39
+ # Ruby files
40
+ ruby = dsl.ruby
41
+ dsl.watch_spec_files_for(ruby.lib_files)
42
+
43
+ # Rails files
44
+ rails = dsl.rails(view_extensions: %w(erb haml slim))
45
+ dsl.watch_spec_files_for(rails.app_files)
46
+ dsl.watch_spec_files_for(rails.views)
47
+
48
+ watch(rails.controllers) do |m|
49
+ [
50
+ rspec.spec.("routing/#{m[1]}_routing"),
51
+ rspec.spec.("controllers/#{m[1]}_controller"),
52
+ rspec.spec.("acceptance/#{m[1]}")
53
+ ]
54
+ end
55
+
56
+ # Rails config changes
57
+ watch(rails.spec_helper) { rspec.spec_dir }
58
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
59
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
60
+
61
+ # Capybara features specs
62
+ watch(rails.view_dirs) { |m| rspec.spec.("features/#{m[1]}") }
63
+ watch(rails.layouts) { |m| rspec.spec.("features/#{m[1]}") }
64
+
65
+ # Turnip features and steps
66
+ watch(%r{^spec/acceptance/(.+)\.feature$})
67
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
68
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
69
+ end
70
+ ### custom spec
71
+ watch(%r{^spec/.+_spec\.rb})
72
+ end
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # StyleSass
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/StyleSass`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -20,15 +16,9 @@ Or install it yourself as:
20
16
 
21
17
  $ gem install StyleSass
22
18
 
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
19
+ Rails generator
20
+ $ rails g style_sass:install
30
21
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
22
 
33
23
  ## Contributing
34
24
 
data/StyleSass.gemspec CHANGED
@@ -31,5 +31,6 @@ Gem::Specification.new do |spec|
31
31
  spec.add_development_dependency "rake", "~> 10.0"
32
32
  spec.add_development_dependency "rspec", "~> 3.0"
33
33
  spec.add_development_dependency "rails"
34
+ spec.add_development_dependency "guard-rspec"
34
35
 
35
36
  end
@@ -0,0 +1,8 @@
1
+ // Functions
2
+ @import "functions/private";
3
+ @import "functions/new-breakpoint";
4
+
5
+ // Settings
6
+ @import "settings/grid";
7
+ @import "settings/visual-grid";
8
+ @import "settings/disable-warnings";
@@ -0,0 +1,23 @@
1
+ // Neat 1.7.2
2
+ // http://neat.bourbon.io
3
+ // Copyright 2012-2015 thoughtbot, inc.
4
+ // MIT License
5
+
6
+ // Helpers
7
+ @import "neat-helpers";
8
+
9
+ // Grid
10
+ @import "grid/private";
11
+ @import "grid/box-sizing";
12
+ @import "grid/omega";
13
+ @import "grid/outer-container";
14
+ @import "grid/span-columns";
15
+ @import "grid/row";
16
+ @import "grid/shift";
17
+ @import "grid/pad";
18
+ @import "grid/fill-parent";
19
+ @import "grid/media";
20
+ @import "grid/to-deprecate";
21
+ @import "grid/visual-grid";
22
+ @import "grid/display-context";
23
+ @import "grid/direction-context";
@@ -0,0 +1,49 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Returns a media context (media query / grid context) that can be stored in a variable and passed to `media()` as a single-keyword argument. Media contexts defined using `new-breakpoint` are used by the visual grid, as long as they are defined before importing Neat.
4
+ ///
5
+ /// @param {List} $query
6
+ /// A list of media query features and values. Each `$feature` should have a corresponding `$value`.
7
+ ///
8
+ /// If there is only a single `$value` in `$query`, `$default-feature` is going to be used.
9
+ ///
10
+ /// The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`). For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
11
+ ///
12
+ /// @param {Number (unitless)} $total-columns [$grid-columns]
13
+ /// - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
14
+ ///
15
+ /// @example scss - Usage
16
+ /// $mobile: new-breakpoint(max-width 480px 4);
17
+ ///
18
+ /// .element {
19
+ /// @include media($mobile) {
20
+ /// @include span-columns(4);
21
+ /// }
22
+ /// }
23
+ ///
24
+ /// @example css - CSS Output
25
+ /// @media screen and (max-width: 480px) {
26
+ /// .element {
27
+ /// display: block;
28
+ /// float: left;
29
+ /// margin-right: 7.42297%;
30
+ /// width: 100%;
31
+ /// }
32
+ /// .element:last-child {
33
+ /// margin-right: 0;
34
+ /// }
35
+ /// }
36
+
37
+ @function new-breakpoint($query: $feature $value $columns, $total-columns: $grid-columns) {
38
+ @if length($query) == 1 {
39
+ $query: $default-feature nth($query, 1) $total-columns;
40
+ } @else if is-even(length($query)) {
41
+ $query: append($query, $total-columns);
42
+ }
43
+
44
+ @if is-not(belongs-to($query, $visual-grid-breakpoints)) {
45
+ $visual-grid-breakpoints: append($visual-grid-breakpoints, $query, comma) !global;
46
+ }
47
+
48
+ @return $query;
49
+ }
@@ -0,0 +1,114 @@
1
+ // Not function for Libsass compatibility
2
+ // https://github.com/sass/libsass/issues/368
3
+ @function is-not($value) {
4
+ @return if($value, false, true);
5
+ }
6
+
7
+ // Checks if a number is even
8
+ @function is-even($int) {
9
+ @return $int % 2 == 0;
10
+ }
11
+
12
+ // Checks if an element belongs to a list or not
13
+ @function belongs-to($tested-item, $list) {
14
+ @return is-not(not-belongs-to($tested-item, $list));
15
+ }
16
+
17
+ @function not-belongs-to($tested-item, $list) {
18
+ @return is-not(index($list, $tested-item));
19
+ }
20
+
21
+ // Contains display value
22
+ @function contains-display-value($query) {
23
+ @return belongs-to(table, $query)
24
+ or belongs-to(block, $query)
25
+ or belongs-to(inline-block, $query)
26
+ or belongs-to(inline, $query);
27
+ }
28
+
29
+ // Parses the first argument of span-columns()
30
+ @function container-span($span: $span) {
31
+ @if length($span) == 3 {
32
+ $container-columns: nth($span, 3);
33
+ @return $container-columns;
34
+ } @else if length($span) == 2 {
35
+ $container-columns: nth($span, 2);
36
+ @return $container-columns;
37
+ }
38
+
39
+ @return $grid-columns;
40
+ }
41
+
42
+ @function container-shift($shift: $shift) {
43
+ $parent-columns: $grid-columns !default !global;
44
+
45
+ @if length($shift) == 3 {
46
+ $container-columns: nth($shift, 3);
47
+ @return $container-columns;
48
+ } @else if length($shift) == 2 {
49
+ $container-columns: nth($shift, 2);
50
+ @return $container-columns;
51
+ }
52
+
53
+ @return $parent-columns;
54
+ }
55
+
56
+ // Generates a striped background
57
+ @function gradient-stops($grid-columns, $color: $visual-grid-color) {
58
+ $transparent: transparent;
59
+
60
+ $column-width: flex-grid(1, $grid-columns);
61
+ $gutter-width: flex-gutter($grid-columns);
62
+ $column-offset: $column-width;
63
+
64
+ $values: ($transparent 0, $color 0);
65
+
66
+ @for $i from 1 to $grid-columns*2 {
67
+ @if is-even($i) {
68
+ $values: append($values, $transparent $column-offset, comma);
69
+ $values: append($values, $color $column-offset, comma);
70
+ $column-offset: $column-offset + $column-width;
71
+ } @else {
72
+ $values: append($values, $color $column-offset, comma);
73
+ $values: append($values, $transparent $column-offset, comma);
74
+ $column-offset: $column-offset + $gutter-width;
75
+ }
76
+ }
77
+
78
+ @return $values;
79
+ }
80
+
81
+ // Layout direction
82
+ @function get-direction($layout, $default) {
83
+ $direction: null;
84
+
85
+ @if to-upper-case($layout) == "LTR" or to-upper-case($layout) == "RTL" {
86
+ $direction: direction-from-layout($layout);
87
+ } @else {
88
+ $direction: direction-from-layout($default);
89
+ }
90
+
91
+ @return $direction;
92
+ }
93
+
94
+ @function direction-from-layout($layout) {
95
+ $direction: null;
96
+
97
+ @if to-upper-case($layout) == "LTR" {
98
+ $direction: right;
99
+ } @else {
100
+ $direction: left;
101
+ }
102
+
103
+ @return $direction;
104
+ }
105
+
106
+ @function get-opposite-direction($direction) {
107
+ $opposite-direction: left;
108
+
109
+ @if $direction == "left" {
110
+ $opposite-direction: right;
111
+ }
112
+
113
+ @return $opposite-direction;
114
+ }
@@ -0,0 +1,15 @@
1
+ @charset "UTF-8";
2
+
3
+ @if $border-box-sizing == true {
4
+ html { // http://bit.ly/1qk2tVR
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ * {
9
+ &,
10
+ &::after,
11
+ &::before {
12
+ box-sizing: inherit;
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,33 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Changes the direction property used by other mixins called in the code block argument.
4
+ ///
5
+ /// @param {String} $direction [left-to-right]
6
+ /// Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`.
7
+ ///
8
+ /// @example scss - Usage
9
+ /// @include direction-context(right-to-left) {
10
+ /// .right-to-left-block {
11
+ /// @include span-columns(6);
12
+ /// }
13
+ /// }
14
+ ///
15
+ /// @example css - CSS Output
16
+ /// .right-to-left-block {
17
+ /// float: right;
18
+ /// ...
19
+ /// }
20
+
21
+ @mixin direction-context($direction: left-to-right) {
22
+ $scope-direction: $layout-direction;
23
+
24
+ @if to-lower-case($direction) == "left-to-right" {
25
+ $layout-direction: LTR !global;
26
+ } @else if to-lower-case($direction) == "right-to-left" {
27
+ $layout-direction: RTL !global;
28
+ }
29
+
30
+ @content;
31
+
32
+ $layout-direction: $scope-direction !global;
33
+ }
@@ -0,0 +1,28 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Changes the display property used by other mixins called in the code block argument.
4
+ ///
5
+ /// @param {String} $display [block]
6
+ /// Display value to be used within the block. Can be `table` or `block`.
7
+ ///
8
+ /// @example scss
9
+ /// @include display-context(table) {
10
+ /// .display-table {
11
+ /// @include span-columns(6);
12
+ /// }
13
+ /// }
14
+ ///
15
+ /// @example css
16
+ /// .display-table {
17
+ /// display: table-cell;
18
+ /// ...
19
+ /// }
20
+
21
+ @mixin display-context($display: block) {
22
+ $scope-display: $container-display-table;
23
+ $container-display-table: $display == table !global;
24
+
25
+ @content;
26
+
27
+ $container-display-table: $scope-display !global;
28
+ }
@@ -0,0 +1,22 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Forces the element to fill its parent container.
4
+ ///
5
+ /// @example scss - Usage
6
+ /// .element {
7
+ /// @include fill-parent;
8
+ /// }
9
+ ///
10
+ /// @example css - CSS Output
11
+ /// .element {
12
+ /// width: 100%;
13
+ /// box-sizing: border-box;
14
+ /// }
15
+
16
+ @mixin fill-parent() {
17
+ width: 100%;
18
+
19
+ @if $border-box-sizing == false {
20
+ box-sizing: border-box;
21
+ }
22
+ }
@@ -0,0 +1,92 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Outputs a media-query block with an optional grid context (the total number of columns used in the grid).
4
+ ///
5
+ /// @param {List} $query
6
+ /// A list of media query features and values, where each `$feature` should have a corresponding `$value`.
7
+ /// For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
8
+ ///
9
+ /// If there is only a single `$value` in `$query`, `$default-feature` is going to be used.
10
+ ///
11
+ /// The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`).
12
+ ///
13
+ ///
14
+ /// @param {Number (unitless)} $total-columns [$grid-columns]
15
+ /// - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
16
+ ///
17
+ /// @example scss - Usage
18
+ /// .responsive-element {
19
+ /// @include media(769px) {
20
+ /// @include span-columns(6);
21
+ /// }
22
+ /// }
23
+ ///
24
+ /// .new-context-element {
25
+ /// @include media(min-width 320px max-width 480px, 6) {
26
+ /// @include span-columns(6);
27
+ /// }
28
+ /// }
29
+ ///
30
+ /// @example css - CSS Output
31
+ /// @media screen and (min-width: 769px) {
32
+ /// .responsive-element {
33
+ /// display: block;
34
+ /// float: left;
35
+ /// margin-right: 2.35765%;
36
+ /// width: 48.82117%;
37
+ /// }
38
+ ///
39
+ /// .responsive-element:last-child {
40
+ /// margin-right: 0;
41
+ /// }
42
+ /// }
43
+ ///
44
+ /// @media screen and (min-width: 320px) and (max-width: 480px) {
45
+ /// .new-context-element {
46
+ /// display: block;
47
+ /// float: left;
48
+ /// margin-right: 4.82916%;
49
+ /// width: 100%;
50
+ /// }
51
+ ///
52
+ /// .new-context-element:last-child {
53
+ /// margin-right: 0;
54
+ /// }
55
+ /// }
56
+
57
+ @mixin media($query: $feature $value $columns, $total-columns: $grid-columns) {
58
+ @if length($query) == 1 {
59
+ @media screen and ($default-feature: nth($query, 1)) {
60
+ $default-grid-columns: $grid-columns;
61
+ $grid-columns: $total-columns !global;
62
+ @content;
63
+ $grid-columns: $default-grid-columns !global;
64
+ }
65
+ } @else {
66
+ $loop-to: length($query);
67
+ $media-query: "screen and ";
68
+ $default-grid-columns: $grid-columns;
69
+ $grid-columns: $total-columns !global;
70
+
71
+ @if is-not(is-even(length($query))) {
72
+ $grid-columns: nth($query, $loop-to) !global;
73
+ $loop-to: $loop-to - 1;
74
+ }
75
+
76
+ $i: 1;
77
+ @while $i <= $loop-to {
78
+ $media-query: $media-query + "(" + nth($query, $i) + ": " + nth($query, $i + 1) + ") ";
79
+
80
+ @if ($i + 1) != $loop-to {
81
+ $media-query: $media-query + "and ";
82
+ }
83
+
84
+ $i: $i + 2;
85
+ }
86
+
87
+ @media #{$media-query} {
88
+ @content;
89
+ $grid-columns: $default-grid-columns !global;
90
+ }
91
+ }
92
+ }
@@ -0,0 +1,87 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Removes the element's gutter margin, regardless of its position in the grid hierarchy or display property. It can target a specific element, or every `nth-child` occurrence. Works only with `block` layouts.
4
+ ///
5
+ /// @param {List} $query [block]
6
+ /// List of arguments. Supported arguments are `nth-child` selectors (targets a specific pseudo element) and `auto` (targets `last-child`).
7
+ ///
8
+ /// When passed an `nth-child` argument of type `*n` with `block` display, the omega mixin automatically adds a clear to the `*n+1` th element. Note that composite arguments such as `2n+1` do not support this feature.
9
+ ///
10
+ /// **Deprecation warning**: The omega mixin will no longer take a `$direction` argument. To change the layout direction, use `row($direction)` or set `$default-layout-direction` instead.
11
+ ///
12
+ /// @example scss - Usage
13
+ /// .element {
14
+ /// @include omega;
15
+ /// }
16
+ ///
17
+ /// .nth-element {
18
+ /// @include omega(4n);
19
+ /// }
20
+ ///
21
+ /// @example css - CSS Output
22
+ /// .element {
23
+ /// margin-right: 0;
24
+ /// }
25
+ ///
26
+ /// .nth-element:nth-child(4n) {
27
+ /// margin-right: 0;
28
+ /// }
29
+ ///
30
+ /// .nth-element:nth-child(4n+1) {
31
+ /// clear: left;
32
+ /// }
33
+
34
+ @mixin omega($query: block, $direction: default) {
35
+ $table: belongs-to(table, $query);
36
+ $auto: belongs-to(auto, $query);
37
+
38
+ @if $direction != default {
39
+ @include -neat-warn("The omega mixin will no longer take a $direction argument. To change the layout direction, use the direction(){...} mixin.");
40
+ } @else {
41
+ $direction: get-direction($layout-direction, $default-layout-direction);
42
+ }
43
+
44
+ @if $table {
45
+ @include -neat-warn("The omega mixin no longer removes padding in table layouts.");
46
+ }
47
+
48
+ @if length($query) == 1 {
49
+ @if $auto {
50
+ &:last-child {
51
+ margin-#{$direction}: 0;
52
+ }
53
+ }
54
+
55
+ @else if contains-display-value($query) and $table == false {
56
+ margin-#{$direction}: 0;
57
+ }
58
+
59
+ @else {
60
+ @include nth-child($query, $direction);
61
+ }
62
+ } @else if length($query) == 2 {
63
+ @if $auto {
64
+ &:last-child {
65
+ margin-#{$direction}: 0;
66
+ }
67
+ } @else {
68
+ @include nth-child(nth($query, 1), $direction);
69
+ }
70
+ } @else {
71
+ @include -neat-warn("Too many arguments passed to the omega() mixin.");
72
+ }
73
+ }
74
+
75
+ @mixin nth-child($query, $direction) {
76
+ $opposite-direction: get-opposite-direction($direction);
77
+
78
+ &:nth-child(#{$query}) {
79
+ margin-#{$direction}: 0;
80
+ }
81
+
82
+ @if type-of($query) == number and unit($query) == "n" {
83
+ &:nth-child(#{$query}+1) {
84
+ clear: $opposite-direction;
85
+ }
86
+ }
87
+ }
@@ -0,0 +1,38 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
4
+ /// Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
5
+ ///
6
+ /// @param {Number [unit]} $local-max-width [$max-width]
7
+ /// Max width to be applied to the element. Can be a percentage or a measure.
8
+ ///
9
+ /// @example scss - Usage
10
+ /// .element {
11
+ /// @include outer-container(100%);
12
+ /// }
13
+ ///
14
+ /// @example css - CSS Output
15
+ /// .element {
16
+ /// *zoom: 1;
17
+ /// max-width: 100%;
18
+ /// margin-left: auto;
19
+ /// margin-right: auto;
20
+ /// }
21
+ ///
22
+ /// .element:before, .element:after {
23
+ /// content: " ";
24
+ /// display: table;
25
+ /// }
26
+ ///
27
+ /// .element:after {
28
+ /// clear: both;
29
+ /// }
30
+
31
+ @mixin outer-container($local-max-width: $max-width) {
32
+ @include clearfix;
33
+ max-width: $local-max-width;
34
+ margin: {
35
+ left: auto;
36
+ right: auto;
37
+ }
38
+ }
@@ -0,0 +1,25 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Adds padding to the element.
4
+ ///
5
+ /// @param {List} $padding [flex-gutter()]
6
+ /// A list of padding value(s) to use. Passing `default` in the list will result in using the gutter width as a padding value.
7
+ ///
8
+ /// @example scss - Usage
9
+ /// .element {
10
+ /// @include pad(30px -20px 10px default);
11
+ /// }
12
+ ///
13
+ /// @example css - CSS Output
14
+ /// .element {
15
+ /// padding: 30px -20px 10px 2.35765%;
16
+ /// }
17
+
18
+ @mixin pad($padding: flex-gutter()) {
19
+ $padding-list: null;
20
+ @each $value in $padding {
21
+ $value: if($value == 'default', flex-gutter(), $value);
22
+ $padding-list: join($padding-list, $value);
23
+ }
24
+ padding: $padding-list;
25
+ }
@@ -0,0 +1,35 @@
1
+ $parent-columns: $grid-columns !default;
2
+ $fg-column: $column;
3
+ $fg-gutter: $gutter;
4
+ $fg-max-columns: $grid-columns;
5
+ $container-display-table: false !default;
6
+ $layout-direction: LTR !default;
7
+
8
+ @function flex-grid($columns, $container-columns: $fg-max-columns) {
9
+ $width: $columns * $fg-column + ($columns - 1) * $fg-gutter;
10
+ $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
11
+ @return percentage($width / $container-width);
12
+ }
13
+
14
+ @function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {
15
+ $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
16
+ @return percentage($gutter / $container-width);
17
+ }
18
+
19
+ @function grid-width($n) {
20
+ @return $n * $gw-column + ($n - 1) * $gw-gutter;
21
+ }
22
+
23
+ @function get-parent-columns($columns) {
24
+ @if $columns != $grid-columns {
25
+ $parent-columns: $columns !global;
26
+ } @else {
27
+ $parent-columns: $grid-columns !global;
28
+ }
29
+
30
+ @return $parent-columns;
31
+ }
32
+
33
+ @function is-display-table($container-is-display-table, $display) {
34
+ @return $container-is-display-table == true or $display == table;
35
+ }
@@ -0,0 +1,52 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Designates the element as a row of columns in the grid layout. It clears the floats on the element and sets its display property. Rows can't be nested, but there can be more than one row element—with different display properties—per layout.
4
+ ///
5
+ /// @param {String} $display [default]
6
+ /// Sets the display property of the element and the display context that will be used by its children. Can be `block` or `table`.
7
+ ///
8
+ /// @param {String} $direction [$default-layout-direction]
9
+ /// Sets the layout direction. Can be `LTR` (left-to-right) or `RTL` (right-to-left).
10
+ ///
11
+ /// @example scss - Usage
12
+ /// .element {
13
+ /// @include row();
14
+ /// }
15
+ ///
16
+ /// @example css - CSS Output
17
+ /// .element {
18
+ /// *zoom: 1;
19
+ /// display: block;
20
+ /// }
21
+ ///
22
+ /// .element:before, .element:after {
23
+ /// content: " ";
24
+ /// display: table;
25
+ /// }
26
+ ///
27
+ /// .element:after {
28
+ /// clear: both;
29
+ /// }
30
+
31
+ @mixin row($display: default, $direction: $default-layout-direction) {
32
+ @if $direction != $default-layout-direction {
33
+ @include -neat-warn("The $direction argument will be deprecated in future versions in favor of the direction(){...} mixin.");
34
+ }
35
+
36
+ $layout-direction: $direction !global;
37
+
38
+ @if $display != default {
39
+ @include -neat-warn("The $display argument will be deprecated in future versions in favor of the display(){...} mixin.");
40
+ }
41
+
42
+ @if $display == table {
43
+ display: table;
44
+ @include fill-parent;
45
+ table-layout: fixed;
46
+ $container-display-table: true !global;
47
+ } @else {
48
+ @include clearfix;
49
+ display: block;
50
+ $container-display-table: false !global;
51
+ }
52
+ }
@@ -0,0 +1,50 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Translates an element horizontally by a number of columns. Positive arguments shift the element to the active layout direction, while negative ones shift it to the opposite direction.
4
+ ///
5
+ /// @param {Number (unitless)} $n-columns [1]
6
+ /// Number of columns by which the element shifts.
7
+ ///
8
+ /// @example scss - Usage
9
+ /// .element {
10
+ /// @include shift(-3);
11
+ /// }
12
+ ///
13
+ /// @example css - CSS output
14
+ /// .element {
15
+ /// margin-left: -25.58941%;
16
+ /// }
17
+
18
+ @mixin shift($n-columns: 1) {
19
+ @include shift-in-context($n-columns);
20
+ }
21
+
22
+ /// Translates an element horizontally by a number of columns, in a specific nesting context.
23
+ ///
24
+ /// @param {List} $shift
25
+ /// A list containing the number of columns to shift (`$columns`) and the number of columns of the parent element (`$container-columns`).
26
+ ///
27
+ /// The two values can be separated with any string such as `of`, `/`, etc.
28
+ ///
29
+ /// @example scss - Usage
30
+ /// .element {
31
+ /// @include shift(-3 of 6);
32
+ /// }
33
+ ///
34
+ /// @example css - CSS output
35
+ /// .element {
36
+ /// margin-left: -52.41458%;
37
+ /// }
38
+
39
+ @mixin shift-in-context($shift: $columns of $container-columns) {
40
+ $n-columns: nth($shift, 1);
41
+ $parent-columns: container-shift($shift) !global;
42
+
43
+ $direction: get-direction($layout-direction, $default-layout-direction);
44
+ $opposite-direction: get-opposite-direction($direction);
45
+
46
+ margin-#{$opposite-direction}: $n-columns * flex-grid(1, $parent-columns) + $n-columns * flex-gutter($parent-columns);
47
+
48
+ // Reset nesting context
49
+ $parent-columns: $grid-columns !global;
50
+ }
@@ -0,0 +1,94 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well.
4
+ ///
5
+ /// @param {List} $span
6
+ /// A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional).
7
+ ///
8
+ /// If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid.
9
+ ///
10
+ /// The values can be separated with any string such as `of`, `/`, etc.
11
+ ///
12
+ /// `$columns` also accepts decimals for when it's necessary to break out of the standard grid. E.g. Passing `2.4` in a standard 12 column grid will divide the row into 5 columns.
13
+ ///
14
+ /// @param {String} $display [block]
15
+ /// Sets the display property of the element. By default it sets the display propert of the element to `block`.
16
+ ///
17
+ /// If passed `block-collapse`, it also removes the margin gutter by adding it to the element width.
18
+ ///
19
+ /// If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid.
20
+ ///
21
+ /// @example scss - Usage
22
+ /// .element {
23
+ /// @include span-columns(6);
24
+ ///
25
+ /// .nested-element {
26
+ /// @include span-columns(2 of 6);
27
+ /// }
28
+ /// }
29
+ ///
30
+ /// @example css - CSS Output
31
+ /// .element {
32
+ /// display: block;
33
+ /// float: left;
34
+ /// margin-right: 2.35765%;
35
+ /// width: 48.82117%;
36
+ /// }
37
+ ///
38
+ /// .element:last-child {
39
+ /// margin-right: 0;
40
+ /// }
41
+ ///
42
+ /// .element .nested-element {
43
+ /// display: block;
44
+ /// float: left;
45
+ /// margin-right: 4.82916%;
46
+ /// width: 30.11389%;
47
+ /// }
48
+ ///
49
+ /// .element .nested-element:last-child {
50
+ /// margin-right: 0;
51
+ /// }
52
+
53
+ @mixin span-columns($span: $columns of $container-columns, $display: block) {
54
+ $columns: nth($span, 1);
55
+ $container-columns: container-span($span);
56
+
57
+ $parent-columns: get-parent-columns($container-columns) !global;
58
+
59
+ $direction: get-direction($layout-direction, $default-layout-direction);
60
+ $opposite-direction: get-opposite-direction($direction);
61
+
62
+ $display-table: is-display-table($container-display-table, $display);
63
+
64
+ @if $display-table {
65
+ display: table-cell;
66
+ width: percentage($columns / $container-columns);
67
+ } @else {
68
+ float: #{$opposite-direction};
69
+
70
+ @if $display != no-display {
71
+ display: block;
72
+ }
73
+
74
+ @if $display == collapse {
75
+ @include -neat-warn("The 'collapse' argument will be deprecated. Use 'block-collapse' instead.");
76
+ }
77
+
78
+ @if $display == collapse or $display == block-collapse {
79
+ width: flex-grid($columns, $container-columns) + flex-gutter($container-columns);
80
+
81
+ &:last-child {
82
+ width: flex-grid($columns, $container-columns);
83
+ }
84
+
85
+ } @else {
86
+ margin-#{$direction}: flex-gutter($container-columns);
87
+ width: flex-grid($columns, $container-columns);
88
+
89
+ &:last-child {
90
+ margin-#{$direction}: 0;
91
+ }
92
+ }
93
+ }
94
+ }
@@ -0,0 +1,97 @@
1
+ @charset "UTF-8";
2
+
3
+ @mixin breakpoint($query:$feature $value $columns, $total-columns: $grid-columns) {
4
+ @include -neat-warn("The breakpoint() mixin was renamed to media() in Neat 1.0. Please update your project with the new syntax before the next version bump.");
5
+
6
+ @if length($query) == 1 {
7
+ @media screen and ($default-feature: nth($query, 1)) {
8
+ $default-grid-columns: $grid-columns;
9
+ $grid-columns: $total-columns;
10
+ @content;
11
+ $grid-columns: $default-grid-columns;
12
+ }
13
+ } @else if length($query) == 2 {
14
+ @media screen and (nth($query, 1): nth($query, 2)) {
15
+ $default-grid-columns: $grid-columns;
16
+ $grid-columns: $total-columns;
17
+ @content;
18
+ $grid-columns: $default-grid-columns;
19
+ }
20
+ } @else if length($query) == 3 {
21
+ @media screen and (nth($query, 1): nth($query, 2)) {
22
+ $default-grid-columns: $grid-columns;
23
+ $grid-columns: nth($query, 3);
24
+ @content;
25
+ $grid-columns: $default-grid-columns;
26
+ }
27
+ } @else if length($query) == 4 {
28
+ @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
29
+ $default-grid-columns: $grid-columns;
30
+ $grid-columns: $total-columns;
31
+ @content;
32
+ $grid-columns: $default-grid-columns;
33
+ }
34
+ } @else if length($query) == 5 {
35
+ @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
36
+ $default-grid-columns: $grid-columns;
37
+ $grid-columns: nth($query, 5);
38
+ @content;
39
+ $grid-columns: $default-grid-columns;
40
+ }
41
+ } @else {
42
+ @include -neat-warn("Wrong number of arguments for breakpoint(). Read the documentation for more details.");
43
+ }
44
+ }
45
+
46
+ @mixin nth-omega($nth, $display: block, $direction: default) {
47
+ @include -neat-warn("The nth-omega() mixin is deprecated. Please use omega() instead.");
48
+ @include omega($nth $display, $direction);
49
+ }
50
+
51
+ /// Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
52
+ ///
53
+ /// @example scss - Usage
54
+ /// .element {
55
+ /// @include row(table);
56
+ /// // Context changed to table display
57
+ /// }
58
+ ///
59
+ /// @include reset-display;
60
+ /// // Context is reset to block display
61
+
62
+ @mixin reset-display {
63
+ $container-display-table: false !global;
64
+ @include -neat-warn("Resetting $display will be deprecated in future versions in favor of the display(){...} mixin.");
65
+ }
66
+
67
+ /// Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row.
68
+ ///
69
+ /// @example scss - Usage
70
+ /// .element {
71
+ /// @include row($direction: RTL);
72
+ /// // Context changed to right-to-left
73
+ /// }
74
+ ///
75
+ /// @include reset-layout-direction;
76
+ /// // Context is reset to left-to-right
77
+
78
+ @mixin reset-layout-direction {
79
+ $layout-direction: $default-layout-direction !global;
80
+ @include -neat-warn("Resetting $direction will be deprecated in future versions in favor of the direction(){...} mixin.");
81
+ }
82
+
83
+ /// Resets both the active layout direction and the active display property.
84
+ ///
85
+ /// @example scss - Usage
86
+ /// .element {
87
+ /// @include row(table, RTL);
88
+ /// // Context changed to table table and right-to-left
89
+ /// }
90
+ ///
91
+ /// @include reset-all;
92
+ /// // Context is reset to block display and left-to-right
93
+
94
+ @mixin reset-all {
95
+ @include reset-display;
96
+ @include reset-layout-direction;
97
+ }
@@ -0,0 +1,42 @@
1
+ @charset "UTF-8";
2
+
3
+ @mixin grid-column-gradient($values...) {
4
+ background-image: -webkit-linear-gradient(left, $values);
5
+ background-image: -moz-linear-gradient(left, $values);
6
+ background-image: -ms-linear-gradient(left, $values);
7
+ background-image: -o-linear-gradient(left, $values);
8
+ background-image: unquote("linear-gradient(to left, #{$values})");
9
+ }
10
+
11
+ @if $visual-grid == true or $visual-grid == yes {
12
+ body:before {
13
+ @include grid-column-gradient(gradient-stops($grid-columns));
14
+ content: "";
15
+ display: inline-block;
16
+ height: 100%;
17
+ left: 0;
18
+ margin: 0 auto;
19
+ max-width: $max-width;
20
+ opacity: $visual-grid-opacity;
21
+ pointer-events: none;
22
+ position: fixed;
23
+ right: 0;
24
+ width: 100%;
25
+
26
+ @if $visual-grid-index == back {
27
+ z-index: -1;
28
+ }
29
+
30
+ @else if $visual-grid-index == front {
31
+ z-index: 9999;
32
+ }
33
+
34
+ @each $breakpoint in $visual-grid-breakpoints {
35
+ @if $breakpoint {
36
+ @include media($breakpoint) {
37
+ @include grid-column-gradient(gradient-stops($grid-columns));
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,13 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
4
+ ///
5
+ /// @type Bool
6
+
7
+ $disable-warnings: false !default;
8
+
9
+ @mixin -neat-warn($message) {
10
+ @if $disable-warnings == false {
11
+ @warn "#{$message}";
12
+ }
13
+ }
@@ -0,0 +1,51 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with a `!global` flag.
4
+ ///
5
+ /// @type Number (Unit)
6
+
7
+ $column: modular-scale(3, 1em, $golden) !default;
8
+
9
+ /// Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with the `!global` flag.
10
+ ///
11
+ /// @type Number (Unit)
12
+
13
+ $gutter: modular-scale(1, 1em, $golden) !default;
14
+
15
+ /// Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag.
16
+ ///
17
+ /// @type Number (Unitless)
18
+
19
+ $grid-columns: 12 !default;
20
+
21
+ /// Sets the max-width property of the element that includes `outer-container()`. To learn more about `em()` see [Bourbon docs](http://bourbon.io/docs/#px-to-em). Set with the `!global` flag.
22
+ ///
23
+ /// @type Number (Unit)
24
+ ///
25
+ $max-width: em(1088) !default;
26
+
27
+ /// When set to true, it sets the box-sizing property of all elements to `border-box`. Set with a `!global` flag.
28
+ ///
29
+ /// @type Bool
30
+ ///
31
+ /// @example css - CSS Output
32
+ /// html {
33
+ /// box-sizing: border-box; }
34
+ ///
35
+ /// *, *::after, *::before {
36
+ /// box-sizing: inherit;
37
+ /// }
38
+
39
+ $border-box-sizing: true !default;
40
+
41
+ /// Sets the default [media feature](http://www.w3.org/TR/css3-mediaqueries/#media) that `media()` and `new-breakpoint()` revert to when only a breakpoint value is passed. Set with a `!global` flag.
42
+ ///
43
+ /// @type String
44
+
45
+ $default-feature: min-width; // Default @media feature for the breakpoint() mixin
46
+
47
+ ///Sets the default layout direction of the grid. Can be `LTR` or `RTL`. Set with a `!global` flag.
48
+ ///
49
+ ///@type String
50
+
51
+ $default-layout-direction: LTR !default;
@@ -0,0 +1,27 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag.
4
+ ///
5
+ /// @type Bool
6
+
7
+ $visual-grid: false !default;
8
+
9
+ /// Sets the visual grid color. Set with `!global` flag.
10
+ ///
11
+ /// @type Color
12
+
13
+ $visual-grid-color: #eee !default;
14
+
15
+ /// Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag.
16
+ ///
17
+ /// @type String
18
+
19
+ $visual-grid-index: back !default;
20
+
21
+ /// Sets the opacity property of the visual grid. Set with `!global` flag.
22
+ ///
23
+ /// @type Number (unitless)
24
+
25
+ $visual-grid-opacity: 0.4 !default;
26
+
27
+ $visual-grid-breakpoints: () !default;
@@ -0,0 +1 @@
1
+ @import "neat/neat"
@@ -1,5 +1,4 @@
1
1
  module StyleSass
2
2
  class Engine < Rails::Engine
3
-
4
3
  end
5
4
  end
@@ -1,3 +1,3 @@
1
1
  module StyleSass
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -1,11 +1,10 @@
1
-
2
1
  module StyleSass
3
2
  module Generators
4
3
  class InstallGenerator < Rails::Generators::Base
5
4
  source_root File.expand_path("../../../..",__FILE__)
6
5
 
7
6
  def copy_views
8
- directory 'app/assets/', 'app/assets/stylesheets/'
7
+ directory 'app/assets/', 'app/assets/'
9
8
  end
10
9
 
11
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: StyleSass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alinuxfriend
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-24 00:00:00.000000000 Z
11
+ date: 2016-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  description: ''
70
84
  email:
71
85
  - ajoshi856@gmail.com
@@ -77,6 +91,7 @@ files:
77
91
  - ".rspec"
78
92
  - ".travis.yml"
79
93
  - Gemfile
94
+ - Guardfile
80
95
  - LICENSE.txt
81
96
  - README.md
82
97
  - Rakefile
@@ -259,6 +274,28 @@ files:
259
274
  - app/assets/stylesheets/helpers/_render-gradients.scss
260
275
  - app/assets/stylesheets/helpers/_shape-size-stripper.scss
261
276
  - app/assets/stylesheets/helpers/_str-to-num.scss
277
+ - app/assets/stylesheets/neat.scss
278
+ - app/assets/stylesheets/neat/_neat-helpers.scss
279
+ - app/assets/stylesheets/neat/_neat.scss
280
+ - app/assets/stylesheets/neat/functions/_new-breakpoint.scss
281
+ - app/assets/stylesheets/neat/functions/_private.scss
282
+ - app/assets/stylesheets/neat/grid/_box-sizing.scss
283
+ - app/assets/stylesheets/neat/grid/_direction-context.scss
284
+ - app/assets/stylesheets/neat/grid/_display-context.scss
285
+ - app/assets/stylesheets/neat/grid/_fill-parent.scss
286
+ - app/assets/stylesheets/neat/grid/_media.scss
287
+ - app/assets/stylesheets/neat/grid/_omega.scss
288
+ - app/assets/stylesheets/neat/grid/_outer-container.scss
289
+ - app/assets/stylesheets/neat/grid/_pad.scss
290
+ - app/assets/stylesheets/neat/grid/_private.scss
291
+ - app/assets/stylesheets/neat/grid/_row.scss
292
+ - app/assets/stylesheets/neat/grid/_shift.scss
293
+ - app/assets/stylesheets/neat/grid/_span-columns.scss
294
+ - app/assets/stylesheets/neat/grid/_to-deprecate.scss
295
+ - app/assets/stylesheets/neat/grid/_visual-grid.scss
296
+ - app/assets/stylesheets/neat/settings/_disable-warnings.scss
297
+ - app/assets/stylesheets/neat/settings/_grid.scss
298
+ - app/assets/stylesheets/neat/settings/_visual-grid.scss
262
299
  - app/assets/stylesheets/settings/_asset-pipeline.scss
263
300
  - app/assets/stylesheets/settings/_prefixer.scss
264
301
  - app/assets/stylesheets/settings/_px-to-em.scss