mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
Improve the output of pseudo selectors.
Specifically, if a pseudo selector takes arguments and those arguments had trailing whitespace in the source document, they no longer have trailing whitespace in the output.
This commit is contained in:
parent
0ae7372d75
commit
f8f90dc1e3
@ -290,7 +290,7 @@ class SelectorParser extends Parser {
|
||||
selector = _selectorList();
|
||||
}
|
||||
} else {
|
||||
argument = declarationValue();
|
||||
argument = declarationValue().trimRight();
|
||||
}
|
||||
scanner.expectChar($rparen);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user