tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 909030b1cb702f2733048f2eecdbc11776d97761
parent fc1ef114347a8b296836b4901f0885a53d06f270
Author: Dão Gottwald <dao@mozilla.com>
Date:   Mon, 17 Nov 2025 13:27:21 +0000

Bug 2000590 - Tweak Unified Search Button arrow animation based on UX feedback. r=desktop-theme-reviewers,Itiel

Differential Revision: https://phabricator.services.mozilla.com/D272862

Diffstat:
Mbrowser/themes/shared/urlbar-searchbar.css | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/browser/themes/shared/urlbar-searchbar.css b/browser/themes/shared/urlbar-searchbar.css @@ -1216,14 +1216,18 @@ .searchmode-switcher-dropmarker { @media (prefers-reduced-motion: no-preference) { - transition: 120ms transform ease-out; + transition: 300ms transform ease-in-out; } .urlbar[searchmode] & { display: none; } .searchmode-switcher[open] > & { - transform: rotate(180deg); + transform: rotate(-180deg); + + &:-moz-locale-dir(rtl) { + transform: rotate(180deg); + } } }