mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
25 lines
467 B
CSS
25 lines
467 B
CSS
GtkButton#fancy {
|
|
font-weight: bold;
|
|
background-image: linear-gradient(135deg, yellow, blue);
|
|
border-radius: 20px;
|
|
color: white;
|
|
}
|
|
|
|
GtkButton#fancy:hover {
|
|
font-weight: bold;
|
|
background-image: linear-gradient(135deg, blue, yellow);
|
|
border-radius: 20px;
|
|
color: white;
|
|
}
|
|
|
|
GtkButton#fancy:active {
|
|
font-weight: bold;
|
|
background-image: linear-gradient(yellow, yellow);
|
|
border-radius: 20px;
|
|
color: black;
|
|
}
|
|
|
|
GtkButton#fancy * {
|
|
color: inherit;
|
|
}
|