Changes between Initial Version and Version 1 of Ticket #37180
- Timestamp:
- Jun 21, 2026, 11:50:29 AM (3 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37180 – Description
initial v1 5 5 since, the UI was updated to use CSS Flexbox, Flexbox makes the outer containers (.selector-available and .selector-chosen) equal in height, not the inner <select> boxes. 6 6 7 as shown in attached screenshot: 7 8 Because the help text for the right box ("Remove toppings...") is longer than the left box ("Choose toppings..."), it can wrap into an extra line on smaller screens. When the text wraps into 3 lines, Flexbox automatically shrinks the inner <select> box to adjust. This means the inner boxes will have different heights. 8 9 9 10 The current Selenium tests are passing mostly by luck. But if the test runs in a different window size, this could fail. 10 The current Selenium tests are passing mostly by luck. But if the test runs in a different window size, it could fail. 11 11 12 12 We should update the test to compare the heights of the outer flex containers only.