How do I change the css of the InputRefSelector?

0
Where do I change it? And how do make the refkit.mpk look like a normal textbox? Thanks!
asked
2 answers
2

Hi Cillus, check this forum post:

https://forum.mendix.com/questions/8174/InputRefSelector-refkitmpk

answered
0

Hi Willem,

Thanks. I already found that post.

Do you know where I have to put the css :

/* input reference selector */ .dijitTextBox { border: 1px solid #ccc; border-radius: 4px; width: auto; color: inherit; height: 30px; padding: 6px 8px; width: 100%; box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); }

.dijitTextBoxFocused { border: 1px solid #66afe9; box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6); }

.refkitInputRefSelector { outline: 0 !important; } /* input reference selector - dropdown menu */ .dijitMenu { border: 1px solid #ccc; }

.dijitMenuItem { padding: 6px 8px; }

.dijitMenuItem:hover { background: #f5f5f5; }

answered