This repository has been archived by the owner on Jun 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
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
11 changed files
with
76 additions
and
45 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,17 @@ | ||
# 2.0.0 - 2015-05-29 | ||
|
||
* x Remove: no longer support `::` or `--` to defined a custom selectors, we must use the `:--` to defined it. | ||
|
||
* - Fixed: two or more consecutive hyphens in selector outputs is "undefined". | ||
|
||
# 1.1.1 - 2015-04-06 | ||
|
||
- Fixed: add support for multilines definition | ||
* - Fixed: add support for multilines definition | ||
|
||
# 1.1.0 - 2014-12-06 | ||
|
||
- Added: "lineBreak" option | ||
* - Added: "lineBreak" option | ||
|
||
# 1.0.0 - 2014-12-06 | ||
|
||
✨ First release | ||
* First release |
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
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
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
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
@custom-selector :--any .foo, .bar; | ||
@custom-selector --foo .baz; | ||
@custom-selector :--foo .baz; | ||
|
||
:--any h1 { | ||
margin-top: 16px; | ||
} | ||
|
||
main --foo + p { | ||
main :--foo + p { | ||
margin-top: 16px; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@custom-selector --heading h1, h2, h3, h4, h5, h6; | ||
@custom-selector :--heading h1, h2, h3, h4, h5, h6; | ||
|
||
article --heading + p { | ||
article :--heading + p { | ||
margin-top: 0; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@custom-selector ::--pseudo ::before, ::after; | ||
@custom-selector :--pseudo ::before, ::after; | ||
|
||
.foo > a::--pseudo img { | ||
.foo > a:--pseudo img { | ||
display: block; | ||
} |
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,10 @@ | ||
@custom-selector :--foo h1, h2, h3; | ||
@custom-selector :--ba-----r h4, h5, h6; | ||
|
||
.fo--oo > :--foo { | ||
margin: auto; | ||
} | ||
|
||
:--ba-----r:hover .ba--z { | ||
display: block; | ||
} |
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,11 @@ | ||
.fo--oo > h1, | ||
.fo--oo > h2, | ||
.fo--oo > h3 { | ||
margin: auto; | ||
} | ||
|
||
h4:hover .ba--z, | ||
h5:hover .ba--z, | ||
h6:hover .ba--z { | ||
display: block; | ||
} |
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