CSS: Don't provide box-sizing mixin

This commit is contained in:
Eric Lippmann 2015-12-16 12:53:07 +01:00
parent 0e8834a4a2
commit 4f562280ba
2 changed files with 3 additions and 7 deletions

View File

@ -61,7 +61,9 @@ html {
*,
*:before,
*:after {
.box-sizing(inherit);
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
a {

View File

@ -1,11 +1,5 @@
/*! 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;
}
.box-shadow(@x: 0.2em; @y: 0.2em; @blur: 0.2em; @spread: 0; @color: rgba(83, 83, 83, 0.25)) {
-webkit-box-shadow: @arguments;
-moz-box-shadow: @arguments;