@powerhousedao/network-admin 0.0.52 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +27 -0
- package/dist/subgraphs/workstreams/resolvers.d.ts.map +1 -1
- package/dist/subgraphs/workstreams/resolvers.js +21 -5
- package/dist/subgraphs/workstreams/schema.d.ts.map +1 -1
- package/dist/subgraphs/workstreams/schema.js +1 -0
- package/package.json +2 -2
- package/dist/editors/payment-terms/basic-terms-tab.d.ts +0 -10
- package/dist/editors/payment-terms/basic-terms-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/basic-terms-tab.js +0 -89
- package/dist/editors/payment-terms/clauses-tab.d.ts +0 -12
- package/dist/editors/payment-terms/clauses-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/clauses-tab.js +0 -214
- package/dist/editors/payment-terms/components/EditName.d.ts +0 -3
- package/dist/editors/payment-terms/components/EditName.d.ts.map +0 -1
- package/dist/editors/payment-terms/components/EditName.js +0 -31
- package/dist/editors/payment-terms/components/styles.d.ts +0 -2
- package/dist/editors/payment-terms/components/styles.d.ts.map +0 -1
- package/dist/editors/payment-terms/components/styles.js +0 -741
- package/dist/editors/payment-terms/cost-materials-tab.d.ts +0 -10
- package/dist/editors/payment-terms/cost-materials-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/cost-materials-tab.js +0 -63
- package/dist/editors/payment-terms/escrow-tab.d.ts +0 -10
- package/dist/editors/payment-terms/escrow-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/escrow-tab.js +0 -57
- package/dist/editors/payment-terms/evaluation-tab.d.ts +0 -10
- package/dist/editors/payment-terms/evaluation-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/evaluation-tab.js +0 -72
- package/dist/editors/payment-terms/milestones-tab.d.ts +0 -10
- package/dist/editors/payment-terms/milestones-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/milestones-tab.js +0 -214
- package/dist/editors/payment-terms/retainer-tab.d.ts +0 -10
- package/dist/editors/payment-terms/retainer-tab.d.ts.map +0 -1
- package/dist/editors/payment-terms/retainer-tab.js +0 -69
|
@@ -1,741 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
export function PaymentTermsStyles() {
|
|
3
|
-
return (_jsx("style", { children: `
|
|
4
|
-
/* Payment Terms Editor - Refined Professional Design */
|
|
5
|
-
|
|
6
|
-
/* CSS Custom Properties */
|
|
7
|
-
.pt-editor {
|
|
8
|
-
--pt-bg-primary: #faf9f7;
|
|
9
|
-
--pt-bg-secondary: #ffffff;
|
|
10
|
-
--pt-bg-tertiary: #f5f4f1;
|
|
11
|
-
--pt-bg-accent: #f0efec;
|
|
12
|
-
|
|
13
|
-
--pt-text-primary: #1e293b;
|
|
14
|
-
--pt-text-secondary: #475569;
|
|
15
|
-
--pt-text-tertiary: #94a3b8;
|
|
16
|
-
--pt-text-inverse: #ffffff;
|
|
17
|
-
|
|
18
|
-
--pt-border: #e2e1de;
|
|
19
|
-
--pt-border-focus: #94a3b8;
|
|
20
|
-
|
|
21
|
-
--pt-accent-emerald: #059669;
|
|
22
|
-
--pt-accent-emerald-light: #d1fae5;
|
|
23
|
-
--pt-accent-amber: #d97706;
|
|
24
|
-
--pt-accent-amber-light: #fef3c7;
|
|
25
|
-
--pt-accent-rose: #e11d48;
|
|
26
|
-
--pt-accent-rose-light: #ffe4e6;
|
|
27
|
-
--pt-accent-blue: #2563eb;
|
|
28
|
-
--pt-accent-blue-light: #dbeafe;
|
|
29
|
-
--pt-accent-slate: #475569;
|
|
30
|
-
--pt-accent-slate-light: #f1f5f9;
|
|
31
|
-
|
|
32
|
-
--pt-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
33
|
-
--pt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
|
|
34
|
-
--pt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
|
|
35
|
-
|
|
36
|
-
--pt-radius-sm: 6px;
|
|
37
|
-
--pt-radius-md: 10px;
|
|
38
|
-
--pt-radius-lg: 14px;
|
|
39
|
-
|
|
40
|
-
--pt-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
41
|
-
|
|
42
|
-
--pt-font-display: 'DM Sans', system-ui, sans-serif;
|
|
43
|
-
--pt-font-body: 'DM Sans', system-ui, sans-serif;
|
|
44
|
-
--pt-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.dark .pt-editor {
|
|
48
|
-
--pt-bg-primary: #0f172a;
|
|
49
|
-
--pt-bg-secondary: #1e293b;
|
|
50
|
-
--pt-bg-tertiary: #334155;
|
|
51
|
-
--pt-bg-accent: #475569;
|
|
52
|
-
|
|
53
|
-
--pt-text-primary: #f8fafc;
|
|
54
|
-
--pt-text-secondary: #cbd5e1;
|
|
55
|
-
--pt-text-tertiary: #64748b;
|
|
56
|
-
|
|
57
|
-
--pt-border: #334155;
|
|
58
|
-
--pt-border-focus: #64748b;
|
|
59
|
-
|
|
60
|
-
--pt-accent-emerald-light: #064e3b;
|
|
61
|
-
--pt-accent-amber-light: #78350f;
|
|
62
|
-
--pt-accent-rose-light: #881337;
|
|
63
|
-
--pt-accent-blue-light: #1e3a8a;
|
|
64
|
-
--pt-accent-slate-light: #334155;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.pt-editor {
|
|
68
|
-
min-height: 100vh;
|
|
69
|
-
background: var(--pt-bg-primary);
|
|
70
|
-
font-family: var(--pt-font-body);
|
|
71
|
-
color: var(--pt-text-primary);
|
|
72
|
-
line-height: 1.5;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.pt-editor-container {
|
|
76
|
-
max-width: 1400px;
|
|
77
|
-
margin: 0 auto;
|
|
78
|
-
padding: 24px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.pt-editor-config-row {
|
|
82
|
-
display: grid;
|
|
83
|
-
grid-template-columns: repeat(2, 1fr);
|
|
84
|
-
gap: 20px;
|
|
85
|
-
margin-top: 24px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.pt-editor-full-width {
|
|
89
|
-
display: flex;
|
|
90
|
-
flex-direction: column;
|
|
91
|
-
gap: 20px;
|
|
92
|
-
margin-top: 20px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.pt-editor-loading {
|
|
96
|
-
display: flex;
|
|
97
|
-
flex-direction: column;
|
|
98
|
-
align-items: center;
|
|
99
|
-
justify-content: center;
|
|
100
|
-
min-height: 400px;
|
|
101
|
-
gap: 16px;
|
|
102
|
-
color: var(--pt-text-secondary);
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.pt-editor-loading-spinner {
|
|
106
|
-
width: 32px;
|
|
107
|
-
height: 32px;
|
|
108
|
-
border: 3px solid var(--pt-border);
|
|
109
|
-
border-top-color: var(--pt-accent-blue);
|
|
110
|
-
border-radius: 50%;
|
|
111
|
-
animation: pt-spin 0.8s linear infinite;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
@keyframes pt-spin {
|
|
115
|
-
to { transform: rotate(360deg); }
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.pt-card {
|
|
119
|
-
background: var(--pt-bg-secondary);
|
|
120
|
-
border: 1px solid var(--pt-border);
|
|
121
|
-
border-radius: var(--pt-radius-lg);
|
|
122
|
-
box-shadow: var(--pt-shadow-sm);
|
|
123
|
-
overflow: hidden;
|
|
124
|
-
transition: box-shadow var(--pt-transition);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.pt-card:hover {
|
|
128
|
-
box-shadow: var(--pt-shadow-md);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.pt-card-header {
|
|
132
|
-
display: flex;
|
|
133
|
-
align-items: center;
|
|
134
|
-
justify-content: space-between;
|
|
135
|
-
padding: 16px 20px;
|
|
136
|
-
border-bottom: 1px solid var(--pt-border);
|
|
137
|
-
background: var(--pt-bg-tertiary);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.pt-card-header-left {
|
|
141
|
-
display: flex;
|
|
142
|
-
align-items: center;
|
|
143
|
-
gap: 12px;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.pt-card-icon {
|
|
147
|
-
display: flex;
|
|
148
|
-
align-items: center;
|
|
149
|
-
justify-content: center;
|
|
150
|
-
width: 36px;
|
|
151
|
-
height: 36px;
|
|
152
|
-
border-radius: var(--pt-radius-md);
|
|
153
|
-
background: var(--pt-bg-secondary);
|
|
154
|
-
color: var(--pt-text-secondary);
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.pt-card-title {
|
|
158
|
-
font-family: var(--pt-font-display);
|
|
159
|
-
font-size: 15px;
|
|
160
|
-
font-weight: 600;
|
|
161
|
-
color: var(--pt-text-primary);
|
|
162
|
-
margin: 0;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.pt-card-subtitle {
|
|
166
|
-
font-size: 13px;
|
|
167
|
-
color: var(--pt-text-tertiary);
|
|
168
|
-
margin: 2px 0 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.pt-card-body {
|
|
172
|
-
padding: 20px;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.pt-header {
|
|
176
|
-
background: var(--pt-bg-secondary);
|
|
177
|
-
border: 1px solid var(--pt-border);
|
|
178
|
-
border-radius: var(--pt-radius-lg);
|
|
179
|
-
box-shadow: var(--pt-shadow-md);
|
|
180
|
-
position: relative;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.pt-header-main {
|
|
184
|
-
display: flex;
|
|
185
|
-
align-items: flex-start;
|
|
186
|
-
justify-content: space-between;
|
|
187
|
-
padding: 24px;
|
|
188
|
-
gap: 24px;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.pt-header-info {
|
|
192
|
-
flex: 1;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.pt-header-title {
|
|
196
|
-
font-family: var(--pt-font-display);
|
|
197
|
-
font-size: 24px;
|
|
198
|
-
font-weight: 700;
|
|
199
|
-
color: var(--pt-text-primary);
|
|
200
|
-
margin: 0 0 4px;
|
|
201
|
-
letter-spacing: -0.02em;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.pt-header-subtitle {
|
|
205
|
-
font-size: 14px;
|
|
206
|
-
color: var(--pt-text-secondary);
|
|
207
|
-
margin: 0;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.pt-header-actions {
|
|
211
|
-
display: flex;
|
|
212
|
-
align-items: center;
|
|
213
|
-
gap: 12px;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.pt-status-badge {
|
|
217
|
-
display: inline-flex;
|
|
218
|
-
align-items: center;
|
|
219
|
-
gap: 6px;
|
|
220
|
-
padding: 8px 14px;
|
|
221
|
-
border-radius: 100px;
|
|
222
|
-
font-size: 13px;
|
|
223
|
-
font-weight: 600;
|
|
224
|
-
text-transform: uppercase;
|
|
225
|
-
letter-spacing: 0.02em;
|
|
226
|
-
transition: all var(--pt-transition);
|
|
227
|
-
cursor: pointer;
|
|
228
|
-
border: none;
|
|
229
|
-
background: var(--pt-accent-slate-light);
|
|
230
|
-
color: var(--pt-accent-slate);
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.pt-status-badge:hover {
|
|
234
|
-
transform: translateY(-1px);
|
|
235
|
-
box-shadow: var(--pt-shadow-md);
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.pt-status-badge--draft {
|
|
239
|
-
background: var(--pt-accent-slate-light);
|
|
240
|
-
color: var(--pt-accent-slate);
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.pt-status-badge--submitted {
|
|
244
|
-
background: var(--pt-accent-blue-light);
|
|
245
|
-
color: var(--pt-accent-blue);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.pt-status-badge--accepted {
|
|
249
|
-
background: var(--pt-accent-emerald-light);
|
|
250
|
-
color: var(--pt-accent-emerald);
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.pt-status-badge--cancelled {
|
|
254
|
-
background: var(--pt-accent-rose-light);
|
|
255
|
-
color: var(--pt-accent-rose);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.pt-metrics-bar {
|
|
259
|
-
display: grid;
|
|
260
|
-
grid-template-columns: repeat(4, 1fr);
|
|
261
|
-
gap: 1px;
|
|
262
|
-
background: var(--pt-border);
|
|
263
|
-
border-top: 1px solid var(--pt-border);
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.pt-metric {
|
|
267
|
-
display: flex;
|
|
268
|
-
flex-direction: column;
|
|
269
|
-
align-items: center;
|
|
270
|
-
justify-content: center;
|
|
271
|
-
padding: 16px;
|
|
272
|
-
background: var(--pt-bg-secondary);
|
|
273
|
-
text-align: center;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.pt-metric-value {
|
|
277
|
-
font-family: var(--pt-font-display);
|
|
278
|
-
font-size: 20px;
|
|
279
|
-
font-weight: 700;
|
|
280
|
-
color: var(--pt-text-primary);
|
|
281
|
-
line-height: 1.2;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.pt-metric-label {
|
|
285
|
-
font-size: 12px;
|
|
286
|
-
color: var(--pt-text-tertiary);
|
|
287
|
-
margin-top: 4px;
|
|
288
|
-
text-transform: uppercase;
|
|
289
|
-
letter-spacing: 0.04em;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.pt-progress-container {
|
|
293
|
-
padding: 16px 24px;
|
|
294
|
-
background: var(--pt-bg-tertiary);
|
|
295
|
-
border-top: 1px solid var(--pt-border);
|
|
296
|
-
border-radius: 0 0 var(--pt-radius-lg) var(--pt-radius-lg);
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.pt-progress-header {
|
|
300
|
-
display: flex;
|
|
301
|
-
align-items: center;
|
|
302
|
-
justify-content: space-between;
|
|
303
|
-
margin-bottom: 8px;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
.pt-progress-label {
|
|
307
|
-
font-size: 13px;
|
|
308
|
-
font-weight: 500;
|
|
309
|
-
color: var(--pt-text-secondary);
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.pt-progress-value {
|
|
313
|
-
font-size: 13px;
|
|
314
|
-
font-weight: 600;
|
|
315
|
-
color: var(--pt-text-primary);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.pt-progress-bar {
|
|
319
|
-
height: 6px;
|
|
320
|
-
background: var(--pt-border);
|
|
321
|
-
border-radius: 100px;
|
|
322
|
-
overflow: hidden;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.pt-progress-fill {
|
|
326
|
-
height: 100%;
|
|
327
|
-
background: linear-gradient(90deg, var(--pt-accent-emerald), #34d399);
|
|
328
|
-
border-radius: 100px;
|
|
329
|
-
transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.pt-form-grid {
|
|
333
|
-
display: grid;
|
|
334
|
-
grid-template-columns: repeat(2, 1fr);
|
|
335
|
-
gap: 16px;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.pt-form-grid-3 {
|
|
339
|
-
grid-template-columns: repeat(3, 1fr);
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.pt-form-group {
|
|
343
|
-
display: flex;
|
|
344
|
-
flex-direction: column;
|
|
345
|
-
gap: 6px;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.pt-form-group--full {
|
|
349
|
-
grid-column: 1 / -1;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.pt-form-label {
|
|
353
|
-
font-size: 13px;
|
|
354
|
-
font-weight: 500;
|
|
355
|
-
color: var(--pt-text-secondary);
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.pt-form-label-required::after {
|
|
359
|
-
content: ' *';
|
|
360
|
-
color: var(--pt-accent-rose);
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.pt-form-value {
|
|
364
|
-
font-size: 15px;
|
|
365
|
-
color: var(--pt-text-primary);
|
|
366
|
-
padding: 10px 0;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.pt-form-value--empty {
|
|
370
|
-
color: var(--pt-text-tertiary);
|
|
371
|
-
font-style: italic;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.pt-checkbox-group {
|
|
375
|
-
display: flex;
|
|
376
|
-
align-items: center;
|
|
377
|
-
gap: 10px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.pt-checkbox {
|
|
381
|
-
width: 18px;
|
|
382
|
-
height: 18px;
|
|
383
|
-
border: 2px solid var(--pt-border);
|
|
384
|
-
border-radius: 4px;
|
|
385
|
-
cursor: pointer;
|
|
386
|
-
transition: all var(--pt-transition);
|
|
387
|
-
accent-color: var(--pt-accent-blue);
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.pt-checkbox:checked {
|
|
391
|
-
background: var(--pt-accent-blue);
|
|
392
|
-
border-color: var(--pt-accent-blue);
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.pt-checkbox-label {
|
|
396
|
-
font-size: 14px;
|
|
397
|
-
color: var(--pt-text-primary);
|
|
398
|
-
cursor: pointer;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.pt-btn {
|
|
402
|
-
display: inline-flex;
|
|
403
|
-
align-items: center;
|
|
404
|
-
justify-content: center;
|
|
405
|
-
gap: 8px;
|
|
406
|
-
padding: 10px 16px;
|
|
407
|
-
font-size: 14px;
|
|
408
|
-
font-weight: 500;
|
|
409
|
-
font-family: var(--pt-font-body);
|
|
410
|
-
border-radius: var(--pt-radius-sm);
|
|
411
|
-
border: none;
|
|
412
|
-
cursor: pointer;
|
|
413
|
-
transition: all var(--pt-transition);
|
|
414
|
-
text-decoration: none;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.pt-btn:disabled {
|
|
418
|
-
opacity: 0.5;
|
|
419
|
-
cursor: not-allowed;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.pt-btn--primary {
|
|
423
|
-
background: var(--pt-text-primary);
|
|
424
|
-
color: var(--pt-text-inverse);
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.pt-btn--primary:hover:not(:disabled) {
|
|
428
|
-
background: var(--pt-accent-slate);
|
|
429
|
-
transform: translateY(-1px);
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.pt-btn--secondary {
|
|
433
|
-
background: var(--pt-bg-tertiary);
|
|
434
|
-
color: var(--pt-text-primary);
|
|
435
|
-
border: 1px solid var(--pt-border);
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.pt-btn--secondary:hover:not(:disabled) {
|
|
439
|
-
background: var(--pt-bg-accent);
|
|
440
|
-
border-color: var(--pt-border-focus);
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
.pt-btn--ghost {
|
|
444
|
-
background: transparent;
|
|
445
|
-
color: var(--pt-text-secondary);
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.pt-btn--ghost:hover:not(:disabled) {
|
|
449
|
-
background: var(--pt-bg-tertiary);
|
|
450
|
-
color: var(--pt-text-primary);
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.pt-btn--success {
|
|
454
|
-
background: var(--pt-accent-emerald);
|
|
455
|
-
color: white;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.pt-btn--success:hover:not(:disabled) {
|
|
459
|
-
background: #047857;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.pt-btn--danger {
|
|
463
|
-
background: var(--pt-accent-rose);
|
|
464
|
-
color: white;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.pt-btn--danger:hover:not(:disabled) {
|
|
468
|
-
background: #be123c;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.pt-btn--sm {
|
|
472
|
-
padding: 6px 12px;
|
|
473
|
-
font-size: 13px;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
.pt-icon-btn {
|
|
477
|
-
display: inline-flex;
|
|
478
|
-
align-items: center;
|
|
479
|
-
justify-content: center;
|
|
480
|
-
width: 32px;
|
|
481
|
-
height: 32px;
|
|
482
|
-
border-radius: var(--pt-radius-sm);
|
|
483
|
-
border: none;
|
|
484
|
-
background: transparent;
|
|
485
|
-
color: var(--pt-text-tertiary);
|
|
486
|
-
cursor: pointer;
|
|
487
|
-
transition: all var(--pt-transition);
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
.pt-icon-btn:hover {
|
|
491
|
-
background: var(--pt-bg-tertiary);
|
|
492
|
-
color: var(--pt-text-primary);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.pt-icon-btn--danger:hover {
|
|
496
|
-
background: var(--pt-accent-rose-light);
|
|
497
|
-
color: var(--pt-accent-rose);
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.pt-tag {
|
|
501
|
-
display: inline-flex;
|
|
502
|
-
align-items: center;
|
|
503
|
-
gap: 4px;
|
|
504
|
-
padding: 4px 10px;
|
|
505
|
-
font-size: 12px;
|
|
506
|
-
font-weight: 500;
|
|
507
|
-
border-radius: 100px;
|
|
508
|
-
background: var(--pt-bg-tertiary);
|
|
509
|
-
color: var(--pt-text-secondary);
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.pt-tag--success {
|
|
513
|
-
background: var(--pt-accent-emerald-light);
|
|
514
|
-
color: var(--pt-accent-emerald);
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.pt-tag--warning {
|
|
518
|
-
background: var(--pt-accent-amber-light);
|
|
519
|
-
color: var(--pt-accent-amber);
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.pt-tag--danger {
|
|
523
|
-
background: var(--pt-accent-rose-light);
|
|
524
|
-
color: var(--pt-accent-rose);
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.pt-tag--info {
|
|
528
|
-
background: var(--pt-accent-blue-light);
|
|
529
|
-
color: var(--pt-accent-blue);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.pt-empty-state {
|
|
533
|
-
display: flex;
|
|
534
|
-
flex-direction: column;
|
|
535
|
-
align-items: center;
|
|
536
|
-
justify-content: center;
|
|
537
|
-
padding: 40px 20px;
|
|
538
|
-
text-align: center;
|
|
539
|
-
border: 2px dashed var(--pt-border);
|
|
540
|
-
border-radius: var(--pt-radius-md);
|
|
541
|
-
background: var(--pt-bg-tertiary);
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.pt-empty-state-icon {
|
|
545
|
-
width: 48px;
|
|
546
|
-
height: 48px;
|
|
547
|
-
margin-bottom: 16px;
|
|
548
|
-
color: var(--pt-text-tertiary);
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
.pt-empty-state-title {
|
|
552
|
-
font-size: 15px;
|
|
553
|
-
font-weight: 600;
|
|
554
|
-
color: var(--pt-text-primary);
|
|
555
|
-
margin: 0 0 4px;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.pt-empty-state-description {
|
|
559
|
-
font-size: 14px;
|
|
560
|
-
color: var(--pt-text-tertiary);
|
|
561
|
-
margin: 0 0 16px;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.pt-tabs {
|
|
565
|
-
display: flex;
|
|
566
|
-
gap: 4px;
|
|
567
|
-
border-bottom: 1px solid var(--pt-border);
|
|
568
|
-
margin-bottom: 16px;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.pt-tab {
|
|
572
|
-
padding: 10px 16px;
|
|
573
|
-
font-size: 14px;
|
|
574
|
-
font-weight: 500;
|
|
575
|
-
color: var(--pt-text-tertiary);
|
|
576
|
-
background: none;
|
|
577
|
-
border: none;
|
|
578
|
-
border-bottom: 2px solid transparent;
|
|
579
|
-
cursor: pointer;
|
|
580
|
-
transition: all var(--pt-transition);
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.pt-tab:hover {
|
|
584
|
-
color: var(--pt-text-primary);
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.pt-tab--active {
|
|
588
|
-
color: var(--pt-text-primary);
|
|
589
|
-
border-bottom-color: var(--pt-text-primary);
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
.pt-tab--bonus.pt-tab--active {
|
|
593
|
-
color: var(--pt-accent-emerald);
|
|
594
|
-
border-bottom-color: var(--pt-accent-emerald);
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.pt-tab--penalty.pt-tab--active {
|
|
598
|
-
color: var(--pt-accent-rose);
|
|
599
|
-
border-bottom-color: var(--pt-accent-rose);
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
.pt-status-select {
|
|
603
|
-
position: relative;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.pt-status-dropdown {
|
|
607
|
-
position: absolute;
|
|
608
|
-
top: calc(100% + 8px);
|
|
609
|
-
right: 0;
|
|
610
|
-
min-width: 200px;
|
|
611
|
-
background: var(--pt-bg-secondary);
|
|
612
|
-
border: 1px solid var(--pt-border);
|
|
613
|
-
border-radius: var(--pt-radius-md);
|
|
614
|
-
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
615
|
-
z-index: 9999;
|
|
616
|
-
overflow: hidden;
|
|
617
|
-
animation: pt-dropdown-in 0.15s ease-out;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
@keyframes pt-dropdown-in {
|
|
621
|
-
from {
|
|
622
|
-
opacity: 0;
|
|
623
|
-
transform: translateY(-8px);
|
|
624
|
-
}
|
|
625
|
-
to {
|
|
626
|
-
opacity: 1;
|
|
627
|
-
transform: translateY(0);
|
|
628
|
-
}
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.pt-status-option {
|
|
632
|
-
display: flex;
|
|
633
|
-
align-items: center;
|
|
634
|
-
gap: 10px;
|
|
635
|
-
padding: 12px 16px;
|
|
636
|
-
font-size: 14px;
|
|
637
|
-
color: var(--pt-text-primary);
|
|
638
|
-
background: none;
|
|
639
|
-
border: none;
|
|
640
|
-
width: 100%;
|
|
641
|
-
text-align: left;
|
|
642
|
-
cursor: pointer;
|
|
643
|
-
transition: background var(--pt-transition);
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
.pt-status-option:hover {
|
|
647
|
-
background: var(--pt-bg-tertiary);
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
.pt-status-option--active {
|
|
651
|
-
background: var(--pt-bg-accent);
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
.pt-amount {
|
|
655
|
-
font-family: var(--pt-font-mono);
|
|
656
|
-
font-size: 14px;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.pt-amount-value {
|
|
660
|
-
font-weight: 600;
|
|
661
|
-
color: var(--pt-text-primary);
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.pt-amount-unit {
|
|
665
|
-
color: var(--pt-text-tertiary);
|
|
666
|
-
margin-left: 4px;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.pt-status-dot {
|
|
670
|
-
display: inline-block;
|
|
671
|
-
width: 8px;
|
|
672
|
-
height: 8px;
|
|
673
|
-
border-radius: 50%;
|
|
674
|
-
margin-right: 8px;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.pt-status-dot--pending {
|
|
678
|
-
background: var(--pt-accent-slate);
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.pt-status-dot--review {
|
|
682
|
-
background: var(--pt-accent-amber);
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.pt-status-dot--approved {
|
|
686
|
-
background: var(--pt-accent-blue);
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.pt-status-dot--paid {
|
|
690
|
-
background: var(--pt-accent-emerald);
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.pt-status-dot--rejected {
|
|
694
|
-
background: var(--pt-accent-rose);
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
@media (max-width: 900px) {
|
|
698
|
-
.pt-editor-config-row {
|
|
699
|
-
grid-template-columns: 1fr;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
@media (max-width: 768px) {
|
|
704
|
-
.pt-editor-container {
|
|
705
|
-
padding: 16px;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.pt-header-main {
|
|
709
|
-
flex-direction: column;
|
|
710
|
-
gap: 16px;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.pt-metrics-bar {
|
|
714
|
-
grid-template-columns: repeat(2, 1fr);
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.pt-form-grid {
|
|
718
|
-
grid-template-columns: 1fr;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.pt-form-grid-3 {
|
|
722
|
-
grid-template-columns: 1fr;
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
@keyframes pt-fade-in {
|
|
727
|
-
from {
|
|
728
|
-
opacity: 0;
|
|
729
|
-
transform: translateY(8px);
|
|
730
|
-
}
|
|
731
|
-
to {
|
|
732
|
-
opacity: 1;
|
|
733
|
-
transform: translateY(0);
|
|
734
|
-
}
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.pt-animate-in {
|
|
738
|
-
animation: pt-fade-in 0.3s ease-out forwards;
|
|
739
|
-
}
|
|
740
|
-
` }));
|
|
741
|
-
}
|