Learning_GTK4_tree/testsuite/reftests/border-style.css

28 lines
413 B
CSS
Raw Permalink Normal View History

2023-12-12 11:36:42 +01:00
@import url("reset-to-defaults.css");
button {
background-color: red;
border-color: lime;
border-width: 1px;
}
.button-top-left {
border-style: solid none none solid;
}
.button-top-right {
border-style: solid solid none none;
}
.button-bottom-left {
border-style: none none solid solid;
}
.button-bottom-right {
border-style: none solid solid none;
}
.button-border {
border-style: solid;
}