FIX: iOS/iPadOS freezing when changing notification level in topic footer

This commit is contained in:
Penar Musaraj 2020-08-11 22:39:17 -04:00
parent d1c570cf2c
commit 8633e3cae8
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7
1 changed files with 12 additions and 0 deletions

View File

@ -16,3 +16,15 @@
}
}
}
// This is a weird fix for a weird issue in iOS/iPadOS, the browser freezes
// when changing the notification level while in the fullscreen topic footer.
// This prevents the selected option icon from being hidden while saving,
// and somehow that makes Safari happy.
.timeline-fullscreen {
.topic-notifications-button.is-loading {
.selected-name .d-icon {
display: inline-flex;
}
}
}