bug #9716 Reset the box model to content-box in the web debug toolbar (stof)

This PR was merged into the 2.3 branch.

Discussion
----------

Reset the box model to content-box in the web debug toolbar

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

This makes the styles compatible with CSS frameworks changing the box model to box-sizing using a universal selector (Bootstrap 3 for instance).

Commits
-------

ae95a71 Reset the box model to content-box in the web debug toolbar
This commit is contained in:
Fabien Potencier 2013-12-06 17:03:13 +01:00
commit 06423a469d

View File

@ -18,6 +18,12 @@
z-index: 6000000;
}
.sf-toolbarreset * {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.sf-toolbarreset {
position: fixed;
background-color: #f7f7f7;