From ec1cffaf54263478d6706d4d806234543b08b208 Mon Sep 17 00:00:00 2001 From: Josh Larson Date: Thu, 9 Jan 2025 14:26:38 -0500 Subject: [PATCH] fix(TripPlanner): Restore A and B on desktop in search boxes (#2321) --- assets/css/_autocomplete-theme.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/css/_autocomplete-theme.scss b/assets/css/_autocomplete-theme.scss index 7ceedb5976..e8229714c6 100644 --- a/assets/css/_autocomplete-theme.scss +++ b/assets/css/_autocomplete-theme.scss @@ -231,7 +231,7 @@ } // hide default search magnifying glass icon - .aa-SubmitIcon { + .aa-SubmitButton, .aa-SubmitIcon { display: none; } @@ -242,10 +242,12 @@ } } +#trip-planner-input-form--from .aa-Label::before, #trip-planner-input-form--from .aa-DetachedSearchButtonIcon::before { content: "A" } +#trip-planner-input-form--to .aa-Label::before, #trip-planner-input-form--to .aa-DetachedSearchButtonIcon::before { content: "B" }