yamlcss 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (213) hide show
  1. checksums.yaml +7 -0
  2. data/.travis.yml +12 -0
  3. data/Gemfile +10 -0
  4. data/Gemfile.lock +56 -0
  5. data/LICENSE.txt +59 -0
  6. data/Rakefile +23 -0
  7. data/Readme.md +120 -0
  8. data/VERSIONS.md +5 -0
  9. data/bin/yamlcss +6 -0
  10. data/lib/yamlcss.rb +22 -0
  11. data/lib/yamlcss/engine.rb +7 -0
  12. data/lib/yamlcss/generator.rb +84 -0
  13. data/lib/yamlcss/version.rb +4 -0
  14. data/vendor/assets/stylesheets/_iehacks.scss +3 -0
  15. data/vendor/assets/stylesheets/_yaml.scss +3 -0
  16. data/yaml/Gruntfile.js +199 -0
  17. data/yaml/License.txt +36 -0
  18. data/yaml/Readme.md +64 -0
  19. data/yaml/changelog.md +307 -0
  20. data/yaml/config.rb +25 -0
  21. data/yaml/demos/css/custom-grids.css +27 -0
  22. data/yaml/demos/css/flexible-columns.css +26 -0
  23. data/yaml/demos/css/flexible-grids.css +26 -0
  24. data/yaml/demos/css/rtl-support.css +31 -0
  25. data/yaml/demos/css/screen/screen-custom-grids.css +41 -0
  26. data/yaml/demos/css/screen/screen-rtl-support.css +182 -0
  27. data/yaml/demos/custom-grid.html +129 -0
  28. data/yaml/demos/flexible-columns.html +124 -0
  29. data/yaml/demos/flexible-grid.html +142 -0
  30. data/yaml/demos/rtl-support.html +127 -0
  31. data/yaml/docs/assets/css/icons/external_link.png +0 -0
  32. data/yaml/docs/assets/css/icons/hcalendar.png +0 -0
  33. data/yaml/docs/assets/css/icons/hcard.png +0 -0
  34. data/yaml/docs/assets/css/icons/icon-geo.png +0 -0
  35. data/yaml/docs/assets/css/icons/icon-hatom.png +0 -0
  36. data/yaml/docs/assets/css/icons/icon-haudio.png +0 -0
  37. data/yaml/docs/assets/css/icons/icon-hcalendar-add.png +0 -0
  38. data/yaml/docs/assets/css/icons/icon-hcalendar-download.png +0 -0
  39. data/yaml/docs/assets/css/icons/icon-hcalendar.png +0 -0
  40. data/yaml/docs/assets/css/icons/icon-hcard-add.png +0 -0
  41. data/yaml/docs/assets/css/icons/icon-hcard-download.png +0 -0
  42. data/yaml/docs/assets/css/icons/icon-hcard.png +0 -0
  43. data/yaml/docs/assets/css/icons/icon-hresume.png +0 -0
  44. data/yaml/docs/assets/css/icons/icon-rel-tag.png +0 -0
  45. data/yaml/docs/assets/css/icons/icon-xfn.png +0 -0
  46. data/yaml/docs/assets/css/icons/xfn/xfn-child.png +0 -0
  47. data/yaml/docs/assets/css/icons/xfn/xfn-colleague-met.png +0 -0
  48. data/yaml/docs/assets/css/icons/xfn/xfn-colleague.png +0 -0
  49. data/yaml/docs/assets/css/icons/xfn/xfn-friend-met.png +0 -0
  50. data/yaml/docs/assets/css/icons/xfn/xfn-friend.png +0 -0
  51. data/yaml/docs/assets/css/icons/xfn/xfn-me.png +0 -0
  52. data/yaml/docs/assets/css/icons/xfn/xfn-parent.png +0 -0
  53. data/yaml/docs/assets/css/icons/xfn/xfn-small.png +0 -0
  54. data/yaml/docs/assets/css/icons/xfn/xfn-spouse.png +0 -0
  55. data/yaml/docs/assets/css/icons/xfn/xfn-sweetheart-met.png +0 -0
  56. data/yaml/docs/assets/css/icons/xfn/xfn-sweetheart.png +0 -0
  57. data/yaml/docs/assets/css/layout-min.css +3 -0
  58. data/yaml/docs/assets/css/layout.css +3262 -0
  59. data/yaml/docs/assets/images/demo-custom-grid.png +0 -0
  60. data/yaml/docs/assets/images/demo-flex-column.png +0 -0
  61. data/yaml/docs/assets/images/demo-flex-grid.png +0 -0
  62. data/yaml/docs/assets/images/demo-rtl.png +0 -0
  63. data/yaml/docs/assets/images/yaml-solo-transparent-small.png +0 -0
  64. data/yaml/docs/assets/images/yaml-solo-transparent.png +0 -0
  65. data/yaml/docs/assets/js/domscript.js +209 -0
  66. data/yaml/docs/assets/js/jquery.gridbuilder.js +131 -0
  67. data/yaml/docs/assets/js/snippet/ZeroClipboard.swf +0 -0
  68. data/yaml/docs/assets/js/snippet/jquery.snippet.css +116 -0
  69. data/yaml/docs/assets/js/snippet/jquery.snippet.js +782 -0
  70. data/yaml/docs/assets/js/snippet/jquery.snippet.min.css +40 -0
  71. data/yaml/docs/assets/js/snippet/jquery.snippet.min.js +12 -0
  72. data/yaml/docs/assets/js/snippet/snippet.css +296 -0
  73. data/yaml/docs/index.html +3845 -0
  74. data/yaml/lib/html5shiv/html5shiv-printshiv.js +11 -0
  75. data/yaml/lib/html5shiv/html5shiv.js +8 -0
  76. data/yaml/lib/jquery-1.10.1.min.js +6 -0
  77. data/yaml/lib/jquery-migrate-1.2.1.min.js +2 -0
  78. data/yaml/package.json +20 -0
  79. data/yaml/sass/docs/assets/css/_screen.scss +786 -0
  80. data/yaml/sass/docs/assets/css/layout.scss +28 -0
  81. data/yaml/sass/static-build/add-ons/accessible-tabs/tabs.scss +15 -0
  82. data/yaml/sass/static-build/add-ons/microformats/microformats.scss +18 -0
  83. data/yaml/sass/static-build/add-ons/rtl-support/core/base-rtl.scss +20 -0
  84. data/yaml/sass/static-build/add-ons/rtl-support/forms/gray-theme-rtl.scss +16 -0
  85. data/yaml/sass/static-build/add-ons/rtl-support/navigation/hlist-rtl.scss +18 -0
  86. data/yaml/sass/static-build/add-ons/rtl-support/navigation/vlist-rtl.scss +18 -0
  87. data/yaml/sass/static-build/add-ons/rtl-support/screen/typography-rtl.scss +16 -0
  88. data/yaml/sass/static-build/core/base.scss +19 -0
  89. data/yaml/sass/static-build/core/iehacks.scss +19 -0
  90. data/yaml/sass/static-build/forms/gray-theme.scss +14 -0
  91. data/yaml/sass/static-build/navigation/hlist.scss +16 -0
  92. data/yaml/sass/static-build/navigation/vlist.scss +16 -0
  93. data/yaml/sass/static-build/print/print.scss +15 -0
  94. data/yaml/sass/static-build/screen/grid-960gs-12.scss +15 -0
  95. data/yaml/sass/static-build/screen/grid-960gs-16.scss +15 -0
  96. data/yaml/sass/static-build/screen/grid-blueprint.scss +15 -0
  97. data/yaml/sass/static-build/screen/grid-fluid-12col.scss +15 -0
  98. data/yaml/sass/static-build/screen/screen-FULLPAGE-layout.scss +15 -0
  99. data/yaml/sass/static-build/screen/screen-PAGE-layout.scss +15 -0
  100. data/yaml/sass/static-build/screen/typography.scss +16 -0
  101. data/yaml/sass/yaml-sass/_yaml-var-globals.scss +39 -0
  102. data/yaml/sass/yaml-sass/_yaml-var-typography.scss +80 -0
  103. data/yaml/sass/yaml-sass/add-ons/accessible-tabs/_tabs.scss +139 -0
  104. data/yaml/sass/yaml-sass/add-ons/accessible-tabs/jquery.tabs.js +266 -0
  105. data/yaml/sass/yaml-sass/add-ons/microformats/_microformats.scss +179 -0
  106. data/yaml/sass/yaml-sass/add-ons/microformats/icons/external_link.png +0 -0
  107. data/yaml/sass/yaml-sass/add-ons/microformats/icons/hcalendar.png +0 -0
  108. data/yaml/sass/yaml-sass/add-ons/microformats/icons/hcard.png +0 -0
  109. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-geo.png +0 -0
  110. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hatom.png +0 -0
  111. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-haudio.png +0 -0
  112. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcalendar-add.png +0 -0
  113. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcalendar-download.png +0 -0
  114. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcalendar.png +0 -0
  115. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcard-add.png +0 -0
  116. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcard-download.png +0 -0
  117. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hcard.png +0 -0
  118. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-hresume.png +0 -0
  119. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-rel-tag.png +0 -0
  120. data/yaml/sass/yaml-sass/add-ons/microformats/icons/icon-xfn.png +0 -0
  121. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-child.png +0 -0
  122. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-colleague-met.png +0 -0
  123. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-colleague.png +0 -0
  124. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-friend-met.png +0 -0
  125. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-friend.png +0 -0
  126. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-me.png +0 -0
  127. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-parent.png +0 -0
  128. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-small.png +0 -0
  129. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-spouse.png +0 -0
  130. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-sweetheart-met.png +0 -0
  131. data/yaml/sass/yaml-sass/add-ons/microformats/icons/xfn/xfn-sweetheart.png +0 -0
  132. data/yaml/sass/yaml-sass/add-ons/rtl-support/core/_base-rtl.scss +177 -0
  133. data/yaml/sass/yaml-sass/add-ons/rtl-support/forms/_gray-theme-rtl.scss +34 -0
  134. data/yaml/sass/yaml-sass/add-ons/rtl-support/navigation/_hlist-rtl.scss +42 -0
  135. data/yaml/sass/yaml-sass/add-ons/rtl-support/navigation/_vlist-rtl.scss +45 -0
  136. data/yaml/sass/yaml-sass/add-ons/rtl-support/screen/_typography-rtl.scss +30 -0
  137. data/yaml/sass/yaml-sass/add-ons/syncheight/jquery.syncheight.js +112 -0
  138. data/yaml/sass/yaml-sass/core/_base.scss +15 -0
  139. data/yaml/sass/yaml-sass/core/_iehacks.scss +426 -0
  140. data/yaml/sass/yaml-sass/core/base-modules/_accessibility.scss +48 -0
  141. data/yaml/sass/yaml-sass/core/base-modules/_columns.scss +27 -0
  142. data/yaml/sass/yaml-sass/core/base-modules/_float-handling.scss +32 -0
  143. data/yaml/sass/yaml-sass/core/base-modules/_forms-core.scss +296 -0
  144. data/yaml/sass/yaml-sass/core/base-modules/_grids-core.scss +55 -0
  145. data/yaml/sass/yaml-sass/core/base-modules/_normalization.scss +165 -0
  146. data/yaml/sass/yaml-sass/core/base-modules/_print-core.scss +36 -0
  147. data/yaml/sass/yaml-sass/core/js/yaml-focusfix.js +70 -0
  148. data/yaml/sass/yaml-sass/forms/_gray-theme.scss +475 -0
  149. data/yaml/sass/yaml-sass/mixins/_yaml-mixins-core.scss +248 -0
  150. data/yaml/sass/yaml-sass/navigation/_hlist.scss +106 -0
  151. data/yaml/sass/yaml-sass/navigation/_vlist.scss +129 -0
  152. data/yaml/sass/yaml-sass/print/_print.scss +61 -0
  153. data/yaml/sass/yaml-sass/screen/_grid-960gs-12.scss +4 -0
  154. data/yaml/sass/yaml-sass/screen/_grid-960gs-16.scss +4 -0
  155. data/yaml/sass/yaml-sass/screen/_grid-blueprint.scss +4 -0
  156. data/yaml/sass/yaml-sass/screen/_grid-fluid-12col.scss +4 -0
  157. data/yaml/sass/yaml-sass/screen/_screen-FULLPAGE-layout.scss +171 -0
  158. data/yaml/sass/yaml-sass/screen/_screen-PAGE-layout.scss +165 -0
  159. data/yaml/sass/yaml-sass/screen/_typography.scss +485 -0
  160. data/yaml/yaml/add-ons/accessible-tabs/jquery.tabs.js +266 -0
  161. data/yaml/yaml/add-ons/accessible-tabs/tabs.css +136 -0
  162. data/yaml/yaml/add-ons/microformats/icons/external_link.png +0 -0
  163. data/yaml/yaml/add-ons/microformats/icons/hcalendar.png +0 -0
  164. data/yaml/yaml/add-ons/microformats/icons/hcard.png +0 -0
  165. data/yaml/yaml/add-ons/microformats/icons/icon-geo.png +0 -0
  166. data/yaml/yaml/add-ons/microformats/icons/icon-hatom.png +0 -0
  167. data/yaml/yaml/add-ons/microformats/icons/icon-haudio.png +0 -0
  168. data/yaml/yaml/add-ons/microformats/icons/icon-hcalendar-add.png +0 -0
  169. data/yaml/yaml/add-ons/microformats/icons/icon-hcalendar-download.png +0 -0
  170. data/yaml/yaml/add-ons/microformats/icons/icon-hcalendar.png +0 -0
  171. data/yaml/yaml/add-ons/microformats/icons/icon-hcard-add.png +0 -0
  172. data/yaml/yaml/add-ons/microformats/icons/icon-hcard-download.png +0 -0
  173. data/yaml/yaml/add-ons/microformats/icons/icon-hcard.png +0 -0
  174. data/yaml/yaml/add-ons/microformats/icons/icon-hresume.png +0 -0
  175. data/yaml/yaml/add-ons/microformats/icons/icon-rel-tag.png +0 -0
  176. data/yaml/yaml/add-ons/microformats/icons/icon-xfn.png +0 -0
  177. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-child.png +0 -0
  178. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-colleague-met.png +0 -0
  179. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-colleague.png +0 -0
  180. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-friend-met.png +0 -0
  181. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-friend.png +0 -0
  182. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-me.png +0 -0
  183. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-parent.png +0 -0
  184. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-small.png +0 -0
  185. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-spouse.png +0 -0
  186. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-sweetheart-met.png +0 -0
  187. data/yaml/yaml/add-ons/microformats/icons/xfn/xfn-sweetheart.png +0 -0
  188. data/yaml/yaml/add-ons/microformats/microformats.css +167 -0
  189. data/yaml/yaml/add-ons/rtl-support/core/base-rtl.css +167 -0
  190. data/yaml/yaml/add-ons/rtl-support/core/base-rtl.min.css +3 -0
  191. data/yaml/yaml/add-ons/rtl-support/forms/gray-theme-rtl.css +44 -0
  192. data/yaml/yaml/add-ons/rtl-support/navigation/hlist-rtl.css +48 -0
  193. data/yaml/yaml/add-ons/rtl-support/navigation/vlist-rtl.css +54 -0
  194. data/yaml/yaml/add-ons/rtl-support/screen/typography-rtl.css +38 -0
  195. data/yaml/yaml/add-ons/syncheight/jquery.syncheight.js +112 -0
  196. data/yaml/yaml/core/base.css +705 -0
  197. data/yaml/yaml/core/base.min.css +3 -0
  198. data/yaml/yaml/core/iehacks.css +468 -0
  199. data/yaml/yaml/core/iehacks.min.css +3 -0
  200. data/yaml/yaml/core/js/yaml-focusfix.js +70 -0
  201. data/yaml/yaml/forms/gray-theme.css +676 -0
  202. data/yaml/yaml/navigation/hlist.css +109 -0
  203. data/yaml/yaml/navigation/vlist.css +144 -0
  204. data/yaml/yaml/print/print.css +42 -0
  205. data/yaml/yaml/screen/grid-960gs-12.css +164 -0
  206. data/yaml/yaml/screen/grid-960gs-16.css +212 -0
  207. data/yaml/yaml/screen/grid-blueprint.css +308 -0
  208. data/yaml/yaml/screen/grid-fluid-12col.css +164 -0
  209. data/yaml/yaml/screen/screen-FULLPAGE-layout.css +184 -0
  210. data/yaml/yaml/screen/screen-PAGE-layout.css +196 -0
  211. data/yaml/yaml/screen/typography.css +486 -0
  212. data/yamlcss.gemspec +30 -0
  213. metadata +314 -0
