omeka-s-themes / freedom

An Omeka S Theme
GNU General Public License v3.0
2 stars 3 forks source link

Buttons cutting off text #30

Closed allanaaa closed 4 months ago

allanaaa commented 4 months ago

On the Faceted Browse pages we still see dropdown menus too short for their contents:

Screenshot 2024-07-01 at 14 48 04 Screenshot 2024-07-01 at 14 48 10

Whereas on normal browse you've made the dropdowns wider:

Screenshot 2024-07-01 at 14 50 18

I assume it's just calculating its width without taking the dropdown arrow width into account? Anyways, there's enough space on these pages usually that you can give them ample width.

zerocrates commented 4 months ago

It's an odd combination of the width styles set on those selects and their container... just having the selects have width: auto fixes this in the sense that they'll take up as much room as they need. Adding a min-width (could be zero or some actual reasonable minimum) to the selects and a max-width: 100% to the sorting form will make them shrink if they absolutely have to for page width, otherwise they'll wrap due to the flex-wrap on the outer container.

nelsonamaya82 commented 4 months ago

Thanks @allanaaa @zerocrates, this is now fixed and will be included in the next release this week.