8000 merged branch stloyd/profiler_design_fix (PR #2907) · symfony/symfony@3ba7677 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3ba7677

Browse files
committed
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.
2 parents bbec4bb + d1fa8cc commit 3ba7677

File tree

1 file changed

+14
-8
lines changed
  • src/Symfony/Bundle/WebProfilerBundle/Resources/public/css

1 file changed

+14
-8
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/public/css/profiler.css

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fieldset {
7272
}
7373

7474
abbr {
75-
border-bottom: 1px dotted #000000;
75+
border-bottom: 1px dotted #000;
7676
cursor: help;
7777
}
7878

@@ -160,6 +160,7 @@ abbr {
160160
background: #d1d1d1 url(../images/profiler/bg_submenu.gif) repeat-x 0 0;
161161
}
162162

163+
#navigation div:first-child,
163164
#menu_profiler li:first-child,
164165
#menu_profiler li:first-child a,
165166
#menu_profiler li:first-child a span.label {
@@ -256,7 +257,7 @@ table th.value {
256257

257258
#content #main {
258259
padding: 0;
259-
background-color: #FFFFFF;
260+
background-color: #FFF;
260261
border: 1px solid #dfdfdf;
261262
}
262263

@@ -319,7 +320,7 @@ td.main, td.menu {
319320
margin-right: 10px;
320321
font-size: 12px;
321322
border: 1px solid #dadada;
322-
background: #FFFFFF url(../images/profiler/input_bg.gif) repeat-x left top;
323+
background: #FFF url(../images/profiler/input_bg.gif) repeat-x left top;
323324
padding: 5px 6px;
324325
color: #565656;
325326
}
@@ -333,10 +334,9 @@ td.main, td.menu {
333334
float: none;
334335
padding: 0;
335336
margin: 0;
336-
border: 0 solid #000;
337+
border: 0;
337338
text-decoration: none;
338339
cursor: pointer;
339-
background-color: transparent;
340340
white-space: nowrap;
341341
display: inline-block;
342342
text-align: center;
@@ -376,11 +376,16 @@ td.main, td.menu {
376376
background: transparent url(../images/profiler/btn_bg.png) repeat-x top left;
377377
}
378378

379+
#navigation div:first-child {
380+
margin: 0 0 20px;
381+
border-top: 0;
382+
}
383+
379384
#navigation .search {
380385
padding-top: 15px;
381386
float: none;
382-
background: none repeat scroll 0 0 #f6f6f6;
383-
color: #333333;
387+
background: #f6f6f6;
388+
color: #333;
384389
margin: 20px 0;
385390
border: 1px solid #dfdfdf;
386391
border-left: none;
@@ -429,5 +434,6 @@ td.main, td.menu {
429434
}
430435

431436
#navigation .import input {
432-
width: 100px;
437+
margin: 5px 0;
438+
width: 210px;
433439
}

0 commit comments

Comments
 (0)
0