modularis 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +24 -0
  3. data/.idea/scopes/scope_settings.xml +5 -0
  4. data/.rbenv-version +1 -0
  5. data/CONTRIBUTING.md +53 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +19 -0
  8. data/Gruntfile.js +27 -0
  9. data/LICENSE +22 -0
  10. data/README.md +27 -0
  11. data/Rakefile +2 -0
  12. data/docs/CHANGELOG.md +260 -0
  13. data/docs/Capfile +4 -0
  14. data/docs/Gemfile +13 -0
  15. data/docs/Gemfile.lock +45 -0
  16. data/docs/Procfile +2 -0
  17. data/docs/README.md +1 -0
  18. data/docs/_sidebar-components.html.erb +115 -0
  19. data/docs/_sidebar.html.erb +115 -0
  20. data/docs/changelog.html.erb +33 -0
  21. data/docs/compile.rb +34 -0
  22. data/docs/components/alert-boxes.html.erb +204 -0
  23. data/docs/components/block-grid.html.erb +132 -0
  24. data/docs/components/breadcrumbs.html.erb +156 -0
  25. data/docs/components/button-groups.html.erb +230 -0
  26. data/docs/components/buttons.html.erb +222 -0
  27. data/docs/components/clearing.html.erb +152 -0
  28. data/docs/components/custom-forms.html.erb +309 -0
  29. data/docs/components/dropdown-buttons.html.erb +235 -0
  30. data/docs/components/dropdown.html.erb +188 -0
  31. data/docs/components/flex-video.html.erb +95 -0
  32. data/docs/components/forms.html.erb +477 -0
  33. data/docs/components/global.html.erb +92 -0
  34. data/docs/components/grid.html.erb +366 -0
  35. data/docs/components/inline-lists.html.erb +91 -0
  36. data/docs/components/joyride.html.erb +183 -0
  37. data/docs/components/keystrokes.html.erb +76 -0
  38. data/docs/components/kitchen-sink.html.erb +870 -0
  39. data/docs/components/labels.html.erb +102 -0
  40. data/docs/components/magellan.html.erb +86 -0
  41. data/docs/components/orbit.html.erb +276 -0
  42. data/docs/components/pagination.html.erb +183 -0
  43. data/docs/components/panels.html.erb +123 -0
  44. data/docs/components/pricing-tables.html.erb +156 -0
  45. data/docs/components/progress-bars.html.erb +123 -0
  46. data/docs/components/reveal.html.erb +162 -0
  47. data/docs/components/section.html.erb +496 -0
  48. data/docs/components/side-nav.html.erb +124 -0
  49. data/docs/components/split-buttons.html.erb +220 -0
  50. data/docs/components/sub-nav.html.erb +122 -0
  51. data/docs/components/switch.html.erb +290 -0
  52. data/docs/components/tables.html.erb +125 -0
  53. data/docs/components/thumbnails.html.erb +89 -0
  54. data/docs/components/tooltips.html.erb +75 -0
  55. data/docs/components/top-bar.html.erb +283 -0
  56. data/docs/components/type.html.erb +396 -0
  57. data/docs/components/visibility.html.erb +110 -0
  58. data/docs/config/deploy.rb +36 -0
  59. data/docs/config.ru +12 -0
  60. data/docs/controller.rb +53 -0
  61. data/docs/css/_coderay.scss +116 -0
  62. data/docs/css/_settings.scss +1 -0
  63. data/docs/css/docs.scss +185 -0
  64. data/docs/css/normalize.scss +396 -0
  65. data/docs/css/qunit-composite.css +13 -0
  66. data/docs/css/qunit.css +235 -0
  67. data/docs/faq.html.erb +63 -0
  68. data/docs/img/demos/demo1-th.jpg +0 -0
  69. data/docs/img/demos/demo1.jpg +0 -0
  70. data/docs/img/demos/demo2-th.jpg +0 -0
  71. data/docs/img/demos/demo2.jpg +0 -0
  72. data/docs/img/demos/demo3-th.jpg +0 -0
  73. data/docs/img/demos/demo3.jpg +0 -0
  74. data/docs/img/demos/demo4-th.jpg +0 -0
  75. data/docs/img/demos/demo4.jpg +0 -0
  76. data/docs/img/demos/demo5-th.jpg +0 -0
  77. data/docs/img/demos/demo5.jpg +0 -0
  78. data/docs/index.html.erb +285 -0
  79. data/docs/javascript.html.erb +134 -0
  80. data/docs/js/docs.js +3 -0
  81. data/docs/js/qunit-composite.js +105 -0
  82. data/docs/js/qunit.js +1977 -0
  83. data/docs/js/tests/tabs/simple_tabs.html +57 -0
  84. data/docs/js/tests/tabs/simple_tabs.js +54 -0
  85. data/docs/js/tests/tooltips/tooltips.html +39 -0
  86. data/docs/js/tests/tooltips/tooltips.js +11 -0
  87. data/docs/layout.html.erb +128 -0
  88. data/docs/media-queries.html.erb +96 -0
  89. data/docs/rails.html.erb +76 -0
  90. data/docs/rtl.html.erb +53 -0
  91. data/docs/sass.html.erb +1295 -0
  92. data/docs/support.html.erb +143 -0
  93. data/docs/test/_test-scripts.html.erb +36 -0
  94. data/docs/test/cards.html.erb +77 -0
  95. data/docs/test/flexbox-grid.html.erb +68 -0
  96. data/docs/test/flip-nav.html.erb +54 -0
  97. data/docs/test/layout.html.erb +15 -0
  98. data/docs/test/off-canvas1.html.erb +64 -0
  99. data/docs/test/off-canvas2.html.erb +75 -0
  100. data/docs/test/off-canvas3.html.erb +65 -0
  101. data/docs/test_layout.html.erb +128 -0
  102. data/js/modularis/index.js +18 -0
  103. data/js/vendor/custom.modernizr.js +4 -0
  104. data/js/vendor/jquery.js +9597 -0
  105. data/js/vendor/zepto.js +1884 -0
  106. data/lib/modularis/engine.rb +18 -0
  107. data/lib/modularis/generators/USAGE +15 -0
  108. data/lib/modularis/generators/install_generator.rb +54 -0
  109. data/lib/modularis/generators/templates/application.html.erb +46 -0
  110. data/lib/modularis/generators/templates/application.html.haml +31 -0
  111. data/lib/modularis/generators/templates/application.html.slim +28 -0
  112. data/lib/modularis/version.rb +3 -0
  113. data/lib/modularis.rb +17 -0
  114. data/modularis.gemspec +20 -0
  115. data/package.json +15 -0
  116. data/scss/compagecss/_variables.scss +1192 -0
  117. data/scss/compagecss/components/_alert-boxes.scss +106 -0
  118. data/scss/compagecss/components/_block-grid.scss +70 -0
  119. data/scss/compagecss/components/_breadcrumbs.scss +124 -0
  120. data/scss/compagecss/components/_button-groups.scss +88 -0
  121. data/scss/compagecss/components/_buttons.scss +226 -0
  122. data/scss/compagecss/components/_clearing.scss +217 -0
  123. data/scss/compagecss/components/_custom-forms.scss +246 -0
  124. data/scss/compagecss/components/_dropdown-buttons.scss +114 -0
  125. data/scss/compagecss/components/_dropdown.scss +149 -0
  126. data/scss/compagecss/components/_flex-video.scss +45 -0
  127. data/scss/compagecss/components/_flexbox-grid.scss +225 -0
  128. data/scss/compagecss/components/_flip.scss +105 -0
  129. data/scss/compagecss/components/_forms.scss +361 -0
  130. data/scss/compagecss/components/_global.scss +289 -0
  131. data/scss/compagecss/components/_grid.scss +184 -0
  132. data/scss/compagecss/components/_inline-lists.scss +52 -0
  133. data/scss/compagecss/components/_joyride.scss +210 -0
  134. data/scss/compagecss/components/_keystrokes.scss +56 -0
  135. data/scss/compagecss/components/_labels.scss +84 -0
  136. data/scss/compagecss/components/_magellan.scss +21 -0
  137. data/scss/compagecss/components/_off-canvas.scss +86 -0
  138. data/scss/compagecss/components/_orbit.scss +209 -0
  139. data/scss/compagecss/components/_pagination.scss +99 -0
  140. data/scss/compagecss/components/_panels.scss +76 -0
  141. data/scss/compagecss/components/_pricing-tables.scss +130 -0
  142. data/scss/compagecss/components/_progress-bars.scss +70 -0
  143. data/scss/compagecss/components/_reveal.scss +131 -0
  144. data/scss/compagecss/components/_section.scss +303 -0
  145. data/scss/compagecss/components/_side-nav.scss +68 -0
  146. data/scss/compagecss/components/_split-buttons.scss +166 -0
  147. data/scss/compagecss/components/_sub-nav.scss +67 -0
  148. data/scss/compagecss/components/_switch.scss +249 -0
  149. data/scss/compagecss/components/_tables.scss +80 -0
  150. data/scss/compagecss/components/_thumbs.scss +47 -0
  151. data/scss/compagecss/components/_tooltips.scss +113 -0
  152. data/scss/compagecss/components/_top-bar.scss +462 -0
  153. data/scss/compagecss/components/_type.scss +422 -0
  154. data/scss/compagecss/components/_visibility.scss +320 -0
  155. data/scss/modularis.scss +49 -0
  156. data/scss/normalize.scss +402 -0
  157. data/templates/project/.gitignore +44 -0
  158. data/templates/project/MIT-LICENSE.txt +20 -0
  159. data/templates/project/config.rb +26 -0
  160. data/templates/project/humans.txt +8 -0
  161. data/templates/project/index.html +124 -0
  162. data/templates/project/manifest.rb +44 -0
  163. data/templates/project/robots.txt +4 -0
  164. data/templates/project/scss/app.scss +48 -0
  165. data/templates/upgrade/manifest.rb +34 -0
  166. metadata +235 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MjJmZTc3MTM5OTk2YTM1YWI0YmNiNTQ0NTU1NzYyNTkxN2M5ZTdkMA==
