[WEB-3978] chore: cmd k search result redirection improvements (#7012)

* fix: work item tab highlight

* chore: projectListOpen state and toggle method added to command palette store

* chore: openProjectAndScrollToSidebar helper function and highlight keyframes added

* chore: SidebarProjectsListItem updated

* chore: openProjectAndScrollToSidebar implementation

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor
This commit is contained in:
Anmol Singh Bhatia 2025-05-12 19:15:39 +05:30 committed by GitHub
parent 5f8d5ea388
commit 079c3a3a99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 72 additions and 5 deletions

View file

@ -942,3 +942,14 @@ div.web-view-spinner div.bar12 {
.animate-fade-out {
animation: fadeOut 500ms ease-in 100ms forwards;
}
@keyframes highlight {
0% {
background-color: rgba(var(--color-background-90), 1);
border-radius: 4px;
}
100% {
background-color: transparent;
border-radius: 4px;
}
}