/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 * 	4) hint--fit
 *
 */

.#{$hintPrefix}small,
.#{$hintPrefix}medium,
.#{$hintPrefix}large,
.#{$hintPrefix}fit {
	&:after {
		box-sizing: border-box;
		white-space: normal;
		line-height: 1.4em;
		word-wrap: break-word; // Ensure long words do not overflow.
	}
}

.#{$hintPrefix}small {
	&:after {
		width: $hintSizeSmall;
	}
}
.#{$hintPrefix}medium {
	&:after {
		width: $hintSizeMedium;
	}
}
.#{$hintPrefix}large {
	&:after {
		width: $hintSizeLarge;
	}
}
.#{$hintPrefix}fit {
	&:after {
		width: 100%;
	}
}
