From 51e41c99d8e0b480d0b6b3ae628ce7cb05c4d7c9 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Thu, 31 Oct 2024 08:50:40 -0700 Subject: [PATCH] Merge pull request #21418 from overleaf/mf-add-pagination-hover-transition [web] Add transition to pagination on hover GitOrigin-RevId: ce9c1ed70d8b494b493f3d1121369307728a4ca6 --- .../frontend/stylesheets/bootstrap-5/components/pagination.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/pagination.scss b/services/web/frontend/stylesheets/bootstrap-5/components/pagination.scss index f2cbb00b41..42b828b383 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/pagination.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/pagination.scss @@ -21,6 +21,7 @@ border: 1px solid var(--neutral-30); margin-left: -1px; font-weight: 600; + transition: background-color 0.15s ease-in-out; &:hover, &:focus { @@ -28,6 +29,7 @@ background-color: var(--neutral-10); border-color: var(--neutral-30); text-decoration: none; + transition: background-color 0.15s ease-in-out; } }