/*
	Clamp the title of the edit document controller since content elements without a headline
	show the body text as title which can be very long.
*/
#EditDocumentController > h1 {
	overflow: hidden;
	max-height: 120px;

	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;

	line-clamp: 3;
	text-overflow: ellipsis;
}
