feat(core): nativescript.config and webpack updates (#8801)

This commit is contained in:
Nathan Walker
2020-09-01 15:53:37 -07:00
committed by GitHub
parent 757a2ffdf7
commit 54cce4f20c
1093 changed files with 332 additions and 316 deletions

View File

@@ -0,0 +1,36 @@
.direct-child--type>Button {
background-color: red;
color: white;
}
.direct-child--class>.test-child {
background-color: blue;
color: white;
}
.direct-sibling--type Button+Label {
background-color: green;
color: white;
}
.direct-sibling--id #test-child+#test-child-2 {
background-color: pink;
}
.direct-sibling--class .test-child+.test-child-2 {
background-color: yellow;
}
.direct-sibling--attribute Button[data="test-child"]+Button[data="test-child-2"] {
background-color: blueviolet;
color: white;
}
.direct-sibling--pseudo-selector Button+Button:disabled {
background-color: black;
color: white;
}
.sibling-test-label {
text-align: center;
}