mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 10:20:07 +00:00
99d4ec2676
Underlines now need to be manually specified in CSS since GTK got text-decoration support.
19 lines
204 B
CSS
19 lines
204 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
:link {
|
|
color: blue;
|
|
}
|
|
|
|
:visited {
|
|
color: purple;
|
|
}
|
|
|
|
:link,*, :visited * {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* should never happen */
|
|
:link:visited {
|
|
color: red;
|
|
}
|