susy 1.0.9 → 2.2.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +1 -1
  3. data/README.md +20 -115
  4. data/VERSION +1 -1
  5. data/docs/changelog.rst +783 -0
  6. data/lib/compass-susy.rb +1 -0
  7. data/lib/susy.rb +14 -4
  8. data/sass/_su.scss +4 -0
  9. data/sass/_susy.scss +3 -15
  10. data/sass/_susyone.scss +4 -0
  11. data/sass/susy/_su.scss +7 -0
  12. data/sass/susy/language/_susy.scss +24 -0
  13. data/sass/susy/language/_susyone.scss +13 -0
  14. data/sass/susy/language/susy/_background.scss +385 -0
  15. data/sass/susy/language/susy/_bleed.scss +200 -0
  16. data/sass/susy/language/susy/_box-sizing.scss +47 -0
  17. data/sass/susy/language/susy/_breakpoint-plugin.scss +185 -0
  18. data/sass/susy/language/susy/_container.scss +81 -0
  19. data/sass/susy/language/susy/_context.scss +36 -0
  20. data/sass/susy/language/susy/_gallery.scss +94 -0
  21. data/sass/susy/language/susy/_grids.scss +64 -0
  22. data/sass/susy/language/susy/_gutters.scss +154 -0
  23. data/sass/susy/language/susy/_isolate.scss +77 -0
  24. data/sass/susy/language/susy/_margins.scss +94 -0
  25. data/sass/susy/language/susy/_padding.scss +74 -0
  26. data/sass/susy/language/susy/_rows.scss +138 -0
  27. data/sass/susy/language/susy/_settings.scss +216 -0
  28. data/sass/susy/language/susy/_span.scss +163 -0
  29. data/sass/susy/language/susy/_validation.scss +16 -0
  30. data/sass/susy/{_background.scss → language/susyone/_background.scss} +0 -0
  31. data/sass/susy/{_functions.scss → language/susyone/_functions.scss} +23 -22
  32. data/sass/susy/{_grid.scss → language/susyone/_grid.scss} +76 -50
  33. data/sass/susy/{_isolation.scss → language/susyone/_isolation.scss} +0 -0
  34. data/sass/susy/{_margin.scss → language/susyone/_margin.scss} +0 -0
  35. data/sass/susy/{_media.scss → language/susyone/_media.scss} +26 -33
  36. data/sass/susy/{_padding.scss → language/susyone/_padding.scss} +0 -0
  37. data/sass/susy/{_settings.scss → language/susyone/_settings.scss} +4 -0
  38. data/sass/susy/output/_float.scss +9 -0
  39. data/sass/susy/output/_shared.scss +15 -0
  40. data/sass/susy/output/_support.scss +9 -0
  41. data/sass/susy/output/float/_container.scss +16 -0
  42. data/sass/susy/output/float/_end.scss +40 -0
  43. data/sass/susy/output/float/_isolate.scss +22 -0
  44. data/sass/susy/output/float/_span.scss +35 -0
  45. data/sass/susy/output/shared/_background.scss +26 -0
  46. data/sass/susy/output/shared/_container.scss +21 -0
  47. data/sass/susy/output/shared/_direction.scss +42 -0
  48. data/sass/susy/output/shared/_inspect.scss +25 -0
  49. data/sass/susy/output/shared/_margins.scss +23 -0
  50. data/sass/susy/output/shared/_output.scss +14 -0
  51. data/sass/susy/output/shared/_padding.scss +23 -0
  52. data/sass/susy/output/support/_background.scss +58 -0
  53. data/sass/susy/output/support/_box-sizing.scss +19 -0
  54. data/sass/susy/output/support/_clearfix.scss +18 -0
  55. data/sass/susy/output/support/_prefix.scss +19 -0
  56. data/sass/susy/output/support/_rem.scss +22 -0
  57. data/sass/susy/output/support/_support.scss +95 -0
  58. data/sass/susy/su/_grid.scss +103 -0
  59. data/sass/susy/su/_settings.scss +73 -0
  60. data/sass/susy/su/_utilities.scss +111 -0
  61. data/sass/susy/su/_validation.scss +57 -0
  62. data/templates/project/_grids.scss +9 -0
  63. data/templates/project/manifest.rb +6 -10
  64. data/templates/project/style.scss +4 -0
  65. metadata +106 -111
  66. data/CHANGELOG.mkdn +0 -296
  67. data/Manifest +0 -39
  68. data/Rakefile +0 -19
  69. data/sass/susy/_support.scss +0 -198
  70. data/sass/susy/_units.scss +0 -159
  71. data/susy.gemspec +0 -35
  72. data/templates/project/_base.scss +0 -14
  73. data/templates/project/screen.scss +0 -12
  74. data/test/config.rb +0 -10
  75. data/test/css/background.css +0 -16
  76. data/test/css/bleed.css +0 -20
  77. data/test/css/functions.css +0 -7
  78. data/test/css/grid.css +0 -134
  79. data/test/css/isolation.css +0 -46
  80. data/test/css/margin.css +0 -20
  81. data/test/css/media.css +0 -101
  82. data/test/css/padding.css +0 -12
  83. data/test/scss/background.scss +0 -11
  84. data/test/scss/bleed.scss +0 -19
  85. data/test/scss/functions.scss +0 -15
  86. data/test/scss/grid.scss +0 -77
  87. data/test/scss/isolation.scss +0 -19
  88. data/test/scss/margin.scss +0 -27
  89. data/test/scss/media.scss +0 -50
  90. data/test/scss/padding.scss +0 -19
