forked from stackblitz/bolt.new
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tooltip and hover text color for Export icon
Fixes #409 Fix the blank tooltip for the Export icon and add hover text color changes for navigation icons. * **Tooltip Fix:** - Set the tooltip content for the Export icon to "Export Chat" in `app/components/chat/ExportChatButton.tsx`. * **Hover Text Color Change:** - Add CSS rule to change text color of `.ExportIcon` to red on hover in `app/components/chat/BaseChat.module.scss`. - Add CSS rule to change text color of other navigation icons to red on hover in `app/components/chat/BaseChat.module.scss`. - Add class `ExportIcon` to the `IconButton` component in `app/components/chat/ExportChatButton.tsx`. - Add class `NavigationIcon` to other navigation icons in `app/components/sidebar/Menu.client.tsx`.
- Loading branch information
1 parent
1cb836a
commit a19ecb8
Showing
3 changed files
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,11 @@ | |
.Chat { | ||
opacity: 1; | ||
} | ||
|
||
.ExportIcon:hover { | ||
color: red; | ||
} | ||
|
||
.NavigationIcon:hover { | ||
color: red; | ||
} |
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