diff options
| author | Rob Hudson | 2009-08-28 09:21:39 -0700 |
|---|---|---|
| committer | Rob Hudson | 2009-08-28 09:21:39 -0700 |
| commit | f97ff555a4d8f22dae83bcfd0c2dcf6e846962c9 (patch) | |
| tree | 668ce76df028ebf37de98e48a022e7bbdb844151 /debug_toolbar/media | |
| parent | 4a59813e75d7cb3b88bf2b223b21d4e23d9ecb03 (diff) | |
| download | django-debug-toolbar-f97ff555a4d8f22dae83bcfd0c2dcf6e846962c9.tar.bz2 | |
Refactored SQL panel to use datetime objects and added a visual display of both duration and sequence to the SQL template.
Diffstat (limited to 'debug_toolbar/media')
| -rw-r--r-- | debug_toolbar/media/debug_toolbar/toolbar.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debug_toolbar/media/debug_toolbar/toolbar.css b/debug_toolbar/media/debug_toolbar/toolbar.css index ad23f22..c1fd4b0 100644 --- a/debug_toolbar/media/debug_toolbar/toolbar.css +++ b/debug_toolbar/media/debug_toolbar/toolbar.css @@ -336,6 +336,27 @@ cursor:pointer; } +#djDebug .djDebugSqlWrap { + position:relative; +} + +#djDebug .djDebugSql { + z-index:100000002; +} + +#djDebug span.djDebugLineChart { + border-top:3px solid #777; + position:absolute; + bottom:0; + top:0; + left:0; + display:block; + z-index:1000000001; +} +#djDebug span.djDebugLineChartWarning { + border-top-color:#900; +} + #djDebug .highlight { color:#000; } #djDebug .highlight .err { color:#000; } /* Error */ #djDebug .highlight .g { color:#000; } /* Generic */ |