5
+ data.tar.gz: !binary |-
6
+ NTlmNDhmNTI0YmQyYzE4NTE1ZDFmNDhjZjZkZjlmYWU0ZjU1ZWVmNA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ NTQ1NDJjNzdiNjVlMWVkNzA0NjMxYzkzM2UyMGQ3NTQzMGI1YzhlOWE2YWY3
10
+ NzE2Yzk1NmQ2ZTM0Y2IxZWVhMWNkMDRlMzE2NzU1NmNiYmU5OGQyYjBjYTUy
11
+ MDIwMjlkZjFkOTY5Mzk3YTczZTY5ZWQyZTZiZTRhYjdhMDA0OTM=
12
+ data.tar.gz: !binary |-
13
+ ZTBlM2I2ZjlkMDRhZGQ5OWVmYzM2OTg5OWMzMDQwMzk4OWM3NDQ5ZjQxMWMz
14
+ MDRhNTI2NjcyYWEyMGUwNTVhMDcyNWQwNTM4Y2M0YjBiMDJlNTYwYzBhMjZi
15
+ NDg2OGYxMmYxMWJjODYyMDIzMzlkMjhhZGQxNDNiYzE2ZjhlY2M=
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ InstalledFiles
7
+ _yardoc
8
+ coverage
9
+ doc/
10
+ lib/bundler/man
11
+ pkg
12
+ rdoc
13
+ spec/reports
14
+ tmp
15
+ *.DS_Store
16
+ marketing/.sass-cache/*
17
+ .sass-cache/*
18
+ test/.sass-cache/*
19
+ test/css/styles.css
20
+ *.orig
21
+ node_modules
22
+ docs/public/*
23
+ *.scssc
24
+ *.idea
@@ -0,0 +1,5 @@
1
+ <component name="DependencyValidationManager">
2
+ <state>
3
+ <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
+ </state>
5
+ </component>
data/.rbenv-version ADDED
@@ -0,0 +1 @@
1
+ 1.9.3-p194
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,53 @@
1
+ # Modularis
2
+
3
+ This is the Modularis project. We love making super awesome stuff, but even more we like to empower people to make changes on their own. Feel free to fork and improve Modularis.
4
+
5
+ <!-- ### JavaScript
6
+
7
+ The Modularis 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/`.
8
+
9
+ For more convenient testing using the command line and watcher functionality, you can also run the tests through Grunt with PhantomJS.
10
+
11
+ **Setting up Grunt for command line testing.**
12
+
13
+ 1. Install [PhantomJS](http://phantomjs.org/)
14
+ 2. Install [Node.js](http://nodejs.org/)
15
+ 3. You may need to reboot your machine to make sure your PATH is up to date.
16
+ 4. From the root of the project, `npm install`. This will install the grunt tasks locally.
17
+ 5. Install the grunt command line interface with `npm install -g grunt-cli`.
18
+
19
+ 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. -->
20
+
21
+ ## Compass Project
22
+
23
+ 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:
24
+
25
+ compass create -r themepile-modularis --using modularis
26
+
27
+ ## Development
28
+
29
+ Want to test out the Compass templates. Don't recompile the gem every time, use `bundler` like so:
30
+
31
+ ```bash
32
+ mkdir demo1
33
+ cd demo1
34
+ echo -e 'source :rubygems\n
35
+ gem "themepile-modularis", :path => "/path/to/modularis/repo"\n
36
+ gem "compass"\n' > Gemfile
37
+ bundle exec compass create -r themepile-modularis --using modularis
38
+ ```
39
+
40
+ On subsequent template updates use:
41
+
42
+ ```bash
43
+ bundle exec compass create -r themepile-modularis --using modularis --force
44
+ ```
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Test your changes to the best of your ability. We've provided a test/ folder, feel free to add to it as necessary.
51
+ 4. Commit your changes (`git commit -am 'Added some feature'`)
52
+ 5. Push to the branch (`git push origin my-new-feature`)
53
+ 6. Create new Pull Request
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in modularis.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ themepile-modularis (4.1.5)
5
+ sass (>= 3.2.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ rake (10.0.3)
11
+ sass (3.2.7)
12
+
13
+ PLATFORMS
14
+ ruby
15
+ x86-mingw32
16
+
17
+ DEPENDENCIES
18
+ rake
19
+ themepile-modularis!
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/modularis/*.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/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Mark Hayes
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,27 @@
1
+ Welcome to Modularis
2
+ =====================
3
+
4
+ This is the work-in-progress branch for Modularis 5 currently in development. Things are as likely to work as not and don't consider anything as done or canonical to 5 until we actually roll out the new version. That being said, comments and pull requests are welcome.
5
+
6
+ Repo Contents
7
+ =============
8
+
9
+ * Base Source and Compilation Files for SCSS
10
+ * Docs
11
+ * README
12
+
13
+ ZURB
14
+ ====
15
+
16
+ Modularis was made by [ZURB](http://www.themepile.com), a product design company in Campbell, CA.
17
+
18
+ If Modularis knocks your socks off the way we hope it does and you want more, why not check out [our jobs](http://www.themepile.com/talent)?
19
+
20
+ MIT Open Source License
21
+ =======================
22
+
23
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
24
+
25
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
26
+
27
+ 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/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/docs/CHANGELOG.md ADDED
@@ -0,0 +1,260 @@
1
+ ### 4.1.5- April 26, 2013
2
+ * Add support for `indexOf` in legacy browsers
3
+
4
+ ### 4.1.4- April 26, 2013
5
+ * Fixes invalid Rails generator path
6
+
7
+ ### 4.1.3- April 25, 2013
8
+
9
+ * Added _variables.scss, which holds default variables and creates the settings file for the gem
10
+ * Rearranged a few mixins in order to remove the confusing _modularis-globals.scss file
11
+ * If you are getting errors after upgrade, just remove any reference to this file...
12
+ * Added reference to $base-line-height variables for those using Compass vertical rhythm
13
+ * Fixed issue with invalid css coming through into buttons
14
+ * Various bug fixes
15
+ * Adds support for infinite section nesting
16
+ * Updated top bar styles
17
+ * Support for data-options in Reveal
18
+
19
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.1.2...v4.1.3).
20
+
21
+ ### 4.1.2- April 10, 2013
22
+
23
+ * Added Joyride expose functionality
24
+ * General bug fixes for regressions that came up with RTL release
25
+ * Section is now fully semantic
26
+ * Clicking on current thumbnail in Clearing now advances to next slide
27
+ * data-options support added to Clearing
28
+ * Addressed Modularis loader incompatiblities with non-jQuery and non-Zepto JS libraries
29
+ * Fixed Rails generator bug when using CoffeeScript files
30
+ * Added `reflow` to Section js plugin to support dynamic content
31
+
32
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.1.1...v4.1.2).
33
+
34
+ ### 4.1.1- April 2, 2013
35
+ * Changed all references to the variable `$default-opposite` to `$opposite-direction`
36
+ * Added `dir` attribute to `html` tag
37
+ * Added direction variables to `modularis.dropdown.js`, `modularis.clearing.js`, `modularis.joyride.js`, `modularis.orbit.js`, `modularis.section.js`, `modularis.topbar.js` and `modularis.tooltips.js`.
38
+ * Updated customizer with text direction setting
39
+ * Added right-to-left text direction documentation
40
+
41
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.9...v4.1.1).
42
+
43
+
44
+ ### 4.0.9- March 19, 2013
45
+ * Added `auto` option to `Modularis.section.js.
46
+ * Fixes dropdown positioning for split buttons.
47
+
48
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.8...v4.0.9).
49
+
50
+ ### 4.0.8- March 15, 2013
51
+ * Added paragraph `text-rendering` variable: `$paragraph-text-rendering`.
52
+ * Changed blockgrid to use clearfix instead of overflow.
53
+ * Fixed nested row margin inside forms.
54
+ * Fixed data_options function that caused booleans to be interpreted as numbers.
55
+ * Tabs no longer automatically convert to accordion on desktop.
56
+ * Sections with accordion class always remain accordions and sections with tab class always remain tabs.
57
+ * Vertical and horizontal navigation elements still become accordions on mobile
58
+
59
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.7...v4.0.8).
60
+
61
+
62
+ ### 4.0.7- March 14, 2013
63
+ * Fixed problem with buggy pull request that made radius buttons look like ovals, sorry.
64
+
65
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.6...v4.0.7).
66
+
67
+ ---
68
+
69
+ ### 4.0.6- March 14, 2013 (Yanked)
70
+ * Added modular HTML class variables to control whether or no those classes come through into your CSS.
71
+ * Changed global font size defaults to 100% to let browsers use their default zooming.
72
+ * Fixed bugs with top-bar bottom margin variables.
73
+ * Bug fixes for Reveal click event propigation.
74
+ * Bug fixes in the Dropdown plugins for positioning.
75
+ * Removed duplicate binding in sections.
76
+ * Changes all references to `$button-radius` to `$global-radius` to fix customizer blank css files.
77
+ * Updated customizer with better groupings in the checkbox section.
78
+ * Added data-options support to Orbit.
79
+
80
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.5...v4.0.6).
81
+
82
+ ---
83
+
84
+ ### 4.0.5- March 8, 2013
85
+ * Custom classes added to custom forms now carry through to JS.
86
+ * Added `.horizontal-nav` to `modularis.section.js`.
87
+ * Fixed variables that weren't being inherited properly.
88
+ * Fixed a joyride mobile background issue.
89
+ * Updated Reveal docs to match 4.0.4 functionality.
90
+ * Updated to Zepto 1.0.
91
+ * Fixed bugs with visibility classes.
92
+ * Updated block-grid nth-of-type clear fix so that it actually works.
93
+ * All size block grids now have the same spacing.
94
+ * Made images `display: inline-block` by default to remove gap and not screw up layouts.
95
+ * Progress bars respect their color variables instead of global.
96
+ * Added variable for progress bar background color.
97
+ * Fixed inconsistency between side margins on unordered and ordered lists.
98
+ * Made it so you can set `custom_back_text` variable in top-bar to control if the back link is generic or specific.
99
+ * Updated visibility classes to work properly with table display properties.
100
+ * Helper classes like `.right, .left` now have `!important` so they don't get overriden on accident.
101
+ * Added a page to the docs that explains our use of [media queries](http://modularis.themepile.com/docs/media-queries.html).
102
+ * Removed default outline on a:focus elements that normalize adds.
103
+ * Fixed bug with custom checkboxes not clickable from the `<span>`.
104
+ * Added docs about using Sass standalone with Modularis.
105
+
106
+ You can compare the commits [here](https://github.com/themepile/modularis/compare/v4.0.4...v4.0.5).
107
+
108
+ ---
109
+
110
+ ### 4.0.4
111
+ This patch fixes various bugs that have been submitted since release. We'll be more specific with changelog updates going forward.
112
+
113
+ ---
114
+
115
+ ### 4.0.3
116
+ Bug fixes
117
+
118
+ ---
119
+
120
+ ### 4.0.2
121
+ Bug fixes
122
+
123
+ ---
124
+
125
+ ### 4.0.1
126
+ Bug fixes
127
+
128
+ ---
129
+
130
+ ### **4.0**- February 28, 2013
131
+ Initial launch of Modularis 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://modularis.themepile.com/migration.php) for more information.
132
+
133
+ ---
134
+
135
+ ### 3.2.5
136
+ Bug fixes
137
+
138
+ ---
139
+
140
+ ### 3.2.4
141
+ Bug fixes
142
+
143
+ ---
144
+
145
+ ### 3.2.3
146
+ Bug fixes
147
+
148
+ ---
149
+
150
+ ### 3.2.2- November 10, 2012
151
+ This patch fixes a typo found in the tabs plugin.
152
+
153
+ ---
154
+
155
+ ### 3.2.1- November 9, 2012
156
+ This patch include bug fixes for various elements, such as:
157
+ * Adding a missing line for mqueries.scss into app.scss
158
+ * Height of fixed magellan element
159
+ * Update viewport tag with initial-scale
160
+ * Dropdown button fixes
161
+ * Clearing bug fixes
162
+ * Added a font-smoothing variable
163
+ * Added close support to accordions
164
+ * Removed deep linking hashes from tabs
165
+ * Topbar now resets on close for small layouts
166
+
167
+ ---
168
+
169
+ ### **3.2**- October 26, 2012
170
+ With this update we've revamped our documentation to be more organized and explain details regarding Scss, Compass and Javascripts.
171
+
172
+ The updates to Modularis itself are as follows:
173
+ * Added [Magellan](http://modularis.themepile.com/docs/magellan.php), a plugin for building design agnostic sticky navs that know where you are on the page.
174
+ * Added [Joyride](http://modularis.themepile.com/docs/joyride.php), our plugin for creating tours of your website or app.
175
+ * Added [Clearing](http://modularis.themepile.com/docs/clearing.php), our new responsive image gallery lightbox plugin.
176
+ * 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.
177
+ * Updated Reveal
178
+ * Updated index files to use defined header and footer structure
179
+ * Cleaned up some Compass included
180
+ * RTL for ui and navbar.
181
+ * Tabs can now use unordered lists or definition lists, replacing the definition title with an li.section-title.
182
+ * Added definition list styles.
183
+ * Added mobile-#-up classes to use in conjunction with regular block-grid classes for a different mobile grid.
184
+ * Updated block grids to be really flexible and customizable based on a variable.
185
+ * Added better responsive styling for tooltips.
186
+ * Separated all media queries into their own file for easy droppping.
187
+ * Updated modular scale to use new functions, doesn't effect end-users.
188
+ * Updated visibility classes to use inherit instead of block to accomodate for spans.
189
+ * Removed HTML5 Shiv from header since its included in modernizr.
190
+ * Added [pricing tables](http://modularis.themepile.com/docs/elements.php#pricing-tables) UI element
191
+ * Added many new Scss variables to control styling for things like: topbar, clearing, joyride, pricint tables, etc.
192
+ * Bug fixes for Topbar.
193
+ * Added 5 [HTML templates](http://modularis.themepile.com/templates.php) to the add-ons section.
194
+
195
+ ---
196
+
197
+ ### 3.1.1- September 19, 2012
198
+ 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.
199
+
200
+ ---
201
+
202
+ ### **3.1**- September 14, 2012
203
+ Launched new features, a new Add-ons section to the marketing site, Right to left language support, and fixed bugs.
204
+
205
+ With this release of Modularis, we include:
206
+ * Downloadable HTML template pages that can be copy/pasted into an existing project or added to your project upon downloading from the customizer.
207
+ * The Add-on's section includes a round-up of all the playground pieces, etc that aren't officially included in Modularis, but built to work with it. This includes: [Templates](http://modularis.themepile.com/templates.php), [Icon Fonts](http://modularis.themepile.com/icon-fonts.php), [Off-Canvas Layouts](http://modularis.themepile.com/off-canvas.php), [Responsive Tables](http://modularis.themepile.com/responsive-tables.php), [SVG Social Icons](http://modularis.themepile.com/social-icons.php), and [Omnigraffle Stencils](http://modularis.themepile.com/stencils.php).
208
+ * Modularis now includes a [responsive top navigation](http://modularis.themepile.com/navigation.php) 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.
209
+ * 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.
210
+ * New UI Styles for Progress Bars and Image Thumbs.
211
+ * Updated to include jQuery 1.8.1
212
+ * Orbit thumbnail documentation.
213
+ * Better Reveal size documentation.
214
+
215
+ ---
216
+
217
+ ### 3.0.9- August 14, 2012
218
+ Bug fixes and locking down dependencies.
219
+
220
+ ---
221
+
222
+ ### 3.0.8- August 10, 2012
223
+ Numerous bugfixes. Added media query toggle plugin. Removed marketing site from repository and included a new `test/` directory to help contributors test patches.
224
+
225
+ New features: Media Query Toggler, block-grid mobile layouts, font-size customizer options and included modular scale gem as dependancy for SCSS version.
226
+
227
+ ---
228
+
229
+ ### 3.0.7- July 30, 2012
230
+ 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.
231
+
232
+ ---
233
+
234
+ ### 3.0.6- July 20, 2012
235
+ 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 Modularis's (if you want to). Added an [accordion](http://modularis.themepile.com/elements.php) element.
236
+
237
+ ---
238
+
239
+ ### 3.0.5- July 10, 2012
240
+ Fixed Compass performance issues by separating out each Modularis file and removing extraneous imports.
241
+
242
+ ---
243
+
244
+ ### 3.0.4- July 6, 2012
245
+ Fixed a number of bugs around the Sass/Gem installs and documentation. Some smaller items:
246
+ * Fixed a bug with dropdown buttons to allow clicking on their anchors again.
247
+ * Added styles for HTML5 (and other) input styles, not just text.
248
+ * Added error states back to the forms documentation.
249
+ * Flyouts in a nav bar can now expand up as well as down.
250
+ * In SCSS you can now set $base-size correctly, but we're still working to correct modifying the $ratio variable.
251
+
252
+ ---
253
+
254
+ ### 3.0.1 to 3.0.3- July 2 to July 4, 2012
255
+ Various bug fixes with the downloader, gem, and Sass install.
256
+
257
+ ---
258
+
259
+ ### **3.0**- June 30, 2012
260
+ Initial launch of Modularis 3, deprecating Modularis 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/docs/Capfile ADDED
@@ -0,0 +1,4 @@
1
+ load 'deploy'
2
+ # Uncomment if you are using Rails' asset pipeline
3
+ # load 'deploy/assets'
4
+ load 'config/deploy' # remove this line to skip loading any of the default tasks
data/docs/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'redcarpet'
4
+ gem 'sprockets'
5
+ gem 'foreman'
6
+ gem 'stasis'
7
+ gem 'sass', :require => false
8
+ gem 'coderay'
9
+ gem 'uglifier'
10
+
11
+ group :production do
12
+ gem 'therubyracer'
13
+ end
data/docs/Gemfile.lock ADDED
@@ -0,0 +1,45 @@
1
+ GEM
2
+ remote: https://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
+ redcarpet (2.2.2)
15
+ sass (3.2.6)
16
+ slop (3.3.2)
17
+ sprockets (2.9.0)
18
+ hike (~> 1.2)
19
+ multi_json (~> 1.0)
20
+ rack (~> 1.0)
21
+ tilt (~> 1.1, != 1.3.0)
22
+ stasis (0.2.0)
23
+ directory_watcher (= 1.4.1)
24
+ slop (= 3.3.2)
25
+ tilt (= 1.3.3)
26
+ therubyracer (0.10.2)
27
+ libv8 (~> 3.3.10)
28
+ thor (0.17.0)
29
+ tilt (1.3.3)
30
+ uglifier (1.3.0)
31
+ execjs (>= 0.3.0)
32
+ multi_json (~> 1.0, >= 1.0.2)
33
+
34
+ PLATFORMS
35
+ ruby
36
+
37
+ DEPENDENCIES
38
+ coderay
39
+ foreman
40
+ redcarpet
41
+ sass
42
+ sprockets
43
+ stasis
44
+ therubyracer
45
+ uglifier
data/docs/Procfile ADDED
@@ -0,0 +1,2 @@
1
+ web: bundle exec rackup -p 4001
2
+ stasis: bundle exec stasis -d 4000
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`.