@innovastudio/contentbox 1.3.17 → 1.3.18
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
CHANGED
@@ -1303,25 +1303,6 @@ class SideBar {
|
|
1303
1303
|
/* First Loading */
|
1304
1304
|
.is-category-list {opacity:0;transition: opacity ease 0.3s;}
|
1305
1305
|
.is-design-list {opacity:0;transition: opacity ease 0.3s;}
|
1306
|
-
.pace {
|
1307
|
-
-webkit-pointer-events: none;
|
1308
|
-
pointer-events: none;
|
1309
|
-
-webkit-user-select: none;
|
1310
|
-
-moz-user-select: none;
|
1311
|
-
user-select: none;
|
1312
|
-
}
|
1313
|
-
.pace-inactive {
|
1314
|
-
display: none;
|
1315
|
-
}
|
1316
|
-
.pace .pace-progress {
|
1317
|
-
background: #000000;
|
1318
|
-
position: fixed;
|
1319
|
-
z-index: 2000;
|
1320
|
-
top: 0;
|
1321
|
-
right: 100%;
|
1322
|
-
width: 100%;
|
1323
|
-
height: 2px;
|
1324
|
-
}
|
1325
1306
|
|
1326
1307
|
</style>
|
1327
1308
|
</head>`;
|
@@ -1399,6 +1380,14 @@ class SideBar {
|
|
1399
1380
|
<script src="${designUrl2}" type="text/javascript"></script>
|
1400
1381
|
|
1401
1382
|
<script>
|
1383
|
+
|
1384
|
+
applyParentStyles();
|
1385
|
+
setTimeout(()=>{
|
1386
|
+
document.querySelector('.is-category-list').style.opacity = 1;
|
1387
|
+
document.querySelector('.is-design-list').style.opacity = 1;
|
1388
|
+
},300);
|
1389
|
+
|
1390
|
+
|
1402
1391
|
function hasClass(element, classname) {
|
1403
1392
|
if(!element) return false;
|
1404
1393
|
try{
|
@@ -2345,12 +2334,6 @@ class SideBar {
|
|
2345
2334
|
}
|
2346
2335
|
});
|
2347
2336
|
|
2348
|
-
setTimeout(()=>{
|
2349
|
-
document.querySelector('.is-category-list').style.opacity = 1;
|
2350
|
-
document.querySelector('.is-design-list').style.opacity = 1;
|
2351
|
-
},300);
|
2352
|
-
|
2353
|
-
applyParentStyles();
|
2354
2337
|
</script>
|
2355
2338
|
</body>
|
2356
2339
|
</html>
|