gtk/tests/reftests/box-pseudo-classes.css
Benjamin Otte 15570dd63d reftests: Turns out, green changed color
What used to be "green" is now "lime"
2012-11-14 01:55:28 +01:00

51 lines
643 B
CSS

* {
engine: none;
background-image: none;
}
.button:nth-child(even) {
background-color: yellow;
}
.button:nth-child(odd) {
background-color: red;
}
.button:nth-child(first) {
background-color: purple;
}
.button:nth-child(last):nth-child(even) {
background-color: lime;
}
.button:nth-child(last):nth-child(odd) {
background-color: purple;
}
.button:nth-child(last):nth-child(first) {
background-color: blue;
}
/* for reference */
#red {
background-color: red;
}
#lime {
background-color: lime;
}
#purple {
background-color: purple;
}
#yellow {
background-color: yellow;
}
#blue {
background-color: blue;
}