ericam-compass-susy-plugin 0.5.1 → 0.6.2
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.mkdn +5 -4
- data/VERSION +1 -1
- data/compass-susy-plugin.gemspec +1 -1
- data/sass/susy/_utils.sass +60 -3
- data/templates/project/_base.sass +34 -4
- metadata +2 -3
data/README.mkdn
CHANGED
|
@@ -137,9 +137,6 @@ options, experimental (CSS3/proprietary) CSS, and more.
|
|
|
137
137
|
it again on focus. the TRBL settings allow you to place it absolutely on
|
|
138
138
|
display. Default will be top left of the positioning context.
|
|
139
139
|
|
|
140
|
-
* `+inline-italic` because some fonts/browsers add line-height when you
|
|
141
|
-
explicitly set italics on an inline element - this takes some away.
|
|
142
|
-
|
|
143
140
|
And then the fun stuff:
|
|
144
141
|
|
|
145
142
|
* `+opacity(!opacity)` adds cross-browser opacity settings (takes a range of
|
|
@@ -152,7 +149,11 @@ And then the fun stuff:
|
|
|
152
149
|
browsers.
|
|
153
150
|
|
|
154
151
|
* `+box-shadow(!verticaloffset, !horizontaloffset, !blur, !color)` for
|
|
155
|
-
box-shadow in webkit and CSS3.
|
|
152
|
+
box-shadow in webkit, mozilla and CSS3.
|
|
153
|
+
|
|
154
|
+
* `+column-count(!number)`, `+column-gap(!length)`, `+column-width(!length)`,
|
|
155
|
+
and `+column-rule(!width, !style, !color)` for CSS columns in webkit,
|
|
156
|
+
mozilla and CSS3.
|
|
156
157
|
|
|
157
158
|
Advanced Options
|
|
158
159
|
================
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.6.2
|
data/compass-susy-plugin.gemspec
CHANGED
data/sass/susy/_utils.sass
CHANGED
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
//**
|
|
106
106
|
rounded corners for Mozilla, Webkit and the future
|
|
107
107
|
=border-radius(!r)
|
|
108
|
-
/* Mozilla (FireFox)
|
|
108
|
+
/* Mozilla (FireFox, Camino)
|
|
109
109
|
-moz-border-radius = !r
|
|
110
110
|
/* Webkit (Safari, Chrome)
|
|
111
111
|
-webkit-border-radius = !r
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
border-radius = !r
|
|
114
114
|
|
|
115
115
|
=border-corner-radius(!vert, !horz, !r)
|
|
116
|
-
/* Mozilla (FireFox)
|
|
116
|
+
/* Mozilla (FireFox, Camino)
|
|
117
117
|
-moz-border-radius-#{!vert}#{!horz}= !r
|
|
118
118
|
/* Webkit (Safari, Chrome)
|
|
119
119
|
-webkit-border-#{!vert}-#{!horz}-radius= !r
|
|
@@ -132,10 +132,26 @@
|
|
|
132
132
|
=border-bottom-left-radius(!r)
|
|
133
133
|
+border-corner-radius("bottom", "left", !r)
|
|
134
134
|
|
|
135
|
+
=border-top-radius(!r)
|
|
136
|
+
+border-top-left-radius(!r)
|
|
137
|
+
+border-top-right-radius(!r)
|
|
138
|
+
|
|
139
|
+
=border-right-radius(!r)
|
|
140
|
+
+border-top-right-radius(!r)
|
|
141
|
+
+border-bottom-right-radius(!r)
|
|
142
|
+
|
|
143
|
+
=border-bottom-radius(!r)
|
|
144
|
+
+border-bottom-right-radius(!r)
|
|
145
|
+
+border-bottom-left-radius(!r)
|
|
146
|
+
|
|
147
|
+
=border-left-radius(!r)
|
|
148
|
+
+border-top-left-radius(!r)
|
|
149
|
+
+border-bottom-left-radius(!r)
|
|
150
|
+
|
|
135
151
|
//**
|
|
136
152
|
change the box model for Mozilla, Webkit, IE8 and the future
|
|
137
153
|
=box-sizing(!bs)
|
|
138
|
-
/* Mozilla (FireFox)
|
|
154
|
+
/* Mozilla (FireFox, Camino)
|
|
139
155
|
-moz-box-sizing= !bs
|
|
140
156
|
/* Webkit (Safari, Chrome)
|
|
141
157
|
-webkit-box-sizing= !bs
|
|
@@ -150,5 +166,46 @@
|
|
|
150
166
|
=box-shadow(!ho, !vo, !b, !c )
|
|
151
167
|
/* Webkit (Safari, Chrome)
|
|
152
168
|
-webkit-box-shadow= !ho !vo !b !c
|
|
169
|
+
/* Mozilla (Firefox, Camino)
|
|
170
|
+
-moz-box-shadow= !ho !vo !b !c
|
|
153
171
|
/* CSS3
|
|
154
172
|
box-shadow= !ho !vo !b !c
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
//**
|
|
176
|
+
CSS3 columns for Mozilla, Webkit and the Future
|
|
177
|
+
|
|
178
|
+
=column-count(!n)
|
|
179
|
+
:-moz-column-count= !n
|
|
180
|
+
:-webkit-column-count= !n
|
|
181
|
+
:column-count= !n
|
|
182
|
+
|
|
183
|
+
=column-gap(!u)
|
|
184
|
+
:-moz-column-gap= !u
|
|
185
|
+
:-webkit-column-gap= !u
|
|
186
|
+
:column-gap= !u
|
|
187
|
+
|
|
188
|
+
=column-width(!u)
|
|
189
|
+
:-moz-column-width= !u
|
|
190
|
+
:-webkit-column-width= !u
|
|
191
|
+
:column-width= !u
|
|
192
|
+
|
|
193
|
+
=column-rule-width(!w)
|
|
194
|
+
:-moz-column-rule-width= !w
|
|
195
|
+
:-webkit-column-rule-width= !w
|
|
196
|
+
:column-rule-width= !w
|
|
197
|
+
|
|
198
|
+
=column-rule-style(!s)
|
|
199
|
+
:-moz-column-rule-style= !s
|
|
200
|
+
:-webkit-column-rule-style= !s
|
|
201
|
+
:column-rule-style= !s
|
|
202
|
+
|
|
203
|
+
=column-rule-color(!c)
|
|
204
|
+
:-moz-column-rule-color= !c
|
|
205
|
+
:-webkit-column-rule-color= !c
|
|
206
|
+
:column-rule-color= !c
|
|
207
|
+
|
|
208
|
+
=column-rule(!w, !s = "solid", !c = " ")
|
|
209
|
+
+column-rule-width(!w)
|
|
210
|
+
+column-rule-style(!s)
|
|
211
|
+
+column-rule-color(!c)
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
// FONTS
|
|
44
44
|
// Give yourself some font stacks to work with
|
|
45
45
|
=sans-family
|
|
46
|
-
:font-family
|
|
46
|
+
:font-family Futura, sans-serif
|
|
47
47
|
|
|
48
48
|
=serif-family
|
|
49
|
-
:font-family
|
|
49
|
+
:font-family Baskerville, serif
|
|
50
50
|
|
|
51
51
|
// Remember to add default styles to everything!
|
|
52
52
|
|
|
@@ -72,13 +72,36 @@ form
|
|
|
72
72
|
|
|
73
73
|
fieldset
|
|
74
74
|
|
|
75
|
+
legend
|
|
76
|
+
|
|
75
77
|
label
|
|
76
78
|
|
|
77
79
|
textarea
|
|
78
80
|
|
|
79
81
|
input
|
|
80
82
|
|
|
81
|
-
|
|
83
|
+
button
|
|
84
|
+
|
|
85
|
+
/* @end */
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
/* @group tables */
|
|
89
|
+
|
|
90
|
+
/* tables still need 'cellspacing="0"' in the markup */
|
|
91
|
+
|
|
92
|
+
table
|
|
93
|
+
|
|
94
|
+
thead
|
|
95
|
+
|
|
96
|
+
tbody
|
|
97
|
+
|
|
98
|
+
tfoot
|
|
99
|
+
|
|
100
|
+
tr
|
|
101
|
+
|
|
102
|
+
th
|
|
103
|
+
|
|
104
|
+
td
|
|
82
105
|
|
|
83
106
|
/* @end */
|
|
84
107
|
|
|
@@ -95,6 +118,11 @@ p
|
|
|
95
118
|
:list-style disc
|
|
96
119
|
:margin 0 1.5em 1.5em 1.5em
|
|
97
120
|
|
|
121
|
+
=no-style-list
|
|
122
|
+
+no-bullets
|
|
123
|
+
:margin 0
|
|
124
|
+
:padding 0
|
|
125
|
+
|
|
98
126
|
ol
|
|
99
127
|
+list-default("ol")
|
|
100
128
|
|
|
@@ -111,7 +139,7 @@ blockquote
|
|
|
111
139
|
cite
|
|
112
140
|
|
|
113
141
|
em
|
|
114
|
-
|
|
142
|
+
:font-style italic
|
|
115
143
|
|
|
116
144
|
strong
|
|
117
145
|
:font-weight bold
|
|
@@ -122,6 +150,8 @@ ins
|
|
|
122
150
|
del
|
|
123
151
|
:text-decoration line-through
|
|
124
152
|
|
|
153
|
+
q
|
|
154
|
+
|
|
125
155
|
/* @end */
|
|
126
156
|
|
|
127
157
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ericam-compass-susy-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Meyer
|
|
@@ -67,7 +67,6 @@ files:
|
|
|
67
67
|
- compass-susy-plugin.gemspec
|
|
68
68
|
has_rdoc: false
|
|
69
69
|
homepage: http://github.com/ericam/compass-susy-plugin
|
|
70
|
-
licenses:
|
|
71
70
|
post_install_message:
|
|
72
71
|
rdoc_options:
|
|
73
72
|
- --line-numbers
|
|
@@ -93,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
92
|
requirements: []
|
|
94
93
|
|
|
95
94
|
rubyforge_project: compass-susy-plugin
|
|
96
|
-
rubygems_version: 1.
|
|
95
|
+
rubygems_version: 1.2.0
|
|
97
96
|
signing_key:
|
|
98
97
|
specification_version: 3
|
|
99
98
|
summary: A Compass grid system plugin.
|