diff options
| author | Idan Gazit | 2009-08-25 14:45:28 +0300 | 
|---|---|---|
| committer | Idan Gazit | 2009-08-25 14:45:28 +0300 | 
| commit | b71ac81f13110e07e6f28cd4a01754833e3cfcbb (patch) | |
| tree | 79e90c8d532e77ea0484e9c21910fd10a0608486 /debug_toolbar/media | |
| parent | 93ece35cdecfd895bb65c39f27794fc1809f1d00 (diff) | |
| download | django-debug-toolbar-b71ac81f13110e07e6f28cd4a01754833e3cfcbb.tar.bz2 | |
Working panel structure with scroll, Wider handle tab for hover.
Diffstat (limited to 'debug_toolbar/media')
| -rw-r--r-- | debug_toolbar/media/debug_toolbar/indicator.png | bin | 282 -> 607 bytes | |||
| -rw-r--r-- | debug_toolbar/media/debug_toolbar/toolbar.css | 38 | 
2 files changed, 26 insertions, 12 deletions
diff --git a/debug_toolbar/media/debug_toolbar/indicator.png b/debug_toolbar/media/debug_toolbar/indicator.png Binary files differindex dd2e0de..1a2c578 100644 --- a/debug_toolbar/media/debug_toolbar/indicator.png +++ b/debug_toolbar/media/debug_toolbar/indicator.png diff --git a/debug_toolbar/media/debug_toolbar/toolbar.css b/debug_toolbar/media/debug_toolbar/toolbar.css index f58899a..a2f4ef3 100644 --- a/debug_toolbar/media/debug_toolbar/toolbar.css +++ b/debug_toolbar/media/debug_toolbar/toolbar.css @@ -150,29 +150,47 @@  	right:200px;  	bottom:0;  	left:0; -	background-color:#f6f6f6; +	background-color:#eee;  	color:#666;  	z-index:1000000;  }  #djDebug .panelContent > div {  	border-bottom:1px solid #ddd; -	padding:10px 20px;  } -.djDebugPanelTitle { +#djDebug .djDebugPanelTitle { +	position: absolute;  	background-color:#ffc;  	color:#666; +	padding-left: 20px; +	top: 0; +	right: 0; +	left: 0; +	height: 50px; +} + +#djDebug .djDebugPanelContent { +	position: absolute; +	top: 50px; +	right: 0; +	bottom: 0; +	left: 0; +	height: auto; +	padding: 10px 20px;  } -.djDebugPanelContent { -	overflow:hidden; -	height:90%; +#djDebug .djDebugPanelContent .boxed { +	height: 100%; +	overflow: auto; +	display: block; +	padding-right: 10px;  }  #djDebug h3 {  	font-size:24px; -	font-weight:bold; +	font-weight:normal; +	line-height: 50px;  }  #djDebug h4 { @@ -180,16 +198,12 @@  	font-weight:bold;  } -#djDebug .panelContent { -	background-color:#eee; -	color:#000; -} -  #djDebug .panelContent table {  	border:1px solid #ccc;  	border-collapse:collapse;  	width:100%;  	background-color:#fff; +	display: block;  }  #djDebug .panelContent tbody td,  #djDebug .panelContent tbody th {  | 
