- new flow;

This commit is contained in:
Vitalii Kiiko
2025-09-26 09:19:34 +02:00
parent fd6f861024
commit 6178cfd3ab
6 changed files with 246 additions and 29 deletions

View File

@@ -38,4 +38,58 @@
th, td {
padding: 3px;
}
}
.file-upload-container {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.file-upload-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem;
border: 1px solid #dee2e6;
border-radius: 4px;
background-color: #f8f9fa;
.file-name {
font-size: 0.875rem;
color: #495057;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
margin-right: 0.5rem;
.pi-file {
margin-right: 0.5rem;
}
}
.p-button {
min-width: auto;
padding: 0.25rem;
}
}
.file-upload-button {
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 4px;
border: 1px dashed #007ad9;
background-color: transparent;
color: #007ad9;
font-size: 0.875rem;
text-decoration: none;
transition: background-color 0.2s;
&:hover {
background-color: rgba(0, 122, 217, 0.04);
}
}