gtk2/testsuite/reftests/box-pseudo-classes.css
Benjamin Otte f6757e0c0c reftests: Fix up for easy CSS changes
This is mostly search and replace ala
  GtkButton => button
  GtkWindow => window
  .button => button
or removing style properties that aren't used anymore like
  -GtkButton-default-border: 0
2016-01-18 05:05:35 +01:00

50 lines
621 B
CSS

* {
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;
}