When I display an OutSystems Data Grid in a pop up screen (using the Popup from OutSystemsUI), I found "filter by condition" has changed to text alignment to centre instead of left (as usual).
Same for "Filter by Value", where list of value has been aligned to centre too instead of left.
I cannot figure out which CSS element I need to change/update to correct this behaviour. Can anyone please help?
Appreciate your help! It is working but need to add "!important".
.wj-dropdown-panel.wj-listbox .wj-listbox-item,.wj-dropdown-panel .wj-control {
text-align: left !important;
}
Hello @Soon
Try this CSS
text-align: left;
if you added any inline css text-align center plz remove
I hope this helps
Thanks