curry-powder 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -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;
|
|
@@ -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: $
|
|
29
|
-
min-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
|
+
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:
|
|
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
|
data/curry-powder.gemspec
DELETED
|
@@ -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
|