Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Back to green
Browse files Browse the repository at this point in the history
  • Loading branch information
Reda Lemeden committed Apr 4, 2013
1 parent bc9af1e commit 55b2b83
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
3 changes: 1 addition & 2 deletions app/assets/stylesheets/functions/_private.scss
Expand Up @@ -75,7 +75,7 @@
@function get-direction($layout, $default) {
$direction: nil;

@if $layout == LTR OR $layout == RTL {
@if $layout == LTR or $layout == RTL {
$direction: direction-from-layout($layout);
} @else {
$direction: direction-from-layout($default);
Expand All @@ -92,7 +92,6 @@
} @else {
$direction: left;
}

@return $direction;
}

Expand Down
1 change: 1 addition & 0 deletions neat.gemspec
Expand Up @@ -30,4 +30,5 @@ Neat is an open source grid framework built on top of Bourbon with the aim of be
s.add_development_dependency('rspec')
s.add_development_dependency('rdoc')
s.add_development_dependency('bundler')
s.add_development_dependency('rb-fsevent', '~> 0.9.1')
end
6 changes: 0 additions & 6 deletions spec/neat/columns_spec.rb
Expand Up @@ -52,10 +52,4 @@
expect('.span-columns-table:last-child').to have_rule('width: 48.82117%')
end
end

context "with argument 'inline-block'" do
it "sets display to inline-block" do
expect('.span-columns-inline-block').to have_rule('display: inline-block')
end
end
end

0 comments on commit 55b2b83

Please sign in to comment.