zurb-foundation 4.0.5 → 4.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. data/.gitignore +1 -0
  2. data/Gemfile.lock +2 -2
  3. data/README.md +1 -0
  4. data/{CHANGELOG.md → docs/CHANGELOG.md} +63 -3
  5. data/docs/Gemfile +1 -0
  6. data/docs/Gemfile.lock +2 -0
  7. data/docs/_sidebar-components.html.erb +1 -0
  8. data/docs/_sidebar.html.erb +1 -0
  9. data/docs/changelog.html.erb +1 -205
  10. data/docs/components/alert-boxes.html.erb +1 -1
  11. data/docs/components/block-grid.html.erb +1 -1
  12. data/docs/components/breadcrumbs.html.erb +3 -3
  13. data/docs/components/button-groups.html.erb +1 -1
  14. data/docs/components/buttons.html.erb +1 -1
  15. data/docs/components/dropdown-buttons.html.erb +1 -1
  16. data/docs/components/dropdown.html.erb +1 -1
  17. data/docs/components/flex-video.html.erb +1 -1
  18. data/docs/components/forms.html.erb +1 -1
  19. data/docs/components/global.html.erb +92 -0
  20. data/docs/components/inline-lists.html.erb +1 -1
  21. data/docs/components/keystrokes.html.erb +2 -2
  22. data/docs/components/labels.html.erb +2 -2
  23. data/docs/components/orbit.html.erb +10 -2
  24. data/docs/components/pagination.html.erb +1 -1
  25. data/docs/components/panels.html.erb +1 -1
  26. data/docs/components/pricing-tables.html.erb +1 -1
  27. data/docs/components/progress-bars.html.erb +2 -2
  28. data/docs/components/section.html.erb +18 -0
  29. data/docs/components/side-nav.html.erb +1 -1
  30. data/docs/components/split-buttons.html.erb +1 -1
  31. data/docs/components/sub-nav.html.erb +1 -1
  32. data/docs/components/switch.html.erb +1 -1
  33. data/docs/components/thumbnails.html.erb +1 -1
  34. data/docs/components/top-bar.html.erb +5 -5
  35. data/docs/css/docs.scss +0 -1
  36. data/docs/layout.html.erb +2 -3
  37. data/docs/sass.html.erb +21 -14
  38. data/js/foundation/foundation.clearing.js +2 -0
  39. data/js/foundation/foundation.dropdown.js +10 -10
  40. data/js/foundation/foundation.joyride.js +9 -12
  41. data/js/foundation/foundation.js +28 -2
  42. data/js/foundation/foundation.orbit.js +17 -9
  43. data/js/foundation/foundation.reveal.js +6 -2
  44. data/js/foundation/foundation.section.js +30 -18
  45. data/js/foundation/foundation.topbar.js +18 -8
  46. data/lib/foundation/generators/USAGE +6 -5
  47. data/lib/foundation/generators/install_generator.rb +9 -9
  48. data/lib/foundation/generators/templates/application.html.erb +40 -37
  49. data/lib/foundation/generators/templates/application.html.haml +5 -2
  50. data/lib/foundation/generators/templates/application.html.slim +6 -5
  51. data/lib/foundation/version.rb +1 -1
  52. data/scss/foundation/_foundation-global.scss +19 -4
  53. data/scss/foundation/components/_alert-boxes.scss +1 -1
  54. data/scss/foundation/components/_breadcrumbs.scss +4 -4
  55. data/scss/foundation/components/_button-groups.scss +8 -8
  56. data/scss/foundation/components/_buttons.scss +4 -3
  57. data/scss/foundation/components/_custom-forms.scss +175 -171
  58. data/scss/foundation/components/_dropdown-buttons.scss +1 -1
  59. data/scss/foundation/components/_dropdown.scss +1 -1
  60. data/scss/foundation/components/_flex-video.scss +1 -1
  61. data/scss/foundation/components/_forms.scss +91 -89
  62. data/scss/foundation/components/_global.scss +7 -2
  63. data/scss/foundation/components/_grid.scss +3 -3
  64. data/scss/foundation/components/_inline-lists.scss +1 -1
  65. data/scss/foundation/components/_keystrokes.scss +2 -2
  66. data/scss/foundation/components/_labels.scss +3 -3
  67. data/scss/foundation/components/_magellan.scss +1 -1
  68. data/scss/foundation/components/_pagination.scss +1 -1
  69. data/scss/foundation/components/_panels.scss +1 -1
  70. data/scss/foundation/components/_pricing-tables.scss +1 -1
  71. data/scss/foundation/components/_progress-bars.scss +2 -2
  72. data/scss/foundation/components/_reveal.scss +1 -1
  73. data/scss/foundation/components/_section.scss +1 -1
  74. data/scss/foundation/components/_side-nav.scss +1 -1
  75. data/scss/foundation/components/_split-buttons.scss +1 -1
  76. data/scss/foundation/components/_sub-nav.scss +1 -1
  77. data/scss/foundation/components/_switch.scss +3 -3
  78. data/scss/foundation/components/_thumbs.scss +1 -1
  79. data/scss/foundation/components/_top-bar.scss +4 -1
  80. data/scss/foundation/components/_visibility.scss +273 -274
  81. data/templates/project/scss/_settings.scss +4 -4
  82. data/templates/project/scss/app.scss +8 -8
  83. data/templates/upgrade/manifest.rb +7 -12
  84. metadata +6 -6
  85. data/index.html +0 -113
