toolkit 1.0.0 → 1.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ data.tar.gz: 33270ae6c769c81a60ea2b760746dffc36888b7f
4
+ metadata.gz: 0019d7838abc55acdcbfa5fea54473044b50f557
5
+ SHA512:
6
+ data.tar.gz: fad71bd3deb9c4ba04aacfe870cf9f13f37a0887744ab64654232e1a6e8db1239b930430ebf53fa2478611fff7abb1e89a52f642b94ff14fbb66412c7362b858
7
+ metadata.gz: dd9e5fd25adae605e971e9d2d6fe5619a3c71c05bf55ab68f4bffea77d830503cf9ed1084110f8f0802e69b493c6b85836f6c3e837b432760083f7ea4a254207
@@ -51,4 +51,9 @@
51
51
  //////////////////////////////
52
52
  // Import Equal Height Columns
53
53
  //////////////////////////////
54
- @import "toolkit/equal-height-columns";
54
+ @import "toolkit/equal-height-columns";
55
+
56
+ //////////////////////////////
57
+ // Import Fonts
58
+ //////////////////////////////
59
+ @import "toolkit/fonts";
@@ -56,4 +56,9 @@
56
56
  //////////////////////////////
57
57
  // Import Equal Height Columns
58
58
  //////////////////////////////
59
- @import "toolkit/equal-height-columns";
59
+ @import "toolkit/equal-height-columns";
60
+
61
+ //////////////////////////////
62
+ // Import Fonts
63
+ //////////////////////////////
64
+ @import "toolkit/fonts";
@@ -0,0 +1,40 @@
1
+ //////////////////////////////
2
+ // Enable ligatures
3
+ //////////////////////////////
4
+ @mixin enable-ligatures {
5
+ -webkit-font-feature-settings:"liga","dlig";
6
+ -moz-font-feature-settings:"liga=1, dlig=1";
7
+ -moz-font-feature-settings:"liga","dlig";
8
+ -ms-font-feature-settings:"liga","dlig";
9
+ -o-font-feature-settings:"liga","dlig";
10
+ font-feature-settings: "liga","dlig";
11
+ }
12
+
13
+ %enable-ligatures {
14
+ @include enable-ligatures;
15
+ }
16
+
17
+ //////////////////////////////
18
+ // Font Fade In
19
+ //////////////////////////////
20
+ @mixin content-fade-in($duration: 1s, $loading: '.wf-loading', $selector: false) {
21
+
22
+ @if $selector != false {
23
+ #{$selector} {
24
+ opacity: 1;
25
+ @include single-transition(opacity, $duration);
26
+
27
+ #{$loading} & {
28
+ opacity: 0;
29
+ }
30
+ }
31
+ }
32
+ @else {
33
+ opacity: 1;
34
+ @include single-transition(opacity, $duration);
35
+
36
+ #{$loading} & {
37
+ opacity: 0;
38
+ }
39
+ }
40
+ }
@@ -43,6 +43,10 @@ $intrinsic-ratio-direction: top !default;
43
43
  }
44
44
  }
45
45
 
46
+ @mixin ir($ratio: $intrinsic-ratio, $width: $intrinsic-ratio-width, $elements: $intrinsic-ratio-elements, $extend: $intrinsic-ratio-extend, $direction: $intrinsic-ratio-direction) {
47
+ @include intrinsic-ratio($ratio, $width, $elements, $extend, $direction);
48
+ }
49
+
46
50
  %intrinsic-ratio-parent {
47
51
  @include intrinsic-ratio-parent;
48
52
  }
metadata CHANGED
@@ -1,12 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toolkit
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 0
9
- version: 1.0.0
4
+ version: 1.1.0
10
5
  platform: ruby
11
6
  authors:
12
7
  - Sam Richard
@@ -16,8 +11,7 @@ autorequire:
16
11
  bindir: bin
17
12
  cert_chain: []
18
13
 
19
- date: 2013-04-11 00:00:00 -04:00
20
- default_executable:
14
+ date: 2013-05-18 00:00:00 Z
21
15
  dependencies:
22
16
  - !ruby/object:Gem::Dependency
23
17
  name: compass
@@ -26,10 +20,6 @@ dependencies:
26
20
  requirements:
27
21
  - - ">="
28
22
  - !ruby/object:Gem::Version
29
- segments:
30
- - 0
31
- - 12
32
- - 2
33
23
  version: 0.12.2
34
24
  type: :runtime
35
25
  version_requirements: *id001
@@ -40,10 +30,6 @@ dependencies:
40
30
  requirements:
41
31
  - - ">="
42
32
  - !ruby/object:Gem::Version
43
- segments:
44
- - 1
45
- - 0
46
- - 7
47
33
  version: 1.0.7
48
34
  type: :runtime
49
35
  version_requirements: *id002
@@ -54,10 +40,6 @@ dependencies:
54
40
  requirements:
55
41
  - - ">="
56
42
  - !ruby/object:Gem::Version
57
- segments:
58
- - 2
59
- - 0
60
- - 2
61
43
  version: 2.0.2
62
44
  type: :runtime
63
45
  version_requirements: *id003
@@ -68,9 +50,6 @@ dependencies:
68
50
  requirements:
69
51
  - - ">="
70
52
  - !ruby/object:Gem::Version
71
- segments:
72
- - 0
73
- - 1
74
53
  version: "0.1"
75
54
  type: :runtime
76
55
  version_requirements: *id004
@@ -81,10 +60,6 @@ dependencies:
81
60
  requirements:
82
61
  - - ">="
83
62
  - !ruby/object:Gem::Version
84
- segments:
85
- - 0
86
- - 2
87
- - 3
88
63
  version: 0.2.3
89
64
  type: :runtime
90
65
  version_requirements: *id005
@@ -110,6 +85,7 @@ files:
110
85
  - stylesheets/toolkit/_colours.scss
111
86
  - stylesheets/toolkit/_equal-height-columns.scss
112
87
  - stylesheets/toolkit/_fluid-media.scss
88
+ - stylesheets/toolkit/_fonts.scss
113
89
  - stylesheets/toolkit/_intrinsic-ratio.scss
114
90
  - stylesheets/toolkit/_pe.scss
115
91
  - stylesheets/toolkit/_selectors.scss
@@ -137,10 +113,11 @@ files:
137
113
  - templates/shared/print.scss
138
114
  - templates/shared/style.scss
139
115
  - LICENSE.txt
140
- has_rdoc: true
141
116
  homepage: https://github.com/Snugug/toolkit
142
117
  licenses: []
143
118
 
119
+ metadata: {}
120
+
144
121
  post_install_message:
145
122
  rdoc_options: []
146
123
 
@@ -150,23 +127,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
150
127
  requirements:
151
128
  - - ">="
152
129
  - !ruby/object:Gem::Version
153
- segments:
154
- - 0
155
130
  version: "0"
156
131
  required_rubygems_version: !ruby/object:Gem::Requirement
157
132
  requirements:
158
133
  - - ">="
159
134
  - !ruby/object:Gem::Version
160
- segments:
161
- - 1
162
- - 2
163
135
  version: "1.2"
164
136
  requirements: []
165
137
 
166
138
  rubyforge_project: toolkit
167
- rubygems_version: 1.3.6
139
+ rubygems_version: 2.0.3
168
140
  signing_key:
169
- specification_version: 3
141
+ specification_version: 4
170
142
  summary: Progressive Enhancement and RWD toolkit of awesomeness
171
143
  test_files: []
172
144