ultimate-jekyll-manager 0.0.253 → 0.0.255
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.
|
@@ -253,9 +253,9 @@ const createAdUnit = (config, $currentScript) => {
|
|
|
253
253
|
$vertUnit.setAttribute('data-wm-bind', '@hide auth.account.subscription.product.id !== basic');
|
|
254
254
|
|
|
255
255
|
// Apply size constraint if specified
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
$vertUnit.style.maxHeight =
|
|
256
|
+
if (config.size) {
|
|
257
|
+
$vertUnit.setAttribute('data-vert-size', config.size);
|
|
258
|
+
$vertUnit.style.maxHeight = resolveSize(config.size);
|
|
259
259
|
$vertUnit.style.overflow = 'hidden';
|
|
260
260
|
}
|
|
261
261
|
|
|
@@ -501,12 +501,13 @@
|
|
|
501
501
|
}
|
|
502
502
|
}
|
|
503
503
|
|
|
504
|
-
.btn-toggle-nav a
|
|
504
|
+
.btn-toggle-nav a,
|
|
505
|
+
.btn-toggle-nav button {
|
|
505
506
|
display: block;
|
|
506
507
|
padding: .375rem .75rem;
|
|
507
508
|
margin-top: .125rem;
|
|
508
509
|
margin-left: 1.25rem;
|
|
509
|
-
margin-right: .
|
|
510
|
+
margin-right: 1.25rem;
|
|
510
511
|
border-radius: .375rem;
|
|
511
512
|
color: var(--bs-body-color);
|
|
512
513
|
text-decoration: none;
|
|
@@ -551,7 +552,8 @@ nav {
|
|
|
551
552
|
|
|
552
553
|
// Dark mode overrides for all sidebar links
|
|
553
554
|
[data-bs-theme="dark"] {
|
|
554
|
-
.btn-toggle-nav a
|
|
555
|
+
.btn-toggle-nav a,
|
|
556
|
+
.btn-toggle-nav button {
|
|
555
557
|
&:hover,
|
|
556
558
|
&:focus {
|
|
557
559
|
background-color: rgba(255, 255, 255, 0.08);
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
{% capture child_attributes %}{% if child.attributes %}{% for attr in child.attributes %} {{ attr[0] }}="{{ attr[1] }}"{% endfor %}{% endif %}{% endcapture %}
|
|
57
57
|
<li>
|
|
58
58
|
{% iftruthy child.href %}
|
|
59
|
-
<a href="{{ child.href }}" class="link-body-emphasis d-
|
|
59
|
+
<a href="{{ child.href }}" class="link-body-emphasis d-flex text-decoration-none rounded {{ child_active }}" {{ child_attributes }}>
|
|
60
60
|
{% if child.icon %}
|
|
61
61
|
{% uj_icon child.icon, "fa-xl me-3" %}
|
|
62
62
|
{% endif %}
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
</a>
|
|
68
68
|
{% endiftruthy %}
|
|
69
69
|
{% iffalsy child.href %}
|
|
70
|
-
<button type="button" class="link-body-emphasis d-
|
|
70
|
+
<button type="button" class="link-body-emphasis d-flex text-decoration-none rounded border-0 bg-transparent {% if child.class %}{{ child.class }}{% endif %}">
|
|
71
71
|
{% if child.icon %}
|
|
72
72
|
{% uj_icon child.icon, "fa-xl me-3" %}
|
|
73
73
|
{% endif %}
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
Remove with {% uj_icon "crown", "fa-sm text-success" %} <span class="text-success">Premium</span>
|
|
119
119
|
</a>
|
|
120
120
|
<!-- Sidebar Ad -->
|
|
121
|
-
{% include /modules/adunits/adsense.html type="in-article" %}
|
|
121
|
+
{% include /modules/adunits/adsense.html type="in-article" vert-size="rectangle" %}
|
|
122
122
|
{% endif %}
|
|
123
123
|
</div>
|
|
124
124
|
{% endif %}
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
{% capture child_attributes %}{% if child.attributes %}{% for attr in child.attributes %} {{ attr[0] }}="{{ attr[1] }}"{% endfor %}{% endif %}{% endcapture %}
|
|
177
177
|
<li>
|
|
178
178
|
{% iftruthy child.href %}
|
|
179
|
-
<a href="{{ child.href }}" class="link-body-emphasis d-
|
|
179
|
+
<a href="{{ child.href }}" class="link-body-emphasis d-flex text-decoration-none rounded {{ child_active }}" {{ child_attributes }}>
|
|
180
180
|
{% if child.icon %}
|
|
181
181
|
{% uj_icon child.icon, "fa-xl me-3" %}
|
|
182
182
|
{% endif %}
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
</a>
|
|
188
188
|
{% endiftruthy %}
|
|
189
189
|
{% iffalsy child.href %}
|
|
190
|
-
<button type="button" class="link-body-emphasis d-
|
|
190
|
+
<button type="button" class="link-body-emphasis d-flex text-decoration-none rounded border-0 bg-transparent {% if child.class %}{{ child.class }}{% endif %}">
|
|
191
191
|
{% if child.icon %}
|
|
192
192
|
{% uj_icon child.icon, "fa-xl me-3" %}
|
|
193
193
|
{% endif %}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultimate-jekyll-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.255",
|
|
4
4
|
"description": "Ultimate Jekyll dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"dotenv": "^17.3.1",
|
|
78
78
|
"fast-xml-parser": "^5.3.6",
|
|
79
79
|
"fs-jetpack": "^5.1.0",
|
|
80
|
-
"glob": "^13.0.
|
|
80
|
+
"glob": "^13.0.5",
|
|
81
81
|
"gulp-clean-css": "^4.3.0",
|
|
82
82
|
"gulp-filter": "^9.0.1",
|
|
83
83
|
"gulp-postcss": "^10.0.0",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"sass": "^1.97.3",
|
|
100
100
|
"spellchecker": "^3.7.1",
|
|
101
101
|
"through2": "^4.0.2",
|
|
102
|
-
"web-manager": "^4.1.
|
|
102
|
+
"web-manager": "^4.1.11",
|
|
103
103
|
"webpack": "^5.105.2",
|
|
104
104
|
"wonderful-fetch": "^1.3.4",
|
|
105
105
|
"wonderful-version": "^1.3.2",
|