@@ -0,0 +1,9 @@
1
+ // Requirements
2
+ // ============
3
+
4
+ @import "susy";
5
+
6
+ $susy: (
7
+ columns: 12,
8
+ gutters: 1/4,
9
+ );
@@ -1,19 +1,15 @@
1
- stylesheet 'screen.scss', :media => "screen, projection"
2
- stylesheet '_base.scss'
1
+ description "Susy: custom Sass layouts. Your markup, your design, our math."
3
2
 
4
- description "Susy: a flexible static/fluid/elastic grid system native to compass."
3
+ discover :stylesheets
5
4
 
6
5
  help %Q{
7
- Please see the Susy website for all documentation and tutorials:
6
+ Full documentation and tutorials available online:
8
7
 
9
- http://www.oddbird.net/susy
8
+ http://susy.oddbird.net/
10
9
  }
11
10
 
12
11
  welcome_message %Q{
13
- Please see the Susy website for all documentation and tutorials:
12
+ Welcome to Susy! Check out the full documentation online:
14
13
 
15
- http://www.oddbird.net/susy
16
-
17
- To get started, set up your grid in the base partial by following the inline instructions.
14
+ http://susy.oddbird.net/
18
15
  }
19
-
@@ -0,0 +1,4 @@
1
+ // Screen
2
+ // ======
3
+
4
+ @import "grids";
metadata CHANGED
@@ -1,143 +1,138 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: susy
3
- version: !ruby/object:Gem::Version
4
- hash: 5
5
- prerelease:
6
- segments:
7
- - 1
8
- - 0
9
- - 9
10
- version: 1.0.9
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.14
11
5
  platform: ruby
12
- authors:
13
- - Eric Meyer
6
+ authors:
7
+ - Miriam Eric Suzanne
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2013-06-19 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- name: compass
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
26
17
  - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 43
29
- segments:
30
- - 0
31
- - 12
32
- - 2
33
- version: 0.12.2
18
+ - !ruby/object:Gem::Version
19
+ version: 3.3.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '3.5'
34
23
  type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: sass
38
24
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
40
- none: false
41
- requirements:
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
42
27
  - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 15
45
- segments:
46
- - 3
47
- - 2
48
- - 0
49
- version: 3.2.0
50
- type: :runtime
51
- version_requirements: *id002
52
- description: Susy grids are fluid on the inside, ready to respond at any moment, but contained in the candy shell of your choice, so they respond how and when and where you want them to. We don't design your site or dictate your markup, we just do the math and get out of your way.
53
- email: eric@oddbird.net
28
+ - !ruby/object:Gem::Version
29
+ version: 3.3.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '3.5'
33
+ description: Susy is a toolkit for building layouts of all types with a simple, natural
34
+ syntax.
35
+ email:
36
+ - miriam@oddbird.net
54
37
  executables: []
