-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move extend fully into visitor, bringing back functionality and fixes #…
- Loading branch information
Showing
6 changed files
with
87 additions
and
37 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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.ext1 .ext2, | ||
.all .ext2 { | ||
background: black; | ||
} | ||
@media tv { | ||
.ext1 .ext3, | ||
.tv-lowres .ext3, | ||
.all .ext3 { | ||
color: white; | ||
} | ||
.tv-lowres { | ||
background: blue; | ||
} | ||
} | ||
@media tv and hires { | ||
.ext1 .ext4, | ||
.tv-hires .ext4, | ||
.all .ext4 { | ||
color: green; | ||
} | ||
.tv-hires { | ||
background: red; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.ext1 .ext2 { | ||
background: black; | ||
} | ||
|
||
@media tv { | ||
.ext1 .ext3 { | ||
color: white; | ||
} | ||
.tv-lowres :extend(.ext1 all) { | ||
background: blue; | ||
} | ||
@media hires { | ||
.ext1 .ext4 { | ||
color: green; | ||
} | ||
.tv-hires :extend(.ext1 all) { | ||
background: red; | ||
} | ||
} | ||
} | ||
|
||
.all:extend(.ext1 all) { | ||
|
||
} |