.upload-progress {
	position: fixed;
	left: 0;
	bottom: 0;
	width: @sidebar-width;
	overflow: scroll;
	background: @white;
	border-top: 1px solid @grey-400;
	border-right: 1px solid @grey-400;
}

.upload-progress-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: @padding-small;
	border-bottom: 1px solid @light-grey;
}

.upload-progress-title {
	flex: 1;
	margin: 0;
}

.upload-progress-meter {
	padding: @padding-xsmall;

	&:not(:last-child) {
		border-bottom: 1px solid @light-grey;
	}
	
	progress {
		display: block;
		width: 100%;
	}
}

.upload-progress-meter-label {
	margin-bottom: 0.4rem;
	.font-size(1);
	.truncate();
}