[PR #487] [MERGED] Improve note page style #773

Closed
opened 2026-03-03 00:23:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/487
Author: @Rokt33r
Created: 5/27/2020
Status: Merged
Merged: 5/27/2020
Merged by: @Rokt33r

Base: masterHead: improve-note-page-style


📝 Commits (10+)

  • 2b7d4ad Rename sideNav prefix to nav
  • 916860d Discard unused icon color props and add noteNavEmptyItemColor to theme
  • 7ce1332 Discard deprecated icons module
  • 64223ba Use transpileOnly for dev-electron script
  • 7766383 Upgrade type-fest
  • 829f118 Introduce sort module
  • d753aef Reimplement note sorting of NoteNavigator
  • 9217152 Update tsconfig to support optional chaining
  • f518222 Focus back to list when deleting a note
  • fb94480 Add bottom border to top control of nav

📊 Changes

47 files changed (+1588 additions, -704 deletions)

View changed files

📝 package-lock.json (+6 -6)
📝 package.json (+2 -2)
📝 scripts/dev-electron.ts (+1 -1)
📝 src/components/App.tsx (+2 -0)
📝 src/components/PreferencesModal/EditorTab.tsx (+4 -1)
📝 src/components/PreferencesModal/GeneralTab.tsx (+8 -6)
📝 src/components/Toast/styled.tsx (+2 -2)
📝 src/components/atoms/NavigatorButton.tsx (+3 -3)
📝 src/components/atoms/NavigatorHeader.tsx (+1 -1)
📝 src/components/atoms/NavigatorItem.tsx (+9 -10)
src/components/atoms/TagNavigatorListItem.tsx (+90 -0)
src/components/atoms/TagNavigatorNewTagPopup.tsx (+250 -0)
📝 src/components/atoms/ToolbarIconButton.tsx (+18 -12)
📝 src/components/atoms/ToolbarSeparator.tsx (+4 -1)
src/components/molecules/NoteDetailFolderNavigator.tsx (+126 -0)
src/components/molecules/NoteDetailTagNavigator.tsx (+127 -0)
src/components/molecules/NoteDetailToolbar.tsx (+112 -0)
src/components/molecules/NoteSortingOptionsFragment.tsx (+16 -0)
📝 src/components/molecules/StorageNavigatorFragment.tsx (+2 -1)
src/components/organisms/FeatureCheckListPopup.tsx (+231 -0)

...and 27 more files

📄 Description

No description provided


🔄 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/BoostIO/BoostNote-App/pull/487 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 5/27/2020 **Status:** ✅ Merged **Merged:** 5/27/2020 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `improve-note-page-style` --- ### 📝 Commits (10+) - [`2b7d4ad`](https://github.com/BoostIO/BoostNote-App/commit/2b7d4ad8977f92b6ea5e7891c7f32eb2dec6a28c) Rename sideNav prefix to nav - [`916860d`](https://github.com/BoostIO/BoostNote-App/commit/916860d6aa549a66e5a48d44cc2bba96d1f897bc) Discard unused icon color props and add noteNavEmptyItemColor to theme - [`7ce1332`](https://github.com/BoostIO/BoostNote-App/commit/7ce13324e65b6800fef2eaac0e28c628305837c8) Discard deprecated icons module - [`64223ba`](https://github.com/BoostIO/BoostNote-App/commit/64223ba64fb76a48278527c321b05318d5121979) Use transpileOnly for dev-electron script - [`7766383`](https://github.com/BoostIO/BoostNote-App/commit/7766383352202adf3c88fd77678915facd36e907) Upgrade type-fest - [`829f118`](https://github.com/BoostIO/BoostNote-App/commit/829f11837e408c38bbd7c5b67882b20503d2088e) Introduce sort module - [`d753aef`](https://github.com/BoostIO/BoostNote-App/commit/d753aef96801d206ef531ed91e5d234d73d4b0b9) Reimplement note sorting of NoteNavigator - [`9217152`](https://github.com/BoostIO/BoostNote-App/commit/9217152c3aa25814711e2d00c6ace36fed068b4a) Update tsconfig to support optional chaining - [`f518222`](https://github.com/BoostIO/BoostNote-App/commit/f5182222a72150c95326b115031cabd9c68813b4) Focus back to list when deleting a note - [`fb94480`](https://github.com/BoostIO/BoostNote-App/commit/fb9448001e5d0210eb33e6e9c6194dfee8fb65cc) Add bottom border to top control of nav ### 📊 Changes **47 files changed** (+1588 additions, -704 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+6 -6) 📝 `package.json` (+2 -2) 📝 `scripts/dev-electron.ts` (+1 -1) 📝 `src/components/App.tsx` (+2 -0) 📝 `src/components/PreferencesModal/EditorTab.tsx` (+4 -1) 📝 `src/components/PreferencesModal/GeneralTab.tsx` (+8 -6) 📝 `src/components/Toast/styled.tsx` (+2 -2) 📝 `src/components/atoms/NavigatorButton.tsx` (+3 -3) 📝 `src/components/atoms/NavigatorHeader.tsx` (+1 -1) 📝 `src/components/atoms/NavigatorItem.tsx` (+9 -10) ➕ `src/components/atoms/TagNavigatorListItem.tsx` (+90 -0) ➕ `src/components/atoms/TagNavigatorNewTagPopup.tsx` (+250 -0) 📝 `src/components/atoms/ToolbarIconButton.tsx` (+18 -12) 📝 `src/components/atoms/ToolbarSeparator.tsx` (+4 -1) ➕ `src/components/molecules/NoteDetailFolderNavigator.tsx` (+126 -0) ➕ `src/components/molecules/NoteDetailTagNavigator.tsx` (+127 -0) ➕ `src/components/molecules/NoteDetailToolbar.tsx` (+112 -0) ➕ `src/components/molecules/NoteSortingOptionsFragment.tsx` (+16 -0) 📝 `src/components/molecules/StorageNavigatorFragment.tsx` (+2 -1) ➕ `src/components/organisms/FeatureCheckListPopup.tsx` (+231 -0) _...and 27 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:23:08 +03: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
starred/BoostNote-App#773
No description provided.