css parser: Add :link and :visited
... which are both to be used for links instead of the current -GtkWidget-link-color and -GtkWidget-visited-link-color https://bugzilla.gnome.org/show_bug.cgi?id=709629
This commit is contained in:

committed by
Benjamin Otte

parent
74dc941c22
commit
9b1c943190
@ -1827,7 +1827,9 @@ parse_selector_pseudo_class (GtkCssParser *parser,
|
||||
{ "focus", GTK_STATE_FLAG_FOCUSED, },
|
||||
{ "backdrop", GTK_STATE_FLAG_BACKDROP, },
|
||||
{ "dir(ltr)", GTK_STATE_FLAG_DIR_LTR, },
|
||||
{ "dir(rtl)", GTK_STATE_FLAG_DIR_RTL, }
|
||||
{ "dir(rtl)", GTK_STATE_FLAG_DIR_RTL, },
|
||||
{ "link", GTK_STATE_FLAG_LINK, },
|
||||
{ "visited", GTK_STATE_FLAG_VISITED, }
|
||||
};
|
||||
guint i;
|
||||
|
||||
|
Reference in New Issue
Block a user