Make Grid look better with multiple lines

From SMTX Wiki
Revision as of 10:07, 9 September 2024 by Smtxwiki (talk | contribs) (Created page with "In case a grid contains multiple lines in 1 cell, you see the color of the background image, even if you configured a different color. The CSS classes below should be included in your customer.css .RadGrid_Office2010Silver .rgSelectedRow { background: #165f9e78 !important; } .RadGrid_Office2010Silver .rgHoveredRowRow { background: #BBB !important; } .RadGrid_Office2010Silver .rgSelectedRow>td { background-image: none !important; }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

In case a grid contains multiple lines in 1 cell, you see the color of the background image, even if you configured a different color. The CSS classes below should be included in your customer.css


.RadGrid_Office2010Silver .rgSelectedRow {
 background: #165f9e78 !important;
}
.RadGrid_Office2010Silver .rgHoveredRowRow {
 background: #BBB !important;
}
.RadGrid_Office2010Silver .rgSelectedRow>td {
 background-image: none !important;
}