2023-12-08 09:45:49 +08:00
|
|
|
@keyframes draw {
|
|
|
|
to {
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-30 05:57:16 +08:00
|
|
|
.post-controls {
|
2023-12-29 12:59:43 +08:00
|
|
|
.post-action-feedback-button {
|
2023-12-08 09:45:49 +08:00
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.is-copied,
|
|
|
|
&.is-copied:hover {
|
|
|
|
.d-icon-d-post-share {
|
|
|
|
color: var(--success);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-12-29 12:59:43 +08:00
|
|
|
.post-action-feedback-svg {
|
2023-12-08 09:45:49 +08:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: block;
|
2023-12-29 12:59:43 +08:00
|
|
|
stroke: var(--success);
|
2023-12-08 09:45:49 +08:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.5s ease-in-out;
|
|
|
|
|
|
|
|
&.is-visible {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
path {
|
|
|
|
stroke: var(--success);
|
|
|
|
stroke-width: 4;
|
|
|
|
stroke-dasharray: 100;
|
|
|
|
stroke-dashoffset: 100;
|
|
|
|
animation: draw 1s forwards;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|