Assembla home | Assembla project page
 

Ticket #41 (closed Enhancement: fixed)

Opened 1 year ago

Last modified 1 year ago

Outputing CI Profiler...

Reported by: DyaGa Assigned to: aprice30
Priority: normal Milestone: Version 0.5
Component: General Code Version: 0.3.1
Severity: normal Keywords:
Cc:

Description

So... CI profiler. When it shows in BP admin area it's good to have css property

margin-left: 200px;

for showing profiler block content.

In CI 1.6.3 and lower versions this problem solves by editing code of Profiler Class (Profiler.php) line:326, just updating to this line

$output .= "<div style='margin-left:200px;background-color:#fff;padding:10px;'>";

In CI 1.7.0 in Profiler block content now have a div property - id='codeigniter_profiler' .

$output = "<div id='codeigniter_profiler' style='clear:both;background-color:#fff;padding:10px;'>";

So, I think it's natural to add next line to layout.css file:

#codeigniter_profiler{margin-left:200px}

Change History

10/31/08 20:40:34 changed by aprice30

  • owner set to aprice30.
  • status changed from new to assigned.

Yes this is an issue for a while, since I don't want to have to ship yet another class with backendpro just to add this in I believe it will be a 1.7 only fix.

I just have to decide if 0.4 will be for 1.7 only or not.

12/23/08 23:40:29 changed by aprice30

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [191]) Added some CSS styles so the CI Profiler output is displayed correctly in the control panel, Closes #41