//
// Exported files popup
//---------------------

.exported-files {
	text-align: left;
	min-height: 65px;
	max-height: 291px;
	overflow: auto;
	
	table {
		border-collapse: collapse;
		width: 100%;
		
		thead {
			th {
				border-top: 1px solid $gray-200;
				border-bottom: 1px solid $gray-200;
				font-size: 12px;
				color: $gray-500;
				line-height: 1.5;
				padding: 3px;
			}
		}
		
		tbody {
			tr {
				&:nth-child(odd) {
					background-color: $gray-100;
					
				}
			}
		}
		
		td {
			padding: 8px;
			font-size: 14px;
			color: $gray-600;
		}
		
		.file-name {
			color: $blue-dark;
			margin-bottom: 3px;
			@include text-overflow;
		}
		
		.file-actions {
			
			a {
				color: $gray-600 !important;
				display: inline-block;
			}
			
			i {
				cursor: pointer;
				font-size: 15px;
				transition: .2s ease-in-out;
				
				&:not(:last-child) {
					margin-right: 5px;
				}
			}
			
			.delete-file {
				&:hover {
					color: $danger !important;
				}
			}
			
			.download-file {
				background-color: $primary;
				border-radius: 50%;
				color: $white !important;
				width: 26px;
				height: 26px;
				text-align: center;
				box-sizing: border-box;
				padding: 4px;
				border: 1px solid $primary;
				
				&:hover {
					color: $primary !important;
					background-color: transparent;
				}
			}
			
		}
		
	}
}   