/* For the revamped attachments UI introduced in 2.1.4 */
/*Xmas custom*/


div#post_attachments_area.roundframe {
/*changed*/
	background-color: #e8e8e8;
}

#post_attachments_area #attachment_previews .attach-ui {
	padding: 1ch;
}

#post_attachments_area #drop_zone_ui {
/*changed*/
	background: #f7f7f7;
	color: inherit;
	border: 1px solid #b7b7b7;
	border-radius: 5px;
	transition: 0.3s ease;
}

#post_attachments_area #drop_zone_ui:hover {
	background: var(--bg-button-hover);
	color: #fff;
	text-shadow: 1px 1px 2px #000;
}


/*changed: added*/
/*For touch screens*/
@media (hover:none) {
	.attachment_preview_wrapper .main_icons::before {
		padding: 8px;
		font-size: 20px;
	}
}

/*----- changed -----*/
.attachment_preview_wrapper .main_icons::before {
	padding: 8px;
}
.attachment_preview_wrapper .main_icons:hover {
	background-color: #ddd;
}
.attachment_preview_wrapper .main_icons.select_above::before {
	background: none;
	content:"\f090";
	rotate: 270deg;
}
/*------------------------------*/