|
1 | 1 | /* ============================================================ |
2 | | - OpenCut CEP Panel v1.7.1 - ULTRA PREMIUM EDITION |
| 2 | + OpenCut CEP Panel v1.7.2 - ULTRA PREMIUM EDITION |
3 | 3 | Next-Generation AI Editing Suite for Adobe Premiere Pro |
4 | 4 | ============================================================ */ |
5 | 5 |
|
@@ -3091,36 +3091,38 @@ input[type="checkbox"] { |
3091 | 3091 | ============================================================ */ |
3092 | 3092 | .toast-notification { |
3093 | 3093 | position: fixed; |
3094 | | - top: 12px; |
3095 | | - right: 12px; |
| 3094 | + bottom: 48px; |
| 3095 | + left: 50%; |
| 3096 | + transform: translateX(-50%); |
3096 | 3097 | background: var(--bg-card); |
3097 | 3098 | border: 1px solid var(--border-light); |
3098 | | - border-top-color: rgba(255,255,255,0.08); |
| 3099 | + border-bottom-color: rgba(255,255,255,0.08); |
3099 | 3100 | border-radius: var(--r-md); |
3100 | | - padding: 12px 16px; |
| 3101 | + padding: 10px 20px; |
3101 | 3102 | font-size: 12px; |
3102 | 3103 | color: var(--text-primary); |
3103 | | - box-shadow: var(--shadow-xl); |
| 3104 | + box-shadow: var(--shadow-lg); |
3104 | 3105 | z-index: 10000; |
3105 | | - max-width: 300px; |
3106 | | - animation: toast-slide-in 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| 3106 | + max-width: 360px; |
| 3107 | + animation: toast-slide-up 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
3107 | 3108 | display: flex; |
3108 | 3109 | align-items: center; |
3109 | 3110 | gap: 10px; |
3110 | 3111 | backdrop-filter: blur(20px); |
| 3112 | + white-space: nowrap; |
3111 | 3113 | } |
3112 | 3114 | .toast-notification.success { border-left: 2px solid var(--neon-green, #00ff88); } |
3113 | 3115 | .toast-notification.error { border-left: 2px solid var(--neon-red, #ff0055); } |
3114 | 3116 | .toast-notification.info { border-left: 2px solid var(--neon-cyan, #00ffff); } |
3115 | | -@keyframes toast-slide-in { |
3116 | | - from { transform: translateX(100%); opacity: 0; } |
3117 | | - to { transform: translateX(0); opacity: 1; } |
| 3117 | +@keyframes toast-slide-up { |
| 3118 | + from { transform: translateX(-50%) translateY(100%); opacity: 0; } |
| 3119 | + to { transform: translateX(-50%) translateY(0); opacity: 1; } |
3118 | 3120 | } |
3119 | 3121 | .toast-notification.fade-out { |
3120 | 3122 | animation: toast-fade-out 0.3s ease forwards; |
3121 | 3123 | } |
3122 | 3124 | @keyframes toast-fade-out { |
3123 | | - to { transform: translateX(100%); opacity: 0; } |
| 3125 | + to { transform: translateX(-50%) translateY(100%); opacity: 0; } |
3124 | 3126 | } |
3125 | 3127 |
|
3126 | 3128 | /* ============================================================ |
|
0 commit comments