mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-26 05:45:24 +00:00
(css) Fixed scrolling of calendars list on Android
This commit is contained in:
@@ -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] */
|
||||
|
||||
Reference in New Issue
Block a user