#wpadminbar ul.ab-top-menu > li#wp-admin-bar-edi-status > div.ab-item,
#wpadminbar ul.ab-top-menu > li#wp-admin-bar-edi-status > div.ab-item:hover {
	animation: skeleton-loading 3s ease infinite;
	background-image: linear-gradient(90deg, red 25%, lightcoral 37%, red 63%);
	background-position: 100% 50%;
	background-size: 400% 100%;
	box-sizing: border-box;
	color: white;
	cursor: progress;
	width: 100%;
}

#wpadminbar ul.ab-top-menu > li#wp-admin-bar-edi-interrupt > div.ab-item {
	background: white;
	border: 1px solid red;
	border-left: none;
	box-sizing: border-box;
	color: red;
	cursor: pointer;
}

#wpadminbar ul.ab-top-menu > li#wp-admin-bar-edi-interrupt >div.ab-item:hover {
	background: red;
	color: white;
}

@keyframes skeleton-loading {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}
