curry-powder 0.4.0 → 0.5.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.
data/curry-powder.gemspec
CHANGED
@@ -1,26 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
//-
|
2
|
+
// Basic module:
|
3
|
+
//
|
4
|
+
// Basic styling for the whole "site".
|
5
|
+
//
|
6
|
+
// These macros provide basic styling: setting `overflow: hidden` on the `body` and
|
7
|
+
// Treesaver containers, establishing a `line-height` grid and so on. They are
|
8
|
+
// automatically included when the plugin is loaded.
|
9
|
+
//
|
10
|
+
// Variables:
|
11
|
+
// *
|
12
|
+
//
|
10
13
|
|
11
14
|
@import "curry/config";
|
12
15
|
@import "curry/basic/base";
|
13
16
|
|
17
|
+
//-
|
18
|
+
// Basic setup
|
19
|
+
//
|
14
20
|
@mixin curry-basic-setup {
|
15
21
|
@include -curry-basic-setup;
|
16
22
|
@include -curry-basic-setup-group;
|
17
23
|
@include -curry-basic-error-and-loading;
|
18
|
-
|
19
|
-
// FIXME
|
20
|
-
.fill {
|
21
|
-
left: 0;
|
22
|
-
top: 0;
|
23
|
-
}
|
24
24
|
}
|
25
25
|
|
26
26
|
@include curry-basic-setup;
|
@@ -12,10 +12,6 @@
|
|
12
12
|
* determine their width and position.
|
13
13
|
*/
|
14
14
|
@mixin curry-layout-setup($width, $margin, $steps) {
|
15
|
-
.grid {
|
16
|
-
width: $width;
|
17
|
-
}
|
18
|
-
|
19
15
|
.column, .container {
|
20
16
|
width: $width;
|
21
17
|
top: 0;
|
@@ -24,4 +20,13 @@
|
|
24
20
|
|
25
21
|
@include -curry-layout-column-widths($steps, $width, $margin);
|
26
22
|
@include -curry-layout-columns($steps, $width, $margin);
|
23
|
+
|
24
|
+
//
|
25
|
+
// This must happen quite late, otherwise it will not override the
|
26
|
+
// other positioning classes.
|
27
|
+
//
|
28
|
+
.fill {
|
29
|
+
left: 0;
|
30
|
+
top: 0;
|
31
|
+
}
|
27
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.5.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Andrea Campi
|
@@ -10,8 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-03-18 00:00:00
|
14
|
-
default_executable:
|
13
|
+
date: 2011-03-18 00:00:00 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: compass
|
@@ -51,7 +50,6 @@ files:
|
|
51
50
|
- stylesheets/curry/layout/_base.scss
|
52
51
|
- templates/project/_use_curry.scss
|
53
52
|
- templates/project/manifest.rb
|
54
|
-
has_rdoc: true
|
55
53
|
homepage: http://zephirworks.com/
|
56
54
|
licenses: []
|
57
55
|
|
@@ -75,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
requirements: []
|
76
74
|
|
77
75
|
rubyforge_project: curry-powder
|
78
|
-
rubygems_version: 1.
|
76
|
+
rubygems_version: 1.8.10
|
79
77
|
signing_key:
|
80
78
|
specification_version: 3
|
81
79
|
summary: Compass stylesheets for treesaver.js.
|