@tnotesjs/core 0.1.22 → 0.1.24
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.
- package/README.md +87 -87
- package/package.json +1 -1
- package/types/config.ts +60 -60
- package/types/index.ts +11 -11
- package/types/note.ts +33 -33
- package/vitepress/assets/icons/icon__check.svg +3 -3
- package/vitepress/assets/icons/icon__clipboard.svg +7 -7
- package/vitepress/assets/icons/icon__close.svg +1 -1
- package/vitepress/assets/icons/icon__collapse.svg +1 -1
- package/vitepress/assets/icons/icon__confirm.svg +1 -1
- package/vitepress/assets/icons/icon__copy.svg +4 -4
- package/vitepress/assets/icons/icon__focus.svg +1 -1
- package/vitepress/assets/icons/icon__fold.svg +3 -3
- package/vitepress/assets/icons/icon__folder.svg +1 -1
- package/vitepress/assets/icons/icon__fullscreen.svg +1 -1
- package/vitepress/assets/icons/icon__fullscreen_exit.svg +1 -1
- package/vitepress/assets/icons/icon__github.svg +3 -3
- package/vitepress/assets/icons/icon__mindmap.svg +1 -1
- package/vitepress/assets/icons/icon__next.svg +1 -1
- package/vitepress/assets/icons/icon__number_gray.svg +1 -1
- package/vitepress/assets/icons/icon__number_purple.svg +1 -1
- package/vitepress/assets/icons/icon__prev.svg +1 -1
- package/vitepress/assets/icons/icon__restore.svg +1 -1
- package/vitepress/assets/icons/icon__rotate.svg +4 -4
- package/vitepress/assets/icons/icon__search.svg +1 -1
- package/vitepress/assets/icons/icon__sidebar_collapsed.svg +1 -1
- package/vitepress/assets/icons/icon__sidebar_opened.svg +1 -1
- package/vitepress/assets/icons/icon__totop.svg +5 -5
- package/vitepress/assets/icons/icon__vscode.svg +5 -5
- package/vitepress/assets/icons/icon__zoom_fit.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_in.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_out.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_reset.svg +1 -1
- package/vitepress/assets/icons/index.ts +39 -39
- package/vitepress/components/BilibiliOutsidePlayer/BilibiliOutsidePlayer.vue +20 -20
- package/vitepress/components/CodeBlockFullscreen/CodeBlockFullscreen.vue +369 -369
- package/vitepress/components/CodeBlockFullscreen/index.ts +209 -209
- package/vitepress/components/CodeBlockFullscreen/styles.css +126 -126
- package/vitepress/components/Discussions/Discussions.vue +242 -242
- package/vitepress/components/EnWordList/EnWordList.vue +664 -664
- package/vitepress/components/EnWordList/RightClickMenu.vue +87 -87
- package/vitepress/components/Footprints/Footprints.vue +472 -472
- package/vitepress/components/Layout/AboutModal.vue +329 -329
- package/vitepress/components/Layout/AboutPanel.vue +485 -485
- package/vitepress/components/Layout/ContentCollapse.vue +591 -591
- package/vitepress/components/Layout/CustomSidebar.vue +817 -817
- package/vitepress/components/Layout/DocBeforeControls.vue +145 -145
- package/vitepress/components/Layout/DocFooter.vue +233 -233
- package/vitepress/components/Layout/ImagePreview.vue +485 -485
- package/vitepress/components/Layout/Layout.vue +744 -744
- package/vitepress/components/Layout/NoteStatus.vue +140 -140
- package/vitepress/components/Layout/SidebarItems.vue +1083 -1083
- package/vitepress/components/Layout/SidebarNavBefore.vue +170 -170
- package/vitepress/components/Layout/SidebarResizeHandle.vue +368 -311
- package/vitepress/components/Layout/Swiper.vue +167 -167
- package/vitepress/components/Layout/ToggleFullContent.vue +45 -45
- package/vitepress/components/Layout/ToggleSidebar.vue +35 -35
- package/vitepress/components/Layout/composables/useCollapseControl.ts +88 -88
- package/vitepress/components/Layout/composables/useNoteConfig.ts +119 -119
- package/vitepress/components/Layout/composables/useNoteSave.ts +178 -178
- package/vitepress/components/Layout/composables/useNoteValidation.ts +85 -85
- package/vitepress/components/Layout/composables/useRedirect.ts +113 -113
- package/vitepress/components/Layout/composables/useSidebarLayout.ts +122 -122
- package/vitepress/components/Layout/composables/useVSCodeIntegration.ts +85 -85
- package/vitepress/components/Layout/homeReadme.data.ts +124 -124
- package/vitepress/components/MarkMap/MarkMap.vue +562 -562
- package/vitepress/components/Mermaid/Mermaid.vue +644 -644
- package/vitepress/components/NotesTable/NotesTable.vue +175 -175
- package/vitepress/components/NotesTable/README.md +67 -67
- package/vitepress/components/Settings/Settings.vue +711 -711
- package/vitepress/components/SidebarCard/MindMapView.vue +484 -484
- package/vitepress/components/SidebarCard/NotesTrendChart.vue +108 -108
- package/vitepress/components/SidebarCard/SidebarCard.vue +945 -945
- package/vitepress/components/Tooltip/Tooltip.vue +70 -70
- package/vitepress/components/constants.ts +109 -109
- package/vitepress/components/notesConfig.data.ts +73 -73
- package/vitepress/components/sidebar.data.ts +59 -59
- package/vitepress/components/tnotes-config.data.ts +21 -21
- package/vitepress/components/utils.ts +26 -26
- package/vitepress/config/index.ts +169 -169
- package/vitepress/configs/constants.ts +26 -26
- package/vitepress/configs/head.config.ts +25 -25
- package/vitepress/configs/index.ts +9 -9
- package/vitepress/configs/markdown-it.d.ts +23 -23
- package/vitepress/configs/markdown.config.ts +368 -368
- package/vitepress/configs/theme.config.ts +108 -108
- package/vitepress/plugins/buildProgressPlugin.ts +434 -434
- package/vitepress/plugins/getNoteByConfigIdPlugin.ts +107 -107
- package/vitepress/plugins/renameNotePlugin.ts +68 -68
- package/vitepress/plugins/sidebarStructurePlugin.ts +260 -260
- package/vitepress/plugins/updateConfigPlugin.ts +63 -63
- package/vitepress/theme/index.ts +137 -137
- package/vitepress/theme/styles/base.scss +66 -64
- package/vitepress/theme/styles/components/404.scss +31 -31
- package/vitepress/theme/styles/components/collapse.scss +172 -172
- package/vitepress/theme/styles/components/markmap.scss +101 -101
- package/vitepress/theme/styles/components/swiper.scss +255 -255
- package/vitepress/theme/styles/index.scss +25 -25
- package/vitepress/theme/styles/layout.scss +79 -78
- package/vitepress/theme/styles/utilities.scss +39 -39
- package/vitepress/theme/styles/vitepress-override.scss +25 -25
|
@@ -1,172 +1,172 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Collapse(折叠/展开)组件全局样式
|
|
3
|
-
* 这些样式应用于文档内容中动态生成的折叠区域
|
|
4
|
-
*
|
|
5
|
-
* 由 ContentCollapse.vue 组件使用,所有样式必须是全局的
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/* ===================================== */
|
|
9
|
-
/* #region 折叠按钮基础样式 */
|
|
10
|
-
/* ===================================== */
|
|
11
|
-
|
|
12
|
-
.collapse-toggle {
|
|
13
|
-
background: none;
|
|
14
|
-
border: none;
|
|
15
|
-
cursor: pointer;
|
|
16
|
-
padding: 4px;
|
|
17
|
-
margin: 0;
|
|
18
|
-
transition: all 0.25s ease;
|
|
19
|
-
line-height: 1;
|
|
20
|
-
display: inline-flex;
|
|
21
|
-
align-items: center;
|
|
22
|
-
justify-content: center;
|
|
23
|
-
pointer-events: none; /* 按钮本身不响应点击 */
|
|
24
|
-
transform-origin: center;
|
|
25
|
-
|
|
26
|
-
&.collapsed {
|
|
27
|
-
transform: rotate(0deg);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.collapse-icon {
|
|
32
|
-
width: 16px;
|
|
33
|
-
height: 16px;
|
|
34
|
-
transition: transform 0.25s ease;
|
|
35
|
-
transform: rotate(90deg); /* 默认向下(展开状态)*/
|
|
36
|
-
opacity: 0;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/* #endregion */
|
|
40
|
-
|
|
41
|
-
/* ===================================== */
|
|
42
|
-
/* #region TOC 折叠区域 */
|
|
43
|
-
/* ===================================== */
|
|
44
|
-
|
|
45
|
-
.toc-collapse-wrapper {
|
|
46
|
-
position: relative;
|
|
47
|
-
margin: 16px 0;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.toc-collapse-header {
|
|
51
|
-
display: flex;
|
|
52
|
-
align-items: center;
|
|
53
|
-
justify-content: space-between;
|
|
54
|
-
padding: 8px 12px;
|
|
55
|
-
cursor: pointer;
|
|
56
|
-
border-radius: 6px;
|
|
57
|
-
transition: all 0.2s ease;
|
|
58
|
-
background: transparent;
|
|
59
|
-
|
|
60
|
-
&:hover {
|
|
61
|
-
background: var(--vp-c-bg-soft);
|
|
62
|
-
|
|
63
|
-
.collapse-icon {
|
|
64
|
-
opacity: 1;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&.collapsed {
|
|
69
|
-
background: var(--vp-c-bg-soft);
|
|
70
|
-
border: 1px solid var(--vp-c-divider);
|
|
71
|
-
|
|
72
|
-
.toc-collapse-toggle img {
|
|
73
|
-
transform: rotate(0deg) !important; /* 折叠时向右 */
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&:hover {
|
|
77
|
-
background: var(--vp-c-bg-mute);
|
|
78
|
-
border-color: var(--vp-c-brand-1);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.collapse-label {
|
|
84
|
-
font-weight: 600;
|
|
85
|
-
color: var(--vp-c-text-2);
|
|
86
|
-
font-size: 14px;
|
|
87
|
-
display: block;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.toc-collapse-toggle {
|
|
91
|
-
flex-shrink: 0;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
/* #endregion */
|
|
95
|
-
|
|
96
|
-
/* ===================================== */
|
|
97
|
-
/* #region H2 折叠区域 */
|
|
98
|
-
/* ===================================== */
|
|
99
|
-
|
|
100
|
-
h2.collapsible-h2 {
|
|
101
|
-
position: relative !important;
|
|
102
|
-
cursor: pointer !important;
|
|
103
|
-
padding: 8px 40px 8px 0px !important; /* 右侧预留按钮空间 */
|
|
104
|
-
border-radius: 6px !important;
|
|
105
|
-
transition: all 0.2s ease !important;
|
|
106
|
-
|
|
107
|
-
&:hover {
|
|
108
|
-
background: var(--vp-c-bg-soft) !important;
|
|
109
|
-
|
|
110
|
-
.collapse-icon {
|
|
111
|
-
opacity: 1 !important;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
.collapse-icon {
|
|
115
|
-
opacity: 0.3;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
&.collapsed {
|
|
119
|
-
background: var(--vp-c-bg-soft) !important;
|
|
120
|
-
border: .1px solid var(--vp-c-divider) !important;
|
|
121
|
-
.collapse-icon {
|
|
122
|
-
opacity: 0.5;
|
|
123
|
-
}
|
|
124
|
-
// margin-top: 1rem !important;
|
|
125
|
-
// margin: 12px 0 0 0 !important;
|
|
126
|
-
|
|
127
|
-
.collapse-icon {
|
|
128
|
-
transform: rotate(0deg) !important; /* 折叠时向右 */
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&:hover {
|
|
132
|
-
background: var(--vp-c-bg-mute) !important;
|
|
133
|
-
border-color: var(--vp-c-brand-1) !important;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
/* 修复 anchor 位置 */
|
|
138
|
-
.header-anchor {
|
|
139
|
-
// top: 10px !important;
|
|
140
|
-
display: none !important;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.h2-collapse-toggle {
|
|
145
|
-
position: absolute !important;
|
|
146
|
-
right: 8px !important;
|
|
147
|
-
top: 50% !important;
|
|
148
|
-
transform: translateY(-50%) !important;
|
|
149
|
-
flex-shrink: 0;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/* #endregion */
|
|
153
|
-
|
|
154
|
-
/* ===================================== */
|
|
155
|
-
/* #region 折叠内容区域 */
|
|
156
|
-
/* ===================================== */
|
|
157
|
-
|
|
158
|
-
.collapse-content {
|
|
159
|
-
&.collapsed {
|
|
160
|
-
display: none !important;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
> :first-child {
|
|
164
|
-
margin-top: 0;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
> :last-child {
|
|
168
|
-
margin-bottom: 0;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
/* #endregion */
|
|
1
|
+
/**
|
|
2
|
+
* Collapse(折叠/展开)组件全局样式
|
|
3
|
+
* 这些样式应用于文档内容中动态生成的折叠区域
|
|
4
|
+
*
|
|
5
|
+
* 由 ContentCollapse.vue 组件使用,所有样式必须是全局的
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* ===================================== */
|
|
9
|
+
/* #region 折叠按钮基础样式 */
|
|
10
|
+
/* ===================================== */
|
|
11
|
+
|
|
12
|
+
.collapse-toggle {
|
|
13
|
+
background: none;
|
|
14
|
+
border: none;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
padding: 4px;
|
|
17
|
+
margin: 0;
|
|
18
|
+
transition: all 0.25s ease;
|
|
19
|
+
line-height: 1;
|
|
20
|
+
display: inline-flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
pointer-events: none; /* 按钮本身不响应点击 */
|
|
24
|
+
transform-origin: center;
|
|
25
|
+
|
|
26
|
+
&.collapsed {
|
|
27
|
+
transform: rotate(0deg);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.collapse-icon {
|
|
32
|
+
width: 16px;
|
|
33
|
+
height: 16px;
|
|
34
|
+
transition: transform 0.25s ease;
|
|
35
|
+
transform: rotate(90deg); /* 默认向下(展开状态)*/
|
|
36
|
+
opacity: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* #endregion */
|
|
40
|
+
|
|
41
|
+
/* ===================================== */
|
|
42
|
+
/* #region TOC 折叠区域 */
|
|
43
|
+
/* ===================================== */
|
|
44
|
+
|
|
45
|
+
.toc-collapse-wrapper {
|
|
46
|
+
position: relative;
|
|
47
|
+
margin: 16px 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.toc-collapse-header {
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
justify-content: space-between;
|
|
54
|
+
padding: 8px 12px;
|
|
55
|
+
cursor: pointer;
|
|
56
|
+
border-radius: 6px;
|
|
57
|
+
transition: all 0.2s ease;
|
|
58
|
+
background: transparent;
|
|
59
|
+
|
|
60
|
+
&:hover {
|
|
61
|
+
background: var(--vp-c-bg-soft);
|
|
62
|
+
|
|
63
|
+
.collapse-icon {
|
|
64
|
+
opacity: 1;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&.collapsed {
|
|
69
|
+
background: var(--vp-c-bg-soft);
|
|
70
|
+
border: 1px solid var(--vp-c-divider);
|
|
71
|
+
|
|
72
|
+
.toc-collapse-toggle img {
|
|
73
|
+
transform: rotate(0deg) !important; /* 折叠时向右 */
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&:hover {
|
|
77
|
+
background: var(--vp-c-bg-mute);
|
|
78
|
+
border-color: var(--vp-c-brand-1);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.collapse-label {
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
color: var(--vp-c-text-2);
|
|
86
|
+
font-size: 14px;
|
|
87
|
+
display: block;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.toc-collapse-toggle {
|
|
91
|
+
flex-shrink: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* #endregion */
|
|
95
|
+
|
|
96
|
+
/* ===================================== */
|
|
97
|
+
/* #region H2 折叠区域 */
|
|
98
|
+
/* ===================================== */
|
|
99
|
+
|
|
100
|
+
h2.collapsible-h2 {
|
|
101
|
+
position: relative !important;
|
|
102
|
+
cursor: pointer !important;
|
|
103
|
+
padding: 8px 40px 8px 0px !important; /* 右侧预留按钮空间 */
|
|
104
|
+
border-radius: 6px !important;
|
|
105
|
+
transition: all 0.2s ease !important;
|
|
106
|
+
|
|
107
|
+
&:hover {
|
|
108
|
+
background: var(--vp-c-bg-soft) !important;
|
|
109
|
+
|
|
110
|
+
.collapse-icon {
|
|
111
|
+
opacity: 1 !important;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
.collapse-icon {
|
|
115
|
+
opacity: 0.3;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&.collapsed {
|
|
119
|
+
background: var(--vp-c-bg-soft) !important;
|
|
120
|
+
border: .1px solid var(--vp-c-divider) !important;
|
|
121
|
+
.collapse-icon {
|
|
122
|
+
opacity: 0.5;
|
|
123
|
+
}
|
|
124
|
+
// margin-top: 1rem !important;
|
|
125
|
+
// margin: 12px 0 0 0 !important;
|
|
126
|
+
|
|
127
|
+
.collapse-icon {
|
|
128
|
+
transform: rotate(0deg) !important; /* 折叠时向右 */
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&:hover {
|
|
132
|
+
background: var(--vp-c-bg-mute) !important;
|
|
133
|
+
border-color: var(--vp-c-brand-1) !important;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* 修复 anchor 位置 */
|
|
138
|
+
.header-anchor {
|
|
139
|
+
// top: 10px !important;
|
|
140
|
+
display: none !important;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.h2-collapse-toggle {
|
|
145
|
+
position: absolute !important;
|
|
146
|
+
right: 8px !important;
|
|
147
|
+
top: 50% !important;
|
|
148
|
+
transform: translateY(-50%) !important;
|
|
149
|
+
flex-shrink: 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/* #endregion */
|
|
153
|
+
|
|
154
|
+
/* ===================================== */
|
|
155
|
+
/* #region 折叠内容区域 */
|
|
156
|
+
/* ===================================== */
|
|
157
|
+
|
|
158
|
+
.collapse-content {
|
|
159
|
+
&.collapsed {
|
|
160
|
+
display: none !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
> :first-child {
|
|
164
|
+
margin-top: 0;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
> :last-child {
|
|
168
|
+
margin-bottom: 0;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/* #endregion */
|
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* MarkMap 组件全局样式
|
|
3
|
-
* Toolbar 由 markmap-toolbar 库动态生成,需要全局样式
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/* ===================================== */
|
|
7
|
-
/* #region Toolbar 样式 */
|
|
8
|
-
/* ===================================== */
|
|
9
|
-
|
|
10
|
-
.mm-toolbar {
|
|
11
|
-
display: flex;
|
|
12
|
-
align-items: center;
|
|
13
|
-
gap: 8px;
|
|
14
|
-
padding: 6px;
|
|
15
|
-
background: rgba(255, 255, 255, 0.9);
|
|
16
|
-
border-radius: 6px;
|
|
17
|
-
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
|
|
18
|
-
backdrop-filter: blur(8px);
|
|
19
|
-
opacity: 0;
|
|
20
|
-
pointer-events: none;
|
|
21
|
-
transition: opacity 0.3s ease;
|
|
22
|
-
color: var(--vp-c-tip-1);
|
|
23
|
-
font-weight: 700;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.mm-toolbar-item {
|
|
27
|
-
cursor: pointer;
|
|
28
|
-
display: flex;
|
|
29
|
-
align-items: center;
|
|
30
|
-
justify-content: center;
|
|
31
|
-
width: 28px;
|
|
32
|
-
height: 28px;
|
|
33
|
-
border-radius: 4px;
|
|
34
|
-
transition: all 0.2s ease;
|
|
35
|
-
font-weight: 500;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.mm-toolbar-item:hover {
|
|
39
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
40
|
-
transform: scale(1.1);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.mm-toolbar-item:active {
|
|
44
|
-
transform: scale(0.95);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.mm-toolbar-item svg {
|
|
48
|
-
color: var(--vp-c-tip-1);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/* #endregion */
|
|
52
|
-
|
|
53
|
-
/* ===================================== */
|
|
54
|
-
/* #region SVG 动画 */
|
|
55
|
-
/* ===================================== */
|
|
56
|
-
|
|
57
|
-
.markmap g {
|
|
58
|
-
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* #endregion */
|
|
62
|
-
|
|
63
|
-
/* ===================================== */
|
|
64
|
-
/* #region 暗色模式 */
|
|
65
|
-
/* ===================================== */
|
|
66
|
-
|
|
67
|
-
.markmap-dark .mm-toolbar {
|
|
68
|
-
background: rgba(30, 30, 30, 0.9);
|
|
69
|
-
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.markmap-dark .mm-toolbar-item:hover {
|
|
73
|
-
background-color: rgba(255, 255, 255, 0.1);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
/* #endregion */
|
|
77
|
-
|
|
78
|
-
/* ===================================== */
|
|
79
|
-
/* #region 响应式 */
|
|
80
|
-
/* ===================================== */
|
|
81
|
-
|
|
82
|
-
@media (max-width: 768px) {
|
|
83
|
-
.mm-toolbar {
|
|
84
|
-
scale: 0.9;
|
|
85
|
-
gap: 6px;
|
|
86
|
-
padding: 4px;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.mm-toolbar-item {
|
|
90
|
-
width: 24px;
|
|
91
|
-
height: 24px;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
@media (max-width: 480px) {
|
|
96
|
-
.mm-toolbar {
|
|
97
|
-
scale: 0.8;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/* #endregion */
|
|
1
|
+
/**
|
|
2
|
+
* MarkMap 组件全局样式
|
|
3
|
+
* Toolbar 由 markmap-toolbar 库动态生成,需要全局样式
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/* ===================================== */
|
|
7
|
+
/* #region Toolbar 样式 */
|
|
8
|
+
/* ===================================== */
|
|
9
|
+
|
|
10
|
+
.mm-toolbar {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
gap: 8px;
|
|
14
|
+
padding: 6px;
|
|
15
|
+
background: rgba(255, 255, 255, 0.9);
|
|
16
|
+
border-radius: 6px;
|
|
17
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
|
|
18
|
+
backdrop-filter: blur(8px);
|
|
19
|
+
opacity: 0;
|
|
20
|
+
pointer-events: none;
|
|
21
|
+
transition: opacity 0.3s ease;
|
|
22
|
+
color: var(--vp-c-tip-1);
|
|
23
|
+
font-weight: 700;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.mm-toolbar-item {
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
width: 28px;
|
|
32
|
+
height: 28px;
|
|
33
|
+
border-radius: 4px;
|
|
34
|
+
transition: all 0.2s ease;
|
|
35
|
+
font-weight: 500;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.mm-toolbar-item:hover {
|
|
39
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
40
|
+
transform: scale(1.1);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.mm-toolbar-item:active {
|
|
44
|
+
transform: scale(0.95);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.mm-toolbar-item svg {
|
|
48
|
+
color: var(--vp-c-tip-1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* #endregion */
|
|
52
|
+
|
|
53
|
+
/* ===================================== */
|
|
54
|
+
/* #region SVG 动画 */
|
|
55
|
+
/* ===================================== */
|
|
56
|
+
|
|
57
|
+
.markmap g {
|
|
58
|
+
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* #endregion */
|
|
62
|
+
|
|
63
|
+
/* ===================================== */
|
|
64
|
+
/* #region 暗色模式 */
|
|
65
|
+
/* ===================================== */
|
|
66
|
+
|
|
67
|
+
.markmap-dark .mm-toolbar {
|
|
68
|
+
background: rgba(30, 30, 30, 0.9);
|
|
69
|
+
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.markmap-dark .mm-toolbar-item:hover {
|
|
73
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* #endregion */
|
|
77
|
+
|
|
78
|
+
/* ===================================== */
|
|
79
|
+
/* #region 响应式 */
|
|
80
|
+
/* ===================================== */
|
|
81
|
+
|
|
82
|
+
@media (max-width: 768px) {
|
|
83
|
+
.mm-toolbar {
|
|
84
|
+
scale: 0.9;
|
|
85
|
+
gap: 6px;
|
|
86
|
+
padding: 4px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.mm-toolbar-item {
|
|
90
|
+
width: 24px;
|
|
91
|
+
height: 24px;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@media (max-width: 480px) {
|
|
96
|
+
.mm-toolbar {
|
|
97
|
+
scale: 0.8;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/* #endregion */
|