vitepress-theme-element-plus 0.0.4 → 0.0.6
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/package.json
CHANGED
package/styles/base.scss
CHANGED
package/styles/doc-content.scss
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
h3 {
|
|
18
18
|
font-size: 1.35rem;
|
|
19
|
+
margin-top: 2rem;
|
|
19
20
|
font-weight: 600;
|
|
20
21
|
}
|
|
21
22
|
|
|
@@ -158,4 +159,65 @@
|
|
|
158
159
|
margin: 20px 0;
|
|
159
160
|
}
|
|
160
161
|
}
|
|
162
|
+
|
|
163
|
+
blockquote {
|
|
164
|
+
margin: 1rem 0;
|
|
165
|
+
border-left: .2rem solid var(--el-border-color);
|
|
166
|
+
padding: .25rem 0 .25rem 1rem;
|
|
167
|
+
font-size: 1rem;
|
|
168
|
+
color: var(--text-color-lighter)
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
blockquote>p {
|
|
172
|
+
margin: 0
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
form {
|
|
176
|
+
margin: 0
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
details summary {
|
|
180
|
+
margin: 16px 0;
|
|
181
|
+
font-size: 18px;
|
|
182
|
+
font-weight: 600;
|
|
183
|
+
cursor: pointer
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
figure {
|
|
187
|
+
margin: 0
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
img {
|
|
191
|
+
max-width: 100%
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
ul,
|
|
195
|
+
ol {
|
|
196
|
+
padding-left: 1.25em;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
li>ul,
|
|
200
|
+
li>ol {
|
|
201
|
+
margin: 0
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
p,
|
|
205
|
+
ol,
|
|
206
|
+
ul {
|
|
207
|
+
margin: 1rem 0;
|
|
208
|
+
line-height: 1.7;
|
|
209
|
+
list-style-type: disc
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
ol>li {
|
|
213
|
+
list-style: auto
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
hr {
|
|
217
|
+
margin-top: 20px;
|
|
218
|
+
margin-bottom: 20px;
|
|
219
|
+
border: 0;
|
|
220
|
+
border-top: 1px solid var(--el-border-color-lighter);
|
|
221
|
+
}
|
|
161
222
|
}
|
|
223
|
+
|
package/styles/index.scss
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
--vp-nav-logo-height: 28px;
|
|
43
43
|
--vp-c-brand: var(--el-color-primary);
|
|
44
44
|
--vp-c-brand-1: var(--el-color-primary);
|
|
45
|
-
--
|
|
45
|
+
--vp-c-bg: var(--el-bg-color);
|
|
46
46
|
}
|
|
47
47
|
// fix "vitepress-plugin-group-icons"
|
|
48
48
|
.vp-code-block-title-bar.vp-code-block-title-bar {
|
package/styles/tag-content.scss
CHANGED