Elian Doran 26c060bd22
chore(ckeditor5/plugins): add file-upload
Original commit: a440988df452ab4367f5288269ba3c05aa5e6b8e
2025-05-03 23:13:01 +03:00

30 lines
750 B
CSS

.ck.ck-sticky-panel > .ck-progress-bar {
display: flex;
flex-direction: row;
justify-content: space-between;
border-left: 1px solid var(--ck-color-base-border);
border-top: 1px solid var(--ck-color-base-border);
border-right: 1px solid var(--ck-color-base-border);
}
.ck.ck-sticky-panel > .ck-progress-bar > .ck-uploading-progress {
align-self: center;
padding: 3px 5px;
font-weight: bold;
color: var(--ck-color-base-foreground);
background-color: var(--ck-color-base-border);
transition-property: width;
transition-duration: .5s;
transition-timing-function: linear;
}
.ck.ck-sticky-panel > .ck-progress-bar > .ck-uploading-cancel {
align-self: flex-end;
padding: 0 5px;
font-weight: bold;
color: var(--ck-color-base-error);
}