mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
30 lines
750 B
CSS
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);
|
||
|
}
|