@@ -0,0 +1,36 @@
1
+ /**
2
+ * "Yet Another Multicolumn Layout" - YAML CSS Framework
3
+ *
4
+ * License Information
5
+ *
6
+ * @copyright Copyright 2005-2013, Dirk Jesse
7
+ * @license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
8
+ * YAML-CDL (http://www.yaml.de/license.html)
9
+ * @link http://www.yaml.de
10
+ */
11
+
12
+ YAML under Creative Commons License (CC-BY 2.0)
13
+ ===============================================
14
+
15
+ The YAML framework is published under the Creative Commons Attribution 2.0 License (CC-BY 2.0), which permits
16
+ both private and commercial use (http://creativecommons.org/licenses/by/2.0/).
17
+
18
+ Condition: For the free use of the YAML framework, a backlink to the YAML homepage (http://www.yaml.de) in a
19
+ suitable place (e.g.: footer of the website or in the imprint) is required.
20
+
21
+ In general it would be nice to get a short note when new YAML-based projects are released. If you are highly
22
+ pleased with YAML, perhaps you would like to take a look at my Amazon wish list?
23
+ https://www.amazon.de/gp/registry/wishlist/108Q0YYJ49UC2/
24
+
25
+ YAML under Commercial Distribution License (YAML-CDL)
26
+ =====================================================
27
+
28
+ If you are a commercial software developer and you want to release your software under a license that doesn't
29
+ fit to the Creative Commons Attribution 2.0 License], you may purchase a commercial license. We offer the
30
+ following commercial license models:
31
+
32
+ - Project Related License
33
+ - General License
34
+ - OEM License
35
+
36
+ Full license texts and contact information are available at: http://www.yaml.de/license.html
@@ -0,0 +1,64 @@
1
+ # YAML CSS Framework
2
+
3
+ YAML (*Yet Another Multicolumn Layout*) is a modular CSS framework for truly flexible, accessible and responsive websites. YAML is focussed on device independent screen design and provides bullet-proof modules for flexible layouts. This is a perfect starting point and the key to truly responsive design.
4
+
5
+ - Latest version: 4.1.2
6
+ - Website: <http://www.yaml.de>
7
+
8
+ ## Quick Start
9
+ ### Using the CSS port
10
+ Download the project and take a look at the provided examples in the `demos/` folder.
11
+
12
+ ### Using the Sass Port
13
+ You need to have [Ruby](http://www.ruby-lang.org/en/downloads/), [Sass](http://sass-lang.com/download.html) and [Compass](http://compass-style.org/install/) installed.
14
+
15
+ * `compass compile` starts a single compass run to compile sass/scss files to CSS.
16
+ * `compass watch` starts the compass watcher that recompiles your sass/scss files on every change.
17
+
18
+ #### Folder Structure
19
+ The Sass port is built in a way that allows you to create a fully customized version of YAML's framework files.
20
+
21
+ * `./sass/css/` (for your Sass projects)
22
+ * `./sass/docs/assets/css/` (YAML Docs CSS - built with Sass)
23
+ * `./sass/static-build/` (file wrapper for YAML builds, can be deleted if don't want to compile static YAML builds)
24
+ * `./sass/yaml-sass/` (Sass port of YAML CSS Framework)
25
+
26
+ Please keep in mind, that the /yaml-sass/ folder also contains several JavaScript files that are needed to create a complete YAML build.
27
+
28
+
29
+ ### Create Custom YAML Builds
30
+
31
+ You need to have [Node.js](http://nodejs.org/download/), [Grunt-CLI](http://gruntjs.com/getting-started), [Ruby](http://www.ruby-lang.org/en/downloads/), [Sass](http://sass-lang.com/download.html) and [Compass](http://compass-style.org/install/) installed. Run `npm install` once in the root directory of this project to resolve and install all Grunt dependencies.
32
+
33
+ The following tasks are provided:
34
+
35
+ * `grunt` starts a single compass run to compile sass/scss files to CSS.
36
+ * `grunt watch` starts the compass watcher that recompiles your sass/scss files on every change.
37
+ * `grunt build` compiles and optimizes all static YAML4 CSS files for release/production.
38
+ * `grunt build-utf8` same functionality like `grunt build` but doesn't remove `@charset "utf8"` rule from CSS files
39
+
40
+ ## Docs
41
+ Download or clone this project and open file `docs/index.html` in your browser.
42
+
43
+ ## Licenses
44
+ ### YAML under Creative Commons License (CC-BY 2.0)
45
+
46
+ The YAML framework is published under the [Creative Commons Attribution 2.0 License (CC-BY 2.0)](http://creativecommons.org/licenses/by/2.0/), which permits
47
+ both private and commercial use.
48
+
49
+ *Condition: For the free use of the YAML framework, a backlink to the YAML homepage (<http://www.yaml.de>) in a
50
+ suitable place (e.g.: footer of the website or in the imprint) is required.*
51
+
52
+ In general it would be nice to get a short note when new YAML-based projects are released. If you are highly
53
+ pleased with YAML, perhaps you would like to take a look at my [Amazon wish](https://www.amazon.de/gp/registry/wishlist/108Q0YYJ49UC2/) list?
54
+
55
+ ### YAML under Commercial Distribution License (YAML-CDL)
56
+
57
+ If you are a commercial software developer and you want to release your software under a license that doesn't fit to the [Creative Commons Attribution 2.0 License](http://creativecommons.org/licenses/by/2.0/), you may purchase a commercial license. We offer the following commercial license models:
58
+
59
+ - Project Related License
60
+ - General License
61
+ - OEM License
62
+
63
+ Full license texts and contact information are available at: <http://www.yaml.de/license.html>
64
+
@@ -0,0 +1,307 @@
1
+ # Version 4.1.2 (13-07-28)
2
+ This is the second maintenance release for YAML 4.1.x path. Thanks to Alexander Haß and MDMueller for their contributions.
3
+
4
+ ## Bug Fixes
5
+ ### Forms Module
6
+ * added support for input[type="image"] elements to forms module (issue #28)
7
+ * rearranged form styles for RTL support to avoid specificity conflicts
8
+ * corrected several small problems in RTL mode in forms module, especially in columnar view. (issue #30)
9
+
10
+ ### Navigation Module
11
+ * removed round corners of search field in hlist navigation on iOS (issue #31)
12
+
13
+ ## Code Changes
14
+ ### Forms Module
15
+ * added "clear:both" for .ym-message class to avoid conflicts when messages are placed behind the form field in the markup. (issue #35)
16
+
17
+ ### Sass
18
+ * several improvements were made to the gradient generator, including a fallback for oldIE browsers.
19
+
20
+ # Version 4.1.1 (13-06-27)
21
+ This is the first maintenance release for YAML 4.1.x path
22
+
23
+ ## General
24
+ * added RTL support for form theme: gray-theme.css
25
+
26
+ ## Bug Fixes
27
+ ### Normalization Module
28
+ * removed &lt;hgroup&gt; element from normalization module (removed from the HTML5 specs)
29
+
30
+ ### Forms Module
31
+ * fixed a wrong margins between .ym-fbox siblings - #6
32
+ * fixed missing button adjustments in form linearization - #9
33
+ * fixed button style for search button in hlist navigation on iOS - #10
34
+ * fixed a problem with .ym-inline elements in columnar mode, issue #20
35
+ * fixed a problem with .ym-message in columnar mode, issue #21
36
+
37
+ ### Navigation Module
38
+ * fixed border for navigation title in vlist - #8
39
+
40
+ ### Misc
41
+ * fixed several typos in CSS comments
42
+ * deleted some irrelevant styles from rtl-files - #15
43
+
44
+ ## Code Changes
45
+ ### Forms Module
46
+ * added new custom button class .ym-reply - #7
47
+ * added rtl-support for forms: yaml/add-ons/rtl-support/forms/gray-theme-rtl.css - #11, #12
48
+
49
+ ### Add-ons
50
+ * reduced file size of microformats icons and base64 inline images
51
+
52
+ ### Demos
53
+ * unified HTML structure for the seach field in RTL demo: rtl-support.html #16
54
+
55
+ # Version 4.1.0 (13-06-11)
56
+ A big thanks goes to the following contributors for their help on this version:
57
+
58
+ * Jens Grochtdreis (@flocke)
59
+ * Michael Schulze (@michsch)
60
+ * Frederic Hemberger (@fhemberger)
61
+
62
+ ## General
63
+ * Moved development from private SVN to public Github repository
64
+ * Switched development code base from static CSS to Sass + Compass.
65
+ * YAML can now be used as static CSS framework (as in the past) or as a highly configurable Sass/Compass module.
66
+ * Added Grunt support to create custom YAML builds, including namespace configuration
67
+
68
+ ## Code Changes
69
+ ### Normalization Module
70
+ * added &lt;main&gt; element to normalization module
71
+ * added overflow correction for &lt;svg&gt; elements in IE 9
72
+ * added h[x]:target rules to remove outline in Webkit browsers
73
+
74
+ ### Column Module
75
+ * fixed a bug where responsive images were always scaled to full size by adding `table-layout:fixed` to column wrapper
76
+
77
+ ### Forms Module
78
+ * simplified markup: type classes `.ym-fbox-[text|select|check|button]` are now optional and only needed for IE 6 support.
79
+ * form elements now use `box-sizing:border-box` as default in all browsers down to IE 8.
80
+ * reduced specificity for form elements to allow easier override styles.
81
+ * changed standard width of form elements to 70%. Now element widths are equal in default and columnar view mode.
82
+ * added class `.ym-fbox` for styling form rows.
83
+ * added class `.ym-fbox-footer` as special form row, intended as a footer that holds all buttons.
84
+ * added class `.ym-fbox-wrap` as a wrapper to align multiple form elements in a row.
85
+ * added class `.ym-inline` to enable the usage of individual inline form elements.
86
+ * added custom button types (primary, positive, warning, danger)
87
+ * added custom button sizes (xlarge, large, small, xsmall)
88
+ * added 3 new custom buttons (close, sign, support)
89
+
90
+ ### Typography Module
91
+ * Changed the margin direction for vertical rhythm from `margin-top` to `margin-bottom`
92
+
93
+ ### Print Module
94
+ * removed forced linearization for grids and columns module for print media
95
+
96
+ ### Add-ons
97
+ * Accessible Tabs jQuery plugin
98
+ * Update to version 1.9.7 (jQuery 1.9.x support)
99
+ * tabs.css - added print styles to enable printing of tabbed content
100
+ * SyncHeight jQuery plugin
101
+ * Update to version 1.5 (jQuery 1.9.x support)
102
+ * Microformats
103
+ * added Base64 encoded inline images to reduce HTTP requests in modern browsers, fallback for old IE's included
104
+
105
+ ### Demos
106
+ * Updated all layout demos to use the HTML5 &lt;main&gt; element
107
+
108
+ ### Other Changes
109
+ * added HTML5shiv to project and updated all references in HTML files
110
+ * updated jQuery to v1.10.1 and added jQuery Migration Plugin v1.2.1 to project
111
+
112
+ # Version 4.0.2
113
+ ## Bug Fixes
114
+ * tabs.css: fixed a float-dropping bug of generated tabs in Chrome 22
115
+ * vlist-rtl.css: fixed a bug where first level selectors didn't overwrite ltr-settings
116
+ * docs: Fixed a IE 7 rendering-bug in column configuration snippet "2cols - sidebar left"
117
+ * docs: Added an info-message about the behavior of responsive media elements in environments wrapped with display:table
118
+ * gray-theme.css: bugfix for missing icons in custom buttons on HTC devices with Android 2.2
119
+
120
+ # Version 4.0.1
121
+
122
+ ## Bug Fixes
123
+ * base.css: added two missing commas in CSS selectors
124
+ * microformats.css: removed shorthand value from backround-image property
125
+ * typography.css: added height:auto to .flexible to avoid scaling problems
126
+ * docs: fixed positioning in deeplink navigation
127
+ * docs: corrected several typos
128
+ * vlist.css: fixed a selector (missing namespace)
129
+ * typography.css: removed double-defined selector "pre"
130
+
131
+ ## Improvements
132
+ * extended documentation for column module (code snippets for 2-column scenarios)
133
+ * grid linearization now works in combination with .ym-equalize
134
+ * added progressive linearization feature for forms (by forcing "full" style)
135
+ * added documentation for classes .ym-error, .ym-message, .ym-required, .ym-label and .ym-noprint
136
+ * changed default markup of vlist navigation (its now similar to hlist navigation)
137
+ * updated Accessible Tabs Plugin to v1.9.4
138
+
139
+ # Version 4.0
140
+ YAML 4 brings a lot of changes and improvements, starting with a completely rewritten documentation, improved framework features and new set of layout demos.
141
+ ## Changes
142
+ ### A new documentation
143
+ YAMLs new documentation comes as an offline-capable HTML file. It provides a lot of useful code snippets, ready to use them via copy & paste in your project. We will try to improve the docs in the future based on your feedback.
144
+
145
+ ### Namespaces
146
+ All core features of the CSS framework are namespaced with the prefix "ym-". This helps to avoid conflicts with third party CSS code - a common problem especially in bigger projects.
147
+
148
+ ### Bulletproof flexible grid module
149
+ YAML was one of the first framework projects that implemented a flexible grid system. Over 6 years of constant development on the framework the flexible grid module has proven its crossbrowser stability. In YAML 4 it becomes easily customizeable. Now you can design with YAMLs default fluid grid as well as fixed-width custom grid. And it offers you an easy solution for progressive linearization.
150
+
151
+ ### Flexible forms with themeing support
152
+ Since version 3.2 YAML offers a form toolkit for flexible forms. This toolkit has been greatly improved by separating functional styles (located in the framework's core style sheet) and theme-stylesheets for the visual form design. As a developer you can build on this toolkit to create even complex forms in a simple way. You can create new, reusable form themes - which helps to makes prototyping and modifications of forms less complicated.
153
+
154
+ ### Matched building blocks
155
+ YAML offers several different layout modules, such as grids, columns, navigation bars, form elements, typography, etc. All default styles are matched to each other in order to provide a clean gray-scaled base for rapid prototyping.
156
+
157
+ # Version 3.3.1
158
+ ## Bug Fixes
159
+ * Bugfix: yaml-focusfix.js - fixed a small bug in classname detection
160
+ * Bugfix: base.css & base-rtl.css - skiplink CSS produced a huge horizontal scrollbar in FF4
161
+ * Bugfix: markup.html - corrected wrong filename to include "yaml-focusfix.js"
162
+ * Update: Updated jQuery Library to current stable release 1.6.1
163
+ * Update: Updated "Accessible Tabs" add-on to current stable release 1.9.1
164
+
165
+ # Version 3.3
166
+
167
+ ## Improvements & Feature Changes in YAML-Core
168
+ * New: base.css - Support for HTML5 Elements: set block-model to allow structural formatting(article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary)
169
+ * Improvement: base.css - removed last remaining positioning properties for #nav, #main, #header and #topnav from base.css
170
+ * Improvement: base.css - changed containing floats solution for .floatbox to contain floats without clipping: display:table; width: 100%;
171
+ * Improvement: base.css - changed containing floats solution for subtemplates to: display:table; width: 100%;
172
+ * Improvement: base.css - moved non-general parts of the italics fix to iehacks.css to save some bytes in modern browsers.
173
+ * Improvement: iehacks.css - trigger hasLayout for subcolumns content boxes in print layout (containing floats).
174
+ * Improvement: yaml-focusfix.js - rewritten JS code (thanks to Mathias 'molily' Schäfer for contribution)
175
+
176
+ ## Improvements & Feature Changes in YAML
177
+ * Improvement: forms.css - changed clearing for form rows (.type-text etc.) and fieldsets to clearfix to ease CSS3 form styling
178
+ * Improvement: content_default.css - new default values for &lt;sub&gt; and &lt;sup&gt;
179
+
180
+ ## General Changes
181
+ * Improvment: removed @charset rule from all stylesheets to avoid problems with several CSS minimizer tools.
182
+
183
+ # Version 3.2.1
184
+ ## Improvements & Feature Changes in YAML-Core
185
+ * Renamed: yaml-focusfix.js - The JS file webkit-focusfix.js (introduced in v3.2) was renamed due to the extended support for more browsers
186
+ * Improvement: iehacks.css - simplified Clearfix adjustments for IE 5.x - 7.0
187
+ * Improvement: yaml-focusfix.js - no more pollution of global namespace
188
+ * Improvement: yaml-focusfix.js - added IE8 support and fallback solution for older webkit browsers
189
+
190
+ ## Improvements & Feature Changes in YAML
191
+ * Improvement: content_default.css - better contrast on a:focus {} (keyboard acessibility)
192
+ * Improvement: yaml/navigation: all navigation stylesheets - adjusted :focus() styles to avoid overruling
193
+ * Improvement: forms.css - improved robustness for "columnar" and "full" form layout (avoiding float drops)
194
+ * Improvement: forms.css - included fix for IE7 auto-padding bug when using buttons
195
+
196
+ ## Changes in Examples
197
+ * Improvement: equal_height_boxes.html - better accessibility for complex example (hidden more links within content boxes)
198
+ * Bugfix: flexible_grids2.html - added new skiplink styling to its basemod_grids2.css
199
+ * Bugfix: equal_height_boxes.html - added new skiplink styling to its basemod_equal_heights.css
200
+
201
+
202
+ # Version 3.2
203
+
204
+ ## Improvements & Feature Changes in YAML-Core
205
+ * New: base.css - merged base.css and print_base.css (smaller filesize)
206
+ * New: base.css - New subtemplate-set (20%, 40%, 60% and 80%), equalized mode is available
207
+ * New: base.css - new skip link solution, that allows overlaying
208
+ * New: js/webkit-focusfix.js - JavaScript based fix for focus problems in Webkit-browsers (Safari, Google Chrome)
209
+ * Improvement: base.css - Split up media types to "all", "screen & projection" and "print", helped to avoid several problems in print layout.
210
+ * Improvement: base.css - using child selectors for equalize-definitions saved about 400 bytes of code
211
+ * Improvement: base.css - moved visual print settings (fontsize & hidden containers) to print-stylesheets
212
+ * Improvement: iehacks.css - improved code for robustness of all major layout elements
213
+ * Bugfix: base.css - removed &lt;dfn&gt; from the hidden elements again
214
+ * Bugfix: iehacks.css - fixed a bug that made subtemplates invisible in IE 5.01
215
+ * Bugfix: slim_iehacks.css - Clearfix hack was broken in IE7
216
+ * Feature Drop: base.css - removed code to force vertical scrollbars in FF, Safari & Opera (replaced by CSS3 solution in user files)
217
+ * Feature Drop: iehacks.css - removed compatibility code for #page_margins and #page IDs.
218
+ * Feature Drop: iehacks.css - column backgrounds using #col3's border-definition aren't available anymore, due to accessibility and maintenance issues in IE
219
+ * Improvement: slightly better optimized slim-versions of core-files.
220
+
221
+ ## Improvements & Feature Changes in YAML
222
+ * New: forms.css - added .full class as an option to get full width &lt;input&gt;, &lt;select&gt; and &lt;textarea&gt; elements within e.g. subcolumns
223
+ * New: content_default.css - added styles for &lt;big&gt;, &lt;small&gt;, &lt;dfn&gt; and &lt;tt&gt;
224
+
225
+ * Improvement: forms.css - .yform class can be added to any element. It's not bundled with form-element anymore.
226
+ * Improvement: forms.css - ajdusted fieldset- & div-paddings to avoid clipping of element outlines and dropshadows in Safari.
227
+ * Improvement: forms.css - cleaner and easier fix for fieldset/legend problem in all IE's (including IE8).
228
+ * Improvement: forms.css - Formatting for "reset" and "submit" buttons changed from IDs to classes to allow multiple forms on a webpage. Styling available via input[type=reset] or input.reset to older support IE versions (IE5.x & IE6).
229
+ * Improvement: content_default.css - added a fix to &lt;sub&gt;, &lt;sub&gt; to prevent the visual increase of line-height.
230
+ * Improvement: nav_slidingdoor.css - Removed predefined indent margin of 50px. Indention has to be set by the user in basemod.css
231
+ * Improvement: nav_shinybuttons.css - Removed predefined indent padding of 50px. Indention has to be set by the user in basemod.css
232
+
233
+ * Bugfix: forms.css - corrected issue in Firefox 1.x & 2.x where form labels weren't shown correctly in columnar display (FF-Bug)
234
+ * Bugfix: forms.css - no more jumping checkboxes & radiobuttons in IE8 and Opera
235
+ * Bugfix: basemod_draft.css - changed predefined selectors #page_margins and #page into .page_margins and .page
236
+ * Bugfix: content_default.css - nested lists (ol,ul) will be displayed correctly now.
237
+ * Bugfix: markup_draft.html - moved charset metatag in front of title element to allow UTF-8 there
238
+
239
+ * Feature Drop: debug.css - removed debug-stylesheet from yaml/ folder. This feature is replaced by the new YAML Debug Application (http://debug.yaml.de)
240
+
241
+ * Update: tools/dreamweaver_7/base.css - updated to recent codebase.
242
+ * Update: updated jQuery library to version 1.3.2
243
+
244
+ ## Improvement & Feature Changes in YAML-Add-ons
245
+ * New Add-on: Accessible-Tabs plugin for jQuery
246
+ * New Add-on: SyncHeight plugin for jQuery
247
+
248
+ * Improvement: Microformats - added missing icons: xfn-child.png, xfn-parent.png, xfn-small.png and xfn-spouse.png
249
+ * Improvement: RTL-Support - iehacks-rtl.css: added an option to force the vertical scrollbar to the right in Internet Explorer (disabled by default)
250
+
251
+ ## Changes in Examples
252
+ * New Feature: All examples - added WAI-ARIA landmark roles for accessibility improvement
253
+ * New Feature: All examples - added optional CSS3-based code to force vertical scrollbars (overflow-y)
254
+ * New Example: multicolumnar_forms.html - demonstrates two easy ways to create flexible multicolumnar forms
255
+ * New Example: accessible_tabs.html - example for the usage of the Accessible-Tabs and the SyncHeight add-on
256
+ * New Example: 3col_liquid_faux_columns.html - demonstrates "Liquid Faux Columns" technique
257
+ * Improvement: 3col_gfxborder.html - changed ID's to classes to allow multiple usage
258
+ * Improvement: building_forms.html - JavaScript Detection added
259
+ * Improvement: equal_height_boxes.html - added a second usage example (simple)
260
+ * Improvement: dynamic_layout_switching.html - added JavaScript detection code
261
+ * Improvement: dynamic_layout_switching.html - added "show all columns" option
262
+ * Removed: 3col_column_backgrounds.html - this feature isn't supported anymore due to accessibility issues
263
+ * Bugfix: 2col_right_13.html - corrected fix for 3-pixel-bug in IE-patch file
264
+ * Bugfix: dynamic_layout_switching.html - corrected fix for 3-pixel-bug in IE-patch file
265
+ * Bugfix: equal_height_boxes.html - still used #page_margins and #page ID's.
266
+ * Bugfix: index.html - link to last example corrected
267
+ * Bugfix: several CSS files were still not saved in UTF-8
268
+ * Bugfix: UTF-8 BOM signature removed from some files in examples/04_layout_styling/
269
+
270
+ # Version 3.1
271
+ ## General Changes
272
+ * markup changes: ID's #page_margins and #page are changed into classes for multiple usage within a single layout
273
+ * navigation elements: changed ID's to classes for easier usage, changed classnames for consistency
274
+ * forms support included
275
+ * better standard content styling
276
+ * example section rearanged
277
+ * added a small navigation to cycle through all examples
278
+ * new example "styling_content" included
279
+ * new example "building_forms" included
280
+ * new example "flexible grids II" included
281
+ * new example "fullpage 3col" included
282
+ * new example "fullpage grids" included
283
+ * new example "equal_height_boxes" included
284
+ * new example "dynamic_layout_switching" included
285
+ * add-on: "right to left" language support included
286
+ * add-on: microformats support included
287
+
288
+ ## Core-Files
289
+ ### base.css
290
+ * added bugfix for FF rendering of select element
291
+ * added properties for blockquote and q element to reset block
292
+ * added .equalize class for "equal heights" support
293
+ * .skip, .hide, .print ... removed property "width & height: 1px" to allow bringing content back on screen more easy
294
+ * added dfn element to the hidden elements
295
+
296
+ ### iehacks.css
297
+ * added patches for class .equalize ("equal heights" support)
298
+ * added class .no-ie-padding to enable bottom positioning in IE
299
+ * changed z-index fix, so that content in #col3 can be selected again in IE 5.x | 6.0
300
+
301
+ ### print_base.css
302
+ * removed font changes for print (unit change to "pt" remains as Gecko-Fix)
303
+ * rearanged user draft print-stylesheets
304
+ * added class .noprint
305
+
306
+ ### other Bug Fixes
307
+ * nav_shiny_buttons: collapsing horizontal margins fixed
@@ -0,0 +1,25 @@
1
+ # Require any additional compass plugins here.
2
+
3
+ # Set this to the root of your project when deployed:
4
+ http_path = "/"
5
+ css_dir = "/"
6
+ sass_dir = "sass"
7
+ images_dir = "yaml"
8
+ javascripts_dir = "lib"
9
+ encoding = "UTF-8"
10
+
11
+ # You can select your preferred output style here (can be overridden via the command line):
12
+ # output_style = :expanded or :nested or :compact or :compressed
13
+ output_style = :expanded
14
+
15
+ # To enable relative paths to assets via compass helper functions. Uncomment:
16
+ # relative_assets = true
17
+
18
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
19
+ line_comments = false
20
+
21
+ # If you prefer the indented syntax, you might want to regenerate this
22
+ # project again passing --syntax sass, or you can uncomment this:
23
+ # preferred_syntax = :sass
24
+ # and then run:
25
+ # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
@@ -0,0 +1,27 @@
1
+ /**
2
+ * "Yet Another Multicolumn Layout" - YAML CSS Framework
3
+ *
4
+ * central stylesheet - layout example "custom-grids"
5
+ *
6
+ * @copyright Copyright 2005-2012, Dirk Jesse
7
+ * @license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
8
+ * YAML-CDL (http://www.yaml.de/license.html)
9
+ * @link http://www.yaml.de
10
+ */
11
+
12
+ /* Google Font API */
13
+ @import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700|Droid+Sans:700);
14
+
15
+ /* import core styles | Basis-Stylesheets einbinden */
16
+ @import url(../../yaml/core/base.css);
17
+
18
+ /* import screen layout | Screen-Layout einbinden */
19
+ @import url(../../yaml/navigation/hlist.css);
20
+ @import url(../../yaml/forms/gray-theme.css);
21
+
22
+ @import url(../../yaml/screen/typography.css);
23
+ @import url(../../yaml/screen/grid-960gs-12.css);
24
+ @import url(screen/screen-custom-grids.css);
25
+
26
+ /* import print layout | Druck-Layout einbinden */
27
+ @import url(../../yaml/print/print.css);