How to change background color of case status on mobile list view
Hi Community,
I able to change css dynamically for section list view on CRM (browser). This article I followed.
Question: How to change css dynamically for a section list view column on mobile interface? There is no documentation exist. I need to change background color of case status on mobile list view on the basis of its value
Any help will be highly appreciable.
Regards
Like
The article by the link below describes how to add custom css to a mobile application:
https://community.creatio.com/articles/adding-custom-css-mobile-application
Please find the correct selector for the element you want to apply the custom css to. For example, it's possible to change the background color for the records in the Case section using selector
$("div[class='ts-list-subtitle-column']").css("background-color", "yellow");