@tnotesjs/core 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/README.md +87 -84
  2. package/dist/{chunk-JDVN2QYW.js → chunk-JUMVJKWV.js} +615 -614
  3. package/dist/cli/index.js +125 -125
  4. package/dist/vitepress/config/index.js +184 -210
  5. package/package.json +15 -3
  6. package/types/config.ts +61 -61
  7. package/types/index.ts +11 -11
  8. package/types/note.ts +33 -33
  9. package/types/shims.d.ts +3 -4
  10. package/vitepress/assets/icons/icon__check.svg +3 -3
  11. package/vitepress/assets/icons/icon__clipboard.svg +7 -7
  12. package/vitepress/assets/icons/icon__close.svg +1 -1
  13. package/vitepress/assets/icons/icon__collapse.svg +1 -1
  14. package/vitepress/assets/icons/icon__confirm.svg +1 -1
  15. package/vitepress/assets/icons/icon__copy.svg +4 -4
  16. package/vitepress/assets/icons/icon__focus.svg +1 -1
  17. package/vitepress/assets/icons/icon__fold.svg +3 -3
  18. package/vitepress/assets/icons/icon__folder.svg +1 -1
  19. package/vitepress/assets/icons/icon__fullscreen.svg +1 -1
  20. package/vitepress/assets/icons/icon__fullscreen_exit.svg +1 -1
  21. package/vitepress/assets/icons/icon__github.svg +3 -3
  22. package/vitepress/assets/icons/icon__mindmap.svg +1 -1
  23. package/vitepress/assets/icons/icon__next.svg +1 -1
  24. package/vitepress/assets/icons/icon__number_gray.svg +1 -1
  25. package/vitepress/assets/icons/icon__number_purple.svg +1 -1
  26. package/vitepress/assets/icons/icon__prev.svg +1 -1
  27. package/vitepress/assets/icons/icon__restore.svg +1 -1
  28. package/vitepress/assets/icons/icon__rotate.svg +4 -4
  29. package/vitepress/assets/icons/icon__search.svg +1 -1
  30. package/vitepress/assets/icons/icon__sidebar_collapsed.svg +1 -1
  31. package/vitepress/assets/icons/icon__sidebar_opened.svg +1 -1
  32. package/vitepress/assets/icons/icon__totop.svg +5 -5
  33. package/vitepress/assets/icons/icon__vscode.svg +5 -5
  34. package/vitepress/assets/icons/icon__zoom_fit.svg +1 -1
  35. package/vitepress/assets/icons/icon__zoom_in.svg +1 -1
  36. package/vitepress/assets/icons/icon__zoom_out.svg +1 -1
  37. package/vitepress/assets/icons/icon__zoom_reset.svg +1 -1
  38. package/vitepress/assets/icons/index.ts +38 -38
  39. package/vitepress/components/BilibiliOutsidePlayer/BilibiliOutsidePlayer.vue +20 -20
  40. package/vitepress/components/CodeBlockFullscreen/CodeBlockFullscreen.vue +373 -372
  41. package/vitepress/components/CodeBlockFullscreen/index.ts +115 -114
  42. package/vitepress/components/CodeBlockFullscreen/styles.css +64 -64
  43. package/vitepress/components/Discussions/Discussions.module.scss +32 -32
  44. package/vitepress/components/Discussions/Discussions.vue +211 -210
  45. package/vitepress/components/EnWordList/EnWordList.module.scss +124 -124
  46. package/vitepress/components/EnWordList/EnWordList.vue +543 -542
  47. package/vitepress/components/EnWordList/RightClickMenu.module.scss +22 -22
  48. package/vitepress/components/EnWordList/RightClickMenu.vue +66 -66
  49. package/vitepress/components/Footprints/Footprints.module.scss +93 -93
  50. package/vitepress/components/Footprints/Footprints.vue +377 -377
  51. package/vitepress/components/Layout/AboutModal.module.scss +233 -233
  52. package/vitepress/components/Layout/AboutModal.vue +105 -105
  53. package/vitepress/components/Layout/AboutPanel.vue +270 -265
  54. package/vitepress/components/Layout/ContentCollapse.vue +603 -602
  55. package/vitepress/components/Layout/CustomSidebar.vue +608 -605
  56. package/vitepress/components/Layout/DocBeforeControls.vue +149 -139
  57. package/vitepress/components/Layout/DocFooter.vue +233 -232
  58. package/vitepress/components/Layout/ImagePreview.module.scss +201 -201
  59. package/vitepress/components/Layout/ImagePreview.vue +281 -280
  60. package/vitepress/components/Layout/Layout.module.scss +661 -661
  61. package/vitepress/components/Layout/Layout.vue +539 -542
  62. package/vitepress/components/Layout/NoteStatus.vue +140 -139
  63. package/vitepress/components/Layout/SidebarItems.vue +267 -262
  64. package/vitepress/components/Layout/SidebarNavBefore.vue +92 -92
  65. package/vitepress/components/Layout/Swiper.vue +167 -167
  66. package/vitepress/components/Layout/ToggleFullContent.module.scss +11 -11
  67. package/vitepress/components/Layout/ToggleFullContent.vue +35 -34
  68. package/vitepress/components/Layout/ToggleSidebar.module.scss +11 -11
  69. package/vitepress/components/Layout/ToggleSidebar.vue +36 -35
  70. package/vitepress/components/Layout/composables/useCollapseControl.ts +88 -88
  71. package/vitepress/components/Layout/composables/useNoteConfig.ts +119 -121
  72. package/vitepress/components/Layout/composables/useNoteSave.ts +173 -172
  73. package/vitepress/components/Layout/composables/useNoteValidation.ts +85 -85
  74. package/vitepress/components/Layout/composables/useRedirect.ts +113 -110
  75. package/vitepress/components/Layout/composables/useVSCodeIntegration.ts +86 -83
  76. package/vitepress/components/Layout/homeReadme.data.ts +124 -124
  77. package/vitepress/components/LoadingPage/LoadingPage.vue +192 -192
  78. package/vitepress/components/MarkMap/MarkMap.module.scss +159 -159
  79. package/vitepress/components/MarkMap/MarkMap.vue +405 -404
  80. package/vitepress/components/Mermaid/Mermaid.module.scss +275 -275
  81. package/vitepress/components/Mermaid/Mermaid.vue +365 -363
  82. package/vitepress/components/NotesTable/NotesTable.module.scss +77 -77
  83. package/vitepress/components/NotesTable/NotesTable.vue +98 -97
  84. package/vitepress/components/NotesTable/README.md +67 -67
  85. package/vitepress/components/Settings/Settings.module.scss +433 -433
  86. package/vitepress/components/Settings/Settings.vue +306 -305
  87. package/vitepress/components/SidebarCard/MindMapView.vue +484 -483
  88. package/vitepress/components/SidebarCard/NotesTrendChart.vue +108 -108
  89. package/vitepress/components/SidebarCard/SidebarCard.vue +946 -948
  90. package/vitepress/components/Tooltip/Tooltip.vue +70 -70
  91. package/vitepress/components/constants.ts +91 -91
  92. package/vitepress/components/notesConfig.data.ts +73 -73
  93. package/vitepress/components/sidebar.data.ts +59 -59
  94. package/vitepress/components/tnotes-config.data.ts +21 -21
  95. package/vitepress/components/utils.ts +26 -26
  96. package/vitepress/config/index.ts +160 -146
  97. package/vitepress/configs/constants.ts +26 -26
  98. package/vitepress/configs/head.config.ts +25 -24
  99. package/vitepress/configs/index.ts +9 -9
  100. package/vitepress/configs/markdown-it.d.ts +23 -20
  101. package/vitepress/configs/markdown.config.ts +366 -365
  102. package/vitepress/configs/theme.config.ts +108 -108
  103. package/vitepress/plugins/buildProgressPlugin.ts +434 -470
  104. package/vitepress/plugins/getNoteByConfigIdPlugin.ts +107 -106
  105. package/vitepress/plugins/renameNotePlugin.ts +60 -59
  106. package/vitepress/plugins/updateConfigPlugin.ts +63 -62
  107. package/vitepress/theme/index.ts +95 -93
  108. package/vitepress/theme/styles/base.scss +50 -50
  109. package/vitepress/theme/styles/components/404.scss +31 -31
  110. package/vitepress/theme/styles/components/collapse.scss +175 -175
  111. package/vitepress/theme/styles/components/markmap.scss +101 -101
  112. package/vitepress/theme/styles/components/swiper.scss +255 -255
  113. package/vitepress/theme/styles/index.scss +25 -25
  114. package/vitepress/theme/styles/layout.scss +62 -62
  115. package/vitepress/theme/styles/utilities.scss +39 -39
  116. package/vitepress/theme/styles/vitepress-override.scss +25 -25
