1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00

Reset box-sizing

By default, Bootstrap3 applies `box-sizing: border-box;` to every element. This doesn't work well for some controls, so reset it to content-box.
See https://github.com/barryvdh/laravel-debugbar/issues/26
This commit is contained in:
Barry vd. Heuvel 2013-11-01 09:59:29 +01:00
parent db7bf99c4c
commit dfee8a2236

View File

@ -12,6 +12,10 @@ div.phpdebugbar {
text-align: left;
}
div.phpdebugbar * {
box-sizing: content-box;
}
/* -------------------------------------- */
div.phpdebugbar-header {