UX: Remove table editor transition effect (#30878)

This fixes a bit of jitteriness on mobile, noticeable mostly when going
from the topic list to a post that has a table.
This commit is contained in:
Penar Musaraj 2025-01-20 17:08:53 -05:00 committed by GitHub
parent 8207086d5f
commit ba5cd20ef2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -1565,9 +1565,12 @@ iframe {
}
.fullscreen-table-wrapper {
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
display: block;
position: relative;
html.discourse-no-touch & {
transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
}
.fullscreen-code-modal {