hexo-theme-gnix 6.0.4 → 6.0.5
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 +1 -1
- package/source/css/default.css +1 -3
- package/source/css/shiki/shiki.css +12 -18
package/package.json
CHANGED
package/source/css/default.css
CHANGED
|
@@ -347,7 +347,6 @@ textarea {
|
|
|
347
347
|
html {
|
|
348
348
|
box-sizing: border-box;
|
|
349
349
|
height: 100%;
|
|
350
|
-
font-size: 16px;
|
|
351
350
|
min-width: 300px;
|
|
352
351
|
overflow-x: hidden;
|
|
353
352
|
overflow-y: scroll;
|
|
@@ -356,7 +355,6 @@ html {
|
|
|
356
355
|
body {
|
|
357
356
|
min-height: 100%;
|
|
358
357
|
font-weight: 400;
|
|
359
|
-
font-size: 1em;
|
|
360
358
|
line-height: 1.5;
|
|
361
359
|
display: flex;
|
|
362
360
|
flex-direction: column;
|
|
@@ -1090,7 +1088,7 @@ input.task-list-item-checkbox:checked::before {
|
|
|
1090
1088
|
.medium-zoom-overlay {
|
|
1091
1089
|
backdrop-filter: blur(8px);
|
|
1092
1090
|
-webkit-backdrop-filter: blur(8px);
|
|
1093
|
-
z-index: 150
|
|
1091
|
+
z-index: 150;
|
|
1094
1092
|
}
|
|
1095
1093
|
|
|
1096
1094
|
.medium-zoom-image--opened {
|
|
@@ -8,28 +8,22 @@ code span {
|
|
|
8
8
|
font-weight: var(--shiki-light-font-weight);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
:is([data-theme="tokyo_night"]) {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
color: var(--shiki-tokyo) !important;
|
|
16
|
-
}
|
|
11
|
+
:is([data-theme="tokyo_night"]) code span {
|
|
12
|
+
font-style: var(--shiki-tokyo-font-style) !important;
|
|
13
|
+
font-weight: var(--shiki-tokyo-font-weight) !important;
|
|
14
|
+
color: var(--shiki-tokyo) !important;
|
|
17
15
|
}
|
|
18
16
|
|
|
19
|
-
:is([data-theme="nord_night"]) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
color: var(--shiki-nord) !important;
|
|
24
|
-
}
|
|
17
|
+
:is([data-theme="nord_night"]) code span {
|
|
18
|
+
font-style: var(--shiki-nord-font-style) !important;
|
|
19
|
+
font-weight: var(--shiki-nord-font-weight) !important;
|
|
20
|
+
color: var(--shiki-nord) !important;
|
|
25
21
|
}
|
|
26
22
|
|
|
27
|
-
:is([data-theme="mocha"], [data-theme="macchiato"]) {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
color: var(--shiki-dark) !important;
|
|
32
|
-
}
|
|
23
|
+
:is([data-theme="mocha"], [data-theme="macchiato"]) code span {
|
|
24
|
+
font-style: var(--shiki-dark-font-style) !important;
|
|
25
|
+
font-weight: var(--shiki-dark-font-weight) !important;
|
|
26
|
+
color: var(--shiki-dark) !important;
|
|
33
27
|
}
|
|
34
28
|
|
|
35
29
|
figure.shiki {
|