zurb-foundation 3.0.7.rc10 → 3.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -42,6 +42,10 @@ Drupal
42
42
 
43
43
  * [Drupal Theme](https://github.com/drewkennelly/foundation7) by Drew Kennelly
44
44
 
45
+ PyroCMS
46
+
47
+ * [PyroYeti - PyroCMS Theme](https://github.com/pyrosuit/PyroYeti) by [Arnold Mwumva Ford](https://twitter.com/fordarnold) , Meridian Softech
48
+
45
49
  Django
46
50
 
47
51
  * [A foundation theme for the Pinax](http://pypi.python.org/pypi/pinax-theme-foundation) by Christopher Clarke, Kwesi Aguillera & Lendl Smith
@@ -1,3 +1,3 @@
1
1
  module Foundation
2
- VERSION = "3.0.7.rc10"
2
+ VERSION = "3.0.7"
3
3
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  @import "compass/css3";
7
7
 
8
- @import "foundation/function/all";
8
+ @import "foundation/functions/all";
9
9
 
10
10
  @import "foundation/mixins/all";
11
11
 
@@ -13,4 +13,4 @@
13
13
 
14
14
  @import "foundation/common/base";
15
15
 
16
- @import "foundation/components/grid", "foundation/components/modules/all";
16
+ @import "foundation/components/grid", "foundation/components/modules/all";
@@ -367,9 +367,9 @@
367
367
  table tfoot tr th,
368
368
  table tbody tr td,
369
369
  table tr td,
370
- table tfoot tr td { @include font-size(12); line-height: 18px; text-align: left; }
370
+ table tfoot tr td { font-size: ms(0); line-height: 18px; text-align: left; }
371
371
  table thead tr th,
372
- table tfoot tr td { padding: 8px 10px 9px; @include font-size(14); font-weight: bold; color: #222; }
372
+ table tfoot tr td { padding: 8px 10px 9px; font-size: ms(0) + 2; font-weight: bold; color: #222; }
373
373
  table thead tr th:first-child, table tfoot tr td:first-child { border-left: none; }
374
374
  table thead tr th:last-child, table tfoot tr td:last-child { border-right: none; }
375
375
 
@@ -1,4 +1,4 @@
1
- @import "foundation/function/modular-scale";
1
+ @import "foundation/functions/modular-scale";
2
2
 
3
3
  // Settings file containing Foundation defaults
4
4
 
@@ -27,7 +27,7 @@
27
27
  // $headerFontFamily: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
28
28
  // $headerFontWeight: bold;
29
29
  // $headerFontColor: #222;
30
- // $bodyFontFamily: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-ser;
30
+ // $bodyFontFamily: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
31
31
  // $bodyFontWeight: normal;
32
32
  // $bodyFontColor: #222;
33
33
 
@@ -56,4 +56,3 @@
56
56
  // Modular Scale
57
57
  // $ratio: $golden;
58
58
  // $base-size: 14px 44px;
59
-
@@ -9,10 +9,10 @@
9
9
  // and uncommenting what you want below. You must uncomment the following if customizing
10
10
 
11
11
  // @import "compass/css3";
12
- // @import "foundation/settings";
13
- // @import "foundation/function/all";
14
- // @import "foundation/common/globals";
15
- // @import "foundation/mixins/clearfix";
12
+ // @import "foundations/settings";
13
+ // @import "foundations/function/all";
14
+ // @import "foundations/common/globals";
15
+ // @import "foundations/mixins/clearfix";
16
16
 
17
17
  // Control which mixins you have access too
18
18
 
@@ -5,7 +5,7 @@
5
5
  callback: $.noop
6
6
  }, options);
7
7
 
8
- $(".alert-box", this).delegate("a.close", "click", function (event) {
8
+ $(document).on("click", ".alert-box a.close", function (event) {
9
9
  event.preventDefault();
10
10
  $(this).closest(".alert-box").fadeOut(function (event) {
11
11
  $(this).remove();
@@ -198,7 +198,7 @@
198
198
  //
199
199
  // Build our <li> elements.
200
200
  //
201
- liHtml = $.map( $options, function( opt ) { return "<li>" + opt.value + "</li>"; } ).join( '' );
201
+ liHtml = $options.map( function() { return "<li>" + $( this ).html() + "</li>"; } ).get().join( '' );
202
202
  //
203
203
  // Append our <li> elements to the custom list (<ul>).
204
204
  //
@@ -222,7 +222,7 @@
222
222
  //
223
223
  // Create our list item <li> elements.
224
224
  //
225
- liHtml = $.map( $options, function( opt ) { return "<li>" + opt.value + "</li>"; } ).join( '' );
225
+ liHtml = $options.map( function() { return "<li>" + $( this ).html() + "</li>"; } ).get().join( '' );
226
226
  //
227
227
  // Refresh the ul with options from the select in case the supplied markup doesn't match.
228
228
  // Clear what's currently in the <ul> element.
@@ -34,12 +34,12 @@
34
34
  $(this).fadeOut(150);
35
35
  });
36
36
  } else {
37
- $body.on('mouseover.tooltip mouseout.tooltip', settings.targetClass, function (e) {
37
+ $body.on('mouseenter.tooltip mouseleave.tooltip', settings.targetClass, function (e) {
38
38
  var $this = $(this);
39
39
 
40
- if (e.type === 'mouseover') {
40
+ if (e.type === 'mouseenter') {
41
41
  methods.showOrCreateTip($this);
42
- } else if (e.type === 'mouseout') {
42
+ } else if (e.type === 'mouseleave') {
43
43
  methods.hide($this);
44
44
  }
45
45
  });
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zurb-foundation
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.7.rc10
5
- prerelease: 6
4
+ version: 3.0.7
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - ZURB
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-25 00:00:00.000000000 Z
12
+ date: 2012-07-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: compass
@@ -134,10 +134,10 @@ files:
134
134
  - stylesheets/foundation/components/modules/_reveal.scss
135
135
  - stylesheets/foundation/components/modules/_tabs.scss
136
136
  - stylesheets/foundation/components/modules/_ui.scss
137
- - stylesheets/foundation/function/_all.scss
138
- - stylesheets/foundation/function/_convert-number-to-word.scss
139
- - stylesheets/foundation/function/_grid-calc.scss
140
- - stylesheets/foundation/function/_modular-scale.sass
137
+ - stylesheets/foundation/functions/_all.scss
138
+ - stylesheets/foundation/functions/_convert-number-to-word.scss
139
+ - stylesheets/foundation/functions/_grid-calc.scss
140
+ - stylesheets/foundation/functions/_modular-scale.sass
141
141
  - stylesheets/foundation/mixins/_all.scss
142
142
  - stylesheets/foundation/mixins/_clearfix.scss
143
143
  - stylesheets/foundation/mixins/_css-triangle.scss
@@ -194,13 +194,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
194
194
  version: '0'
195
195
  segments:
196
196
  - 0
197
- hash: 775601719286300877
197
+ hash: -2833576183208330201
198
198
  required_rubygems_version: !ruby/object:Gem::Requirement
199
199
  none: false
200
200
  requirements:
201
- - - ! '>'
201
+ - - ! '>='
202
202
  - !ruby/object:Gem::Version
203
- version: 1.3.1
203
+ version: '0'
204
+ segments:
205
+ - 0
206
+ hash: -2833576183208330201
204
207
  requirements: []
205
208
  rubyforge_project:
206
209
  rubygems_version: 1.8.23