079project 6.0.0 → 8.0.0
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/.cache/38/9a0e6a4756f17b0edebad6a7be1eed.json +1 -0
- package/079project_frontend/README.md +70 -0
- package/079project_frontend/package-lock.json +17310 -0
- package/079project_frontend/package.json +40 -0
- package/079project_frontend/public/favicon.ico +0 -0
- package/079project_frontend/public/index.html +43 -0
- package/079project_frontend/public/logo192.png +0 -0
- package/079project_frontend/public/logo512.png +0 -0
- package/079project_frontend/public/manifest.json +25 -0
- package/079project_frontend/public/robots.txt +3 -0
- package/079project_frontend/src/App.css +515 -0
- package/079project_frontend/src/App.js +286 -0
- package/079project_frontend/src/App.test.js +8 -0
- package/079project_frontend/src/api/client.js +103 -0
- package/079project_frontend/src/components/AuthGate.js +153 -0
- package/079project_frontend/src/components/ConfigPanel.js +643 -0
- package/079project_frontend/src/index.css +21 -0
- package/079project_frontend/src/index.js +17 -0
- package/079project_frontend/src/logo.svg +1 -0
- package/079project_frontend/src/reportWebVitals.js +13 -0
- package/079project_frontend/src/setupTests.js +5 -0
- package/README.en.md +234 -0
- package/README.md +0 -0
- package/auth_frontend_server.cjs +312 -0
- package/main.cjs +2259 -83
- package/memeMergeWorker.cjs +256 -0
- package/package.json +28 -15
- package/robots/wikitext-something.txt +1 -39254
- package/tools_install.js +136 -0
- package/model_RNN.py +0 -209
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "079project_frontend",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"proxy": "http://127.0.0.1:5080",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@testing-library/dom": "^10.4.1",
|
|
8
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
9
|
+
"@testing-library/react": "^16.3.1",
|
|
10
|
+
"@testing-library/user-event": "^13.5.0",
|
|
11
|
+
"react": "^19.2.3",
|
|
12
|
+
"react-dom": "^19.2.3",
|
|
13
|
+
"react-scripts": "5.0.1",
|
|
14
|
+
"web-vitals": "^2.1.4"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "react-scripts start",
|
|
18
|
+
"build": "react-scripts build",
|
|
19
|
+
"test": "react-scripts test",
|
|
20
|
+
"eject": "react-scripts eject"
|
|
21
|
+
},
|
|
22
|
+
"eslintConfig": {
|
|
23
|
+
"extends": [
|
|
24
|
+
"react-app",
|
|
25
|
+
"react-app/jest"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"browserslist": {
|
|
29
|
+
"production": [
|
|
30
|
+
">0.2%",
|
|
31
|
+
"not dead",
|
|
32
|
+
"not op_mini all"
|
|
33
|
+
],
|
|
34
|
+
"development": [
|
|
35
|
+
"last 1 chrome version",
|
|
36
|
+
"last 1 firefox version",
|
|
37
|
+
"last 1 safari version"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<meta name="theme-color" content="#000000" />
|
|
8
|
+
<meta
|
|
9
|
+
name="description"
|
|
10
|
+
content="Web site created using create-react-app"
|
|
11
|
+
/>
|
|
12
|
+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
13
|
+
<!--
|
|
14
|
+
manifest.json provides metadata used when your web app is installed on a
|
|
15
|
+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
|
16
|
+
-->
|
|
17
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
18
|
+
<!--
|
|
19
|
+
Notice the use of %PUBLIC_URL% in the tags above.
|
|
20
|
+
It will be replaced with the URL of the `public` folder during the build.
|
|
21
|
+
Only files inside the `public` folder can be referenced from the HTML.
|
|
22
|
+
|
|
23
|
+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
|
24
|
+
work correctly both with client-side routing and a non-root public URL.
|
|
25
|
+
Learn how to configure a non-root public URL by running `npm run build`.
|
|
26
|
+
-->
|
|
27
|
+
<title>React App</title>
|
|
28
|
+
</head>
|
|
29
|
+
<body>
|
|
30
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
31
|
+
<div id="root"></div>
|
|
32
|
+
<!--
|
|
33
|
+
This HTML file is a template.
|
|
34
|
+
If you open it directly in the browser, you will see an empty page.
|
|
35
|
+
|
|
36
|
+
You can add webfonts, meta tags, or analytics to this file.
|
|
37
|
+
The build step will place the bundled scripts into the <body> tag.
|
|
38
|
+
|
|
39
|
+
To begin the development, run `npm start` or `yarn start`.
|
|
40
|
+
To create a production bundle, use `npm run build` or `yarn build`.
|
|
41
|
+
-->
|
|
42
|
+
</body>
|
|
43
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "React App",
|
|
3
|
+
"name": "Create React App Sample",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "favicon.ico",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/x-icon"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "logo192.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "192x192"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "logo512.png",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"sizes": "512x512"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"start_url": ".",
|
|
22
|
+
"display": "standalone",
|
|
23
|
+
"theme_color": "#000000",
|
|
24
|
+
"background_color": "#ffffff"
|
|
25
|
+
}
|
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
.phoenix-root {
|
|
2
|
+
height: 100vh;
|
|
3
|
+
width: 100vw;
|
|
4
|
+
display: grid;
|
|
5
|
+
grid-template-columns: 320px 1fr;
|
|
6
|
+
background: radial-gradient(1200px 800px at 20% 10%, rgba(88, 101, 242, 0.18), transparent 55%),
|
|
7
|
+
radial-gradient(900px 700px at 80% 20%, rgba(16, 185, 129, 0.14), transparent 50%),
|
|
8
|
+
#0b0f19;
|
|
9
|
+
color: #e6e8ee;
|
|
10
|
+
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
|
|
11
|
+
overflow-x: hidden;
|
|
12
|
+
overflow-y: auto;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sidebar {
|
|
16
|
+
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
|
17
|
+
padding: 18px;
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
gap: 16px;
|
|
21
|
+
background: rgba(15, 18, 32, 0.65);
|
|
22
|
+
backdrop-filter: blur(10px);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.brand-title {
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
font-size: 18px;
|
|
28
|
+
letter-spacing: 0.3px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.brand-sub {
|
|
32
|
+
color: rgba(230, 232, 238, 0.65);
|
|
33
|
+
font-size: 12px;
|
|
34
|
+
margin-top: 4px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.account {
|
|
38
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
39
|
+
border-radius: 14px;
|
|
40
|
+
padding: 14px;
|
|
41
|
+
background: rgba(255, 255, 255, 0.03);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.account-row {
|
|
45
|
+
display: flex;
|
|
46
|
+
gap: 12px;
|
|
47
|
+
align-items: center;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.avatar {
|
|
51
|
+
width: 38px;
|
|
52
|
+
height: 38px;
|
|
53
|
+
border-radius: 12px;
|
|
54
|
+
background: linear-gradient(135deg, rgba(88, 101, 242, 0.9), rgba(16, 185, 129, 0.8));
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
font-weight: 800;
|
|
59
|
+
color: #0b0f19;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.account-name {
|
|
63
|
+
font-weight: 700;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.account-id {
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
color: rgba(230, 232, 238, 0.65);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.account-actions {
|
|
72
|
+
display: flex;
|
|
73
|
+
gap: 10px;
|
|
74
|
+
margin-top: 12px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.btn {
|
|
78
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
79
|
+
background: rgba(88, 101, 242, 0.16);
|
|
80
|
+
color: #e6e8ee;
|
|
81
|
+
border-radius: 12px;
|
|
82
|
+
padding: 10px 12px;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.btn:hover {
|
|
88
|
+
background: rgba(88, 101, 242, 0.22);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.btn:disabled {
|
|
92
|
+
opacity: 0.5;
|
|
93
|
+
cursor: not-allowed;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.btn-ghost {
|
|
97
|
+
background: rgba(255, 255, 255, 0.04);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.section-title {
|
|
101
|
+
font-size: 12px;
|
|
102
|
+
text-transform: uppercase;
|
|
103
|
+
letter-spacing: 0.08em;
|
|
104
|
+
color: rgba(230, 232, 238, 0.6);
|
|
105
|
+
margin-bottom: 8px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sessions {
|
|
109
|
+
flex: 1;
|
|
110
|
+
display: flex;
|
|
111
|
+
flex-direction: column;
|
|
112
|
+
min-height: 0;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.session-list {
|
|
116
|
+
overflow: auto;
|
|
117
|
+
padding-right: 4px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.session-item {
|
|
121
|
+
display: grid;
|
|
122
|
+
grid-template-columns: 1fr 32px;
|
|
123
|
+
gap: 8px;
|
|
124
|
+
align-items: center;
|
|
125
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
126
|
+
border-radius: 12px;
|
|
127
|
+
margin-bottom: 10px;
|
|
128
|
+
background: rgba(255, 255, 255, 0.03);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.session-item.active {
|
|
132
|
+
border-color: rgba(88, 101, 242, 0.5);
|
|
133
|
+
background: rgba(88, 101, 242, 0.08);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.session-main {
|
|
137
|
+
text-align: left;
|
|
138
|
+
padding: 10px 12px;
|
|
139
|
+
border: none;
|
|
140
|
+
background: transparent;
|
|
141
|
+
color: inherit;
|
|
142
|
+
cursor: pointer;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.session-title {
|
|
146
|
+
font-weight: 700;
|
|
147
|
+
font-size: 13px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.session-sub {
|
|
151
|
+
font-size: 11px;
|
|
152
|
+
color: rgba(230, 232, 238, 0.6);
|
|
153
|
+
margin-top: 4px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.session-del {
|
|
157
|
+
width: 32px;
|
|
158
|
+
height: 32px;
|
|
159
|
+
border-radius: 10px;
|
|
160
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
161
|
+
background: rgba(255, 255, 255, 0.05);
|
|
162
|
+
color: rgba(230, 232, 238, 0.85);
|
|
163
|
+
cursor: pointer;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.main {
|
|
167
|
+
display: grid;
|
|
168
|
+
grid-template-rows: 56px 1fr;
|
|
169
|
+
min-width: 0;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.topbar {
|
|
173
|
+
display: flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
justify-content: space-between;
|
|
176
|
+
padding: 10px 16px;
|
|
177
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
178
|
+
background: rgba(15, 18, 32, 0.4);
|
|
179
|
+
backdrop-filter: blur(10px);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.topbar-title {
|
|
183
|
+
font-weight: 700;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.topbar-actions {
|
|
187
|
+
display: flex;
|
|
188
|
+
gap: 10px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.chat {
|
|
192
|
+
display: grid;
|
|
193
|
+
grid-template-rows: 1fr auto auto;
|
|
194
|
+
min-height: 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.chat-scroll {
|
|
198
|
+
overflow: auto;
|
|
199
|
+
padding: 18px 18px 6px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.msg {
|
|
203
|
+
display: grid;
|
|
204
|
+
grid-template-columns: 90px 1fr;
|
|
205
|
+
gap: 12px;
|
|
206
|
+
margin-bottom: 12px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.msg-role {
|
|
210
|
+
color: rgba(230, 232, 238, 0.55);
|
|
211
|
+
font-size: 12px;
|
|
212
|
+
padding-top: 10px;
|
|
213
|
+
text-transform: lowercase;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.msg-bubble {
|
|
217
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
218
|
+
background: rgba(255, 255, 255, 0.03);
|
|
219
|
+
border-radius: 14px;
|
|
220
|
+
padding: 12px 14px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.msg.user .msg-bubble {
|
|
224
|
+
border-color: rgba(88, 101, 242, 0.35);
|
|
225
|
+
background: rgba(88, 101, 242, 0.08);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.msg.assistant .msg-bubble {
|
|
229
|
+
border-color: rgba(16, 185, 129, 0.3);
|
|
230
|
+
background: rgba(16, 185, 129, 0.07);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.msg.system .msg-bubble {
|
|
234
|
+
border-color: rgba(244, 63, 94, 0.35);
|
|
235
|
+
background: rgba(244, 63, 94, 0.08);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.msg-text {
|
|
239
|
+
white-space: pre-wrap;
|
|
240
|
+
line-height: 1.45;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.msg-meta {
|
|
244
|
+
margin-top: 8px;
|
|
245
|
+
font-size: 12px;
|
|
246
|
+
color: rgba(230, 232, 238, 0.6);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.composer {
|
|
250
|
+
display: grid;
|
|
251
|
+
grid-template-columns: 1fr 110px;
|
|
252
|
+
gap: 12px;
|
|
253
|
+
padding: 12px 18px 16px;
|
|
254
|
+
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
255
|
+
background: rgba(15, 18, 32, 0.35);
|
|
256
|
+
backdrop-filter: blur(10px);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.composer-input {
|
|
260
|
+
border-radius: 14px;
|
|
261
|
+
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
262
|
+
background: rgba(255, 255, 255, 0.04);
|
|
263
|
+
color: #e6e8ee;
|
|
264
|
+
padding: 12px 14px;
|
|
265
|
+
outline: none;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.composer-input:focus {
|
|
269
|
+
border-color: rgba(88, 101, 242, 0.6);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.muted {
|
|
273
|
+
color: rgba(230, 232, 238, 0.6);
|
|
274
|
+
font-size: 12px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.status-row {
|
|
278
|
+
display: flex;
|
|
279
|
+
gap: 10px;
|
|
280
|
+
align-items: center;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.dot {
|
|
284
|
+
width: 10px;
|
|
285
|
+
height: 10px;
|
|
286
|
+
border-radius: 99px;
|
|
287
|
+
background: rgba(230, 232, 238, 0.25);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.dot.ok {
|
|
291
|
+
background: rgba(16, 185, 129, 0.9);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.dot.bad {
|
|
295
|
+
background: rgba(244, 63, 94, 0.9);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.error {
|
|
299
|
+
padding: 10px 18px;
|
|
300
|
+
color: rgba(244, 63, 94, 0.95);
|
|
301
|
+
font-weight: 600;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.nav {
|
|
305
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
306
|
+
border-radius: 14px;
|
|
307
|
+
padding: 12px;
|
|
308
|
+
background: rgba(255, 255, 255, 0.03);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.nav-list {
|
|
312
|
+
display: grid;
|
|
313
|
+
gap: 10px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.nav-item {
|
|
317
|
+
text-align: left;
|
|
318
|
+
padding: 10px 12px;
|
|
319
|
+
border-radius: 12px;
|
|
320
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
321
|
+
background: rgba(255, 255, 255, 0.04);
|
|
322
|
+
color: inherit;
|
|
323
|
+
cursor: pointer;
|
|
324
|
+
font-weight: 700;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.nav-item:hover {
|
|
328
|
+
background: rgba(255, 255, 255, 0.06);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.nav-item.active {
|
|
332
|
+
border-color: rgba(88, 101, 242, 0.5);
|
|
333
|
+
background: rgba(88, 101, 242, 0.12);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.cfg-wrap {
|
|
337
|
+
min-height: 0;
|
|
338
|
+
overflow: auto;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.cfg {
|
|
342
|
+
padding: 18px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.cfg-head {
|
|
346
|
+
display: flex;
|
|
347
|
+
align-items: flex-end;
|
|
348
|
+
justify-content: space-between;
|
|
349
|
+
gap: 12px;
|
|
350
|
+
margin-bottom: 14px;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.cfg-title {
|
|
354
|
+
font-weight: 800;
|
|
355
|
+
font-size: 18px;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.cfg-sub {
|
|
359
|
+
color: rgba(230, 232, 238, 0.6);
|
|
360
|
+
font-size: 12px;
|
|
361
|
+
margin-top: 4px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.cfg-grid {
|
|
365
|
+
display: grid;
|
|
366
|
+
grid-template-columns: repeat(12, 1fr);
|
|
367
|
+
gap: 14px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.card {
|
|
371
|
+
grid-column: span 6;
|
|
372
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
373
|
+
border-radius: 16px;
|
|
374
|
+
background: rgba(255, 255, 255, 0.03);
|
|
375
|
+
padding: 14px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.card-title {
|
|
379
|
+
font-weight: 800;
|
|
380
|
+
margin-bottom: 10px;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.card-subtitle {
|
|
384
|
+
font-weight: 800;
|
|
385
|
+
margin-top: 12px;
|
|
386
|
+
margin-bottom: 8px;
|
|
387
|
+
color: rgba(230, 232, 238, 0.9);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.cfg-row {
|
|
391
|
+
display: grid;
|
|
392
|
+
grid-template-columns: 220px 1fr;
|
|
393
|
+
gap: 12px;
|
|
394
|
+
padding: 10px 0;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.cfg-label-title {
|
|
398
|
+
font-weight: 800;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.cfg-label-hint {
|
|
402
|
+
margin-top: 4px;
|
|
403
|
+
font-size: 12px;
|
|
404
|
+
color: rgba(230, 232, 238, 0.55);
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.cfg-inline {
|
|
408
|
+
display: flex;
|
|
409
|
+
gap: 10px;
|
|
410
|
+
align-items: center;
|
|
411
|
+
flex-wrap: wrap;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.input {
|
|
415
|
+
height: 38px;
|
|
416
|
+
border-radius: 12px;
|
|
417
|
+
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
418
|
+
background: rgba(255, 255, 255, 0.04);
|
|
419
|
+
color: #e6e8ee;
|
|
420
|
+
padding: 0 12px;
|
|
421
|
+
min-width: 140px;
|
|
422
|
+
outline: none;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.input:focus {
|
|
426
|
+
border-color: rgba(88, 101, 242, 0.6);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.textarea {
|
|
430
|
+
width: 100%;
|
|
431
|
+
min-height: 120px;
|
|
432
|
+
border-radius: 12px;
|
|
433
|
+
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
434
|
+
background: rgba(255, 255, 255, 0.04);
|
|
435
|
+
color: #e6e8ee;
|
|
436
|
+
padding: 10px 12px;
|
|
437
|
+
resize: vertical;
|
|
438
|
+
outline: none;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.textarea:focus {
|
|
442
|
+
border-color: rgba(88, 101, 242, 0.6);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.pill {
|
|
446
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
447
|
+
background: rgba(255, 255, 255, 0.04);
|
|
448
|
+
border-radius: 999px;
|
|
449
|
+
padding: 6px 10px;
|
|
450
|
+
font-weight: 800;
|
|
451
|
+
font-size: 12px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.mono {
|
|
455
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.hr {
|
|
459
|
+
height: 1px;
|
|
460
|
+
background: rgba(255, 255, 255, 0.08);
|
|
461
|
+
margin: 12px 0;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.cfg-list {
|
|
465
|
+
margin-top: 10px;
|
|
466
|
+
display: grid;
|
|
467
|
+
gap: 8px;
|
|
468
|
+
max-height: 180px;
|
|
469
|
+
overflow: auto;
|
|
470
|
+
padding-right: 6px;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.cfg-list-item {
|
|
474
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
475
|
+
background: rgba(255, 255, 255, 0.02);
|
|
476
|
+
border-radius: 12px;
|
|
477
|
+
padding: 8px 10px;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.cfg-checklist {
|
|
481
|
+
margin-top: 10px;
|
|
482
|
+
display: grid;
|
|
483
|
+
gap: 8px;
|
|
484
|
+
max-height: 260px;
|
|
485
|
+
overflow: auto;
|
|
486
|
+
padding-right: 6px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.check {
|
|
490
|
+
display: flex;
|
|
491
|
+
gap: 10px;
|
|
492
|
+
align-items: center;
|
|
493
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
494
|
+
background: rgba(255, 255, 255, 0.02);
|
|
495
|
+
border-radius: 12px;
|
|
496
|
+
padding: 8px 10px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.toggle {
|
|
500
|
+
display: inline-flex;
|
|
501
|
+
gap: 10px;
|
|
502
|
+
align-items: center;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
@media (max-width: 1100px) {
|
|
506
|
+
.phoenix-root {
|
|
507
|
+
grid-template-columns: 280px 1fr;
|
|
508
|
+
}
|
|
509
|
+
.card {
|
|
510
|
+
grid-column: span 12;
|
|
511
|
+
}
|
|
512
|
+
.cfg-row {
|
|
513
|
+
grid-template-columns: 1fr;
|
|
514
|
+
}
|
|
515
|
+
}
|