Skip to content

Commit

Permalink
Fix: URLBar - Reduce fade animation #1033
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Nov 29, 2024
1 parent 63b47ae commit 40d8bed
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
21 changes: 17 additions & 4 deletions css/leptonChrome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions css/leptonChromeESR.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/decoration/_animate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@
}

/*- URL / Search Bar -------------------------------------------------------*/
#urlbar-background,
#urlbar-background {
transition: border-color 1s var(--animation-easing-function), background-color 0.5s var(--animation-easing-function) !important;
&:hover {
transition: border-color 0.5s var(--animation-easing-function), background-color 0.5s var(--animation-easing-function) !important;
}
}
#searchbar {
transition: border-color 1s var(--animation-easing-function), background-color 1.5s var(--animation-easing-function) !important;
&:hover {
Expand Down

0 comments on commit 40d8bed

Please sign in to comment.