-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): add new search page to support chat search functionality (#…
…2144) * feat(ui): searching function * wip * rendering * trigger request ux * copy and regenerate * experiment flag & textare height * [autofix.ci] apply automated fixes * update source & related ux * citation * update * update * update * cleaning fixme * update * update * update dialog component * update --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
676fc51
commit 042adfd
Showing
17 changed files
with
1,041 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,3 +91,7 @@ | |
.prose-full-width { | ||
max-width: none !important; | ||
} | ||
|
||
.dialog-without-close-btn > button { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@keyframes sparkle { | ||
0% { | ||
opacity: 1; | ||
transform: scaleX(1); | ||
} | ||
50% { | ||
opacity: 0.5; | ||
transform: scaleX(-1); | ||
} | ||
100% { | ||
opacity: 1; | ||
transform: scaleX(1); | ||
} | ||
} | ||
|
||
.sparkle-animation { | ||
animation: sparkle 2s infinite; | ||
} |
Oops, something went wrong.