added include template for images and refined documentation for alerts and callouts include templates

This commit is contained in:
tomjohnson1492
2016-06-06 10:00:01 -07:00
parent 2647ab54d7
commit 06673e2de9
5 changed files with 99 additions and 98 deletions

View File

@ -935,7 +935,8 @@ a[href^="http://"]:after, a[href^="https://"]:after {
/* Strip the outbound icon when this class is present */
a[href].noCrossRef::after,
a.no_icon:after {
a.no_icon:after
{
content:"" !important;
padding-left: 0;
}
@ -1136,3 +1137,20 @@ div.box.box1 {
word-wrap: break-word; /* Internet Explorer 5.5+ */
font-size: 14px;
}
/*
* Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
*
* [1] IE9
* [2] IE10+
*/
/* 1 */
.ie9 img[src$=".svg"] {
width: 100%;
}
/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
img[src$=".svg"] {
width: 100%;
}
}