DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Extension configuration

cdsrc_sass offers some basic inside the Extension Manager. Those are described in this chapter.

To be able to set this configuration, switch to the Extension Manager and search for the extension "cdsrc_sass".

Click on it to see the available settings.

Properties

Property Data type Default
base.css_path string typo3temp/sass/css
base.cache_age integer 604800
base.dev_mode boolean FALSE

Property details

base.css_path

The folder where generated CSS file are stored.

This folder must be accessible for public and writable.

base.cache_age

How many time until generated file are removed from CSS directory. (in seconds)

base.dev_mode

By default file are generated only if modification date change. When using SASS inclusion, this check is not done. This option will force generation if the file is prefixed by "//dev"

Example:

//dev
.myclass{
    .mysubclass{
    }
}