curry-powder 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/curry-powder.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{curry-powder}
5
- s.version = "0.4.0"
5
+ s.version = "0.5.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
8
  s.authors = ["Andrea Campi"]
@@ -1,26 +1,26 @@
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
- */
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
  }
@@ -7,3 +7,8 @@ html, body, h1, h2, h3, h4, h5, h6 {
7
7
  p {
8
8
  margin: 0;
9
9
  }
10
+
11
+ button::-moz-focus-inner {
12
+ padding: 0;
13
+ border: 0
14
+ }
@@ -41,8 +41,8 @@
41
41
  .grid.fixed {
42
42
  max-width: none;
43
43
  max-height: none;
44
- min-width: none;
45
- min-height: none;
44
+ min-width: 0;
45
+ min-height: 0;
46
46
  padding: 0;
47
47
  }
48
48
  }
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: curry-powder
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.4.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 +01: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.5.2
76
+ rubygems_version: 1.8.10
79
77
  signing_key:
80
78
  specification_version: 3
81
79
  summary: Compass stylesheets for treesaver.js.