@@ -1,263 +1,268 @@
1
- <template>
2
- <template v-for="item in items" :key="getItemKey(item)">
3
- <!-- 只有在不超过最大层级时才渲染组 -->
4
- <div
5
- v-if="hasChildren(item) && depth < maxDepth - 1"
6
- class="group"
7
- :style="getGroupStyle(depth)"
8
- >
9
- <button
10
- class="group-title"
11
- :class="`group-title-level-${depth}`"
12
- @click="toggleItem(item)"
13
- >
14
- <span>{{ item.text }}</span>
15
-
16
- <span class="arrow" :class="{ collapsed: item.collapsed }">
17
- <img
18
- :src="
19
- item.collapsed ? icon__sidebar_collapsed : icon__sidebar_opened
20
- "
21
- alt=""
22
- />
23
- </span>
24
- </button>
25
-
26
- <div v-show="!item.collapsed" class="group-items">
27
- <SidebarItems
28
- :items="item.items"
29
- :depth="depth + 1"
30
- :max-depth="maxDepth"
31
- :show-note-id="showNoteId"
32
- :base="base"
33
- :current-path="currentPath"
34
- :item-depth="depth"
35
- />
36
- </div>
37
- </div>
38
-
39
- <!-- 如果是链接项,或者是超过最大层级的组,都不渲染 -->
40
- <a
41
- v-else-if="!hasChildren(item)"
42
- :href="getFullLink(item.link)"
43
- :class="[
44
- 'nav-item',
45
- { active: isActive(item.link) },
46
- `nav-item-${extractNoteIdFromLink(item.link)}`,
47
- `nav-item-level-${actualItemDepth + 1}`,
48
- ]"
49
- :data-note-id="extractNoteIdFromLink(item.link)"
50
- :style="getItemStyle(actualItemDepth)"
51
- >
52
- {{ getNoteDisplayText(item.text, item.link) }}
53
- </a>
54
- </template>
55
- </template>
56
-
57
- <script setup lang="ts">
1
+ <template>
2
+ <template v-for="item in items" :key="getItemKey(item)">
3
+ <!-- 只有在不超过最大层级时才渲染组 -->
4
+ <div
5
+ v-if="hasChildren(item) && depth < maxDepth - 1"
6
+ class="group"
7
+ :style="getGroupStyle(depth)"
8
+ >
9
+ <button
10
+ class="group-title"
11
+ :class="`group-title-level-${depth}`"
12
+ @click="toggleItem(item)"
13
+ >
14
+ <span>{{ item.text }}</span>
15
+
16
+ <span class="arrow" :class="{ collapsed: item.collapsed }">
17
+ <img
18
+ :src="
19
+ item.collapsed ? icon__sidebar_collapsed : icon__sidebar_opened
20
+ "
21
+ alt=""
22
+ />
23
+ </span>
24
+ </button>
25
+
26
+ <div v-show="!item.collapsed" class="group-items">
27
+ <SidebarItems
28
+ :items="getChildItems(item)"
29
+ :depth="depth + 1"
30
+ :max-depth="maxDepth"
31
+ :show-note-id="showNoteId"
32
+ :base="base"
33
+ :current-path="currentPath"
34
+ :item-depth="depth"
35
+ />
36
+ </div>
37
+ </div>
38
+
39
+ <!-- 如果是链接项,或者是超过最大层级的组,都不渲染 -->
40
+ <a
41
+ v-else-if="!hasChildren(item)"
42
+ :href="getFullLink(item.link)"
43
+ :class="[
44
+ 'nav-item',
45
+ { active: isActive(item.link) },
46
+ `nav-item-${extractNoteIdFromLink(item.link)}`,
47
+ `nav-item-level-${actualItemDepth + 1}`,
48
+ ]"
49
+ :data-note-id="extractNoteIdFromLink(item.link)"
50
+ :style="getItemStyle(actualItemDepth)"
51
+ >
52
+ {{ getNoteDisplayText(item.text, item.link) }}
53
+ </a>
54
+ </template>
55
+ </template>
56
+
57
+ <script setup lang="ts">
58
58
  import { computed } from 'vue'
