This commit is contained in:
Kirchik
2025-08-13 22:36:08 +02:00
parent 6d061248de
commit e23fc02f63
254 changed files with 9579 additions and 4378 deletions
+56
View File
@@ -399,6 +399,12 @@
font-style: normal;
}
.file-input-text.file-encrypted {
color: #27ae60;
font-weight: 500;
font-style: normal;
}
.file-input-wrapper::after {
content: "📎";
font-size: 1.1rem;
@@ -406,6 +412,56 @@
margin-left: 0.5rem;
}
.file-input-wrapper.file-encrypted::after {
content: "🔒";
color: #27ae60;
}
/* Индикатор процесса шифрования */
.encryption-status {
margin-top: 0.5rem;
padding: 0.5rem;
border-radius: 8px;
font-size: 0.9rem;
text-align: center;
transition: all 0.3s ease;
}
.encryption-status.encrypting {
background: #fff3cd;
color: #856404;
border: 1px solid #ffeaa7;
}
.encryption-status.encrypted {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.encryption-status.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
/* Анимация шифрования */
.encrypting-spinner {
display: inline-block;
width: 16px;
height: 16px;
border: 2px solid #f3f3f3;
border-top: 2px solid #856404;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-right: 0.5rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.file-info {
margin-top: 0.5rem;
text-align: left;