data/.gitignore CHANGED
@@ -11,6 +11,7 @@ lib/bundler/man
11
11
  pkg
12
12
  rdoc
13
13
  spec/reports
14
+ test/
14
15
  test/tmp
15
16
  test/version_tmp
16
17
  test/css
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- zurb-foundation (4.0.5)
4
+ zurb-foundation (4.0.7)
5
5
  sass (>= 3.2.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  rake (10.0.3)
11
- sass (3.2.6)
11
+ sass (3.2.7)
12
12
 
13
13
  PLATFORMS
14
14
  ruby
data/README.md CHANGED
@@ -35,6 +35,7 @@ WordPress
35
35
  * [WP-Foundation](http://320press.com/wp-foundation/features/) by 320press
36
36
  * [Yeti](https://github.com/modlearning/Yeti) by Modular Learning
37
37
  * [Foundation](https://github.com/drewsymo/Foundation) by Drewsymo
38
+ * [required+ Themes](http://themes.required.ch/) by required+
38
39
 
39
40
  Joomla
40
41
 
@@ -1,8 +1,26 @@
1
- # Changelog
1
+ ### 4.0.7- March 14, 2013
2
+ * Fixed problem with buggy pull request that made radius buttons look like ovals, sorry.
3
+
4
+ You can compare the commits [here](https://github.com/zurb/foundation/compare/v4.0.6...v4.0.7).
5
+
6
+ ---
7
+
8
+ ### 4.0.6- March 14, 2013 (Yanked)
9
+ * Added modular HTML class variables to control whether or no those classes come through into your CSS.
10
+ * Changed global font size defaults to 100% to let browsers use their default zooming.
11
+ * Fixed bugs with top-bar bottom margin variables.
12
+ * Bug fixes for Reveal click event propigation.
13
+ * Bug fixes in the Dropdown plugins for positioning.
14
+ * Removed duplicate binding in sections.
15
+ * Changes all references to `$button-radius` to `$global-radius` to fix customizer blank css files.
16
+ * Updated customizer with better groupings in the checkbox section.
17
+ * Added data-options support to Orbit.
18
+
19
+ You can compare the commits [here](https://github.com/zurb/foundation/compare/v4.0.5...v4.0.6).
20
+
2
21
  ---
3
22
 
4
23
  ### 4.0.5- March 8, 2013
5
- We're currently working on patch fixes for various parts of Foundation. We'll add to this list as we go up until release.
6
24
  * Custom classes added to custom forms now carry through to JS.
7
25
  * Added `.horizontal-nav` to `foundation.section.js`.
8
26
  * Fixed variables that weren't being inherited properly.
@@ -24,35 +42,55 @@ We're currently working on patch fixes for various parts of Foundation. We'll ad
24
42
  * Fixed bug with custom checkboxes not clickable from the `<span>`.
25
43
  * Added docs about using Sass standalone with Foundation.
26
44
 
27
- You can compare the commits [here](https://github.com/zurb/foundation/compare/v4.0.4...master).
45
+ You can compare the commits [here](https://github.com/zurb/foundation/compare/v4.0.4...v4.0.5).
46
+
47
+ ---
28
48
 
29
49
  ### 4.0.4
30
50
  This patch fixes various bugs that have been submitted since release. We'll be more specific with changelog updates going forward.
31
51
 
52
+ ---
53
+
32
54
  ### 4.0.3
33
55
  Bug fixes
34
56
 
57
+ ---
58
+
35
59
  ### 4.0.2
36
60
  Bug fixes
37
61
 
62
+ ---
63
+
38
64
  ### 4.0.1
39
65
  Bug fixes
40
66
 
67
+ ---
68
+
41
69
  ### **4.0**- February 28, 2013
42
70
  Initial launch of Foundation 4, a rewritten, mobile-first implementation of the framework. Major enhancements include a mobile-first approach across the board, Scss tools to allow for all-semantic coding, and rewritten JS plugins for speed and ease of use. Marketing site updates, new docs, refined and simplified styles and more. Review the [migration guide](http://foundation.zurb.com/migration.php) for more information.
43
71
 
72
+ ---
73
+
44
74
  ### 3.2.5
45
75
  Bug fixes
46
76
 
77
+ ---
78
+
47
79
  ### 3.2.4
48
80
  Bug fixes
49
81
 
82
+ ---
83
+
50
84
  ### 3.2.3
51
85
  Bug fixes
52
86
 
87
+ ---
88
+
53
89
  ### 3.2.2- November 10, 2012
54
90
  This patch fixes a typo found in the tabs plugin.
55
91
 
92
+ ---
93
+
56
94
  ### 3.2.1- November 9, 2012
57
95
  This patch include bug fixes for various elements, such as:
58
96
  * Adding a missing line for mqueries.scss into app.scss
@@ -65,6 +103,8 @@ This patch include bug fixes for various elements, such as:
65
103
  * Removed deep linking hashes from tabs
66
104
  * Topbar now resets on close for small layouts
67
105
 
106
+ ---
107
+
68
108
  ### **3.2**- October 26, 2012
69
109
  With this update we've revamped our documentation to be more organized and explain details regarding Scss, Compass and Javascripts.
70
110
 
@@ -91,9 +131,13 @@ The updates to Foundation itself are as follows:
91
131
  * Bug fixes for Topbar.
92
132
  * Added 5 [HTML templates](http://foundation.zurb.com/templates.php) to the add-ons section.
93
133
 
134
+ ---
135
+
94
136
  ### 3.1.1- September 19, 2012
95
137
  Updating Top Bar navigation implementation pattern to wrap `.contain-to-grid` and/or `.fixed` around the `nav` element to prevent horizontal scroll bars when using `.contain-to-grid`. Updated the topBar breakpoint option so users only need to update the Scss variable.
96
138
 
139
+ ---
140
+
97
141
  ### **3.1**- September 14, 2012
98
142
  Launched new features, a new Add-ons section to the marketing site, Right to left language support, and fixed bugs.
99
143
 
@@ -107,23 +151,35 @@ With this release of Foundation, we include:
107
151
  * Orbit thumbnail documentation.
108
152
  * Better Reveal size documentation.
109
153
 
154
+ ---
155
+
110
156
  ### 3.0.9- August 14, 2012
111
157
  Bug fixes and locking down dependencies.
112
158
 
159
+ ---
160
+
113
161
  ### 3.0.8- August 10, 2012
114
162
  Numerous bugfixes. Added media query toggle plugin. Removed marketing site from repository and included a new `test/` directory to help contributors test patches.
115
163
 
116
164
  New features: Media Query Toggler, block-grid mobile layouts, font-size customizer options and included modular scale gem as dependancy for SCSS version.
117
165
 
166
+ ---
167
+
118
168
  ### 3.0.7- July 30, 2012
119
169
  Numerous JS bug fixes, added generators for Rails and refactored SCSS directory for better maintainability and scalability over time. CSS files weren't affected by this refactoring.
120
170
 
171
+ ---
172
+
121
173
  ### 3.0.6- July 20, 2012
122
174
  Numerous bugfixes including dropdown buttons on touch devices, Modernizr update with IE8Compat, split button colors, and more. Split out the functions in app.js to be part of the Gem and only initialized in app.js, so you can keep a clean distinction between your JS and Foundation's (if you want to). Added an [accordion](http://foundation.zurb.com/elements.php) element.
123
175
 
176
+ ---
177
+
124
178
  ### 3.0.5- July 10, 2012
125
179
  Fixed Compass performance issues by separating out each Foundation file and removing extraneous imports.
126
180
 
181
+ ---
182
+
127
183
  ### 3.0.4- July 6, 2012
128
184
  Fixed a number of bugs around the Sass/Gem installs and documentation. Some smaller items:
129
185
  * Fixed a bug with dropdown buttons to allow clicking on their anchors again.
@@ -132,8 +188,12 @@ Fixed a number of bugs around the Sass/Gem installs and documentation. Some smal
132
188
  * Flyouts in a nav bar can now expand up as well as down.
133
189
  * In SCSS you can now set $base-size correctly, but we're still working to correct modifying the $ratio variable.
134
190
 
191
+ ---
192
+
135
193
  ### 3.0.1 to 3.0.3- July 2 to July 4, 2012
136
194
  Various bug fixes with the downloader, gem, and Sass install.
137
195
 
196
+ ---
197
+
138
198
  ### **3.0**- June 30, 2012
139
199
  Initial launch of Foundation 3, deprecating Foundation 2.2.1. Major enhancements include Sass/SCSS development, new grid system with box-sizing: border-box, new form styles, new UI elements, retooled download and install options, new docs, new marketing site.
@@ -1,5 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ gem 'redcarpet'
3
4
  gem 'sprockets'
4
5
  gem 'foreman'
5
6
  gem 'stasis'
@@ -11,6 +11,7 @@ GEM
11
11
  libv8 (3.3.10.4)
12
12
  multi_json (1.6.1)
13
13
  rack (1.5.2)
14
+ redcarpet (2.2.2)
14
15
  sass (3.2.6)
15
16
  slop (3.3.2)
16
17
  sprockets (2.9.0)
@@ -36,6 +37,7 @@ PLATFORMS
36
37
  DEPENDENCIES
37
38
  coderay
38
39
  foreman
40
+ redcarpet
39
41
  sass
40
42
  sprockets
41
43
  stasis
@@ -69,6 +69,7 @@
69
69
  <p class="title"><a href="#">CSS Components</a></p>
70
70
  <div class="content">
71
71
  <ul class="side-nav">
72
+ <li><a class="<%= @page_title == 'Global' ? 'active': '' %>" href="global.html">Global Styles</a></li>
72
73
  <li><a class="<%= @page_title == 'Alert Boxes' ? 'active': '' %>" href="alert-boxes.html">Alert Boxes</a></li>
73
74
  <li><a class="<%= @page_title == 'Panels' ? 'active': '' %>" href="panels.html">Panels</a></li>
74
75
  <li><a class="<%= @page_title == 'Pricing Tables' ? 'active': '' %>" href="pricing-tables.html">Pricing Tables</a></li>
@@ -69,6 +69,7 @@
69
69
  <p class="title"><a href="#">CSS Components</a></p>
70
70
  <div class="content">
71
71
  <ul class="side-nav">
72
+ <li><a href="components/global.html">Global Styles</a></li>
72
73
  <li><a href="components/panels.html">Panels</a></li>
73
74
  <li><a href="components/pricing-tables.html">Pricing Tables</a></li>
74
75
  <li><a href="components/progress-bars.html">Progress Bars</a></li>
@@ -10,211 +10,7 @@
10
10
 
11
11
  <h4 class="subheader">We'll keep you up to date with what we've released so you at least have a gist of what goes into each update. For the most part, we'll try to list things out as detailed as we see necessary.</h4>
12
12
 
13
- <hr>
14
-
15
- <h5>4.0.5&mdash; March 8, 2013</h5>
16
- <p>We're currently working on patch fixes for various parts of Foundation. We'll add to this list as we go up until release.</p>
17
- <ul class="disc">
18
- <li>Custom classes added to custom forms now carry through to JS.</li>
19
- <li>Added <kbd>.horizontal-nav</kbd> to <kbd>foundation.section.js</kbd>.</li>
20
- <li>Fixed variables that weren't being inherited properly.</li>
21
- <li>Fixed a joyride mobile background issue.</li>
22
- <li>Updated Reveal docs to match 4.0.4 functionality.</li>
23
- <li>Updated to Zepto 1.0.</li>
24
- <li>Fixed bugs with visibility classes.</li>
25
- <li>Updated block-grid nth-of-type clear fix so that it actually works.</li>
26
- <li>All size block grids now have the same spacing.</li>
27
- <li>Made images <kbd>display: inline-block</kbd> by default to remove gap and not screw up layouts.</li>
28
- <li>Progress bars respect their color variables instead of global.</li>
29
- <li>Added variable for progress bar background color.</li>
30
- <li>Fixed inconsistency between side margins on unordered and ordered lists.</li>
31
- <li>Made it so you can set <kbd>custom_back_text</kbd> variable in top-bar to control if the back link is generic or specific.</li>
32
- <li>Updated visibility classes to work properly with table display properties.</li>
33
- <li>Helper classes like <kbd>.right, .left</kbd> now have <kbd>!important</kbd> so they don't get overriden on accident.</li>
34
- <li>Added a page to the docs that explains our use of <a href="http://foundation.zurb.com/docs/media-queries.html">media queries</a>.</li>
35
- <li>Removed default outline on a:focus elements that normalize adds.</li>
36
- <li>Fixed bug with custom checkboxes not clickable from the <kbd>&lt;span&gt;</kbd>.</li>
37
- <li>Added docs about using Sass standalone with Foundation.</li>
38
- </ul>
39
- <p>You can compare the commits <a href="https://github.com/zurb/foundation/compare/v4.0.4...master">here</a>.</p>
40
-
41
- <hr>
42
-
43
- <h5>4.0.4</h5>
44
- <p>This patch fixes various bugs that have been submitted since release. We'll be more specific with changelog updates going forward.</p>
45
-
46
- <hr>
47
-
48
- <h5>4.0.3</h5>
49
- <p>Bug fixes.</p>
50
-
51
- <hr>
52
-
53
- <h5>4.0.2</h5>
54
- <p>Bug fixes.</p>
55
-
56
- <hr>
57
-
58
- <h5>4.0.1</h5>
59
- <p>This patch fixes a few quick bugs.</p>
60
-
61
- <hr>
62
-
63
- <h5><strong>4.0</strong> &mdash; Feburary 28, 2013</h5>
64
- <p>Initial launch of Foundation 4, a rewritten, mobile-first implementation of the framework. Major enhancements include a mobile-first approach across the board, Scss tools to allow for all-semantic coding, and rewritten JS plugins for speed and ease of use. Marketing site updates, new docs, refined and simplified styles and more. Review the <a href="http://foundation.zurb.com/migration.php">migration guide</a> for more information.</p>
65
-
66
- <hr>
67
-
68
- <h5>3.2.5 &mdash; January 26, 2013</h5>
69
- <p>This patch fixes compatability with jQuery 1.9. This patch includes:</p>
70
- <ul class="disc">
71
- <li>Bumped Topbar to 2.04 and removed deprecated jQuery die() and live() events.</li>
72
- <li>Fixed magellan destination undefined error.</li>
73
- <li>Add Clearing and Joyride to SCSS project templates.</li>
74
- </ul>
75
-
76
- <hr>
77
-
78
- <h5>3.2.4 &mdash; January 14, 2013</h5>
79
- <p>This patch includes bug fixes and a few style improvements for small UI elements. This patch includes:</p>
80
- <ul class="disc">
81
- <li>Bumped Joyride to version 2.0.3</li>
82
- <li>Added centered pagination style</li>
83
- <li>Fixed bug with Orbit captions</li>
84
- <li>Fixed bugs with clicking on accordion element</li>
85
- <li>Added styling for buttons inside dropdowns</li>
86
- <li>We're now using max-width instead of width on tooltips</li>
87
- <li>Added class, .tip-centered-top and .top-centered-bottom for positioning tooltips</li>
88
- <li>Added functionality to create a stick top bar that enables it to be down the page in the markup and stick when it hits the browser edge.</li>
89
- <li>Fixes to the semantic grid mixin</li>
90
- <li>Added better :focus styles for error inputs</li>
91
- <li>Added settings for Top Bar Toggle color</li>
92
- <li>Updated Modular Scale to version 1.0.6</li>
93
- <li>Fixed bug with printing styles</li>
94
- </ul>
95
-
96
- <hr>
97
-
98
- <h5>3.2.3</h5>
99
- <p>This patch fixes a few quick bugs.</p>
100
-
101
- <hr>
102
-
103
- <h5>3.2.2 &mdash; November 10, 2012</h5>
104
- <p>This patch fixes a typo found in the tabs plugin.</p>
105
-
106
- <hr>
107
-
108
- <h5>3.2.1 &mdash; November 9, 2012</h5>
109
- <p>This patch include bug fixes for various elements, such as:</p>
110
- <ul class="disc">
111
- <li>Adding a missing line for mqueries.scss into app.scss</li>
112
- <li>Height of fixed magellan element</li>
113
- <li>Update viewport tag with initial-scale</li>
114
- <li>Dropdown button fixes</li>
115
- <li>Clearing bug fixes</li>
116
- <li>Added a font-smoothing variable</li>
117
- <li>Added close support to accordions</li>
118
- <li>Removed deep linking hashes from tabs</li>
119
- <li>Topbar now resets on close for small layouts</li>
120
- </ul>
121
-
122
- <hr>
123
-
124
- <h5><strong>3.2</strong> &mdash; October 26, 2012</h5>
125
- <p>With this update we've revamped our documentation to be more organized and explain details regarding Scss, Compass and Javascripts.</p>
126
-
127
- <p>The updates to Foundation itself are as follows:</p>
128
- <ul class="disc">
129
- <li>Added <a href="components/magellan.html">Magellan</a>, a plugin for building design agnostic sticky navs that know where you are on the page.</li>
130
- <li>Added <a href="components/joyride.html">Joyride</a>, our plugin for creating tours of your website or app.</li>
131
- <li>Added <a href="components/clearing.html">Clearing</a>, our new responsive image gallery lightbox plugin.</li>
132
- <li>Cleaned up Orbit a bit. We now use opacity on each slide so you don't have stacking problems or different image size problems. You can now optionally stack slides on mobile. Orbit can now be swipable on mobile as well.</li>
133
- <li>Updated Reveal</li>
134
- <li>Updated index files to use defined header and footer structure</li>
135
- <li>Cleaned up some Compass included</li>
136
- <li>RTL for ui and navbar.</li>
137
- <li>Tabs can now use unordered lists or definition lists, replacing the definition title with an li.section-title.</li>
138
- <li>Added definition list styles.</li>
139
- <li>Added mobile-#-up classes to use in conjunction with regular block-grid classes for a different mobile grid.</li>
140
- <li>Updated block grids to be really flexible and customizable based on a variable.</li>
141
- <li>Added better responsive styling for tooltips.</li>
142
- <li>Separated all media queries into their own file for easy droppping.</li>
143
- <li>Updated modular scale to use new functions, doesn't effect end-users.</li>
144
- <li>Updated visibility classes to use inherit instead of block to accomodate for spans.</li>
145
- <li>Removed HTML5 Shiv from header since its included in modernizr.</li>
146
- <li>Added <a href="components/pricing-tables.html">pricing tables</a> UI element</li>
147
- <li>Added many new Scss variables to control styling for things like: topbar, clearing, joyride, pricint tables, etc.</li>
148
- <li>Bug fixes for Topbar.</li>
149
- <li>Added 5 <a href="http://foundation.zurb.com/templates.php">HTML templates</a> to the add-ons section.</li>
150
- </ul>
151
-
152
- <hr>
153
-
154
- <h5>3.1.1 &mdash; September 19, 2012</h5>
155
- <p>Updating Top Bar navigation implementation pattern to wrap <code>.contain-to-grid</code> and/or <code>.fixed</code> around the <code>nav</code> element to prevent horizontal scroll bars when using <code>.contain-to-grid</code>. Updated the topBar breakpoint option so users only need to update the Scss variable.</p>
156
-
157
- <hr>
158
-
159
- <h5><strong>3.1</strong> &mdash; September 14, 2012</h5>
160
- <p>Launched new features, a new Add-ons section to the marketing site, Right to left language support, and fixed bugs.</p>
161
- <p>With this release of Foundation, we include:</p>
162
- <ul class="disc" style="list-style: outside;">
163
- <li>Downloadable HTML template pages that can be copy/pasted into an existing project or added to your project upon downloading from the customizer.</li>
164
- <li>The Add-on's section includes a round-up of all the playground pieces, etc that aren't officially included in Foundation, but built to work with it. This includes: <a href="http://foundation.zurb.com/templates.php">Templates</a>, <a href="http://www.zurb.com/playground/foundation-icons">Icon Fonts</a>, <a href="http://www.zurb.com/playground/off-canvas-layouts">Off-Canvas Layouts</a>, <a href="http://www.zurb.com/playground/responsive-tables">Responsive Tables</a>, <a href="http://www.zurb.com/playground/social-webicons">SVG Social Icons</a>, and <a href="http://www.zurb.com/playground/foundation-stencil-sets">Omnigraffle Stencils</a>.</li>
165
- <li>Foundation now includes a <a href="components/top-bar.html">responsive top navigation</a> bar that lets you have control over when it responds and what you include in it. We've made it really easy to customize using Scss.</li>
166
- <li>Right-to-left language support straight out of the box. You can adjust this in the settings.scss file or upon downloading with the customizer.</li>
167
- <li>New UI Styles for Progress Bars and Image Thumbs.</li>
168
- <li>Updated to include jQuery 1.8.1</li>
169
- <li>Orbit thumbnail documentation.</li>
170
- <li>Better Reveal size documentation.</li>
171
- </ul>
172
-
173
- <hr>
174
-
175
- <h5>3.0.9 &mdash; August 14, 2012</h5>
176
- <p>Bug fixes and locking down dependencies.</p>
177
-
178
- <hr>
179
-
180
- <h5>3.0.8 &mdash; August 10, 2012</h5>
181
- <p>Numerous bugfixes. Added media query toggle plugin. Removed marketing site from repository and included a new <strong>test/</strong> directory to help contributors test patches.</p>
182
- <p>New features: Media Query Toggler, block-grid mobile layouts, font-size customizer options and included modular scale gem as dependancy for SCSS version.</p>
183
-
184
- <h5>3.0.7 &mdash; July 30, 2012</h5>
185
- <p>Numerous JS bug fixes, added generators for Rails and refactored SCSS directory for better maintainability and scalability over time. CSS files weren't affected by this refactoring.</p>
186
-
187
- <hr>
188
-
189
- <h5>3.0.6 &mdash; July 20, 2012</h5>
190
- <p>Numerous bugfixes including dropdown buttons on touch devices, Modernizr update with IE8Compat, split button colors, and more. Split out the functions in app.js to be part of the Gem and only initialized in app.js, so you can keep a clean distinction between your JS and Foundation's (if you want to). Added an accordion element.</p>
191
-
192
- <hr>
193
-
194
- <h5>3.0.5 &mdash; July 10, 2012</h5>
195
- <p>Fixed Compass performance issues by separating out each Foundation file and removing extraneous imports.</p>
196
-
197
- <hr>
198
-
199
- <h5>3.0.4 &mdash; July 6, 2012</h5>
200
- <p>Fixed a number of bugs around the Sass/Gem installs and documentation. Some smaller items:</p>
201
- <ul class="disc" style="list-style: outside;">
202
- <li>Fixed a bug with dropdown buttons to allow clicking on their anchors again.</li>
203
- <li>Added styles for HTML5 (and other) input styles, not just text.</li>
204
- <li>Added error states back to the forms documentation.</li>
205
- <li>Flyouts in a nav bar can now expand up as well as down.</li>
206
- <li>In SCSS you can now set $base-size correctly, but we're still working to correct modifying the $ratio variable.</li>
207
- </ul>
208
-
209
- <hr>
210
-
211
- <h5>3.0.1 to 3.0.3 &mdash; July 2 to July 4</h5>
212
- <p>Various bug fixes with the downloader, gem, and Sass install.</p>
213
-
214
- <hr>
215
-
216
- <h5><strong>3.0</strong> &mdash; June 30, 2012</h5>
217
- <p>Initial launch of Foundation 3, deprecating Foundation 2.2.1. Major enhancements include Sass/SCSS development, new grid system with box-sizing: border-box, new form styles, new UI elements, retooled download and install options, new docs, new marketing site.</p>
13
+ <%= render 'CHANGELOG.md' %>
218
14
 
219
15
  <hr>
220
16
 
@@ -51,7 +51,7 @@
51
51
  <p>We've included SCSS mixins used to style alert boxes. To use these mixins, you'll need to have the <a href="../sass.html">extension installed</a> or grab <a href="https://github.com/zurb/foundation/blob/master/scss/foundation/_foundation-global.scss">_foundation-global.scss</a>, <a href="https://github.com/zurb/foundation/blob/master/scss/foundation/components/_global.scss">_global.scss</a> and <a href="https://github.com/zurb/foundation/blob/master/scss/foundation/components/_alert-boxes.scss">_alert-boxes.scss</a> from Github and throw them into a Foundation folder in your project directory. From there, you can import the files at the top of your own SCSS stylesheet, like so:</p>
52
52
 
53
53
  <%= code_example '
54
- @import "foundation/foundation-global", "foundation/alerts";
54
+ @import "foundation/foundation-global", "foundation/components/global", "foundation/components/alerts";
55
55
  ', :css %>
56
56
 
57
57
  <p>If you are using the mixins, you may include the styles on whatever class or ID you'd like, just make sure you follow our markup structure:</p>