55
-
56
38
  extensions: []
57
-
58
- extra_rdoc_files:
59
- - CHANGELOG.mkdn
39
+ extra_rdoc_files:
40
+ - docs/changelog.rst
60
41
  - LICENSE.txt
61
42
  - README.md
62
43
  - lib/susy.rb
63
- files:
64
- - CHANGELOG.mkdn
44
+ files:
65
45
  - LICENSE.txt
66
- - Manifest
67
46
  - README.md
68
- - Rakefile
69
47
  - VERSION
48
+ - docs/changelog.rst
49
+ - lib/compass-susy.rb
70
50
  - lib/susy.rb
51
+ - sass/_su.scss
71
52
  - sass/_susy.scss
72
- - sass/susy/_background.scss
73
- - sass/susy/_functions.scss
74
- - sass/susy/_grid.scss
75
- - sass/susy/_isolation.scss
76
- - sass/susy/_margin.scss
77
- - sass/susy/_media.scss
78
- - sass/susy/_padding.scss
79
- - sass/susy/_settings.scss
80
- - sass/susy/_support.scss
81
- - sass/susy/_units.scss
82
- - susy.gemspec
83
- - templates/project/_base.scss
53
+ - sass/_susyone.scss
54
+ - sass/susy/_su.scss
55
+ - sass/susy/language/_susy.scss
56
+ - sass/susy/language/_susyone.scss
57
+ - sass/susy/language/susy/_background.scss
58
+ - sass/susy/language/susy/_bleed.scss
59
+ - sass/susy/language/susy/_box-sizing.scss
60
+ - sass/susy/language/susy/_breakpoint-plugin.scss
61
+ - sass/susy/language/susy/_container.scss
62
+ - sass/susy/language/susy/_context.scss
63
+ - sass/susy/language/susy/_gallery.scss
64
+ - sass/susy/language/susy/_grids.scss
65
+ - sass/susy/language/susy/_gutters.scss
66
+ - sass/susy/language/susy/_isolate.scss
67
+ - sass/susy/language/susy/_margins.scss
68
+ - sass/susy/language/susy/_padding.scss
69
+ - sass/susy/language/susy/_rows.scss
70
+ - sass/susy/language/susy/_settings.scss
71
+ - sass/susy/language/susy/_span.scss
72
+ - sass/susy/language/susy/_validation.scss
73
+ - sass/susy/language/susyone/_background.scss
74
+ - sass/susy/language/susyone/_functions.scss
75
+ - sass/susy/language/susyone/_grid.scss
76
+ - sass/susy/language/susyone/_isolation.scss
77
+ - sass/susy/language/susyone/_margin.scss
78
+ - sass/susy/language/susyone/_media.scss
79
+ - sass/susy/language/susyone/_padding.scss
80
+ - sass/susy/language/susyone/_settings.scss
81
+ - sass/susy/output/_float.scss
82
+ - sass/susy/output/_shared.scss
83
+ - sass/susy/output/_support.scss
84
+ - sass/susy/output/float/_container.scss
85
+ - sass/susy/output/float/_end.scss
86
+ - sass/susy/output/float/_isolate.scss
87
+ - sass/susy/output/float/_span.scss
88
+ - sass/susy/output/shared/_background.scss
89
+ - sass/susy/output/shared/_container.scss
90
+ - sass/susy/output/shared/_direction.scss
91
+ - sass/susy/output/shared/_inspect.scss
92
+ - sass/susy/output/shared/_margins.scss
93
+ - sass/susy/output/shared/_output.scss
94
+ - sass/susy/output/shared/_padding.scss
95
+ - sass/susy/output/support/_background.scss
96
+ - sass/susy/output/support/_box-sizing.scss
97
+ - sass/susy/output/support/_clearfix.scss
98
+ - sass/susy/output/support/_prefix.scss
99
+ - sass/susy/output/support/_rem.scss
100
+ - sass/susy/output/support/_support.scss
101
+ - sass/susy/su/_grid.scss
102
+ - sass/susy/su/_settings.scss
103
+ - sass/susy/su/_utilities.scss
104
+ - sass/susy/su/_validation.scss
105
+ - templates/project/_grids.scss
84
106
  - templates/project/manifest.rb
