nodebb-plugin-ezoic-infinite 1.5.47 → 1.5.48
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 +5 -21
- package/package.json +1 -1
- package/plugin.json +0 -4
- package/public/admin.js +3 -2
- package/public/client.js +195 -1031
- package/public/style.css +7 -30
package/public/style.css
CHANGED
|
@@ -1,34 +1,11 @@
|
|
|
1
|
-
/* Minimal styling for injected Ezoic wrappers.
|
|
2
|
-
Spacing (margins/padding) is intentionally NOT forced here, because it can be
|
|
3
|
-
configured inside Ezoic and may vary by placement/device.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
1
|
.ezoic-ad {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/*
|
|
14
|
-
UX: collapse injected wrapper slots until the creative is actually filled.
|
|
15
|
-
This avoids showing a large empty placeholder when ad fill is slow.
|
|
16
|
-
Only applies to our injected wrapper DIVs (not Ezoic's internal SPANs).
|
|
17
|
-
*/
|
|
18
|
-
div.ezoic-ad.ez-pending {
|
|
19
|
-
height: 1px !important;
|
|
20
|
-
min-height: 1px !important;
|
|
21
|
-
overflow: hidden !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
div.ezoic-ad.ez-ready {
|
|
25
|
-
height: auto !important;
|
|
26
|
-
overflow: visible !important;
|
|
2
|
+
padding: 0 !important;
|
|
3
|
+
margin: 0 !important;
|
|
4
|
+
min-height: 0 !important;
|
|
5
|
+
min-width: 0 !important;
|
|
27
6
|
}
|
|
28
7
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
display: block !important;
|
|
33
|
-
vertical-align: top !important;
|
|
8
|
+
.ezoic-ad * {
|
|
9
|
+
min-height: 0 !important;
|
|
10
|
+
min-width: 0 !important;
|
|
34
11
|
}
|