starlight-cannoli-plugins 1.0.9 → 1.0.12
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/dist/styles/custom.scss +1 -55
- package/package.json +1 -1
package/dist/styles/custom.scss
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
$info-color: #3b82f6;
|
|
2
|
-
$warning-color: #f59e0b;
|
|
3
|
-
|
|
4
|
-
html {
|
|
5
|
-
scroll-behavior: smooth;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
1
|
// invert img.note-svg when on dark mode
|
|
9
2
|
img.note-svg {
|
|
10
3
|
color-scheme: light dark;
|
|
@@ -121,6 +114,7 @@ mjx-container[jax="SVG"] {
|
|
|
121
114
|
}
|
|
122
115
|
|
|
123
116
|
.katex-display {
|
|
117
|
+
overflow-x: auto;
|
|
124
118
|
margin: 0.5em 0 !important;
|
|
125
119
|
padding: 0.5em 0 !important;
|
|
126
120
|
}
|
|
@@ -311,54 +305,6 @@ $axis-spacings: (
|
|
|
311
305
|
}
|
|
312
306
|
}
|
|
313
307
|
|
|
314
|
-
/************ Custom Styles ************/
|
|
315
|
-
|
|
316
|
-
.highlight-green,
|
|
317
|
-
.highlight-red {
|
|
318
|
-
padding: 5px;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.highlight-green {
|
|
322
|
-
background: #7de37d34;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.highlight-red {
|
|
326
|
-
background: #f7535b46;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.admin-only {
|
|
330
|
-
display: none;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.note-indicator {
|
|
334
|
-
display: inline-block;
|
|
335
|
-
width: 8px;
|
|
336
|
-
height: 8px;
|
|
337
|
-
border-radius: 50%;
|
|
338
|
-
background-color: $info-color;
|
|
339
|
-
margin-right: 6px;
|
|
340
|
-
vertical-align: middle;
|
|
341
|
-
opacity: 0.6;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
div.note {
|
|
345
|
-
display: none;
|
|
346
|
-
border: 3px solid $warning-color;
|
|
347
|
-
border-left: 6px solid $warning-color;
|
|
348
|
-
padding: 12px;
|
|
349
|
-
border-radius: 4px;
|
|
350
|
-
margin: 10px 0;
|
|
351
|
-
|
|
352
|
-
&::before {
|
|
353
|
-
content: "Personal Note";
|
|
354
|
-
display: block;
|
|
355
|
-
font-weight: bold;
|
|
356
|
-
color: $info-color;
|
|
357
|
-
margin-bottom: 8px;
|
|
358
|
-
font-size: 0.95em;
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
|
|
362
308
|
/********** Toggle Checkbox Styles **********/
|
|
363
309
|
#toggle-all-details-btn {
|
|
364
310
|
display: flex;
|
package/package.json
CHANGED