Changing search fields widths

0
This is an old question: https://community.mendix.com/questions/1923/Resize-or-rearrange-datagrid-search-fields About changing the widths of search fields. It gives the answer I think I'm looking for: .dijitInline mendixDataGrid_searchItem { width:150px;  } However, I don't know where to put this (what I am assuming) is CSS. Any pointers? Cheers.
asked
1 answers
3

Yes place it in your theme css file. Something like:

.mx-grid-search-input {
    display: inline-block;
    padding: 0 5px;
    vertical-align: top;
    width: 200px;
}

answered