CSS: Add box-sizing mixin

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-23 10:48:41 +02:00
parent 8b9cdc5c1e
commit 9047afbb87

View File

@ -1,5 +1,11 @@
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
.box-sizing(@sizing: border-box) {
-webkit-box-sizing: @sizing;
-moz-box-sizing: @sizing;
box-sizing: @sizing;
}
.transform(@transform) {
-webkit-transform: @transform;
-moz-transform: @transform;