main
css 74 lines 1.4 KB
Raw
1 .pi-hint {
2 margin-top: 0.5rem;
3 font-size: 0.85rem;
4 color: var(--color-text-secondary);
5 }
6
7 .pi-actions {
8 display: flex;
9 margin: 1rem 0;
10 }
11
12 .pi-actions-start {
13 justify-content: flex-start;
14 gap: var(--spacing-sm);
15 }
16
17 .pi-actions-center {
18 justify-content: center;
19 }
20
21 .pi-result {
22 display: flex;
23 align-items: center;
24 gap: 0.75rem;
25 padding: 0.75rem;
26 background: rgba(34, 197, 94, 0.1);
27 border: 1px solid rgba(34, 197, 94, 0.3);
28 border-radius: 4px;
29 margin-top: 0.75rem;
30 }
31
32 .pi-result-icon .material-symbols-outlined {
33 font-size: 2rem;
34 color: #22c55e;
35 }
36
37 .pi-result-path {
38 font-size: 0.85rem;
39 color: var(--color-text-secondary);
40 margin-top: 0.25rem;
41 font-family: var(--font-family-code);
42 }
43
44 .pi-detail-error {
45 margin-top: 0.75rem;
46 padding: 0.75rem;
47 background: rgba(239, 68, 68, 0.1);
48 border: 1px solid rgba(239, 68, 68, 0.35);
49 border-radius: 4px;
50 color: var(--color-text-primary);
51 }
52
53 .pi-detail-error-header {
54 display: flex;
55 align-items: flex-start;
56 gap: 0.5rem;
57 font-size: 0.9rem;
58 line-height: 1.4;
59 }
60
61 .pi-detail-error-header x-icon {
62 color: #ef4444;
63 font-size: 1.25rem;
64 flex-shrink: 0;
65 }
66
67 .pi-detail-error-files {
68 margin: 0.5rem 0 0 1.75rem;
69 padding: 0;
70 list-style: disc;
71 font-family: var(--font-family-code);
72 font-size: 0.8rem;
73 color: var(--color-text-secondary);
74 }