
/* by default hide the Drupal-cached tweets */

div.view--latest-tweets div.view__content {
	visibility: hidden;
}

/* what if we are twitter? */
.view--latest-tweets .view__header a::before {
	background-image: none
}
.view--latest-tweets > .coa-is-facebook > p > a::before {
	background-image: linear-gradient(transparent,transparent),url("https://www3.alexandriava.gov/scripts/blue/LC/images/2015-images/facebook-share.gif");
	margin-right: 5px;
	background-size: 25px;
	height: 25px;
	width: 25px;
}
.view--latest-tweets > .coa-is-twitter > p > a::before {
	background-image: linear-gradient(transparent,transparent),url("https://www.alexandriava.gov/themes/gesso/images/twitter-blue.svg");
}

/* truncate each post at a max number of lines */
.view--latest-tweets .tweet__text {
    -webkit-line-clamp: 7;	/* max is ONE MORE than this (either this many plus a "See more" line, or if this + 1 would suffice, the whole item in this + 1 lines) */
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.view--latest-tweets .tweet__text span.coa-more-tweet {
	margin-bottom: 0.75em;
}

