Change the Size of a Filter

How can the size of a filter be changed on a dashboard? We have a field that will take IDs of length 36 characters and the default fields are short for that purpose.

If this is not possible, is there a way the HTML rendered/generated by Metabase be altered at some point before it is sent to the browser?

Hi @ia685f
Currently it’s not possible with a simple setting, so you have to use a reverse proxy to add your own custom CSS or modify the source and built your own version.
You should probably look in this file, if you decide to modify the source:
https://github.com/metabase/metabase/blob/master/frontend/src/metabase/parameters/components/ParameterWidget.css

There’s some work-in-progress on public shared dashboards/questions - don’t know if it will be implemented:
https://github.com/metabase/metabase/pull/7639

That’s helpful, thanks.