jupyterlab_github_markdown_alerts_extension 1.0.7 → 1.0.11
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/style/base.css +27 -0
package/package.json
CHANGED
package/style/base.css
CHANGED
|
@@ -18,6 +18,33 @@
|
|
|
18
18
|
margin-bottom: 0;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
/* Tighten paragraph spacing inside alerts */
|
|
22
|
+
.markdown-alert p {
|
|
23
|
+
margin-top: 0.5em;
|
|
24
|
+
margin-bottom: 0.5em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Tighten list spacing inside alerts */
|
|
28
|
+
.markdown-alert ul,
|
|
29
|
+
.markdown-alert ol {
|
|
30
|
+
margin-top: 0.5em;
|
|
31
|
+
margin-bottom: 0.5em;
|
|
32
|
+
padding-left: 1.5em;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.markdown-alert li {
|
|
36
|
+
margin-top: 0.25em;
|
|
37
|
+
margin-bottom: 0.25em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.markdown-alert li:first-child {
|
|
41
|
+
margin-top: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.markdown-alert li:last-child {
|
|
45
|
+
margin-bottom: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
21
48
|
.markdown-alert .markdown-alert-title {
|
|
22
49
|
display: flex;
|
|
23
50
|
font-weight: 500;
|