59
- import { icon__sidebar_opened, icon__sidebar_collapsed } from '../../assets/icons'
60
-
61
- interface SidebarItem {
62
- text: string
63
- link?: string
64
- items?: SidebarItem[]
65
- collapsed?: boolean
66
- }
67
-
68
- interface Props {
69
- items: SidebarItem[]
70
- depth: number
71
- maxDepth: number
72
- showNoteId: boolean
73
- base: string
74
- currentPath: string
75
- itemDepth?: number // 用于计算链接项的缩进,默认等于 depth
76
- }
77
-
78
- const props = withDefaults(defineProps<Props>(), {
79
- depth: 0,
80
- maxDepth: 3,
81
- showNoteId: false,
82
- base: '/',
83
- currentPath: '',
84
- itemDepth: undefined,
85
- })
86
-
87
- // 获取实际的 item depth(用于链接项的缩进)
88
- const actualItemDepth = computed(() => props.itemDepth ?? props.depth)
89
-
90
- // 判断项是否有子项
91
- function hasChildren(item: SidebarItem): boolean {
92
- return !!(item.items && item.items.length > 0)
93
- }
94
-
95
- // 获取项的唯一 key
96
- function getItemKey(item: SidebarItem): string {
97
- return item.link || item.text
98
- }
99
-
100
- // 切换项的展开/折叠状态
101
- function toggleItem(item: SidebarItem) {
102
- item.collapsed = !item.collapsed
103
- }
104
-
105
- // 根据深度获取组的缩进样式
106
- function getGroupStyle(depth: number) {
107
- // 从第二层组开始才需要缩进(depth >= 1)
108
- if (depth === 0) {
109
- return {}
110
- }
111
- return {
112
- paddingLeft: `${depth * 16}px`,
113
- }
114
- }
115
-
116
- // 根据深度获取项的缩进样式
117
- function getItemStyle(depth: number) {
118
- // 项的缩进基于其父组的depth
119
- // 第一层组(depth=0)的子项不需要额外缩进
120
- // 第二层组(depth=1)的子项需要缩进 16px
121
- if (depth === 0) {
122
- return {}
123
- }
124
- return {
125
- paddingLeft: `${depth * 16}px`,
126
- }
127
- }
128
-
129
- // 获取完整链接(包含 base)
130
- function getFullLink(link?: string) {
131
- if (!link) return '#'
132
- const cleanLink = link.startsWith('/') ? link.slice(1) : link
133
- return props.base + cleanLink
134
- }
135
-
136
- // 判断链接是否激活
137
- function isActive(link?: string) {
138
- if (!link) return false
139
- const fullLink = getFullLink(link)
140
- const decodedRoutePath = decodeURIComponent(props.currentPath)
141
- const decodedFullLink = decodeURIComponent(fullLink)
142
-
143
- return (
144
- decodedRoutePath === decodedFullLink ||
145
- decodedRoutePath === decodedFullLink + '.html'
146
- )
147
- }
148
-
149
- // 从链接中提取笔记 ID
150
- function extractNoteIdFromLink(link?: string): string | null {
151
- if (!link) return null
152
- const match = link.match(/\/notes\/(\d{4})\./)
153
- return match ? match[1] : null
154
- }
155
-
156
- // 提取文本开头的 emoji
157
- function extractEmoji(text: string): { emoji: string; rest: string } {
158
- const emojiMatch = text.match(
159
- /^([\u{1F300}-\u{1F9FF}\u{2600}-\u{26FF}\u{2700}-\u{27BF}✅❌⏰]+)\s*/u
160
- )
161
-
162
- if (emojiMatch) {
163
- return {
164
- emoji: emojiMatch[1],
165
- rest: text.slice(emojiMatch[0].length),
166
- }
167
- }
168
-
169
- return { emoji: '', rest: text }
170
- }
171
-
172
- // 获取笔记显示文本
173
- function getNoteDisplayText(text: string, link?: string): string {
174
- const { emoji, rest } = extractEmoji(text)
175
-
176
- if (props.showNoteId) {
177
- if (/^\d{4}\./.test(rest)) {
178
- return emoji ? `${emoji} ${rest}` : rest
179
- }
180
-
181
- const noteId = extractNoteIdFromLink(link)
182
- if (noteId) {
183
- return emoji ? `${emoji} ${noteId}. ${rest}` : `${noteId}. ${rest}`
184
- }
185
-
186
- return text
187
- } else {
188
- const cleanRest = rest.replace(/^\d{4}\.\s*/, '')
189
- return emoji ? `${emoji} ${cleanRest}` : cleanRest
190
- }
191
- }
192
- </script>
193
-
194
- <style scoped>
195
- .group {
196
- margin-bottom: 16px;
197
- }
198
-
199
- .group-title {
200
- display: flex;
201
- justify-content: space-between;
202
- align-items: center;
203
- width: 100%;
204
- padding: 6px 0;
205
- font-weight: 600;
206
- color: var(--vp-c-text-1);
207
- background: none;
208
- border: none;
209
- cursor: pointer;
210
- text-align: left;
211
- transition: color 0.25s;
212
- }
213
-
214
- .group-title:hover {
215
- color: var(--vp-c-brand-1);
216
- }
217
-
218
- .arrow {
219
- font-size: 10px;
220
- transform: rotate(90deg);
221
- transition: transform 0.25s;
222
- }
223
-
224
- .arrow.collapsed {
225
- transform: rotate(0deg);
226
- }
227
-
228
- .nav-item {
229
- display: block;
230
- padding: 4px;
231
- color: var(--vp-c-text-2);
232
- text-decoration: none;
233
- border-radius: 4px;
234
- font-size: 14px;
235
- line-height: 24px;
236
- transition: all 0.25s;
237
- }
238
-
239
- .nav-item:hover {
240
- color: var(--vp-c-brand-1);
241
- background-color: var(--vp-c-default-soft);
242
- }
243
-
244
- .nav-item.active {
245
- color: var(--vp-c-brand-1);
246
- font-weight: 600;
247
- }
248
-
249
- /* 聚焦高亮动画 */
250
- .nav-item.focus-highlight {
251
- animation: focusPulse 1s ease-in-out;
252
- }
253
-
254
- @keyframes focusPulse {
255
- 0%,
256
- 100% {
257
- background-color: transparent;
258
- }
259
- 50% {
260
- background-color: var(--vp-c-brand-soft);
261
- }
262
- }
263
- </style>
59
+
60
+ import { icon__sidebar_opened, icon__sidebar_collapsed } from '../../assets/icons'
61
+
62
+ interface SidebarItem {
63
+ text: string
64
+ link?: string
65
+ items?: SidebarItem[]
66
+ collapsed?: boolean
67
+ }
68
+
69
+ interface Props {
70
+ items: SidebarItem[]
71
+ depth: number
72
+ maxDepth: number
73
+ showNoteId: boolean
74
+ base: string
75
+ currentPath: string
76
+ itemDepth?: number // 用于计算链接项的缩进,默认等于 depth
77
+ }
78
+
79
+ const props = withDefaults(defineProps<Props>(), {
80
+ depth: 0,
81
+ maxDepth: 3,
82
+ showNoteId: false,
83
+ base: '/',
84
+ currentPath: '',
85
+ itemDepth: undefined,
86
+ })
87
+
88
+ // 获取实际的 item depth(用于链接项的缩进)
89
+ const actualItemDepth = computed(() => props.itemDepth ?? props.depth)
90
+
91
+ // 判断项是否有子项
92
+ function hasChildren(item: SidebarItem): boolean {
93
+ return !!(item.items && item.items.length > 0)
94
+ }
95
+
96
+ function getChildItems(item: SidebarItem): SidebarItem[] {
97
+ return item.items ?? []
98
+ }
99
+
100
+ // 获取项的唯一 key
101
+ function getItemKey(item: SidebarItem): string {
102
+ return item.link || item.text
103
+ }
104
+
105
+ // 切换项的展开/折叠状态
106
+ function toggleItem(item: SidebarItem) {
107
+ item.collapsed = !item.collapsed
108
+ }
109
+
110
+ // 根据深度获取组的缩进样式
111
+ function getGroupStyle(depth: number) {
112
+ // 从第二层组开始才需要缩进(depth >= 1)
113
+ if (depth === 0) {
114
+ return {}
115
+ }
116
+ return {
117
+ paddingLeft: `${depth * 16}px`,
118
+ }
119
+ }
120
+
121
+ // 根据深度获取项的缩进样式
122
+ function getItemStyle(depth: number) {
123
+ // 项的缩进基于其父组的depth
124
+ // 第一层组(depth=0)的子项不需要额外缩进
125
+ // 第二层组(depth=1)的子项需要缩进 16px
126
+ if (depth === 0) {
127
+ return {}
128
+ }
129
+ return {
130
+ paddingLeft: `${depth * 16}px`,
131
+ }
132
+ }
133
+
134
+ // 获取完整链接(包含 base)
135
+ function getFullLink(link?: string) {
136
+ if (!link) return '#'
137
+ const cleanLink = link.startsWith('/') ? link.slice(1) : link
138
+ return props.base + cleanLink
139
+ }
140
+
141
+ // 判断链接是否激活
142
+ function isActive(link?: string) {
143
+ if (!link) return false
144
+ const fullLink = getFullLink(link)
145
+ const decodedRoutePath = decodeURIComponent(props.currentPath)
146
+ const decodedFullLink = decodeURIComponent(fullLink)
147
+
148
+ return (
149
+ decodedRoutePath === decodedFullLink ||
150
+ decodedRoutePath === decodedFullLink + '.html'
151
+ )
152
+ }
153
+
154
+ // 从链接中提取笔记 ID
155
+ function extractNoteIdFromLink(link?: string): string | null {
156
+ if (!link) return null
157
+ const match = link.match(/\/notes\/(\d{4})\./)
158
+ return match ? match[1] : null
159
+ }
160
+
161
+ // 提取文本开头的 emoji
162
+ function extractEmoji(text: string): { emoji: string; rest: string } {
163
+ const emojiMatch = text.match(
164
+ /^([\u{1F300}-\u{1F9FF}\u{2600}-\u{26FF}\u{2700}-\u{27BF}✅❌⏰]+)\s*/u
165
+ )
166
+
167
+ if (emojiMatch) {
168
+ return {
169
+ emoji: emojiMatch[1],
170
+ rest: text.slice(emojiMatch[0].length),
171
+ }
172
+ }
173
+
174
+ return { emoji: '', rest: text }
175
+ }
176
+
177
+ // 获取笔记显示文本
178
+ function getNoteDisplayText(text: string, link?: string): string {
179
+ const { emoji, rest } = extractEmoji(text)
180
+
181
+ if (props.showNoteId) {
182
+ if (/^\d{4}\./.test(rest)) {
183
+ return emoji ? `${emoji} ${rest}` : rest
184
+ }
185
+
186
+ const noteId = extractNoteIdFromLink(link)
187
+ if (noteId) {
188
+ return emoji ? `${emoji} ${noteId}. ${rest}` : `${noteId}. ${rest}`
189
+ }
190
+
191
+ return text
192
+ } else {
193
+ const cleanRest = rest.replace(/^\d{4}\.\s*/, '')
194
+ return emoji ? `${emoji} ${cleanRest}` : cleanRest
195
+ }
196
+ }
197
+ </script>
198
+
199
+ <style scoped>
200
+ .group {
201
+ margin-bottom: 16px;
202
+ }
203
+
204
+ .group-title {
205
+ display: flex;
206
+ justify-content: space-between;
207
+ align-items: center;
208
+ width: 100%;
209
+ padding: 6px 0;
210
+ font-weight: 600;
211
+ color: var(--vp-c-text-1);
212
+ background: none;
213
+ border: none;
214
+ cursor: pointer;
215
+ text-align: left;
216
+ transition: color 0.25s;
217
+ }
218
+
219
+ .group-title:hover {
220
+ color: var(--vp-c-brand-1);
221
+ }
222
+
223
+ .arrow {
224
+ font-size: 10px;
225
+ transform: rotate(90deg);
226
+ transition: transform 0.25s;
227
+ }
228
+
229
+ .arrow.collapsed {
230
+ transform: rotate(0deg);
231
+ }
232
+
233
+ .nav-item {
234
+ display: block;
235
+ padding: 4px;
236
+ color: var(--vp-c-text-2);
237
+ text-decoration: none;
238
+ border-radius: 4px;
239
+ font-size: 14px;
240
+ line-height: 24px;
241
+ transition: all 0.25s;
242
+ }
243
+
244
+ .nav-item:hover {
245
+ color: var(--vp-c-brand-1);
246
+ background-color: var(--vp-c-default-soft);
247
+ }
248
+
249
+ .nav-item.active {
250
+ color: var(--vp-c-brand-1);
251
+ font-weight: 600;
252
+ }
253
+
254
+ /* 聚焦高亮动画 */
255
+ .nav-item.focus-highlight {
256
+ animation: focusPulse 1s ease-in-out;
257
+ }
258
+
259
+ @keyframes focusPulse {
260
+ 0%,
261
+ 100% {
262
+ background-color: transparent;
263
+ }
264
+ 50% {
265
+ background-color: var(--vp-c-brand-soft);
266
+ }
267
+ }
268
+ </style>