@tnotesjs/core 0.0.2 → 0.0.4

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 (115) hide show
  1. package/README.md +84 -84
  2. package/dist/{chunk-LZQDLU3S.js → chunk-NI5B4S3T.js} +12 -2
  3. package/dist/cli/index.js +1 -1
  4. package/dist/vitepress/config/index.js +60 -17
  5. package/package.json +1 -1
  6. package/types/config.ts +61 -61
  7. package/types/index.ts +11 -11
  8. package/types/note.ts +33 -33
  9. package/vitepress/assets/icons/icon__check.svg +3 -3
  10. package/vitepress/assets/icons/icon__clipboard.svg +7 -7
  11. package/vitepress/assets/icons/icon__close.svg +1 -1
  12. package/vitepress/assets/icons/icon__collapse.svg +1 -1
  13. package/vitepress/assets/icons/icon__confirm.svg +1 -1
  14. package/vitepress/assets/icons/icon__copy.svg +4 -4
  15. package/vitepress/assets/icons/icon__focus.svg +1 -1
  16. package/vitepress/assets/icons/icon__fold.svg +3 -3
  17. package/vitepress/assets/icons/icon__folder.svg +1 -1
  18. package/vitepress/assets/icons/icon__fullscreen.svg +1 -1
  19. package/vitepress/assets/icons/icon__fullscreen_exit.svg +1 -1
  20. package/vitepress/assets/icons/icon__github.svg +3 -3
  21. package/vitepress/assets/icons/icon__mindmap.svg +1 -1
  22. package/vitepress/assets/icons/icon__next.svg +1 -1
  23. package/vitepress/assets/icons/icon__number_gray.svg +1 -1
  24. package/vitepress/assets/icons/icon__number_purple.svg +1 -1
  25. package/vitepress/assets/icons/icon__prev.svg +1 -1
  26. package/vitepress/assets/icons/icon__restore.svg +1 -1
  27. package/vitepress/assets/icons/icon__rotate.svg +4 -4
  28. package/vitepress/assets/icons/icon__search.svg +1 -1
  29. package/vitepress/assets/icons/icon__sidebar_collapsed.svg +1 -1
  30. package/vitepress/assets/icons/icon__sidebar_opened.svg +1 -1
  31. package/vitepress/assets/icons/icon__totop.svg +5 -5
  32. package/vitepress/assets/icons/icon__vscode.svg +5 -5
  33. package/vitepress/assets/icons/icon__zoom_fit.svg +1 -1
  34. package/vitepress/assets/icons/icon__zoom_in.svg +1 -1
  35. package/vitepress/assets/icons/icon__zoom_out.svg +1 -1
  36. package/vitepress/assets/icons/icon__zoom_reset.svg +1 -1
  37. package/vitepress/assets/icons/index.ts +38 -38
  38. package/vitepress/components/BilibiliOutsidePlayer/BilibiliOutsidePlayer.vue +20 -20
  39. package/vitepress/components/CodeBlockFullscreen/CodeBlockFullscreen.vue +373 -373
  40. package/vitepress/components/CodeBlockFullscreen/index.ts +115 -115
  41. package/vitepress/components/CodeBlockFullscreen/styles.css +64 -64
  42. package/vitepress/components/Discussions/Discussions.module.scss +32 -32
  43. package/vitepress/components/Discussions/Discussions.vue +211 -211
  44. package/vitepress/components/EnWordList/EnWordList.module.scss +124 -124
  45. package/vitepress/components/EnWordList/EnWordList.vue +543 -543
  46. package/vitepress/components/EnWordList/RightClickMenu.module.scss +22 -22
  47. package/vitepress/components/EnWordList/RightClickMenu.vue +66 -66
  48. package/vitepress/components/Footprints/Footprints.module.scss +93 -93
  49. package/vitepress/components/Footprints/Footprints.vue +377 -377
  50. package/vitepress/components/Layout/AboutModal.module.scss +233 -233
  51. package/vitepress/components/Layout/AboutModal.vue +105 -105
  52. package/vitepress/components/Layout/AboutPanel.vue +266 -266
  53. package/vitepress/components/Layout/ContentCollapse.vue +603 -603
  54. package/vitepress/components/Layout/CustomSidebar.vue +605 -605
  55. package/vitepress/components/Layout/DocBeforeControls.vue +139 -139
  56. package/vitepress/components/Layout/DocFooter.vue +233 -225
  57. package/vitepress/components/Layout/ImagePreview.module.scss +201 -201
  58. package/vitepress/components/Layout/ImagePreview.vue +281 -281
  59. package/vitepress/components/Layout/Layout.module.scss +661 -661
  60. package/vitepress/components/Layout/Layout.vue +542 -542
  61. package/vitepress/components/Layout/NoteStatus.vue +140 -140
  62. package/vitepress/components/Layout/SidebarItems.vue +263 -263
  63. package/vitepress/components/Layout/SidebarNavBefore.vue +92 -92
  64. package/vitepress/components/Layout/Swiper.vue +167 -167
  65. package/vitepress/components/Layout/ToggleFullContent.module.scss +11 -11
  66. package/vitepress/components/Layout/ToggleFullContent.vue +34 -34
  67. package/vitepress/components/Layout/ToggleSidebar.module.scss +11 -11
  68. package/vitepress/components/Layout/ToggleSidebar.vue +35 -35
  69. package/vitepress/components/Layout/composables/useCollapseControl.ts +88 -88
  70. package/vitepress/components/Layout/composables/useNoteConfig.ts +121 -121
  71. package/vitepress/components/Layout/composables/useNoteSave.ts +173 -173
  72. package/vitepress/components/Layout/composables/useNoteValidation.ts +85 -85
  73. package/vitepress/components/Layout/composables/useRedirect.ts +110 -110
  74. package/vitepress/components/Layout/composables/useVSCodeIntegration.ts +85 -85
  75. package/vitepress/components/Layout/homeReadme.data.ts +124 -124
  76. package/vitepress/components/LoadingPage/LoadingPage.vue +192 -192
  77. package/vitepress/components/MarkMap/MarkMap.module.scss +159 -159
  78. package/vitepress/components/MarkMap/MarkMap.vue +404 -404
  79. package/vitepress/components/Mermaid/Mermaid.module.scss +275 -275
  80. package/vitepress/components/Mermaid/Mermaid.vue +364 -364
  81. package/vitepress/components/NotesTable/NotesTable.module.scss +77 -77
  82. package/vitepress/components/NotesTable/NotesTable.vue +98 -98
  83. package/vitepress/components/NotesTable/README.md +67 -67
  84. package/vitepress/components/Settings/Settings.module.scss +433 -433
  85. package/vitepress/components/Settings/Settings.vue +306 -306
  86. package/vitepress/components/SidebarCard/MindMapView.vue +483 -483
  87. package/vitepress/components/SidebarCard/NotesTrendChart.vue +108 -108
  88. package/vitepress/components/SidebarCard/SidebarCard.vue +948 -948
  89. package/vitepress/components/Tooltip/Tooltip.vue +70 -70
  90. package/vitepress/components/constants.ts +91 -91
  91. package/vitepress/components/notesConfig.data.ts +73 -73
  92. package/vitepress/components/sidebar.data.ts +59 -59
  93. package/vitepress/components/tnotes-config.data.ts +21 -21
  94. package/vitepress/components/utils.ts +26 -26
  95. package/vitepress/config/index.ts +141 -141
  96. package/vitepress/configs/constants.ts +26 -26
  97. package/vitepress/configs/head.config.ts +25 -25
  98. package/vitepress/configs/index.ts +9 -9
  99. package/vitepress/configs/markdown-it.d.ts +23 -23
  100. package/vitepress/configs/markdown.config.ts +366 -366
  101. package/vitepress/configs/theme.config.ts +108 -108
  102. package/vitepress/plugins/buildProgressPlugin.ts +466 -390
  103. package/vitepress/plugins/getNoteByConfigIdPlugin.ts +107 -107
  104. package/vitepress/plugins/renameNotePlugin.ts +60 -60
  105. package/vitepress/plugins/updateConfigPlugin.ts +63 -63
  106. package/vitepress/theme/index.ts +95 -95
  107. package/vitepress/theme/styles/base.scss +50 -50
  108. package/vitepress/theme/styles/components/404.scss +31 -31
  109. package/vitepress/theme/styles/components/collapse.scss +175 -175
  110. package/vitepress/theme/styles/components/markmap.scss +101 -101
  111. package/vitepress/theme/styles/components/swiper.scss +255 -255
  112. package/vitepress/theme/styles/index.scss +25 -25
  113. package/vitepress/theme/styles/layout.scss +62 -62
  114. package/vitepress/theme/styles/utilities.scss +39 -39
  115. package/vitepress/theme/styles/vitepress-override.scss +25 -25
@@ -1,263 +1,263 @@
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">
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>
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">
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>