stitch 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/stitch/version.rb +1 -1
- data/stylesheets/stitch/patterns/_layout.scss +5 -1
- data/stylesheets/stitch/patterns/layout/_absolute.scss +7 -0
- data/stylesheets/stitch/patterns/layout/_float-children.scss +11 -0
- data/stylesheets/stitch/patterns/layout/_pseudo-elements.scss +4 -0
- data/stylesheets/stitch/patterns/layout/_relative.scss +7 -0
- metadata +9 -7
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Patterns are chunks of styles that we use on every project. These chunks of styles generally perform a particular function, such as clearing floats. Having to write these styles each time is annoying and the function of these chunks of code in our stylesheets is obscure.
|
4
4
|
|
5
|
-
By breaking these patterns into reusable classes and mixins we:
|
5
|
+
By breaking these patterns into reusable classes and mixins we can:
|
6
6
|
|
7
7
|
* Make our stylesheets free from clutter
|
8
8
|
* Give our styles more meaning
|
data/lib/stitch/version.rb
CHANGED
@@ -3,4 +3,8 @@
|
|
3
3
|
@import 'layout/columns';
|
4
4
|
@import 'layout/force-scrollbars';
|
5
5
|
@import 'layout/media';
|
6
|
-
@import 'layout/simple-gradient';
|
6
|
+
@import 'layout/simple-gradient';
|
7
|
+
@import 'layout/pseudo-elements';
|
8
|
+
@import 'layout/absolute';
|
9
|
+
@import 'layout/relative';
|
10
|
+
@import 'layout/float-children';
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stitch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 3
|
10
|
+
version: 0.1.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Anthony Short
|
@@ -15,8 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
18
|
+
date: 2011-09-01 00:00:00 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
21
|
name: compass
|
@@ -70,11 +69,15 @@ files:
|
|
70
69
|
- stylesheets/stitch/patterns/forms/_search-fields.scss
|
71
70
|
- stylesheets/stitch/patterns/images/_image-rendering.scss
|
72
71
|
- stylesheets/stitch/patterns/images/_image-replace.scss
|
72
|
+
- stylesheets/stitch/patterns/layout/_absolute.scss
|
73
73
|
- stylesheets/stitch/patterns/layout/_center.scss
|
74
74
|
- stylesheets/stitch/patterns/layout/_clear-floats.scss
|
75
75
|
- stylesheets/stitch/patterns/layout/_columns.scss
|
76
|
+
- stylesheets/stitch/patterns/layout/_float-children.scss
|
76
77
|
- stylesheets/stitch/patterns/layout/_force-scrollbars.scss
|
77
78
|
- stylesheets/stitch/patterns/layout/_media.scss
|
79
|
+
- stylesheets/stitch/patterns/layout/_pseudo-elements.scss
|
80
|
+
- stylesheets/stitch/patterns/layout/_relative.scss
|
78
81
|
- stylesheets/stitch/patterns/layout/_simple-gradient.scss
|
79
82
|
- stylesheets/stitch/patterns/legacy/_has-layout.scss
|
80
83
|
- stylesheets/stitch/patterns/legacy/_inline-block.scss
|
@@ -87,7 +90,6 @@ files:
|
|
87
90
|
- stylesheets/stitch/patterns/text/_justify.scss
|
88
91
|
- stylesheets/stitch/patterns/text/_rem.scss
|
89
92
|
- stylesheets/stitch/patterns/text/_text-rendering.scss
|
90
|
-
has_rdoc: true
|
91
93
|
homepage: https://github.com/anthonyshort/stitch-css
|
92
94
|
licenses: []
|
93
95
|
|
@@ -117,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
119
|
requirements: []
|
118
120
|
|
119
121
|
rubyforge_project: stitch
|
120
|
-
rubygems_version: 1.
|
122
|
+
rubygems_version: 1.8.8
|
121
123
|
signing_key:
|
122
124
|
specification_version: 3
|
123
125
|
summary: A CSS pattern framework for Compass
|