merged branch lmcd/wdt-padding-fix (PR #6769)

This PR was merged into the master branch.

Commits
-------

4b54156 Fix lack of padding in some WDT boxes (e.g. You are not authenticated.)

Discussion
----------

[WebProfilerBundle] Fix lack of padding in some WDT boxes (e.g. You are not authenticated.)

Fixes bug introduced by https://github.com/symfony/symfony/pull/6615

Before:
![wdt-padding-before](https://f.cloud.github.com/assets/363540/73453/c6779f30-6044-11e2-9df5-682c822ac13c.png)

After:
![wdt-padding-after](https://f.cloud.github.com/assets/363540/73455/cbeaa44e-6044-11e2-9d9b-9184b1351554.png)
This commit is contained in:
Fabien Potencier 2013-01-17 07:27:13 +01:00
commit 4cc19990ac

View File

@ -79,8 +79,6 @@
}
.sf-toolbar-block .sf-toolbar-info-piece {
padding-left: 9px;
padding-right: 9px;
line-height: 19px;
margin-bottom: 5px;
}
@ -263,8 +261,12 @@
.sf-toolbar-block:hover .sf-toolbar-info {
display: block;
min-width: 100%;
min-width: -webkit-calc(100% + 2px);
min-width: calc(100% + 2px);
z-index: 10001;
box-sizing: border-box;
padding: 9px;
line-height: 19px;
}
/***** Override the setting when the toolbar is on the top *****/