Skip to content

Commit 37c8127

Browse files
authored
0.26.1
2 parents 39ce6e6 + 5b2d31e commit 37c8127

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres (more or less) to [Semantic Versioning](http://semver.o
77

88
## Unreleased
99

10+
## 0.26.1
11+
12+
* fix issue where mouse down gets stuck when scrolling the timeline #526 @KhalidArdah
13+
14+
you can as well solve the issue without upgrading by adding the following style
15+
16+
```
17+
.react-calendar-timeline .rct-horizontal-lines {
18+
-webkit-user-select: none;
19+
-moz-user-select: -moz-none;
20+
-ms-user-select: none;
21+
user-select: none;
22+
}
23+
```
24+
25+
[as here](https://codesandbox.io/s/timeline-demo-sticky-header-w6s5f)
26+
1027
## 0.26.0
1128

1229
#### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-calendar-timeline",
3-
"version": "0.26.0",
3+
"version": "0.26.1",
44
"description": "react calendar timeline",
55
"main": "lib/index.js",
66
"scripts": {

src/lib/Timeline.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ $weekend: rgba(250, 246, 225, 0.5);
106106
}
107107

108108
.rct-horizontal-lines {
109+
-webkit-user-select: none;
110+
-moz-user-select: -moz-none;
111+
-ms-user-select: none;
112+
user-select: none;
113+
109114
.rct-hl-even,
110115
.rct-hl-odd {
111116
border-bottom: $border-width solid $border-color;

0 commit comments

Comments
 (0)