summaryrefslogtreecommitdiff
path: root/tests/testlist.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-05-09 19:38:58 +0200
committerCarlos Garnacho <carlosg@gnome.org>2017-05-25 16:25:59 +0200
commit084b356d1e70ccdfc521c1457132c1c9c0822d99 (patch)
treea74f0d63d3e25d233f950e526b4411c7f698ebf1 /tests/testlist.c
parente54d8a6114a87d0d83c091e9f0f7601c5461c5c3 (diff)
downloadgtk+-084b356d1e70ccdfc521c1457132c1c9c0822d99.tar.gz
testlist: Fix custom css
Diffstat (limited to 'tests/testlist.c')
-rw-r--r--tests/testlist.c6
1 files 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;"
"}";