zurb-foundation 3.2.5 → 4.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -2
- data/CHANGELOG.md +1 -26
- data/CONTRIBUTING.md +18 -0
- data/Gemfile.lock +19 -0
- data/Gruntfile.js +27 -0
- data/README.md +5 -6
- data/{Capfile → docs/Capfile} +0 -1
- data/docs/Gemfile +8 -0
- data/docs/Gemfile.lock +43 -0
- data/docs/Procfile +2 -0
- data/docs/README.md +1 -0
- data/docs/_sidebar-components.html.erb +109 -0
- data/docs/_sidebar.html.erb +109 -0
- data/docs/_zurb-jobs.html.erb +5 -0
- data/docs/changelog.html.erb +185 -0
- data/docs/compile.rb +43 -0
- data/docs/components/alert-boxes.html.erb +202 -0
- data/docs/components/block-grid.html.erb +118 -0
- data/docs/components/breadcrumbs.html.erb +146 -0
- data/docs/components/button-groups.html.erb +174 -0
- data/docs/components/buttons.html.erb +220 -0
- data/docs/components/clearing.html.erb +152 -0
- data/docs/components/custom-forms.html.erb +306 -0
- data/docs/components/dropdown-buttons.html.erb +233 -0
- data/docs/components/dropdown.html.erb +186 -0
- data/docs/components/flex-video.html.erb +93 -0
- data/docs/components/forms.html.erb +468 -0
- data/docs/components/grid.html.erb +355 -0
- data/docs/components/inline-lists.html.erb +89 -0
- data/docs/components/joyride.html.erb +178 -0
- data/docs/components/keystrokes.html.erb +74 -0
- data/docs/components/labels.html.erb +98 -0
- data/docs/components/magellan.html.erb +84 -0
- data/docs/components/orbit.html.erb +262 -0
- data/docs/components/pagination.html.erb +181 -0
- data/docs/components/panels.html.erb +121 -0
- data/docs/components/pricing-tables.html.erb +154 -0
- data/docs/components/progress-bars.html.erb +120 -0
- data/docs/components/reveal.html.erb +147 -0
- data/docs/components/section.html.erb +156 -0
- data/docs/components/side-nav.html.erb +122 -0
- data/docs/components/split-buttons.html.erb +218 -0
- data/docs/components/sub-nav.html.erb +120 -0
- data/docs/components/switch.html.erb +288 -0
- data/docs/components/tables.html.erb +123 -0
- data/docs/components/thumbnails.html.erb +87 -0
- data/docs/components/tooltips.html.erb +73 -0
- data/docs/components/top-bar.html.erb +219 -0
- data/docs/components/type.html.erb +359 -0
- data/docs/components/visibility.html.erb +102 -0
- data/docs/config.ru +12 -0
- data/docs/config/deploy.rb +33 -0
- data/docs/controller.rb +43 -0
- data/docs/css/_coderay.scss +116 -0
- data/docs/css/_settings.scss +1 -0
- data/docs/css/docs.scss +174 -0
- data/docs/css/normalize.scss +396 -0
- data/docs/css/qunit-composite.css +13 -0
- data/docs/css/qunit.css +235 -0
- data/docs/faq.html.erb +61 -0
- data/docs/img/demos/demo1-th.png +0 -0
- data/docs/img/demos/demo1.png +0 -0
- data/docs/img/demos/demo2-th.png +0 -0
- data/docs/img/demos/demo2.png +0 -0
- data/docs/img/demos/demo3-th.png +0 -0
- data/docs/img/demos/demo3.png +0 -0
- data/docs/img/demos/demo4-th.png +0 -0
- data/docs/img/demos/demo4.png +0 -0
- data/docs/img/demos/demo5-th.png +0 -0
- data/docs/img/demos/demo5.png +0 -0
- data/docs/index.html.erb +299 -0
- data/docs/javascript.html.erb +133 -0
- data/docs/js/docs.js +3 -0
- data/docs/js/qunit-composite.js +105 -0
- data/docs/js/qunit.js +1977 -0
- data/docs/js/tests/tabs/simple_tabs.html +57 -0
- data/docs/js/tests/tabs/simple_tabs.js +54 -0
- data/docs/js/tests/tooltips/tooltips.html +39 -0
- data/docs/js/tests/tooltips/tooltips.js +11 -0
- data/docs/layout.html.erb +99 -0
- data/docs/rails.html.erb +66 -0
- data/docs/sass.html.erb +299 -0
- data/docs/support.html.erb +134 -0
- data/foundation.gemspec +2 -4
- data/index.html +3 -23
- data/js/foundation/foundation.alerts.js +50 -0
- data/js/foundation/foundation.clearing.js +478 -0
- data/{vendor/assets/javascripts/foundation/jquery.cookie.js → js/foundation/foundation.cookie.js} +3 -1
- data/js/foundation/foundation.dropdown.js +122 -0
- data/js/foundation/foundation.forms.js +403 -0
- data/js/foundation/foundation.joyride.js +613 -0
- data/js/foundation/foundation.js +331 -0
- data/js/foundation/foundation.magellan.js +130 -0
- data/js/foundation/foundation.orbit.js +355 -0
- data/{vendor/assets/javascripts/foundation/jquery.placeholder.js → js/foundation/foundation.placeholder.js} +4 -2
- data/js/foundation/foundation.reveal.js +264 -0
- data/js/foundation/foundation.section.js +180 -0
- data/js/foundation/foundation.tooltips.js +195 -0
- data/js/foundation/foundation.topbar.js +187 -0
- data/js/foundation/index.js +16 -0
- data/{vendor/assets/javascripts/foundation/modernizr.foundation.js → js/vendor/custom.modernizr.js} +0 -0
- data/js/vendor/jquery.js +9597 -0
- data/js/vendor/zepto.js +1782 -0
- data/lib/foundation/engine.rb +8 -1
- data/lib/foundation/generators/install_generator.rb +24 -1
- data/lib/foundation/generators/templates/application.html.erb +20 -6
- data/lib/foundation/generators/templates/application.html.haml +2 -6
- data/lib/foundation/generators/templates/application.html.slim +2 -5
- data/lib/foundation/version.rb +1 -1
- data/lib/zurb-foundation.rb +7 -9
- data/package.json +9 -0
- data/scss/foundation.scss +42 -15
- data/scss/foundation/_foundation-global.scss +226 -0
- data/scss/foundation/components/_alert-boxes.scss +106 -0
- data/scss/foundation/components/_block-grid.scss +63 -0
- data/scss/foundation/components/_breadcrumbs.scss +117 -0
- data/scss/foundation/components/_button-groups.scss +59 -0
- data/scss/foundation/components/_buttons.scss +217 -0
- data/scss/foundation/components/_clearing.scss +209 -0
- data/scss/foundation/components/_custom-forms.scss +232 -0
- data/scss/foundation/components/_dropdown-buttons.scss +114 -0
- data/scss/foundation/components/_dropdown.scss +137 -0
- data/scss/foundation/components/_flex-video.scss +45 -0
- data/scss/foundation/components/_forms.scss +309 -0
- data/scss/foundation/components/_grid.scss +149 -71
- data/scss/foundation/components/_inline-lists.scss +47 -0
- data/scss/foundation/components/_joyride.scss +193 -0
- data/scss/foundation/components/_keystrokes.scss +56 -0
- data/scss/foundation/components/_labels.scss +81 -0
- data/scss/foundation/components/_magellan.scss +15 -0
- data/scss/foundation/components/_orbit.scss +193 -0
- data/scss/foundation/components/_pagination.scss +99 -0
- data/scss/foundation/components/_panels.scss +76 -0
- data/scss/foundation/components/_pricing-tables.scss +130 -0
- data/scss/foundation/components/_progress-bars.scss +68 -0
- data/scss/foundation/components/_reveal.scss +131 -0
- data/scss/foundation/components/_section.scss +194 -0
- data/scss/foundation/components/_side-nav.scss +68 -0
- data/scss/foundation/components/_split-buttons.scss +159 -0
- data/scss/foundation/components/_sub-nav.scss +67 -0
- data/scss/foundation/components/_switch.scss +242 -0
- data/scss/foundation/components/_tables.scss +80 -0
- data/scss/foundation/components/_thumbs.scss +45 -0
- data/scss/foundation/components/_tooltips.scss +113 -0
- data/scss/foundation/components/_top-bar.scss +443 -0
- data/scss/foundation/components/_type.scss +411 -0
- data/scss/foundation/components/_visibility.scss +117 -0
- data/scss/normalize.scss +396 -0
- data/templates/project/config.rb +26 -0
- data/templates/project/index.html +28 -43
- data/templates/project/manifest.rb +21 -28
- data/templates/project/scss/_settings.scss +4 -243
- data/templates/project/scss/app.scss +37 -44
- data/templates/project/scss/normalize.scss +396 -0
- data/test/stylesheets/styles.css +955 -0
- metadata +144 -153
- data/config/deploy.rb +0 -42
- data/lib/foundation/generators/layout_generator.rb +0 -28
- data/scss/foundation/_settings.scss +0 -281
- data/scss/foundation/common/_base.scss +0 -4
- data/scss/foundation/common/_forms.scss +0 -117
- data/scss/foundation/common/_globals.scss +0 -35
- data/scss/foundation/common/_ratios.scss +0 -19
- data/scss/foundation/common/_typography.scss +0 -104
- data/scss/foundation/components/modules/_all.scss +0 -10
- data/scss/foundation/components/modules/_buttons.scss +0 -178
- data/scss/foundation/components/modules/_clearing.scss +0 -61
- data/scss/foundation/components/modules/_joyride.scss +0 -33
- data/scss/foundation/components/modules/_mqueries.scss +0 -458
- data/scss/foundation/components/modules/_navbar.scss +0 -74
- data/scss/foundation/components/modules/_offcanvas.scss +0 -55
- data/scss/foundation/components/modules/_orbit.scss +0 -90
- data/scss/foundation/components/modules/_reveal.scss +0 -34
- data/scss/foundation/components/modules/_tabs.scss +0 -67
- data/scss/foundation/components/modules/_topbar.scss +0 -167
- data/scss/foundation/components/modules/_ui.scss +0 -292
- data/scss/foundation/functions/_all.scss +0 -2
- data/scss/foundation/functions/_convert-number-to-word.scss +0 -10
- data/scss/foundation/functions/_grid-calc.scss +0 -5
- data/scss/foundation/functions/modular-scale.scss +0 -3
- data/scss/foundation/mixins/_all.scss +0 -5
- data/scss/foundation/mixins/_clearfix.scss +0 -13
- data/scss/foundation/mixins/_css-triangle.scss +0 -22
- data/scss/foundation/mixins/_font-size.scss +0 -13
- data/scss/foundation/mixins/_respond-to.scss +0 -11
- data/scss/foundation/mixins/_semantic-grid.scss +0 -66
- data/test/buttons.html +0 -189
- data/test/clearing.html +0 -85
- data/test/config.rb +0 -11
- data/test/elements.html +0 -490
- data/test/forms.html +0 -371
- data/test/grid.html +0 -543
- data/test/images/orbit-demo/demo1.jpeg +0 -0
- data/test/images/orbit-demo/demo2.jpeg +0 -0
- data/test/images/orbit-demo/demo3.jpeg +0 -0
- data/test/images/orbit-demo/slider-background.jpeg +0 -0
- data/test/index.html +0 -83
- data/test/joyride.html +0 -127
- data/test/magellan.html +0 -112
- data/test/navigation.html +0 -269
- data/test/orbit.html +0 -112
- data/test/reveal.html +0 -91
- data/test/scss/_settings.scss +0 -245
- data/test/scss/styles.scss +0 -50
- data/test/tabs.html +0 -197
- data/test/template.html +0 -52
- data/test/topbar-login.html +0 -194
- data/test/topbar.html +0 -139
- data/test/type.html +0 -188
- data/vendor/assets/images/foundation/orbit/bullets.jpg +0 -0
- data/vendor/assets/images/foundation/orbit/left-arrow-small.png +0 -0
- data/vendor/assets/images/foundation/orbit/left-arrow.png +0 -0
- data/vendor/assets/images/foundation/orbit/loading.gif +0 -0
- data/vendor/assets/images/foundation/orbit/mask-black.png +0 -0
- data/vendor/assets/images/foundation/orbit/pause-black.png +0 -0
- data/vendor/assets/images/foundation/orbit/right-arrow-small.png +0 -0
- data/vendor/assets/images/foundation/orbit/right-arrow.png +0 -0
- data/vendor/assets/images/foundation/orbit/rotator-black.png +0 -0
- data/vendor/assets/images/foundation/orbit/timer-black.png +0 -0
- data/vendor/assets/javascripts/foundation/app.js +0 -41
- data/vendor/assets/javascripts/foundation/index.js +0 -19
- data/vendor/assets/javascripts/foundation/jquery.event.move.js +0 -580
- data/vendor/assets/javascripts/foundation/jquery.event.swipe.js +0 -130
- data/vendor/assets/javascripts/foundation/jquery.foundation.accordion.js +0 -47
- data/vendor/assets/javascripts/foundation/jquery.foundation.alerts.js +0 -20
- data/vendor/assets/javascripts/foundation/jquery.foundation.buttons.js +0 -83
- data/vendor/assets/javascripts/foundation/jquery.foundation.clearing.js +0 -413
- data/vendor/assets/javascripts/foundation/jquery.foundation.forms.js +0 -502
- data/vendor/assets/javascripts/foundation/jquery.foundation.joyride.js +0 -639
- data/vendor/assets/javascripts/foundation/jquery.foundation.magellan.js +0 -96
- data/vendor/assets/javascripts/foundation/jquery.foundation.mediaQueryToggle.js +0 -27
- data/vendor/assets/javascripts/foundation/jquery.foundation.navigation.js +0 -55
- data/vendor/assets/javascripts/foundation/jquery.foundation.orbit.js +0 -919
- data/vendor/assets/javascripts/foundation/jquery.foundation.reveal.js +0 -794
- data/vendor/assets/javascripts/foundation/jquery.foundation.tabs.js +0 -66
- data/vendor/assets/javascripts/foundation/jquery.foundation.tooltips.js +0 -211
- data/vendor/assets/javascripts/foundation/jquery.foundation.topbar.js +0 -174
- data/vendor/assets/javascripts/foundation/jquery.js +0 -9555
- data/vendor/assets/javascripts/foundation/jquery.offcanvas.js +0 -50
data/.gitignore
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
.bundle
|
4
4
|
.config
|
5
5
|
.yardoc
|
6
|
-
Gemfile.lock
|
7
6
|
InstalledFiles
|
8
7
|
_yardoc
|
9
8
|
coverage
|
@@ -14,10 +13,15 @@ rdoc
|
|
14
13
|
spec/reports
|
15
14
|
test/tmp
|
16
15
|
test/version_tmp
|
16
|
+
test/css
|
17
|
+
test/scss/output-test
|
17
18
|
tmp
|
18
19
|
*.DS_Store
|
19
20
|
marketing/.sass-cache/*
|
20
21
|
.sass-cache/*
|
21
22
|
test/.sass-cache/*
|
22
|
-
test/
|
23
|
+
test/css/styles.css
|
23
24
|
*.orig
|
25
|
+
node_modules
|
26
|
+
docs/public/*
|
27
|
+
*.scssc
|
data/CHANGELOG.md
CHANGED
@@ -3,31 +3,6 @@ We'll keep you up to date with what we've released so you at least have a gist o
|
|
3
3
|
|
4
4
|
---
|
5
5
|
|
6
|
-
### 3.2.5- January 26, 2013
|
7
|
-
This patch fixes compatability with jQuery 1.9. This patch includes:
|
8
|
-
* Bumped Topbar to 2.04 and removed deprecated jQuery die() and live() events.
|
9
|
-
* Fixed magellan destination undefined error.
|
10
|
-
* Add Clearing and Joyride to SCSS project templates.
|
11
|
-
|
12
|
-
### 3.2.4- January 14, 2013
|
13
|
-
This path includes bug fixes and a few style improvements for small UI elements. This patch includes:
|
14
|
-
* Bumped Joyride to version 2.0.3
|
15
|
-
* Added centered pagination style
|
16
|
-
* Fixed bug with Orbit captions
|
17
|
-
* Fixed bugs with clicking on accordion element
|
18
|
-
* Added styling for buttons inside dropdowns
|
19
|
-
* We're now using max-width instead of width on tooltips
|
20
|
-
* Added class, .tip-centered-top and .tip-centered-bottom for positioning tooltips
|
21
|
-
* 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.
|
22
|
-
* Fixes to the semantic grid mixin
|
23
|
-
* Added better :focus styles for error inputs
|
24
|
-
* Added settings for Top Bar Toggle color
|
25
|
-
* Updated Modular Scale to version 1.0.6
|
26
|
-
* Fixed bug with printing styles
|
27
|
-
|
28
|
-
### 3.2.3
|
29
|
-
This patch fixed some quick bug fixes.
|
30
|
-
|
31
6
|
### 3.2.2- November 10, 2012
|
32
7
|
This patch fixes a typo found in the tabs plugin.
|
33
8
|
|
@@ -114,4 +89,4 @@ Fixed a number of bugs around the Sass/Gem installs and documentation. Some smal
|
|
114
89
|
Various bug fixes with the downloader, gem, and Sass install.
|
115
90
|
|
116
91
|
### **3.0**- June 30, 2012
|
117
|
-
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.
|
92
|
+
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.
|
data/CONTRIBUTING.md
CHANGED
@@ -4,10 +4,28 @@ This is the Foundation project. We love making super awesome stuff, but even mo
|
|
4
4
|
|
5
5
|
## Testing
|
6
6
|
|
7
|
+
### Styles
|
8
|
+
|
7
9
|
Go into the test/ directory. Run `bundle exec compass compile` or `bundle exec compass watch` if you're making changes and want to see them reflected on-the-fly.
|
8
10
|
|
9
11
|
Want to add a feature to Foundation? Either update one of the test/*.html files or copy `test/template.html` to a new file, add your markup to it and check it in.
|
10
12
|
|
13
|
+
### JavaScript
|
14
|
+
|
15
|
+
The Foundation JS libraries are tested with qUnit. You can run the tests in your browser by opening up the respective `.html` files in `test/javascripts/tests/`.
|
16
|
+
|
17
|
+
For more convenient testing using the command line and watcher functionality, you can also run the tests through Grunt with PhantomJS.
|
18
|
+
|
19
|
+
**Setting up Grunt for command line testing.**
|
20
|
+
|
21
|
+
1. Install [PhantomJS](http://phantomjs.org/)
|
22
|
+
2. Install [Node.js](http://nodejs.org/)
|
23
|
+
3. You may need to reboot your machine to make sure your PATH is up to date.
|
24
|
+
4. From the root of the project, `npm install`. This will install the grunt tasks locally.
|
25
|
+
5. Install the grunt command line interface with `npm install -g grunt-cli`.
|
26
|
+
|
27
|
+
Now you should have two new commands available. `grunt qunit` will execute all of the qUnit tests. `grunt watch` will watch for changes to the JS files and test files, and execute the tests when something changes.
|
28
|
+
|
11
29
|
## Compass Project
|
12
30
|
|
13
31
|
If you have a compass project and would like updated assets you can run the following command at any given time from within your project directory:
|
data/Gemfile.lock
ADDED
data/Gruntfile.js
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
module.exports = function(grunt) {
|
2
|
+
|
3
|
+
grunt.loadNpmTasks('grunt-contrib-qunit');
|
4
|
+
grunt.loadNpmTasks('grunt-contrib-watch');
|
5
|
+
|
6
|
+
grunt.initConfig({
|
7
|
+
qunit: {
|
8
|
+
all: ['test/javascripts/tests/**/*.html']
|
9
|
+
},
|
10
|
+
watch: {
|
11
|
+
all: {
|
12
|
+
files: [
|
13
|
+
'test/javascripts/tests/**/*.html',
|
14
|
+
'test/javascripts/tests/**/*.js',
|
15
|
+
'lib/assets/javascripts/foundation/*.js'
|
16
|
+
],
|
17
|
+
tasks: 'default',
|
18
|
+
options: {
|
19
|
+
interrupt: true
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
// Default task.
|
26
|
+
grunt.registerTask('default', ['qunit']);
|
27
|
+
};
|
data/README.md
CHANGED
@@ -3,8 +3,8 @@ Welcome to Foundation
|
|
3
3
|
|
4
4
|
Foundation is the most advanced responsive front-end framework in the world. With Foundation you can quickly prototype and build sites or apps that work on any kind of device, with tons of included layout constructs (like a full responsive grid), elements and best practices.
|
5
5
|
|
6
|
-
Homepage: http://foundation.zurb.com
|
7
|
-
Documentation: http://foundation.zurb.com/docs
|
6
|
+
Homepage: http://foundation.zurb.com<br />
|
7
|
+
Documentation: http://foundation.zurb.com/docs<br />
|
8
8
|
Download: http://foundation.zurb.com/download.php
|
9
9
|
|
10
10
|
Foundation is MIT-licensed and absolutely free to use. Foundation wouldn't be possible without the support of the entire ZURB team, our friends and colleagues who gave feedback, and some luminaries who did some heavy lifting that we took advantage of (thanks guys).
|
@@ -13,7 +13,6 @@ Repo Contents
|
|
13
13
|
=============
|
14
14
|
|
15
15
|
* Base Source and Compilation Files for SCSS
|
16
|
-
* Marketing Site
|
17
16
|
* Docs
|
18
17
|
* README
|
19
18
|
|
@@ -35,7 +34,7 @@ WordPress
|
|
35
34
|
* [Reverie](http://themefortress.com/reverie/) by Zhen
|
36
35
|
* [WP-Foundation](http://320press.com/wp-foundation/features/) by 320press
|
37
36
|
* [Yeti](https://github.com/modlearning/Yeti) by Modular Learning
|
38
|
-
* [Foundation
|
37
|
+
* [Foundation](https://github.com/drewsymo/Foundation) by Drewsymo
|
39
38
|
|
40
39
|
Joomla
|
41
40
|
|
@@ -96,7 +95,7 @@ Modular Scale
|
|
96
95
|
|
97
96
|
* [Modular Scale](https://github.com/scottkellum/modular-scale) by Mason Wendell and Scott Kellum
|
98
97
|
|
99
|
-
Ruby on Rails
|
98
|
+
Ruby on Rails Sass Gems
|
100
99
|
|
101
100
|
* [Foundation Icons 2](https://github.com/zaiste/foundation-icons-sass-rails) by J. P. Nowak
|
102
101
|
|
@@ -107,4 +106,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
107
106
|
|
108
107
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
109
108
|
|
110
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
109
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/{Capfile → docs/Capfile}
RENAMED
@@ -1,5 +1,4 @@
|
|
1
1
|
load 'deploy'
|
2
2
|
# Uncomment if you are using Rails' asset pipeline
|
3
3
|
# load 'deploy/assets'
|
4
|
-
Dir['vendor/gems/*/recipes/*.rb','vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
|
5
4
|
load 'config/deploy' # remove this line to skip loading any of the default tasks
|
data/docs/Gemfile
ADDED
data/docs/Gemfile.lock
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
coderay (1.0.9)
|
5
|
+
directory_watcher (1.4.1)
|
6
|
+
execjs (1.4.0)
|
7
|
+
multi_json (~> 1.0)
|
8
|
+
foreman (0.61.0)
|
9
|
+
thor (>= 0.13.6)
|
10
|
+
hike (1.2.1)
|
11
|
+
libv8 (3.3.10.4)
|
12
|
+
multi_json (1.6.1)
|
13
|
+
rack (1.5.2)
|
14
|
+
sass (3.2.6)
|
15
|
+
slop (3.3.2)
|
16
|
+
sprockets (2.9.0)
|
17
|
+
hike (~> 1.2)
|
18
|
+
multi_json (~> 1.0)
|
19
|
+
rack (~> 1.0)
|
20
|
+
tilt (~> 1.1, != 1.3.0)
|
21
|
+
stasis (0.2.0)
|
22
|
+
directory_watcher (= 1.4.1)
|
23
|
+
slop (= 3.3.2)
|
24
|
+
tilt (= 1.3.3)
|
25
|
+
therubyracer (0.10.1)
|
26
|
+
libv8 (~> 3.3.10)
|
27
|
+
thor (0.17.0)
|
28
|
+
tilt (1.3.3)
|
29
|
+
uglifier (1.3.0)
|
30
|
+
execjs (>= 0.3.0)
|
31
|
+
multi_json (~> 1.0, >= 1.0.2)
|
32
|
+
|
33
|
+
PLATFORMS
|
34
|
+
ruby
|
35
|
+
|
36
|
+
DEPENDENCIES
|
37
|
+
coderay
|
38
|
+
foreman
|
39
|
+
sass
|
40
|
+
sprockets
|
41
|
+
stasis
|
42
|
+
therubyracer
|
43
|
+
uglifier
|
data/docs/Procfile
ADDED
data/docs/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
From within the docs/ directory run `bundle install`. To get the docs to compile during development you'll want to run `bundle exec foreman start`. At that point you can access the docs by going to `http://localhost:4000`.
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<div class="section-container accordion" data-section data-options="deep_linking: false">
|
2
|
+
<section class="section">
|
3
|
+
<p class="title"><a href="#">Using Foundation</a></p>
|
4
|
+
<div class="content">
|
5
|
+
<ul class="side-nav">
|
6
|
+
<li><a href="../">Get Started</a></li>
|
7
|
+
<li><a href="../javascript.html">Javascript</a></li>
|
8
|
+
<li><a href="../sass.html">Sass</a></li>
|
9
|
+
<li><a href="../rails.html">Rails</a></li>
|
10
|
+
<li><a href="../visibility.html">Visibility Classes</a></li>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
</section>
|
14
|
+
<section class="section">
|
15
|
+
<p class="title"><a href="#">Grid</a></p>
|
16
|
+
<div class="content">
|
17
|
+
<ul class="side-nav">
|
18
|
+
<li><a href="grid.html">Grid</a></li>
|
19
|
+
<li><a href="block-grid.html">Block Grid</a></li>
|
20
|
+
</ul>
|
21
|
+
</div>
|
22
|
+
</section>
|
23
|
+
<section class="section">
|
24
|
+
<p class="title"><a href="#">Navigation</a></p>
|
25
|
+
<div class="content">
|
26
|
+
<ul class="side-nav">
|
27
|
+
<li><a href="pagination.html">Pagination</a></li>
|
28
|
+
<li><a href="side-nav.html">Side Nav</a></li>
|
29
|
+
<li><a href="sub-nav.html">Sub Nav</a></li>
|
30
|
+
<li><a href="top-bar.html">Top Bar</a></li>
|
31
|
+
<li><a href="breadcrumbs.html">Breadcrumbs</a></li>
|
32
|
+
</ul>
|
33
|
+
</div>
|
34
|
+
</section>
|
35
|
+
<section class="section">
|
36
|
+
<p class="title"><a href="#">Buttons</a></p>
|
37
|
+
<div class="content">
|
38
|
+
<ul class="side-nav">
|
39
|
+
<li><a href="buttons.html">Buttons</a></li>
|
40
|
+
<li><a href="button-groups.html">Button Groups</a></li>
|
41
|
+
<li><a href="dropdown-buttons.html">Dropdown Buttons</a></li>
|
42
|
+
<li><a href="split-buttons.html">Split Buttons</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
</section>
|
46
|
+
<section class="section">
|
47
|
+
<p class="title"><a href="#">Forms</a></p>
|
48
|
+
<div class="content">
|
49
|
+
<ul class="side-nav">
|
50
|
+
<li><a href="forms.html">Forms</a></li>
|
51
|
+
<li><a href="custom-forms.html">Custom Forms</a></li>
|
52
|
+
<li><a href="switch.html">Switch</a></li>
|
53
|
+
</ul>
|
54
|
+
</div>
|
55
|
+
</section>
|
56
|
+
<section class="section">
|
57
|
+
<p class="title"><a href="#">Typography</a></p>
|
58
|
+
<div class="content">
|
59
|
+
<ul class="side-nav">
|
60
|
+
<li><a href="type.html">Type</a></li>
|
61
|
+
<li><a href="inline-lists.html">Inline Lists</a></li>
|
62
|
+
<li><a href="labels.html">Labels</a></li>
|
63
|
+
<li><a href="keystrokes.html">Keystrokes</a></li>
|
64
|
+
</ul>
|
65
|
+
</div>
|
66
|
+
</section>
|
67
|
+
<section class="section">
|
68
|
+
<p class="title"><a href="#">CSS Components</a></p>
|
69
|
+
<div class="content">
|
70
|
+
<ul class="side-nav">
|
71
|
+
<li><a href="panels.html">Panels</a></li>
|
72
|
+
<li><a href="pricing-tables.html">Pricing Tables</a></li>
|
73
|
+
<li><a href="progress-bars.html">Progress Bars</a></li>
|
74
|
+
<li><a href="tables.html">Tables</a></li>
|
75
|
+
<li><a href="thumbnails.html">Thumbnails</a></li>
|
76
|
+
<li><a href="flex-video.html">Flex Video</a></li>
|
77
|
+
</ul>
|
78
|
+
</div>
|
79
|
+
</section>
|
80
|
+
<section class="section">
|
81
|
+
<p class="title"><a href="#">Javascript</a></p>
|
82
|
+
<div class="content">
|
83
|
+
<ul class="side-nav">
|
84
|
+
<li><a href="clearing.html">Clearing</a></li>
|
85
|
+
<li><a href="dropdown.html">Dropdown</a></li>
|
86
|
+
<li><a href="joyride.html">Joyride</a></li>
|
87
|
+
<li><a href="magellan.html">Magellan</a></li>
|
88
|
+
<li><a href="orbit.html">Orbit</a></li>
|
89
|
+
<li><a href="reveal.html">Reveal</a></li>
|
90
|
+
<li><a href="section.html">Section</a></li>
|
91
|
+
<li><a href="tooltips.html">Tooltips</a></li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
</section>
|
95
|
+
<section class="section">
|
96
|
+
<p class="title"><a href="faq.html">FAQ</a></p>
|
97
|
+
</section>
|
98
|
+
<section class="section">
|
99
|
+
<p class="title"><a href="support.html">Support</a></p>
|
100
|
+
</section>
|
101
|
+
</div>
|
102
|
+
|
103
|
+
<p><a href="../download.php" class="button expand" style="margin-bottom: 0;">Download Foundation 4</a></p>
|
104
|
+
|
105
|
+
<div class="jobs hide-for-small">
|
106
|
+
<h5>Awesome product jobs:</h5>
|
107
|
+
<script type="text/javascript" src="http://www.zurb.com/jobs/widgets/jobs.js?limit=3&variation=foundation-sidebar"></script>
|
108
|
+
<a id="via" href="http://zurbjobs.com">via <span class="jobs-link">ZURBjobs</span></a>
|
109
|
+
</div>
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<div class="section-container accordion" data-section data-options="deep_linking: false">
|
2
|
+
<section class="section">
|
3
|
+
<p class="title"><a href="#">Using Foundation</a></p>
|
4
|
+
<div class="content">
|
5
|
+
<ul class="side-nav">
|
6
|
+
<li><a href="/">Get Started</a></li>
|
7
|
+
<li><a href="javascript.html">Javascript</a></li>
|
8
|
+
<li><a href="sass.html">Sass</a></li>
|
9
|
+
<li><a href="rails.html">Rails</a></li>
|
10
|
+
<li><a href="components/visibility.html">Visibility Classes</a></li>
|
11
|
+
</ul>
|
12
|
+
</div>
|
13
|
+
</section>
|
14
|
+
<section class="section">
|
15
|
+
<p class="title"><a href="#">Grid</a></p>
|
16
|
+
<div class="content">
|
17
|
+
<ul class="side-nav">
|
18
|
+
<li><a href="components/grid.html">Grid</a></li>
|
19
|
+
<li><a href="components/block-grid.html">Block Grid</a></li>
|
20
|
+
</ul>
|
21
|
+
</div>
|
22
|
+
</section>
|
23
|
+
<section class="section">
|
24
|
+
<p class="title"><a href="#">Navigation</a></p>
|
25
|
+
<div class="content">
|
26
|
+
<ul class="side-nav">
|
27
|
+
<li><a href="components/pagination.html">Pagination</a></li>
|
28
|
+
<li><a href="components/side-nav.html">Side Nav</a></li>
|
29
|
+
<li><a href="components/sub-nav.html">Sub Nav</a></li>
|
30
|
+
<li><a href="components/top-bar.html">Top Bar</a></li>
|
31
|
+
<li><a href="components/breadcrumbs.html">Breadcrumbs</a></li>
|
32
|
+
</ul>
|
33
|
+
</div>
|
34
|
+
</section>
|
35
|
+
<section class="section">
|
36
|
+
<p class="title"><a href="#">Buttons</a></p>
|
37
|
+
<div class="content">
|
38
|
+
<ul class="side-nav">
|
39
|
+
<li><a href="components/buttons.html">Buttons</a></li>
|
40
|
+
<li><a href="components/button-groups.html">Button Groups</a></li>
|
41
|
+
<li><a href="components/dropdown-buttons.html">Dropdown Buttons</a></li>
|
42
|
+
<li><a href="components/split-buttons.html">Split Buttons</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
</section>
|
46
|
+
<section class="section">
|
47
|
+
<p class="title"><a href="#">Forms</a></p>
|
48
|
+
<div class="content">
|
49
|
+
<ul class="side-nav">
|
50
|
+
<li><a href="components/forms.html">Forms</a></li>
|
51
|
+
<li><a href="components/custom-forms.html">Custom Forms</a></li>
|
52
|
+
<li><a href="components/switch.html">Switch</a></li>
|
53
|
+
</ul>
|
54
|
+
</div>
|
55
|
+
</section>
|
56
|
+
<section class="section">
|
57
|
+
<p class="title"><a href="#">Typography</a></p>
|
58
|
+
<div class="content">
|
59
|
+
<ul class="side-nav">
|
60
|
+
<li><a href="components/type.html">Type</a></li>
|
61
|
+
<li><a href="components/inline-lists.html">Inline Lists</a></li>
|
62
|
+
<li><a href="components/labels.html">Labels</a></li>
|
63
|
+
<li><a href="components/keystrokes.html">Keystrokes</a></li>
|
64
|
+
</ul>
|
65
|
+
</div>
|
66
|
+
</section>
|
67
|
+
<section class="section">
|
68
|
+
<p class="title"><a href="#">CSS Components</a></p>
|
69
|
+
<div class="content">
|
70
|
+
<ul class="side-nav">
|
71
|
+
<li><a href="components/panels.html">Panels</a></li>
|
72
|
+
<li><a href="components/pricing-tables.html">Pricing Tables</a></li>
|
73
|
+
<li><a href="components/progress-bars.html">Progress Bars</a></li>
|
74
|
+
<li><a href="components/tables.html">Tables</a></li>
|
75
|
+
<li><a href="components/thumbnails.html">Thumbnails</a></li>
|
76
|
+
<li><a href="components/flex-video.html">Flex Video</a></li>
|
77
|
+
</ul>
|
78
|
+
</div>
|
79
|
+
</section>
|
80
|
+
<section class="section">
|
81
|
+
<p class="title"><a href="#">Javascript</a></p>
|
82
|
+
<div class="content">
|
83
|
+
<ul class="side-nav">
|
84
|
+
<li><a href="components/clearing.html">Clearing</a></li>
|
85
|
+
<li><a href="components/dropdown.html">Dropdown</a></li>
|
86
|
+
<li><a href="components/joyride.html">Joyride</a></li>
|
87
|
+
<li><a href="components/magellan.html">Magellan</a></li>
|
88
|
+
<li><a href="components/orbit.html">Orbit</a></li>
|
89
|
+
<li><a href="components/reveal.html">Reveal</a></li>
|
90
|
+
<li><a href="components/section.html">Section</a></li>
|
91
|
+
<li><a href="components/tooltips.html">Tooltips</a></li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
</section>
|
95
|
+
<section class="section">
|
96
|
+
<p class="title"><a href="faq.html">FAQ</a></p>
|
97
|
+
</section>
|
98
|
+
<section class="section">
|
99
|
+
<p class="title"><a href="support.html">Support</a></p>
|
100
|
+
</section>
|
101
|
+
</div>
|
102
|
+
|
103
|
+
<p><a href="../download.php" class="button expand" style="margin-bottom: 0;">Download Foundation 4</a></p>
|
104
|
+
|
105
|
+
<div class="jobs hide-for-small">
|
106
|
+
<h5>Awesome product jobs:</h5>
|
107
|
+
<script type="text/javascript" src="http://www.zurb.com/jobs/widgets/jobs.js?limit=3&variation=foundation-sidebar"></script>
|
108
|
+
<a id="via" href="http://zurbjobs.com">via <span class="jobs-link">ZURBjobs</span></a>
|
109
|
+
</div>
|