Merge branch 'MDL-61515-master' of git://github.com/bmbrands/moodle

This commit is contained in:
Andrew Nicols 2018-08-06 13:55:04 +08:00
commit 3e7c330bda

View File

@ -168,3 +168,20 @@ body:not(.jsenabled) .langmenu:hover > .dropdown-menu,
.custom-select {
word-wrap: normal;
}
/* Add commented out carousel transistions back in.
*
* The Css prefixer used in Moodle breaks on @supports syntax, See MDL-61515.
*/
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
transform: translateX(0);
}
.carousel-item-next,
.active.carousel-item-right {
transform: translateX(100%);
}
.carousel-item-prev,
.active.carousel-item-left {
transform: translateX(-100%);
}