mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
Merge pull request #26042 from nextcloud/backport/26030/stable21
[stable21] Fix SCSS compiler deprecated function usages
This commit is contained in:
commit
c74cccd12c
1 changed files with 2 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ use OCP\IRequest;
|
|||
use OCP\IUserSession;
|
||||
use ScssPhp\ScssPhp\Compiler;
|
||||
use ScssPhp\ScssPhp\Exception\ParserException;
|
||||
use ScssPhp\ScssPhp\Formatter\Crunched;
|
||||
use ScssPhp\ScssPhp\OutputStyle;
|
||||
|
||||
class AccessibilityController extends Controller {
|
||||
|
||||
|
|
@ -134,8 +134,7 @@ class AccessibilityController extends Controller {
|
|||
]);
|
||||
|
||||
// Continue after throw
|
||||
$scss->setIgnoreErrors(true);
|
||||
$scss->setFormatter(Crunched::class);
|
||||
$scss->setOutputStyle(OutputStyle::COMPRESSED);
|
||||
|
||||
// Import theme, variables and compile css4 variables
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue