diff options
Diffstat (limited to 'doc/CHANGES.md')
-rw-r--r-- | doc/CHANGES.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 8940cd78b..8e3b166f5 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -1,3 +1,25 @@ +# rails-3-develop + +## Highlighted features + +* There is an alternative set of stylesheets for rendering the site in a stripped-down, responsive way (so that it will display appropriately on mobile devices as well as larger screens). We'll be adding some corresponding stylesheets shortly to alavetelitheme to provide a nice basic look and feel. + +## Upgrade notes + +* To use the responsive stylesheets across the site, add + `RESPONSIVE_STYLING: true` to general.yml. To preview the way a given + page would appear with the new stylesheets, add the parameter + `responsive=1` to the URL. +* Theme owners are required to update references to fancybox CSS and JS + files. +Example: + + - <%= javascript_include_tag 'jquery.fancybox-1.3.4.pack.js' %> + + <%= javascript_include_tag 'fancybox.js' %> + + - <%= stylesheet_link_tag 'jquery.fancybox-1.3.4.css', :rel => "stylesheet" + + <%= stylesheet_link_tag 'fancybox.css', :rel => "stylesheet" %> + # Version 0.17 ## Highlighted features |