forked from reworkcss/css
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #283 - nicer format of template areas
- Loading branch information
1 parent
8f7f19c
commit 03553a5
Showing
5 changed files
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"type":"stylesheet","stylesheet":{"source":"input.css","rules":[{"type":"rule","selectors":["foo"],"declarations":[{"type":"declaration","property":"grid-template-areas","value":"\"menu head head head\"\n\"menu main main main\"\n\"menu main main main\"\n\"menu footer footer footer\"","position":{"start":{"line":2,"column":3},"end":{"line":5,"column":28},"source":"input.css"}}],"position":{"start":{"line":1,"column":1},"end":{"line":6,"column":2},"source":"input.css"}}],"parsingErrors":[]}} |
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,4 @@ | ||
foo{grid-template-areas:"menu head head head" | ||
"menu main main main" | ||
"menu main main main" | ||
"menu footer footer footer";} |
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,6 @@ | ||
foo { | ||
grid-template-areas: "menu head head head" | ||
"menu main main main" | ||
"menu main main main" | ||
"menu footer footer footer"; | ||
} |
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,6 @@ | ||
foo { | ||
grid-template-areas: "menu head head head" | ||
"menu main main main" | ||
"menu main main main" | ||
"menu footer footer footer"; | ||
} |