gtk2/testsuite/reftests/border-corner-zero-width-rendering.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

34 lines
394 B
CSS

* {
all: unset;
}
.background {
background-color: khaki;
color: purple;
}
button {
border-radius: 10px;
padding: 5px;
}
.top {
border-top: 5px solid khaki;
padding-top: 0px;
}
.right {
border-right: 5px solid khaki;
padding-right: 0px;
}
.bottom {
border-bottom: 5px solid khaki;
padding-bottom: 0px;
}
.left {
border-left: 5px solid khaki;
padding-left: 0px;
}