Better border around splitbar
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 2 Dec 2009 18:36:28 +0000 (11:36 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 3 Dec 2009 17:51:06 +0000 (10:51 -0700)
imp/themes/screen-dimp.css

index 28cfb30..f8229ff 100644 (file)
@@ -94,22 +94,23 @@ input {
 }
 .splitBarHoriz, .splitBarVert {
     background: #e9e9e9 no-repeat scroll;
-    border: 1px solid silver;
     z-index: 10;
 }
 .splitBarHoriz {
     background-image: url("graphics/dragHandle.png");
     background-position: center top;
+    border-top: 1px solid silver;
+    border-bottom: 1px solid silver;
     cursor: row-resize;
     height: 5px;
 }
 .splitBarVert {
     background-image: url("graphics/dragHandleVert.png");
     background-position: center;
+    border-right: 1px solid silver;
+    border-left: 1px solid silver;
     cursor: col-resize;
     height: 300px;
-    margin-bottom: -1px;
-    margin-top: -1px;
     width: 5px;
 }