diff options
| author | Rob Hudson | 2009-08-21 14:56:30 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2009-08-21 14:56:30 -0700 | 
| commit | 5c9ebea7a2738517189ac1701f72b8942b590dc1 (patch) | |
| tree | 0f25e6cfe87bee52d092b3ca08e15b51824bca2a /debug_toolbar/templates | |
| parent | 996eb33778536d4eff2607f23777e6f08720eb54 (diff) | |
| download | django-debug-toolbar-5c9ebea7a2738517189ac1701f72b8942b590dc1.tar.bz2 | |
Cleaning up and simplifying the closed handle HTML and CSS.
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index a44d31e..401677a 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -17,7 +17,7 @@  	@import url({{ BASE_URL }}/__debug__/m/toolbar.css);  </style>  <div id="djDebug"> -	<div style="display: none;" id="djDebugToolbar"> +	<div style="display:none;" id="djDebugToolbar">  		<ul id="djDebugPanelList">  			{% if panels %}  			<li><a id="djHideToolBarButton" href="#" title="Hide Toolbar">Hide »</a></li> @@ -44,10 +44,8 @@  			{% endfor %}  		</ul>  	</div> -	<div style="display: none;" id="djDebugToolbarHandle"> -		<ul id="djDebugPanelList"> -			<li><a title="Show Toolbar" id="djShowToolBarButton" href="#">«</a></li> -		</ul> +	<div style="display:none;" id="djDebugToolbarHandle"> +		<a title="Show Toolbar" id="djShowToolBarButton" href="#">«</a>  	</div>  	{% for panel in panels %}  		{% if panel.has_content %}  | 