85
- - templates/project/screen.scss
86
- - test/config.rb
87
- - test/css/background.css
88
- - test/css/bleed.css
89
- - test/css/functions.css
90
- - test/css/grid.css
91
- - test/css/isolation.css
92
- - test/css/margin.css
93
- - test/css/media.css
94
- - test/css/padding.css
95
- - test/scss/background.scss
96
- - test/scss/bleed.scss
97
- - test/scss/functions.scss
98
- - test/scss/grid.scss
99
- - test/scss/isolation.scss
100
- - test/scss/margin.scss
101
- - test/scss/media.scss
102
- - test/scss/padding.scss
107
+ - templates/project/style.scss
103
108
  homepage: http://susy.oddbird.net/
104
- licenses: []
105
-
109
+ licenses:
110
+ - BSD-3-Clause
111
+ metadata: {}
106
112
  post_install_message:
107
- rdoc_options:
108
- - --line-numbers
109
- - --inline-source
110
- - --title
113
+ rdoc_options:
114
+ - "--line-numbers"
115
+ - "--inline-source"
116
+ - "--title"
111
117
  - Susy
112
- - --main
118
+ - "--main"
113
119
  - README.md
114
- require_paths:
120
+ require_paths:
115
121
  - lib
116
- required_ruby_version: !ruby/object:Gem::Requirement
117
- none: false
118
- requirements:
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
119
124
  - - ">="
120
- - !ruby/object:Gem::Version
121
- hash: 3
122
- segments:
123
- - 0
124
- version: "0"
125
- required_rubygems_version: !ruby/object:Gem::Requirement
126
- none: false
127
- requirements:
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ requirements:
128
129
  - - ">="
129
- - !ruby/object:Gem::Version
130
- hash: 11
131
- segments:
132
- - 1
133
- - 2
134
- version: "1.2"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.2'
135
132
  requirements: []
136
-
137
133
  rubyforge_project: susy
138
- rubygems_version: 1.8.24
134
+ rubygems_version: 2.6.12
139
135
  signing_key:
140
136
  specification_version: 3
141
- summary: Responsive grids for Compass.
137
+ summary: Responsive layout toolkit for Sass.
142
138
  test_files: []
