Fix SCSS compiler deprecated function usages
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
3c07ae86ea
commit
4cf3a9f81e
|
@ -45,7 +45,7 @@ use OCP\IRequest;
|
||||||
use OCP\IUserSession;
|
use OCP\IUserSession;
|
||||||
use ScssPhp\ScssPhp\Compiler;
|
use ScssPhp\ScssPhp\Compiler;
|
||||||
use ScssPhp\ScssPhp\Exception\ParserException;
|
use ScssPhp\ScssPhp\Exception\ParserException;
|
||||||
use ScssPhp\ScssPhp\Formatter\Crunched;
|
use ScssPhp\ScssPhp\OutputStyle;
|
||||||
|
|
||||||
class AccessibilityController extends Controller {
|
class AccessibilityController extends Controller {
|
||||||
|
|
||||||
|
@ -134,8 +134,7 @@ class AccessibilityController extends Controller {
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// Continue after throw
|
// Continue after throw
|
||||||
$scss->setIgnoreErrors(true);
|
$scss->setOutputStyle(OutputStyle::COMPRESSED);
|
||||||
$scss->setFormatter(Crunched::class);
|
|
||||||
|
|
||||||
// Import theme, variables and compile css4 variables
|
// Import theme, variables and compile css4 variables
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue