mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
4277eeee1b
An assorted collection of fixes.
22 lines
440 B
CSS
22 lines
440 B
CSS
/* testgtk2.css sets all the buttons in the main window to blue by default */
|
|
@import url("testgtk2.css");
|
|
|
|
* {
|
|
font-family: Sans;
|
|
font-size: 12px;
|
|
}
|
|
|
|
label:selected {
|
|
background-color: gray;
|
|
}
|
|
|
|
label:hover {
|
|
background-color: mix(#a0a0a0, rgb(75%, 78%, 0%), 0.9);
|
|
}
|
|
|
|
/* override testgtk2, introduce the green color in the button list */
|
|
#main_window scrolledwindow button:hover {
|
|
background-color: rgb(0%, 75%, 0%);
|
|
}
|
|
|