* Fix bug of user::dynamic.

This commit is contained in:
liumengyi
2023-07-28 16:12:03 +08:00
parent 1845a5fbf7
commit c768c40eaa
2 changed files with 11 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
.timeline .collapsed .icon {transform: rotate(270deg);}
.timeline .collapsed .alert {display: none;}
.timeline > li + li:after {position: absolute; top: 90px; bottom: 20px; left: 40px; z-index: 1; display: block; content: ' '; border-left: 2px solid #eee;}
.actions-box {background-color: var(--color-slate-100);}
+5
View File
@@ -0,0 +1,5 @@
window.toggleCollapse = function()
{
$(this).parent().toggleClass('collapsed');
}