rclement / datasette-dashboards

Datasette plugin providing data dashboards from metadata
https://datasette-dashboards-demo.vercel.app
Apache License 2.0
137 stars 7 forks source link

Text filter style is not consistent #152

Closed rclement closed 1 year ago

rclement commented 1 year ago

Issue

When using a text filter type, styling is not consistent with other filter types such as date and select:

Screenshot 2023-08-14 at 17 48 16

Solution

The culprit comes from Datasette default CSS for form input[type="text"].

To reset the style, we can use the following snippet:

form input[type="text"] {
  all: revert;
}

leading to this more consistent styling:

Screenshot 2023-08-14 at 17 50 24