-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
spec/css/custom_properties/error/bang_in_ident/error-dart-sass
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
spec/css/custom_properties/error/top_level_bang/error-dart-sass
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
spec/css/custom_properties/error/top_level_bang/error-libsass
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.exclamation { | ||
--important: value !important; | ||
--multiple: !important !important; | ||
--other-word: !something; | ||
--in-identifier: foo!bar; | ||
--just-exclam: !; | ||
--just-exclams: !!!!!!!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.exclamation { | ||
// `!` is technically not allowed at the top-level of a custom property, but | ||
// that's only because `!important` is filtered out before the custom property | ||
// is parsed by the CSS parser. As far as Sass is concerned, it's fine. | ||
--important: value !important; | ||
|
||
// We even allow constructions like these for forwards-compatibility with | ||
// additional flags or syntax CSS might add. | ||
--multiple: !important !important; | ||
--other-word: !something; | ||
--in-identifier: foo!bar; | ||
--just-exclam: !; | ||
--just-exclams: !!!!!!!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
:todo: | ||
- libsass |