css: Add mixins.less

This commit is contained in:
Eric Lippmann 2015-08-21 16:40:30 +02:00
parent b629115ba7
commit 2760c58162
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
.transform(@transform) {
-webkit-transform: @transform;
-moz-transform: @transform;
-ms-transform: @transform;
-o-transform: @transform;
transform: @transform;
}