From 084b356d1e70ccdfc521c1457132c1c9c0822d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Tue, 9 May 2017 19:38:58 +0200 Subject: [PATCH] testlist: Fix custom css --- tests/testlist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testlist.c b/tests/testlist.c index e587eb5e31..d5f495b212 100644 --- a/tests/testlist.c +++ b/tests/testlist.c @@ -18,15 +18,15 @@ struct _RowClass }; const char *css = - "GtkListBoxRow {" + "list row {" " border-width: 1px;" " border-style: solid;" " border-color: blue;" "}" - "GtkListBoxRow:prelight {" + "list row:hover {" "background-color: green;" "}" - "GtkListBoxRow:active {" + "list row:active {" "background-color: red;" "}";