1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

Make swipe gestures feel more natural.

Removes opacity transition when swiping an article read/unread.

Adds "resistance" to the swiped entry when the 75px threshold is
reached.

Fixes an issue in which a swiped article couldn't be moved <15px.
This commit is contained in:
dzaikos 2022-04-03 07:02:30 +00:00 committed by Frédéric Guillot
parent 0f2b29741e
commit ec2b911881
2 changed files with 19 additions and 8 deletions

View file

@ -756,6 +756,12 @@ template {
display: none;
}
.touch-item {
transition-property: transform;
transition-duration: 0s;
transition-timing-function: ease-out;
}
/* Feeds list */
article.feed-parsing-error {
background-color: var(--feed-parsing-error-background-color);