mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* test: list items relayout example * fix(list-view): Layout list-view items on request * refactor(tests): refactor list-view tests imports
20 lines
292 B
CSS
20 lines
292 B
CSS
Label {
|
|
margin: 6;
|
|
padding: 4;
|
|
}
|
|
|
|
.unselected {
|
|
border-width: 4;
|
|
border-color: gray;
|
|
border-radius: 10;
|
|
background: white;
|
|
color: gray
|
|
}
|
|
|
|
.selected {
|
|
border-width: 4;
|
|
border-color: blue;
|
|
border-radius: 10;
|
|
background: lightcoral;
|
|
color: blue;
|
|
} |