From 27c75df0f6a4beece423a337a60b6817e9a3dbf1 Mon Sep 17 00:00:00 2001 From: jos Date: Fri, 8 Jan 2016 09:13:29 +0100 Subject: [PATCH] Fixed #1554: wrong cursor on readonly range items --- HISTORY.md | 1 + lib/timeline/component/css/item.css | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index f70df0fe..61401618 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -8,6 +8,7 @@ http://visjs.org - Fixed #1527: error when creating/updating a Timeline without data. - Fixed #1127: `doubleClick` event not being fired. +- Fixed #1554: wrong cursor on readonly range items. ### Network diff --git a/lib/timeline/component/css/item.css b/lib/timeline/component/css/item.css index e843e1e0..4e048885 100644 --- a/lib/timeline/component/css/item.css +++ b/lib/timeline/component/css/item.css @@ -123,3 +123,8 @@ cursor: e-resize; } + +.vis-range.vis-item.vis-readonly .vis-drag-left, +.vis-range.vis-item.vis-readonly .vis-drag-right { + cursor: auto; +}