This commit is contained in:
pika 2025-03-24 20:34:42 +01:00
parent 34afc48816
commit 4e781ba819
8 changed files with 855 additions and 160 deletions

View file

@ -1264,4 +1264,98 @@ body {
.upload-actions {
display: flex;
justify-content: space-between;
}
/* Error messages and toasts */
.error-toast,
.success-toast {
position: fixed;
top: 20px;
right: 20px;
padding: 12px 20px;
border-radius: 6px;
color: white;
font-weight: 500;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
z-index: 9999;
opacity: 1;
transition: opacity 0.3s ease, transform 0.3s ease;
transform: translateX(0);
display: flex;
align-items: center;
min-width: 300px;
max-width: 500px;
animation: slide-in 0.3s ease;
}
.error-toast {
background-color: var(--danger-color);
border-left: 4px solid #c82333;
}
.success-toast {
background-color: var(--success-color);
border-left: 4px solid #218838;
}
.toast-close {
font-size: 18px;
margin-left: auto;
background: none;
border: none;
color: white;
cursor: pointer;
opacity: 0.7;
transition: opacity 0.2s ease;
}
.toast-close:hover {
opacity: 1;
}
.toast-icon {
margin-right: 12px;
font-size: 1.2em;
}
.toast-content {
flex: 1;
}
@keyframes slide-in {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
/* Error page styling */
.error-container {
text-align: center;
padding: 3rem 1rem;
max-width: 600px;
margin: 0 auto;
}
.error-icon {
font-size: 4rem;
color: var(--danger-color);
margin-bottom: 1rem;
}
.error-container h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-color);
}
.error-container p {
font-size: 1.2rem;
color: var(--text-muted);
margin-bottom: 2rem;
}