1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-19 07:41:39 +02:00

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)
This commit is contained in:
Barry vd. Heuvel
2014-03-23 17:37:58 +01:00
parent d2659e5acc
commit 4881a84484

View File

@@ -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 {