gtk2/testsuite/reftests/background-area.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

47 lines
660 B
CSS

@import "reset-to-defaults.css";
window {
background-color: rgb(0,255,0);
}
button {
border-width: 5px;
border-style: solid;
border-color: rgba(255,0,0,0.6);
padding: 10px;
background-color: rgb(0,0,255);
}
#button1 {
background-clip: border-box;
}
#button2 {
background-clip: padding-box;
}
#button3 {
background-clip: content-box;
}
#reference1 {
border-color: rgb(153,0,102);
}
#reference2 {
border-color: rgb(153,102,0);
}
#reference3 {
border-color: rgb(153,102,0);
background-color: transparent;
}
#reference3inner {
padding: 0;
border-width: 0;
border-color: rgb(0, 255, 0);
background-color: rgb(0,0,255);
}