mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
CSS: Don't provide box-sizing mixin
This commit is contained in:
parent
0e8834a4a2
commit
4f562280ba
@ -61,7 +61,9 @@ html {
|
|||||||
*,
|
*,
|
||||||
*:before,
|
*:before,
|
||||||
*:after {
|
*:after {
|
||||||
.box-sizing(inherit);
|
-webkit-box-sizing: inherit;
|
||||||
|
-moz-box-sizing: inherit;
|
||||||
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -1,11 +1,5 @@
|
|||||||
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
/*! 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)) {
|
.box-shadow(@x: 0.2em; @y: 0.2em; @blur: 0.2em; @spread: 0; @color: rgba(83, 83, 83, 0.25)) {
|
||||||
-webkit-box-shadow: @arguments;
|
-webkit-box-shadow: @arguments;
|
||||||
-moz-box-shadow: @arguments;
|
-moz-box-shadow: @arguments;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user