From 636328483fb1e5e5f3abc10ce70e8f60a2a1f9e4 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 04 Jan 2011 16:11:26 -0500
Subject: [PATCH] Better CSS cursors for splitters (#1486874)

---
 skins/default/common.css |    4 ++--
 CHANGELOG                |    1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 4d695da..2e20b3e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
 CHANGELOG Roundcube Webmail
 ===========================
 
+- Better CSS cursors for splitters (#1486874)
 - Show the same message only once (#1487641)
 - Fix namespaces handling (#1487649)
 - Add handling of multifolder METADATA/ANNOTATION responses
diff --git a/skins/default/common.css b/skins/default/common.css
index 622fba9..93c13ad 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -396,13 +396,13 @@
 
 .splitter-h
 {
-  cursor: n-resize;
+  cursor: n-resize; cursor: row-resize;
   background-position: center 2px;
 }
 
 .splitter-v
 {
-  cursor: e-resize;
+  cursor: e-resize; cursor: col-resize;
   background-position: 2px center;
 }
 

--
Gitblit v1.9.1