How to change the refkit / inputrefselector

0
Hi guys, In order to style the app I need also to change some colors of the refkit / inputrefselector. I see that it is making use of the DOJO, totally unknown to it. Do you guys have an idea how to change the colors of the next 3 things: 1 - border color when filling in 2 - border color of the list showing below 3 - background color when selecting an item from the list
asked
2 answers
0

https://forum.mendix.com/questions/8174/InputRefSelector%20(refkit.mpk)

Did you try this? (found with forum search option)

answered
0

If you use right-click on the element -> inspect, you are able to view the classes used by the reference selector. In case you use the default sass styling files from Mendix, take a look at the _dijit-widgets.scss.

Upgrade your reference styling over here. For example, to change the border when you are typing:

        .dijitFocused {
        border-color: #FF0000;
    }

If you have any questions, please let me know =)

answered