Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ej2-asp-core-mvc/code-snippet/grid/row/select-row/razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}).Render()

<style>
.e-grid td.e-selectionbackground {
.e-grid .e-row .e-selectionbackground {
background-color: #f9920b;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</ejs-grid>

<style>
.e-grid td.e-selectionbackground {
.e-grid .e-row .e-selectionbackground {
background-color: #f9920b;
}
</style>
2 changes: 1 addition & 1 deletion ej2-asp-core-mvc/grid/EJ2_ASP.MVC/row/row.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can customize the appearance of the selected row using CSS. This is useful w
To change the background color of the selected row, you can add the following CSS code to your application:

```css
.e-grid td.e-selectionbackground {
.e-grid .e-row .e-selectionbackground {
background-color: #f9920b;
}
```
Expand Down
2 changes: 1 addition & 1 deletion ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/row/row.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can customize the appearance of the selected row using CSS. This is useful w
To change the background color of the selected row, you can add the following CSS code to your application:

```css
.e-grid td.e-selectionbackground {
.e-grid .e-row .e-selectionbackground {
background-color: #f9920b;
}
```
Expand Down