File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed
src/renderer/src/assets/styles/components Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change 229229
230230
231231
232- /* Vue 过渡效果 */
232+ /* Vue 过渡效果 - 简化为淡入淡出,移除滑动效果 */
233233.kanban-edit-panel-enter-active {
234- transition : all 0.3 s cubic-bezier ( 0.25 , 0.46 , 0.45 , 0.94 ) ;
234+ transition : opacity 0.2 s ease-out ;
235235}
236236
237237.kanban-edit-panel-leave-active {
238- transition : all 0.2 s cubic-bezier ( 0.55 , 0.06 , 0.68 , 0.19 ) ;
238+ transition : opacity 0.15 s ease-in ;
239239}
240240
241241.kanban-edit-panel-enter-from {
242242 opacity : 0 ;
243243}
244244
245- .kanban-edit-panel-enter-from .kanban-edit-panel-container {
246- transform : translateX (100% );
247- }
248-
249245.kanban-edit-panel-leave-to {
250246 opacity : 0 ;
251247}
252248
253- .kanban-edit-panel-leave-to .kanban-edit-panel-container {
254- transform : translateX (100% );
255- }
256-
257249.kanban-edit-panel-backdrop {
258250 @apply absolute inset-0 bg-black/20 backdrop-blur-sm;
259251}
You can’t perform that action at this time.
0 commit comments