stipe 0.0.5.8 → 0.0.5.9
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/readme.md
CHANGED
@@ -12,6 +12,10 @@ To use the Stipe gem, using Bundler `gem 'stipe'`
|
|
12
12
|
Stipe is a Compass Extension, so Compass is a dependency. You will need to include `require 'stipe'` in your config.rb file.
|
13
13
|
|
14
14
|
# Stipe Changelog
|
15
|
+
###0.0.5.9
|
16
|
+
* Removed uneccessary instances of the box-sizing mixin, namely, in the push/pull mixins.
|
17
|
+
* Added _legacy_extends.scss file to stipe/grid. This is an optional @import, not included in the Stipe manifest. It restores some legacy placeholders. Consider it deprecated.
|
18
|
+
|
15
19
|
###0.0.5.8
|
16
20
|
* Move grid extends to load last in style.scss manifest - when using the extended grid solution, this will move all your media queries to the end of the stylesheet.
|
17
21
|
* Removed support for Font-Awesome and Zocial ico-fonts
|
@@ -0,0 +1,127 @@
|
|
1
|
+
// These are legacy placeholder classes. You shouldn't use them. They will be removed in a future release.
|
2
|
+
|
3
|
+
/*
|
4
|
+
|
5
|
+
Am I here?
|
6
|
+
|
7
|
+
*/
|
8
|
+
|
9
|
+
%grid_1 {
|
10
|
+
@extend %grid_1of12;
|
11
|
+
@media #{$tablet_portrait} {
|
12
|
+
@extend %grid_1of10;
|
13
|
+
}
|
14
|
+
@media #{$mobile} {
|
15
|
+
@extend %grid_1of4;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
%grid_2 {
|
20
|
+
@extend %grid_2of12;
|
21
|
+
@media #{$tablet_portrait} {
|
22
|
+
@extend %grid_2of10;
|
23
|
+
}
|
24
|
+
@media #{$mobile} {
|
25
|
+
@extend %grid_2of4;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
%grid_3 {
|
30
|
+
@extend %grid_3of12;
|
31
|
+
@media #{$tablet_portrait} {
|
32
|
+
@extend %grid_3of10;
|
33
|
+
}
|
34
|
+
@media #{$mobile} {
|
35
|
+
@extend %grid_3of4;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
%grid_4 {
|
40
|
+
@extend %grid_4of12;
|
41
|
+
@media #{$tablet_portrait} {
|
42
|
+
@extend %grid_4of10;
|
43
|
+
}
|
44
|
+
@media #{$mobile} {
|
45
|
+
@extend %grid_4of4;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
%grid_5 {
|
50
|
+
@extend %grid_5of12;
|
51
|
+
@media #{$tablet_portrait} {
|
52
|
+
@extend %grid_5of10;
|
53
|
+
}
|
54
|
+
@media #{$mobile} {
|
55
|
+
@extend %grid_4of4;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
%grid_6 {
|
60
|
+
@extend %grid_6of12;
|
61
|
+
@media #{$tablet_portrait} {
|
62
|
+
@extend %grid_6of10;
|
63
|
+
}
|
64
|
+
@media #{$mobile} {
|
65
|
+
@extend %grid_4of4;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
%grid_7 {
|
70
|
+
@extend %grid_7of12;
|
71
|
+
@media #{$tablet_portrait} {
|
72
|
+
@extend %grid_7of10;
|
73
|
+
}
|
74
|
+
@media #{$mobile} {
|
75
|
+
@extend %grid_4of4;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
%grid_8 {
|
80
|
+
@extend %grid_8of12;
|
81
|
+
@media #{$tablet_portrait} {
|
82
|
+
@extend %grid_8of10;
|
83
|
+
}
|
84
|
+
@media #{$mobile} {
|
85
|
+
@extend %grid_4of4;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
%grid_9 {
|
90
|
+
@extend %grid_9of12;
|
91
|
+
@media #{$tablet_portrait} {
|
92
|
+
@extend %grid_9of10;
|
93
|
+
}
|
94
|
+
@media #{$mobile} {
|
95
|
+
@extend %grid_4of4;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
%grid_10 {
|
100
|
+
@extend %grid_10of12;
|
101
|
+
@media #{$tablet_portrait} {
|
102
|
+
@extend %grid_10of10;
|
103
|
+
}
|
104
|
+
@media #{$mobile} {
|
105
|
+
@extend %grid_4of4;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
%grid_11 {
|
110
|
+
@extend %grid_11of12;
|
111
|
+
@media #{$tablet_portrait} {
|
112
|
+
@extend %grid_10of10;
|
113
|
+
}
|
114
|
+
@media #{$mobile} {
|
115
|
+
@extend %grid_4of4;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
%grid_12 {
|
120
|
+
@extend %grid_12of12;
|
121
|
+
@media #{$tablet_portrait} {
|
122
|
+
@extend %grid_10of10;
|
123
|
+
}
|
124
|
+
@media #{$mobile} {
|
125
|
+
@extend %grid_4of4;
|
126
|
+
}
|
127
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stipe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.5.
|
4
|
+
version: 0.0.5.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-05-03 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: compass
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- stylesheets/stipe/gradients/mixins/_linear_gradient_bkgimage.scss
|
82
82
|
- stylesheets/stipe/grid/_debug.scss
|
83
83
|
- stylesheets/stipe/grid/_extends.scss
|
84
|
+
- stylesheets/stipe/grid/_legacy_extends.scss
|
84
85
|
- stylesheets/stipe/grid/_mixins.scss
|
85
86
|
- stylesheets/stipe/grid/lib/_grid_background.scss
|
86
87
|
- stylesheets/stipe/grid/lib/_grid_margin.scss
|
@@ -139,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
140
|
version: '0'
|
140
141
|
requirements: []
|
141
142
|
rubyforge_project:
|
142
|
-
rubygems_version: 1.8.
|
143
|
+
rubygems_version: 1.8.23
|
143
144
|
signing_key:
|
144
145
|
specification_version: 3
|
145
146
|
summary: Core styles for Toadstool
|