143
-
data/CHANGELOG.mkdn DELETED
@@ -1,296 +0,0 @@
1
- Susy Changelog
2
- ==============
3
-
4
- v1.0.9 [June 19, 2013]
5
- ----------------------
6
-
7
- * Fix clearing with `isolate-grid` mixin.
8
- * Allow changing nth-selectors in `isolate-grid` mixin.
9
-
10
- v1.0.8 [March 25, 2013]
11
- -----------------------
12
-
13
- * Fix more edge mixed-unit conflicts with `container-style: static`.
14
-
15
- v1.0.7 [March 19, 2013]
16
- -----------------------
17
-
18
- * Fix edge-case where `$container-style` and `$container-width` cause conflict.
19
-
20
- v1.0.6 [March 18, 2013]
21
- -----------------------
22
-
23
- * Add `isolate` and `isolate-grid` mixins.
24
- * Add `bleed` mixin.
25
- * Add `$style` argument to grid mixins.
26
- * Fix documentation typos.
27
- * Switch from `#` to `*` in legacy-ie hacks.
28
-
29
- v1.0.5 [Nov 27, 2012]
30
- ---------------------
31
-
32
- * Add support for rem-units.
33
- * Clean-up quoted arguments.
34
- * Fix a few bugs related to the override settings.
35
-
36
- v1.0.4 [Nov 3, 2012]
37
- ---------------------
38
-
39
- * Fix bug in nested mixins that adjust support (e.g. `nth-omeg` inside `at-breakpoint`).
40
- * Remove non-ie experimental support in `at-breakpoint` ie-fallback output.
41
-
42
- v1.0.3 [Oct 20, 2012]
43
- ---------------------
44
-
45
- * Fix Compass dependencies.
46
-
47
- v1.0.2 [Oct 20, 2012]
48
- ---------------------
49
-
50
- * Fix a bug with `container-outer-width` ignoring `$columns` argument.
51
- * Turn off legacy-ie support inside CSS3 selectors (`nth-omega` etc).
52
-
53
- v1.0.1 [Sept 12, 2012]
54
- ----------------------
55
-
56
- * Fix a bug in the relationship between `$container-width` and `$border-box-sizing`,
57
- so that grid-padding is subtracted from the width in certain cases.
58
- * Reset right margin to `auto` rather than `0` with `remove-omega`.
59
-
60
- v1.0 [Aug 14, 2012]
61
- -------------------
62
-
63
- This release is loaded with new features, but don't let that fool you. Susy
64
- just became shockingly simple to use. See the [website][site] for details.
65
-
66
- The gem name has changed from `compass-susy-plugin` to `susy`.
67
- First uninstall the old gem, then install the new one.
68
- If you have both gems installed, you will get errors.
69
-
70
- [site]: http://susy.oddbird.net/
71
-
72
- Semantics:
73
-
74
- We re-arranged the code
75
- in order to make the syntax simpler and more consistent:
76
-
77
- * `$total-cols` is now `$total-columns`.
78
- * `$col-width` is now `$column-width`.
79
- * `$side-gutter-width` is now `$grid-padding`
80
- and gets applied directly to the grid container.
81
- * `un-column` & `reset-column` mixins have merged into `reset-columns`.
82
- * `columns` has been renamed `span-columns` to resolve the conflict with CSS3 columns.
83
- See other improvements to span-columns below.
84
-
85
- We also removed several bothersome requirements:
86
-
87
- * The `alpha` mixin is no longer needed. Ever.
88
- * The `omega` no longer takes a `$context` argument.
89
- * `full` has been removed entirely.
90
- Elements will be full-width by default.
91
- You can add `clear: both;` back in as needed.
92
- * `side-gutter()` is no longer needed.
93
- You can use the `$grid-padding` setting directly.
94
-
95
- Upgrade:
96
-
97
- That's all you need in order to upgrade from Susy 0.9.
98
-
99
- 1. Uninstall and re-install the gem.
100
- 2. Find and replace the semantic changes listed above.
101
-
102
- You're done! Stop worrying about all that "nested vs. root" bullshit,
103
- and start playing with the new toys!
104
-
105
- If you use the `$from` directional arguments
106
- directly in the `span-columns` mixin,
107
- there may be one more change to make.
108
- See below:
109
-
110
- New Features:
111
-
112
- * `span-columns` supports new features:
113
- - "omega" can be applied directly through the `$columns` argument.
114
- - Internal padding can be added through the `$padding` argument.
115
- - This pushes the `$from` argument from third position into fourth.
116
- * `at-breakpoint` allows you to change layouts at media breakpoints.
117
- * `container` accepts multiple media-layout combinations as a shortcut.
118
- * `layout` allows you to use a different layout at any time.
119
- * `with-grid-settings` allows you to change any or all grid settings.
120
- * `set-container-width` does what it says, without the other container code.
121
- * `$breakpoint-media-output`, `$breakpoint-ie-output`, and `$breakpoint-raw-output`
122
- settings help manage the different outputs from `at-breakpoint`
123
- when you have IE-overrides living in a file of their own.
124
- * `border-box-sizing` will apply the popular `* { box-sizing: border-box }`
125
- universal box-model fix, as well as changing the Susy `$border-box-model` setting for you,
126
- so Susy knows to adjust some math.
127
- * The `space()` function can be used anywhere you need column+gutter math.
128
- * `push`, `pull`, `pre`, `post`, and `squish` mixins help manage margins.
129
- * use the `nth-omega` mixin to set omega on any nth-child, nth-of-type,
130
- first, last, or only element.
131
- * `remove-omega` and `remove-nth-omega` will remove
132
- the omega-specific styles from an element.
133
- * `$container-width` will override the width of your container
134
- with any arbitrary length.
135
- * `$container-style` will override the type of grid container
136
- (magic, fluid, fixed, static, etc) to use.
137
-
138
- v0.9 [Apr 25 2011]
139
- ------------------
140
-
141
- Everything here is about simplicity. Susy has scaled back to it's most basic
142
- function: providing flexible grids. That is all.
143
-
144
- Deprecated:
145
-
146
- * The `susy/susy` import is deprecated in favor of simply importing `susy`.
147
- * The `show-grid` import is deprecated in favor of CSS3 gradient-based
148
- grid-images. You can now use the `susy-grid-background` mixin. See below.
149
-
150
- Removed:
151
-
152
- * Susy no longer imports all of compass.
153
- * Susy no longer establishes your baseline and no longer provides a reset.
154
- All of that is in the Compass core. You can (and should!) keep using them, but
155
- you will need to import them from compass.
156
-
157
- New:
158
-
159
- * Use the `susy-grid-background` mixin on any `container` to display the grid.
160
- This toggles on and off with the same controls that are used by the compass
161
- grid-background module.
162
-
163
- v0.9.beta.3 [Mar 16 2011]
164
- -------------------------
165
-
166
- Deprecated:
167
-
168
- * The `susy/reset` import has been deprecated in favor of the Compass core `compass/reset` import.
169
- * The `susy` mixin has been deprecated. If you plan to continue using vertical-rhythms, you should replace it with the `establish-baseline` mixin from the Compass Core.
170
-
171
- Removed:
172
-
173
- * The `vertical-rhythm` module has moved into compass core. The API remains the same, but if you were importing it directly, you will have to update that import. (`$px2em` was removed as part of this, but didn't make it into core).
174
- * The `defaults` template has been removed as 'out-of-scope'. This will not effect upgrading in any way, but new projects will not get a template with default styles.
175
-
176
- New Features:
177
-
178
- * Susy now supports RTL grids and bi-directional sites using the `$from-direction` variable (default: left) and an optional additional from-direction argument on all affected mixins. Thanks to @bangpound for the initial implementation.
179
- * Susy is now written in pure Sass! No extra Ruby functions included! Thanks to the Sass team for making it possible.
180
-
181
- v0.8.1 [Sep 24 2010]
182
- --------------------
183
-
184
- * Fixed typos in tutorial and `_defaults.scss`
185
-
186
- v0.8.0 [Aug 13 2010]
187
- --------------------
188
-
189
- Deprecated:
190
-
191
- * The `skip-link` was deprecated as it doesn't belong in Susy.
192
- * All the IE-specific mixins have been deprecated, along with the `$hacks` variable. Hacks are now used in the default mixins as per Compass.
193
- * The `hide` mixin was deprecated in favor of the Compass code `hide-text` mixin.
194
-
195
- Other Changes:
196
-
197
- * `inline-block-list` will be moved to the compass core soon. In preparation, I've cleaned it up some. You can now apply a padding of "0" to override previous padding arguments. You can also use `inline-block-list-container` and `inline-block-list-item` as you would with the Compass `horizontal-list` mixins.
198
- * The `$align` arguments have been removed from both the `susy` and `container` mixins. Text-alignment is no longer used or needed in achieving page centering. That was a cary-over from the IE5 Mac days.
199
- * The `container` mixin now uses the `pie-clearfix` compass mixin to avoid setting the overflow to hidden.
200
- * Default styles have been cleaned up to account for better font stacks and typography, html5 elements, vertically-rhythmed forms, expanded print styles, use of `@extend`, and overall simplification.
201
-
202
- v0.7.0 [Jun 01 2010]
203
- --------------------
204
-
205
- * updated documentation
206
-
207
- v0.7.0.rc2 [May 13 2010]
208
- ------------------------
209
-
210
- * Fixes a bug with grid.png and a typo in the readme. Nothing major here.
211
-
212
- v0.7.0.rc1 [May 12 2010]
213
- ------------------------
214
-
215
- * template cleanup & simplification - no more pushing CSSEdit comments, etc.
216
- * expanded base and defaults with better fonts & styles out-of-the-box
217
- * expanded readme documentation. This will expand out into a larger docs/tutorial site in the next week.
218
-
219
- v0.7.0.pre8 [Apr 20 2010]
220
- -------------------------
221
-
222
- * mostly syntax and gem cleanup
223
- * added `un-column` mixin to reset elements previously declared as columns.
224
- * added `rhythm` mixin as shortcut for leaders/trailers. accepts 4 args: leader, padding-leader, padding-trailer, trailer.
225
- * added a warning on `alpha` to remind you that `alpha` is not needed at nested levels.
226
-
227
- v0.7.0.pre7 [Apr 13 2010]
228
- -------------------------
229
-
230
- * *Requires HAML 3 and Compass 0.10.0.rc2*
231
- * Internal syntax switched to scss. This will have little or no effect on users. You can still use Susy with either (Sass/Scss) syntax.
232
- * `$default-rhythm-border-style` overrides default rhythm border styles
233
- * Better handling of sub-pixel rounding for IE6
234
-
235
- v0.7.0.pre6 [Mar 29 2010]
236
- -------------------------
237
-
238
- * Added `+h-borders()` shortcut for vertical_rhythm `+horizontal-borders()`
239
- * Fixed vertical rhythm font-size typo (thanks @oscarduignan)
240
- * Added to template styles, so susy is already in place from the start
241
-
242
- v0.7.0.pre5 [Mar 19 2010]
243
- -------------------------
244
-
245
- * Expanded and adjusted `_vertical_rhythm.sass` in ways that are not entirely backwards compatible. Check the file for details.
246
- * `_defaults.sass` is re-ordered from inline to block.
247
- * `:focus` defaults cleaned up.
248
- * README and docs updated.
249
-
250
- v0.7.0.pre4 [Jan 20 2010]
251
- -------------------------
252
-
253
- Update: pre2 was missing a file in the manifest. Use pre4.
254
-
255
- *Update:* Forgot to note one change: `+susy` is no longer assigned to the `body` tag, but instead at the top level of the document (not nested under anything).
256
-
257
- Warning: This update is not backwards compatible. We've changed some things. You'll have to change some things. Our changes were fairly major in cleaning up the code - yours will be minor and also clean up some code.
258
-
259
- Added:
260
-
261
- * new `_vertical_rhythm.sass` (thanks to Chris Eppstein) provides better establishing of the baseline grid, as well as mixins to help you manage it.
262
- * `!px2em` has replaced `px2em()` - see below.
263
-
264
- Removed:
265
-
266
- * `px2em()` has been removed and replaced with a simple variable `!px2em` which returns the size of one pixel relative to your basic em-height. Multiply against your desired px dimensions (i.e. `border-width = !px2em*5px` will output the em-equivalent of 5px).
267
- * `!base_font_size_px` and `!base_line_height_px` have been replaced with `!base_font_size` and `!base_line_height` which take advantage of sass's built-in unit handling.
268
- * `!grid_units` is not needed, as you can now declare your units directly in the other grid `_width` variables. Use any one type of units in declaring your grid. The units you use will be used in setting the container size.
269
-
270
- Once you've upgraded, before you compile your files, make these changes:
271
-
272
- * remove the "_px" from the font-size and line-height variables, and add "px" to their values.
273
- * remove the `!grid_units` variable and add units to your grid variable values.
274
- * find any uses of `px2em()` and replace them with something.
275
- * enjoy!
276
-
277
- v0.7.0.pre1 [Nov 30 2009]
278
- -------------------------
279
-
280
- Not a lot of new functionality here – it all moved over to Compass 0.10.0 – mostly just cleaning it up to match.
281
-
282
- * simplified the default styles and gave them their own project template (‘_defaults.sass’).
283
- * defaults not imported by ‘ie.sass’, as ‘ie.sass’ should be cascading on top of ‘screen.sass’ anyway
284
- * changed the syntax to match CSS and Compass (‘property:’ replaces ‘:property’)
285
- * added more inline documentation and brought tutorial up to date
286
- * moved CSS3 module over to Compass
287
- * import the compass HTML5 reset along with the normal reset by default (because Susy loves the future)
288
- * little internal management fixes and so on and so on…
289
-
290
- older…
291
- -------
292
-
293
- * not documented here.
294
- * check the commit log.
295
- * Susy was created.
296
-