From 2db818689990a3ccf79ca87177b67d09d7a88744 Mon Sep 17 00:00:00 2001 From: Sureshrajan-18 Date: Mon, 2 Sep 2024 21:58:17 +0530 Subject: [PATCH] 905715: Corrected the css code snippet for selected item customization in ListView component. --- blazor/listview/style.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blazor/listview/style.md b/blazor/listview/style.md index 566ce587bf..5f13d4ed82 100644 --- a/blazor/listview/style.md +++ b/blazor/listview/style.md @@ -109,9 +109,9 @@ Use the following CSS to customize the selected list item. ```CSS -.e-listview .e-list-item.e-focused { - color: #2fa1ff; - background-color: rgb(0, 15, 100); +.e-listview .e-list-item.e-active { + color: red; + background-color: aqua; } ``` \ No newline at end of file