03a45b665c
StButton is used for many things - scrollbar steppers, etc. Theming all buttons to look like push-buttons breaks that. So in testcommon.css just theme a .push-button class to look vaguely button-like. https://bugzilla.gnome.org/show_bug.cgi?id=596432
54 lines
636 B
CSS
54 lines
636 B
CSS
@import "../../data/theme/gnome-shell.css";
|
|
|
|
stage {
|
|
font: 16pt serif;
|
|
}
|
|
|
|
.red {
|
|
background-color: red;
|
|
}
|
|
|
|
.green {
|
|
background-color: green;
|
|
}
|
|
|
|
.blue {
|
|
background-color: blue;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.big {
|
|
font-size: 150%;
|
|
}
|
|
|
|
.monospace {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.border-image {
|
|
border: 15px;
|
|
border-image: url('border-image.png') 16;
|
|
}
|
|
|
|
.push-button {
|
|
background: #eeddbb;
|
|
border: 1px solid black;
|
|
border-radius: 8px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.push-button:hover {
|
|
background: #ffeecc;
|
|
}
|
|
|
|
.push-button:active {
|
|
background: #ccbb99;
|
|
}
|