30 lines
750 B
CSS
Raw Normal View History

.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);
}