diff options
| author | Idan Gazit | 2009-08-25 02:22:48 +0300 | 
|---|---|---|
| committer | Idan Gazit | 2009-08-25 02:22:48 +0300 | 
| commit | 5c217d36a1ba1604dc5450351f4f090d71572d85 (patch) | |
| tree | f4bff04719aace96a7b9289fe720ba99e3ca4f11 /debug_toolbar/media | |
| parent | 7fa494e0dc1aa519ab937625e2f6f940861717f2 (diff) | |
| download | django-debug-toolbar-5c217d36a1ba1604dc5450351f4f090d71572d85.tar.bz2 | |
Fixed position toolbar, Smaller close handle, ported style changes from idan/ui-rf
Diffstat (limited to 'debug_toolbar/media')
| -rw-r--r-- | debug_toolbar/media/debug_toolbar/djdt_vertical.png | bin | 2054 -> 1349 bytes | |||
| -rw-r--r-- | debug_toolbar/media/debug_toolbar/toolbar.css | 61 | 
2 files changed, 37 insertions, 24 deletions
diff --git a/debug_toolbar/media/debug_toolbar/djdt_vertical.png b/debug_toolbar/media/debug_toolbar/djdt_vertical.png Binary files differindex c204965..000c60f 100644 --- a/debug_toolbar/media/debug_toolbar/djdt_vertical.png +++ b/debug_toolbar/media/debug_toolbar/djdt_vertical.png diff --git a/debug_toolbar/media/debug_toolbar/toolbar.css b/debug_toolbar/media/debug_toolbar/toolbar.css index 9da3f32..ca3e309 100644 --- a/debug_toolbar/media/debug_toolbar/toolbar.css +++ b/debug_toolbar/media/debug_toolbar/toolbar.css @@ -30,7 +30,7 @@  	background:#111;  	width:200px;  	z-index:100000000; -	position:absolute; +	position:fixed;  	top:0;  	bottom:0;  	right:0; @@ -63,7 +63,6 @@  #djDebugToolbar li>div.contentless  {  	font-weight:normal;  	font-style:normal; -	font-variant:small-caps;  	text-decoration:none;  	display:block;  	font-size:16px; @@ -73,55 +72,66 @@  #djDebugToolbar li a:hover {  	color:#111; -	background-color:#c6d6da; -	border-right:10px solid #fff; +	background-color:#ffc;  }  #djDebugToolbar li.active {  	background-image:url(indicator.png);  	background-repeat:no-repeat;  	background-position:left center; +	background-color: #333; +	padding-left: 10px; +	  }  #djDebugToolbar li.active a:hover { -	background-color:#111; -	background-image:inherit; -	background-position:inherit; -	background-repeat:inherit;  	color:#b36a60; -	border:none; +	background-color: transparent;  }  #djDebugToolbar li small {  	font-size:12px;  	color:#999; -	font-style:italic; +	font-style:normal;  	text-decoration:none; -	font-variant:normal; +	font-variant:small-caps;  }  #djDebugToolbarHandle { -	position:absolute; -	background:#111; -	top:0; -	bottom:0; +	position:fixed; +	background:#fff; +	border:1px solid #111; +	top:30px;  	right:0;  	z-index:100000000; +	opacity: 0.75;  }  #djDebug a#djShowToolBarButton {  	display:block; -	height:100%; -	padding:2px; +	height:75px; +	width: 30px; +	border-right: none; +	border-bottom:4px solid #fff; +	border-top:4px solid #fff; +	border-left:4px solid #fff;  	color:#fff;  	font-size:10px;  	font-weight:bold;  	text-decoration:none;  	text-align:center; +	text-indent:-999999px; +	background:#000 url(djdt_vertical.png) no-repeat left center; +	opacity:0.5;  }  #djDebug a#djShowToolBarButton:hover { -	background-color:#f00; +	background-color:#111; +	padding-right:6px; +	border-top-color:#ffc; +	border-left-color:#ffc; +	border-bottom-color:#ffc; +	opacity:1.0;  }  #djDebug pre { @@ -134,7 +144,7 @@  #djDebug .panelContent {  	display:none; -	position:absolute; +	position:fixed;  	margin:0;  	top:0;  	right:200px; @@ -143,7 +153,6 @@  	background-color:#f6f6f6;  	color:#666;  	z-index:1000000; -	overflow:auto;  }  #djDebug .panelContent > div { @@ -155,10 +164,15 @@  	background-color:#ffc;  	color:#666;  } + +.djDebugPanelContent { +	overflow:hidden; +	height:90%; +} +  #djDebug h3 {  	font-size:24px;  	font-weight:bold; -	font-variant:small-caps;  }  #djDebug h4 { @@ -199,7 +213,6 @@  #djDebug .panelContent code {  	font-family:Consolas, Monaco, "Bitstream Vera Sans Mono", "Lucida Console", monospace; -	font-size:12px;  }  /*  #djDebug .panelContent p a:hover, #djDebug .panelContent dd a:hover { @@ -257,8 +270,8 @@  	text-indent:-9999999px;  	display:block;  	position:absolute; -	top:0; -	right:10px; +	top:4px; +	right:15px;  	height:40px;  	width:40px;  	background:url(close.png) no-repeat center center;  | 
