2023-12-30 05:57:16 +08:00
|
|
|
.post-action-feedback-alert {
|
|
|
|
position: absolute;
|
|
|
|
top: -1.5rem;
|
2024-12-21 03:12:13 +08:00
|
|
|
left: 60%;
|
2023-12-30 05:57:16 +08:00
|
|
|
transform: translateX(-50%);
|
|
|
|
color: var(--success);
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: var(--font-down-2);
|
2024-12-21 03:12:13 +08:00
|
|
|
opacity: 0;
|
2024-10-29 17:35:14 +08:00
|
|
|
z-index: calc(z("timeline") + 1);
|
2024-12-21 03:12:13 +08:00
|
|
|
}
|
|
|
|
.--transition {
|
|
|
|
.post-action-feedback-alert,
|
|
|
|
.post-action-feedback-svg {
|
|
|
|
transition: opacity 0.25s, color 0.25s;
|
2023-12-30 05:57:16 +08:00
|
|
|
}
|
2024-12-21 03:12:13 +08:00
|
|
|
}
|
|
|
|
.--activated {
|
|
|
|
.post-action-feedback-alert,
|
|
|
|
.post-action-feedback-svg {
|
|
|
|
opacity: 1;
|
2023-12-30 05:57:16 +08:00
|
|
|
}
|
2024-12-21 03:12:13 +08:00
|
|
|
.post-action-feedback-alert {
|
|
|
|
&.-success {
|
|
|
|
color: var(--success);
|
|
|
|
}
|
|
|
|
&.-fail {
|
|
|
|
color: var(--danger);
|
|
|
|
}
|
2023-12-30 05:57:16 +08:00
|
|
|
}
|
|
|
|
}
|