diff --git a/NEWS b/NEWS index 11acbff25..36f34718b 100644 --- a/NEWS +++ b/NEWS @@ -8,6 +8,7 @@ Bug fixes - [web] fixed wrong translation of custom calendar categories - [web] fixed wrong colors assigned to default calendar categories - [web] lowered size of headings on small screens + - [web] fixed scrolling in calendars list on Android - [core] allow super users to modify any event (#4216) - [core] correctly handle the full cert chain in S/MIME - [core] handle multidays events in freebusy data diff --git a/UI/WebServerResources/scss/components/list/list.scss b/UI/WebServerResources/scss/components/list/list.scss index 59aab2f56..b64ab2d49 100644 --- a/UI/WebServerResources/scss/components/list/list.scss +++ b/UI/WebServerResources/scss/components/list/list.scss @@ -247,10 +247,6 @@ div.md-tile-left { * See https://github.com/a5hik/ng-sortable */ -.as-sortable-item { - touch-action: none; -} - .as-sortable-hidden { display: none !important; } @@ -261,10 +257,19 @@ div.md-tile-left { .as-sortable-item-handle { display: none; /* [1] */ + cursor: move; + cursor: -webkit-grab; + cursor: -moz-grab; } .sg-list-sortable { position: relative; + + .as-sortable-item { + -ms-touch-action: none; + touch-action: none; + -webkit-touch-callout: none; /* to disable context menu on iOS devices */ + } .as-sortable-item-handle { cursor: move; display: block; /* [1] */