gnome-shell/tests/testcommon/test.css
Owen W. Taylor 03a45b665c testcommon.css: Don't theme all buttons
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
2009-10-01 14:46:33 -04:00

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