merged branch stloyd/profiler_design_fix (PR #2907)

Commits
-------

d1fa8cc [WebProfiler] Fix some design glitches (closes #2867)

Discussion
----------

[WebProfiler] Fix some design glitches

Bug fix: yes
Feature addition: no
Backwards compatibility break: no
Symfony2 tests pass: yes
Fixes the following tickets: #2867

---------------------------------------------------------------------------

by jalliot at 2011/12/17 04:54:11 -0800

Thanks @stloyd.
However it only fixes the second and third issues related in #2867. The filesystem provider bug is much more annoying!

---------------------------------------------------------------------------

by stloyd at 2011/12/17 05:38:13 -0800

@jalliot Did you cleaned profiler dir after update to latest master commit ? This is mentioned and kinda known BC break... I'm asking because I cannot reproduce this issue.

---------------------------------------------------------------------------

by jalliot at 2011/12/17 08:17:21 -0800

@stloyd It has nothing to do with your recent PR adding HTTP method as I had the bug even before that.
I've tested on a fresh Symfony (master) install (before and after the merge) and have the bug each time.
I thought maybe it was related to some of the bundles I installed but the bug occurs even in a freshly installed SE.
This commit is contained in:
Fabien Potencier 2011-12-18 14:39:41 +01:00
commit 3ba767703a
1 changed files with 14 additions and 8 deletions

View File

@ -72,7 +72,7 @@ fieldset {
}
abbr {
border-bottom: 1px dotted #000000;
border-bottom: 1px dotted #000;
cursor: help;
}
@ -160,6 +160,7 @@ abbr {
background: #d1d1d1 url(../images/profiler/bg_submenu.gif) repeat-x 0 0;
}
#navigation div:first-child,
#menu_profiler li:first-child,
#menu_profiler li:first-child a,
#menu_profiler li:first-child a span.label {
@ -256,7 +257,7 @@ table th.value {
#content #main {
padding: 0;
background-color: #FFFFFF;
background-color: #FFF;
border: 1px solid #dfdfdf;
}
@ -319,7 +320,7 @@ td.main, td.menu {
margin-right: 10px;
font-size: 12px;
border: 1px solid #dadada;
background: #FFFFFF url(../images/profiler/input_bg.gif) repeat-x left top;
background: #FFF url(../images/profiler/input_bg.gif) repeat-x left top;
padding: 5px 6px;
color: #565656;
}
@ -333,10 +334,9 @@ td.main, td.menu {
float: none;
padding: 0;
margin: 0;
border: 0 solid #000;
border: 0;
text-decoration: none;
cursor: pointer;
background-color: transparent;
white-space: nowrap;
display: inline-block;
text-align: center;
@ -376,11 +376,16 @@ td.main, td.menu {
background: transparent url(../images/profiler/btn_bg.png) repeat-x top left;
}
#navigation div:first-child {
margin: 0 0 20px;
border-top: 0;
}
#navigation .search {
padding-top: 15px;
float: none;
background: none repeat scroll 0 0 #f6f6f6;
color: #333333;
background: #f6f6f6;
color: #333;
margin: 20px 0;
border: 1px solid #dfdfdf;
border-left: none;
@ -429,5 +434,6 @@ td.main, td.menu {
}
#navigation .import input {
width: 100px;
margin: 5px 0;
width: 210px;
}