Fix compare tool file selection and other files improvements (#6133)

This commit is contained in:
Anthony Stirling
2026-04-20 12:53:37 +01:00
committed by GitHub
parent 30aff3236f
commit b4b196556d
15 changed files with 522 additions and 20 deletions
+9
View File
@@ -1091,3 +1091,12 @@
fill: #c56565;
fill-opacity: 1;
}
/* Snappier View-Transitions for FileEditor card reordering. Each thumbnail
* is tagged with `view-transition-name: file-card-<id>` (see
* FileEditorThumbnail.tsx); the browser FLIPs it between old and new
* positions on reorder. Override the sluggish 250ms default. */
::view-transition-group(*) {
animation-duration: 160ms;
animation-timing-function: cubic-bezier(0.2, 0, 0.2, 1);
}