Skip to content

Commit

Permalink
Reset the box model to content-box in the web debug toolbar
Browse files Browse the repository at this point in the history
This makes the styles compatible with CSS frameworks changing the box
model to box-sizing using a universal selector (Bootstrap 3 for instance).
  • Loading branch information
stof committed Dec 6, 2013
1 parent 0ecd186 commit ae95a71
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -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;
Expand Down

0 comments on commit ae95a71

Please sign in to comment.