🐛 Fixed #158 Rollback animate style to old version.

This commit is contained in:
elkan1788
2025-01-30 11:32:22 +08:00
parent d738b144b3
commit 3bffe42e3e
14 changed files with 46 additions and 39 deletions

View File

@@ -1,6 +1,6 @@
.flinks-block {
.flinks-block-title {
.flinks-header {
text-align: center;
font-weight: bold;
}

View File

@@ -24,13 +24,13 @@
}
@if $motion_trans_post_header {
.post-header {
.post-header, .flinks-header {
visibility: hidden;
}
}
@if $motion_trans_post_body {
.post-body {
.post-body, .flinks-body {
visibility: hidden;
}
}

View File

@@ -3,10 +3,13 @@ body { margin-top: 2rem; }
.use-motion .menu-item,
.use-motion .sidebar,
.use-motion .post-block,
.use-motion .flinks-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .flinks-header,
.use-motion .post-body,
.use-motion .flinks-body,
.use-motion .collection-header {
visibility: visible;
}

View File

@@ -95,10 +95,10 @@ NexT.motion.middleWares = {
});
}
animate(postblock, '.post-block,.flinks-block, .pagination, .post-comments');
animate(postblock, '.post-block, .flinks-block, .pagination, .post-comments');
animate(collheader, '.collection-header');
animate(postheader, '.post-header');
animate(postbody, '.post-body');
animate(postheader, '.post-header, .flinks-header');
animate(postbody, '.post-body, .flinks-body');
return sequence;
},