-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[building] Syntax for corner items #11
Comments
The neighbor item that shares the corner with the |
The proposal above isn't consistent. It leads to incorrect width of items and complexities in calculating the item widths. Consider the following setup: level {
markup: [
div{
cornerClassLeft: my_corner;
}
entrance{class: my_entrance;}
div{}
entrance{class: my_entrance;}
div{
cornerClassRight: my_corner;
}
]
}
|
The next iteration of the proposal. Corner element must be defined explicitly through the item level {
markup: [
corner{
class: my_corner;
}
entrance{class: my_entrance;}
div{}
entrance{class: my_entrance;}
corner{
class: my_corner;
}
]
} The adjacent items on the adjacent facades must be of the type |
A proposal.
Photo by Pauline Eccles, CC-BY-SA 2.0
Suppose a corner item has a
level
item as a neighbor from the right.For the
level
we would have then:or
or
The text was updated successfully, but these errors were encountered: