| c8388e44 | 20-Apr-2012 |
Andreas Gohr <andi@splitbrain.org> |
made TOC togling script more generic
Instead of a dedicated function to toggle the TOC we now have a function that allows to use this functionality everywhere. This will be used to toggle the sideba
made TOC togling script more generic
Instead of a dedicated function to toggle the TOC we now have a function that allows to use this functionality everywhere. This will be used to toggle the sidebar in the mobile view (in an upcoming patch).
Note, this required some changes to the CSS (to make it more generic). The CSS is still located in the TOC sections but should probably be moved into its own section instead.
show more ...
|
| 6c47a78c | 09-Apr-2012 |
Anika Henke <anika@selfthinker.org> |
load only one stylesheet for all modes instead of three
Instead of three stylesheets for 'all', 'screen' and 'print' modes, they are all loaded into a single stylesheet by wrapping all screen styles
load only one stylesheet for all modes instead of three
Instead of three stylesheets for 'all', 'screen' and 'print' modes, they are all loaded into a single stylesheet by wrapping all screen styles in a "@media screen {}" and all print styles in a "@media print {}". The 'all' mode is not wrapped in anything. Potential issues with existing CSS: If any of your screen or print CSS files already contain any "@media" syntax, the CSS will probably break. In that case please add any CSS with "@media" in it to the 'all' mode instead!
Also, the 'rtl' mode is hereby deprecated. Please just prefix any RTL styles within your normal CSS files with "[dir=rtl]". This also fixes that RTL styles cannot be added for 'all' or 'print' modes.
show more ...
|
| 42ff6730 | 25-Mar-2012 |
Anika Henke <anika@selfthinker.org> |
fixed performance issues with gradient in Firefox (which also added gradient support for IE9) (FS#2447)
* removed all occurrences of '-moz-linear-gradient' * added SVG as fallback for Firefox, IE9 a
fixed performance issues with gradient in Firefox (which also added gradient support for IE9) (FS#2447)
* removed all occurrences of '-moz-linear-gradient' * added SVG as fallback for Firefox, IE9 and other browsers to page background and buttons
show more ...
|