nodebb-plugin-ezoic-infinite 1.8.13 → 1.8.15
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/library.js +74 -78
- package/package.json +2 -2
- package/plugin.json +26 -10
- package/public/client.js +366 -656
- package/public/style.css +15 -9
package/public/style.css
CHANGED
|
@@ -56,17 +56,23 @@
|
|
|
56
56
|
top: auto !important;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
/* ──
|
|
60
|
-
|
|
59
|
+
/* ── État vide ────────────────────────────────────────────────────────────── */
|
|
60
|
+
/*
|
|
61
|
+
Ajouté 20s après showAds si aucun fill détecté.
|
|
62
|
+
Collapse à 1px (pas 0) : reste observable par l'IO si le fill arrive tard.
|
|
63
|
+
*/
|
|
64
|
+
.nodebb-ezoic-wrap.is-empty {
|
|
65
|
+
display: block !important;
|
|
66
|
+
height: 1px !important;
|
|
67
|
+
min-height: 1px !important;
|
|
68
|
+
max-height: 1px !important;
|
|
61
69
|
margin: 0 !important;
|
|
62
70
|
padding: 0 !important;
|
|
71
|
+
overflow: hidden !important;
|
|
63
72
|
}
|
|
64
73
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
min-height: 1px !important;
|
|
70
|
-
max-height: none !important;
|
|
71
|
-
overflow: visible !important;
|
|
74
|
+
/* ── Ezoic global (hors de nos wraps) ────────────────────────────────────── */
|
|
75
|
+
.ezoic-ad {
|
|
76
|
+
margin: 0 !important;
|
|
77
|
+
padding: 0 !important;
|
|
72
78
|
}
|