2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

fixes #9400: add box-sizing to pseudo elements as well

This commit is contained in:
Mark Otto
2013-08-12 21:26:43 -07:00
parent 0b338b0dc7
commit 40723c8716
3 changed files with 7 additions and 3 deletions
+3 -1
View File
@@ -286,7 +286,9 @@ table {
} }
} }
* { *,
*:before,
*:after {
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
box-sizing: border-box; box-sizing: border-box;
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -1
View File
@@ -6,7 +6,9 @@
// Reset the box-sizing // Reset the box-sizing
// ------------------------- // -------------------------
* { *,
*:before,
*:after {
.box-sizing(border-box); .box-sizing(border-box);
} }