@@ -279,9 +279,9 @@ html[data-bs-theme="dark"] .bloecks-clipboard-item-meta {
279
279
margin-bottom : 12px ;
280
280
border-radius : 8px ;
281
281
box-shadow : 0 8px 25px rgba (0 , 0 , 0 , 0.25 );
282
- transform : scale (0.8 );
282
+ transform : translateY ( -100 px ) scale (0.9 );
283
283
opacity : 0 ;
284
- transition : all 0.4 s cubic-bezier (0.175 , 0.885 , 0.32 , 1.275 );
284
+ transition : all 0.5 s cubic-bezier (0.175 , 0.885 , 0.32 , 1.275 );
285
285
pointer-events : auto;
286
286
cursor : pointer;
287
287
max-width : 500px ;
@@ -313,7 +313,15 @@ html[data-bs-theme="dark"] .bloecks-clipboard-item-meta {
313
313
314
314
/* Show toast */
315
315
.bloecks-toast .show {
316
- transform : translateX (0 );
316
+ transform : translateY (0 ) scale (1 );
317
+ opacity : 1 ;
318
+ }
319
+
320
+ /* Hide toast (when removing) */
321
+ .bloecks-toast .hide {
322
+ transform : translateY (-50px ) scale (0.8 );
323
+ opacity : 0 ;
324
+ transition : all 0.3s cubic-bezier (0.55 , 0.055 , 0.675 , 0.19 );
317
325
}
318
326
319
327
/* Beautiful drag handle styling */
@@ -525,10 +533,10 @@ html:not([data-bs-theme="dark"]) body:not(.rex-theme-dark) .bloecks-cut.is-cut {
525
533
}
526
534
527
535
.bloecks-cut .is-cut {
528
- background-color : rgba (239 , 68 , 68 , 0.8 ) !important ;
529
- border-color : rgba (239 , 68 , 68 , 1 ) !important ;
536
+ background-color : rgba (249 , 115 , 22 , 0.8 ) !important ;
537
+ border-color : rgba (249 , 115 , 22 , 1 ) !important ;
530
538
color : white !important ;
531
- box-shadow : 0 0 0 2px rgba (239 , 68 , 68 , 0.3 ) !important ;
539
+ box-shadow : 0 0 0 2px rgba (249 , 115 , 22 , 0.3 ) !important ;
532
540
}
533
541
}
534
542
@@ -542,8 +550,25 @@ html[data-bs-theme="dark"] .bloecks-copy.is-copied {
542
550
543
551
body .rex-theme-dark .bloecks-cut .is-cut ,
544
552
html [data-bs-theme = "dark" ] .bloecks-cut .is-cut {
545
- background-color : rgba (239 , 68 , 68 , 0.8 ) !important ;
546
- border-color : rgba (239 , 68 , 68 , 1 ) !important ;
553
+ background-color : rgba (249 , 115 , 22 , 0.8 ) !important ;
554
+ border-color : rgba (249 , 115 , 22 , 1 ) !important ;
547
555
color : white !important ;
548
- box-shadow : 0 0 0 2px rgba (239 , 68 , 68 , 0.3 ) !important ;
556
+ box-shadow : 0 0 0 2px rgba (249 , 115 , 22 , 0.3 ) !important ;
557
+ }
558
+
559
+ /* Temporary highlight effect for just-actioned buttons */
560
+ .bloecks-copy .just-actioned ,
561
+ .bloecks-cut .just-actioned {
562
+ transform : scale (1.05 );
563
+ transition : transform 0.2s ease;
564
+ }
565
+
566
+ body .rex-theme-dark .bloecks-copy .just-actioned ,
567
+ html [data-bs-theme = "dark" ] .bloecks-copy .just-actioned {
568
+ box-shadow : 0 0 0 3px rgba (59 , 130 , 246 , 0.5 ) !important ;
569
+ }
570
+
571
+ body .rex-theme-dark .bloecks-cut .just-actioned ,
572
+ html [data-bs-theme = "dark" ] .bloecks-cut .just-actioned {
573
+ box-shadow : 0 0 0 3px rgba (249 , 115 , 22 , 0.5 ) !important ;
549
574
}
0 commit comments