jekyll-bulma 1.0.3 → 1.0.4
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.
- checksums.yaml +4 -4
- data/_sass/sass/elements/content.scss +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7930ed03550dd904027eeefaf491e7d2364c23ae82be6fc47fcdaf5109f63ec5
|
|
4
|
+
data.tar.gz: 26e7698f8d07534ea9cb06131e7a1f815bb0bc279e20f24e1da9a18b03eab3cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9f08496e56af90f542c4b72a9b9e1a2520e3f84042828f1befe9762b9f4bee75176cc8b3376c4f88ac4b4c38cf16bb0dc38c7c7e43b6eef96173f9402df013f
|
|
7
|
+
data.tar.gz: 7bfacfc463e9f50e32091492524ff15e9e0bb434d24d447294268daa529acb4b9f714c3d777cbc542ed504b16d3b16d41ba259fc6521ba8dcedfe15457173477
|
|
@@ -172,6 +172,16 @@ $content-table-foot-cell-color: #{cv.getVar("text-strong")} !default;
|
|
|
172
172
|
margin-bottom: 0.25em;
|
|
173
173
|
margin-top: 0.25em;
|
|
174
174
|
|
|
175
|
+
// Without this, the outer "&:not(:first-child) { margin-top: 1em }" above wins on
|
|
176
|
+
// specificity (a pseudo-class counts like a class, so ".content ul:not(:first-child)"
|
|
177
|
+
// outranks ".content ul ul") whenever this nested list isn't its <li>'s first child
|
|
178
|
+
// element - e.g. any "* [a link](url)" item followed by a sub-list, where the <a> becomes
|
|
179
|
+
// the true first child. Repeating :not(:first-child) here matches that specificity so the
|
|
180
|
+
// intended tight nested spacing actually applies regardless of what precedes the sub-list.
|
|
181
|
+
&:not(:first-child) {
|
|
182
|
+
margin-top: 0.25em;
|
|
183
|
+
}
|
|
184
|
+
|
|
175
185
|
ul {
|
|
176
186
|
list-style-type: square;
|
|
177
187
|
}
|