From 4881a84484af33c8c375cbce83c461c39c5c8fe5 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Sun, 23 Mar 2014 17:37:58 +0100 Subject: [PATCH] Tweak resizehandle The resizehandle always seemed a little out-of-place. These changes should make the resizehandle invisible, but still have the same effect. Only difference is that the handle area is from the border to 4px above (which is invisible), but it should be obvious enough (because the cursor changes) --- src/DebugBar/Resources/debugbar.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/DebugBar/Resources/debugbar.css b/src/DebugBar/Resources/debugbar.css index 112b765..1da6937 100644 --- a/src/DebugBar/Resources/debugbar.css +++ b/src/DebugBar/Resources/debugbar.css @@ -3,8 +3,8 @@ div.phpdebugbar { bottom: 0; left: 0; width: 100%; - border-top: 1px solid #ccc; - font-family: arial; + border-top: 0; + font-family: arial, sans-serif; background: #fff; z-index: 10000; font-size: 14px; @@ -34,11 +34,17 @@ a.phpdebugbar-restore-btn { div.phpdebugbar-resize-handle { display: none; height: 4px; + margin-top: -4px; width: 100%; - background: #fff; + background: none; + border-bottom: 1px solid #ccc; cursor: n-resize; } +div.phpdebugbar-closed, div.phpdebugbar-minimized{ + border-top: 1px solid #ccc; +} + /* -------------------------------------- */ div.phpdebugbar-header {