Two CSS bugs in wbtm.css — mobile layout broken + duplicate button
-
Hi, We found two bugs in assets/frontend/wbtm.css affecting mobile layouts:
**Bug 1 — Escaped CSS rule (duplicate search button on mobile)** Inside the@media only screen and (max-width: 960px)block, a missing closing brace causes.wbtm_search_action_button { display: inline-flex !important }to leak into global scope. This overrides the inlinestyle="display:none"on thewbtm_bus_submitbutton, making both search buttons visible simultaneously on all screen sizes.
Fix: remove!importantfrom that declaration, or move it back inside the media query.
**Bug 2 — Unresolved Git conflict marker in CSS** Around line 1957 of wbtm.css, there is a literal>>>>>>> masterstring (an unresolved Git merge conflict). This breaks CSS parsing for all rules that follow it.
Fix: remove the conflict marker line. Both issues are reproducible in the latest version (tested on iPhone 14 viewport, 393px).
Thanks
You must be logged in to reply to this topic.