| /* Pages - Email Detail */
.attached-document {
	list-style-type: none;
	margin: 15px 0 0;
	padding: 0;
	
	& > li {
		width: 180px;
		float: left;
		background: #fff;
		color: @black;
		font-weight: 600;
		position: relative;
		margin-right: 15px;
		margin-bottom: 15px;
		border: 1px solid #d9dfe5;
		
		&:before {
			position: absolute;
			top: -1px;
			right: -1px;
			font-size: 12px;
			background: #d9dfe5;
			width: 20px;
			height: 20px;
			line-height: 20px;
			text-align: center;
		}
		
		& img {
			max-width: 100%;
		}
		& .document-name {
			padding: 5px 10px;
			text-align: center;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			background: #f1f3f4;
			
			& .document-name a {
				color: @black;
			}
		}
		& .document-file {
			height: 70px;
			background: none;
			overflow: hidden;
			text-align: center;
			line-height: 70px;
			font-size: 32px;
			margin: -1px;
		}
	}
}
 |