curry-powder 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,8 +10,3 @@ $curry-line-height: 24px !default; // Vertical grid
10
10
 
11
11
  $curry-chrome-maximum-smallscreen-width: 480px !default; // Any device wider
12
12
  // than this will use "normal" grids, anything smaller will use "small" chromes.
13
-
14
- //
15
- // Grid module
16
- //
17
- $curry-grid-smallscreen-width: 300px !default;
@@ -11,7 +11,6 @@
11
11
 
12
12
  @mixin curry-grid-default {
13
13
  @include -curry-grid-base;
14
- @include -curry-grid-support-smallscreen-mobile;
15
14
  @include -curry-grid-fixed;
16
15
  }
17
16
 
@@ -12,3 +12,11 @@ button::-moz-focus-inner {
12
12
  padding: 0;
13
13
  border: 0
14
14
  }
15
+
16
+ sup, sub {
17
+ line-height: 0;
18
+ }
19
+
20
+ blockquote * {
21
+ display: inline;
22
+ }
@@ -16,7 +16,7 @@
16
16
  // small-screen mobile devices can only used grids marked for mobiles.
17
17
  // Note that you still have to add size-specific classes to specify grid sizes.
18
18
  //
19
- @mixin -curry-grid-support-smallscreen-mobile {
19
+ @mixin -curry-grid-support-smallscreen-mobile($width) {
20
20
  .grid.mobile {
21
21
  @include -curry-grid-hide;
22
22
  }
@@ -25,8 +25,8 @@
25
25
  @include -curry-grid-hide;
26
26
 
27
27
  &.mobile {
28
- width: $curry-grid-smallscreen-width;
29
- min-width: $curry-grid-smallscreen-width;
28
+ width: $width;
29
+ min-width: $width;
30
30
  }
31
31
  }
32
32
  }
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: curry-powder
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.5.0
5
+ version: 0.6.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Andrea Campi
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-18 00:00:00 Z
13
+ date: 2012-02-29 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: compass
@@ -33,7 +33,6 @@ extensions: []
33
33
  extra_rdoc_files: []
34
34
 
35
35
  files:
36
- - curry-powder.gemspec
37
36
  - lib/curry.rb
38
37
  - stylesheets/_curry.scss
39
38
  - stylesheets/curry/_basic.scss
@@ -1,38 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{curry-powder}
5
- s.version = "0.5.0"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
- s.authors = ["Andrea Campi"]
9
- s.date = %q{2011-03-18}
10
- s.description = %q{A Compass plugin to provide basic styles for treesaver.js.}
11
- s.email = %w{andrea.campi@zephirworks.com}
12
- s.has_rdoc = false
13
- s.files = [
14
- "curry-powder.gemspec",
15
- "lib/curry.rb",
16
- "stylesheets/_curry.scss",
17
- "stylesheets/curry/_basic.scss",
18
- "stylesheets/curry/_chrome.scss",
19
- "stylesheets/curry/_config.scss",
20
- "stylesheets/curry/_grid.scss",
21
- "stylesheets/curry/_layout.scss",
22
- "stylesheets/curry/_reset.scss",
23
- "stylesheets/curry/basic/_base.scss",
24
- "stylesheets/curry/chrome/_base.scss",
25
- "stylesheets/curry/chrome/_controls.scss",
26
- "stylesheets/curry/chrome/_viewer.scss",
27
- "stylesheets/curry/grid/_base.scss",
28
- "stylesheets/curry/layout/_base.scss",
29
- "templates/project/_use_curry.scss",
30
- "templates/project/manifest.rb"
31
- ]
32
- s.homepage = %q{http://zephirworks.com/}
33
- s.require_paths = ["lib"]
34
- s.rubyforge_project = %q{curry-powder}
35
- s.rubygems_version = %q{1.3.6}
36
- s.summary = %q{Compass stylesheets for treesaver.js.}
37
- s.add_dependency(%q<compass>, ["~> 0.11"])
38
- end