mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 13:39:01 +01: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);
 | 
						|
} |