[PR #5537] [CLOSED] chore: improve hover color in dark mode #6872

Closed
opened 2026-03-23 23:17:03 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5537
Author: @LucasXu0
Created: 6/14/2024
Status: Closed

Base: mainHead: dark_mode_hover_color


📝 Commits (8)

  • 77ddbcc feat: improve view thumbnail
  • 116cbeb chore: blur the bottom navigation bar
  • ec26d48 feat: improve date format
  • 6171902 feat: support url avatar
  • b59c629 fix: remove duplicated divider
  • 000ee20 chore: improve dark mode hover color
  • 1d6b1b4 fix: change opacity for delete button
  • 1938518 feat: support collapse all subspaces from space more menu

📊 Changes

23 files changed (+320 additions, -124 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_block_action_widget.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart (+66 -15)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart (+35 -14)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart (+4 -5)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/document_collaborators.dart (+59 -15)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_header.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/space_more_popup.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+83 -51)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu_element.dart (+2 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/more_view_actions.dart (+1 -1)
📝 frontend/appflowy_flutter/packages/flowy_infra/lib/colorscheme/default_colorscheme.dart (+2 -2)
📝 frontend/resources/flowy_icons/16x/m_layout.svg (+1 -6)
frontend/resources/flowy_icons/24x/m_board_thumbnail.svg (+5 -0)
frontend/resources/flowy_icons/24x/m_calendar_thumbnail.svg (+3 -0)

...and 3 more files

📄 Description

Feature Preview

Screenshot 2024-06-14 at 13 49 08

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/5537 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 6/14/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dark_mode_hover_color` --- ### 📝 Commits (8) - [`77ddbcc`](https://github.com/AppFlowy-IO/AppFlowy/commit/77ddbcc3af4883cac3a843660acd4b4aa0297aa8) feat: improve view thumbnail - [`116cbeb`](https://github.com/AppFlowy-IO/AppFlowy/commit/116cbeb9723bbcdacdab37788c34a1fe182177c9) chore: blur the bottom navigation bar - [`ec26d48`](https://github.com/AppFlowy-IO/AppFlowy/commit/ec26d4847f52bf965f56b4c72881a2ba8f0cb67d) feat: improve date format - [`6171902`](https://github.com/AppFlowy-IO/AppFlowy/commit/617190228abce8b4191bc802cf7ebfbe704d632c) feat: support url avatar - [`b59c629`](https://github.com/AppFlowy-IO/AppFlowy/commit/b59c62976be09ebeb0ccd35db0012dd600991e05) fix: remove duplicated divider - [`000ee20`](https://github.com/AppFlowy-IO/AppFlowy/commit/000ee20efaec0ec119fb71cd4c33f7e90dca6776) chore: improve dark mode hover color - [`1d6b1b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d6b1b4fb16fea81988ba8127b9b7766ed322d52) fix: change opacity for delete button - [`1938518`](https://github.com/AppFlowy-IO/AppFlowy/commit/1938518c48f7cd902e5192f6c899d900bbfcbd0d) feat: support collapse all subspaces from space more menu ### 📊 Changes **23 files changed** (+320 additions, -124 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_block_action_widget.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart` (+66 -15) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart` (+35 -14) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart` (+4 -5) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/document_collaborators.dart` (+59 -15) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_header.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/space_more_popup.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+83 -51) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu_element.dart` (+2 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/more_view_actions.dart` (+1 -1) 📝 `frontend/appflowy_flutter/packages/flowy_infra/lib/colorscheme/default_colorscheme.dart` (+2 -2) 📝 `frontend/resources/flowy_icons/16x/m_layout.svg` (+1 -6) ➕ `frontend/resources/flowy_icons/24x/m_board_thumbnail.svg` (+5 -0) ➕ `frontend/resources/flowy_icons/24x/m_calendar_thumbnail.svg` (+3 -0) _...and 3 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <img width="271" alt="Screenshot 2024-06-14 at 13 49 08" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/d2441eb8-a8c5-4f73-8079-c81b99dff961"> <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:17:03 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6872
No description provided.