PluginProbe
Ultimate Store Kit / 3.1.3
Ultimate Store Kit v3.1.3
3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 92 releases
ultimate-store-kit / src / admin / style.scss

style.scss in Ultimate Store Kit 3.1.3, at src/admin/style.scss

71 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Tailwind-only admin bundle — utilities/components generated from class names in src/admin */
2 @tailwind components;
3 @tailwind utilities;
4
5 /* ==================== FIXED TOAST NOTIFICATION ==================== */
6 .usk-toast-wrap {
7 position: fixed;
8 top: 40px;
9 left: 50%;
10 transform: translateX(-50%);
11 z-index: 99999;
12 pointer-events: none;
13 display: flex;
14 justify-content: center;
15 width: auto;
16 max-width: 480px;
17 }
18
19 .usk-toast {
20 pointer-events: auto;
21 display: flex;
22 align-items: center;
23 gap: 10px;
24 padding: 10px 18px;
25 border-radius: 10px;
26 font-size: 13px;
27 font-weight: 600;
28 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
29 animation: usk-toast-in 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
30 white-space: nowrap;
31 }
32
33 .usk-toast--success {
34 background: #ecfdf5;
35 color: #065f46;
36 border: 1px solid #a7f3d0;
37 }
38
39 .usk-toast--error {
40 background: #fef2f2;
41 color: #991b1b;
42 border: 1px solid #fecaca;
43 }
44
45 .usk-toast__close {
46 cursor: pointer;
47 border: 0;
48 background: transparent;
49 color: inherit;
50 font-size: 16px;
51 line-height: 1;
52 padding: 0 0 0 6px;
53 opacity: 0.6;
54 transition: opacity 0.15s;
55 }
56
57 .usk-toast__close:hover {
58 opacity: 1;
59 }
60
61 @keyframes usk-toast-in {
62 0% {
63 opacity: 0;
64 transform: translateY(-14px) scale(0.96);
65 }
66 100% {
67 opacity: 1;
68 transform: translateY(0) scale(1);
69 }
70 }
71