Revert "Fixed extensions"

This reverts commit 82f000acff.
This commit is contained in:
Morris Jobke 2018-02-27 17:55:30 +01:00
parent 82f000acff
commit 10351657de
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68

View File

@ -10,13 +10,13 @@ The CSS files reside in the **css/** folder and should be included in the templa
<?php
// include one file
style('myapp', 'style'); // adds css/style.(s)css
style('myapp', 'style'); // adds css/style.css
// include multiple files for the same app
style('myapp', array('style', 'navigation')); // adds css/style.(s)css, css/navigation.(s)css
style('myapp', array('style', 'navigation')); // adds css/style.css, css/navigation.css
// include vendor file (also allows array syntax)
vendor_style('myapp', 'style'); // adds vendor/style.(s)css
// include vendor file (also allows vendor syntax)
vendor_style('myapp', 'style'); // adds vendor/style.css
.. note:: Since the version 12 of Nextcloud, we support ``SCSS`` natively.
You can migrate your files by simply renaming your ``.css`` files to ``.scss``.