build: Update Quill imageUploader

Этот коммит содержится в:
Mattia Roccoberton
2025-04-16 09:03:32 +02:00
родитель 9c44df15ce
Коммит f5d3857f8e
8 изменённых файлов: 369 добавлений и 225 удалений

Просмотреть файл

@@ -1,33 +0,0 @@
.image-uploading {
position: relative;
display: inline-block;
}
.image-uploading img {
max-width: 98% !important;
filter: blur(5px);
opacity: 0.3;
}
.image-uploading::before {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 30px;
height: 30px;
margin-top: -15px;
margin-left: -15px;
border-radius: 50%;
border: 3px solid #ccc;
border-top-color: #1e986c;
z-index: 1;
animation: spinner 0.6s linear infinite;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}

Просмотреть файл

@@ -1,15 +1,15 @@
.image-uploading {
.quill-image-uploading {
position: relative;
display: inline-block;
}
.image-uploading img {
.quill-image-uploading img {
max-width: 98% !important;
filter: blur(5px);
opacity: 0.3;
}
.image-uploading::before {
.quill-image-uploading::before {
content: "";
box-sizing: border-box;
position: absolute;
@@ -21,7 +21,7 @@
margin-left: -15px;
border-radius: 50%;
border: 3px solid #ccc;
border-top-color: #1e986c;
border-top-color: #1e40af;
z-index: 1;
animation: spinner 0.6s linear infinite;
}