mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
3e066a0a15
Remove many uses of deprecated api in gtk4-demo. Remaining uses are demos of wholly deprecated objects that will just be dropped in GTK5.
28 lines
600 B
CSS
28 lines
600 B
CSS
/* You can edit the text in this window to change the
|
|
* appearance of this Window.
|
|
* Be careful, if you screw it up, nothing might be visible
|
|
* anymore. :)
|
|
*/
|
|
|
|
/* This resets all properties to their defaults values
|
|
* and overrides all user settings and the theme in use
|
|
*/
|
|
@import url("resource://css_shadows/reset.css");
|
|
|
|
/* Set a very futuristic style by default */
|
|
.demo * {
|
|
color: green;
|
|
font-family: Monospace;
|
|
border: 1px solid;
|
|
}
|
|
|
|
window.demo {
|
|
background-color: white;
|
|
}
|
|
|
|
/* Make sure selections are visible */
|
|
.demo selection {
|
|
background-color: darkGreen;
|
|
color: black;
|
|
}
|