Change style of listview

0
Hi, I want to change style of my listview. I found some topics in the forum and reproduced steps: Open file MyMendixProject\theme\styles\web\sass\app\_custom.scss Add code: .qwerty > ul > li { background-color: #f5f5f5 !important; } Change class name to “qwerty”  in appearance tab of the listview Run locally my app And still there is no changes.
asked
1 answers
1

Hi Egor,

Check out the documentation on Mendix and SASS if you want to go down that route: there are a few things you need to know and do in order for this to work :)

https://docs.mendix.com/howto/front-end/style-with-gulp-and-sass

In order for your changes to take effect you need to recompile (with Koala, Gulp or Calypse for instance). Furthermore, you should not add the changes to the _custom.scss file, this is where the changes are compiled to from other files. See the documentation for more information on how this works exactly.

Good luck, and be sure to post questions if you get stuck! 

answered