(css) Fixed scrolling of calendars list on Android

This commit is contained in:
Francis Lachapelle
2019-03-19 11:07:33 -04:00
parent d75fe573b2
commit 254147b9ac
2 changed files with 10 additions and 4 deletions
+1
View File
@@ -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
@@ -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] */