@mevdragon/vidfarm-devcli 0.2.13 → 0.2.14
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/src/account-pages-legacy.js +7 -5
- package/dist/src/account-pages-legacy.js.map +1 -1
- package/dist/src/account-pages.js +1 -10
- package/dist/src/account-pages.js.map +1 -1
- package/dist/src/app.js +106 -418
- package/dist/src/app.js.map +1 -1
- package/dist/src/cli.js +5 -0
- package/dist/src/cli.js.map +1 -1
- package/dist/src/dev-app-legacy.js +1 -1
- package/dist/src/dev-serve.js +169 -0
- package/dist/src/dev-serve.js.map +1 -0
- package/dist/src/editor-chat.js +10 -9
- package/dist/src/editor-chat.js.map +1 -1
- package/dist/src/editor-dark-theme.js +1128 -0
- package/dist/src/editor-dark-theme.js.map +1 -0
- package/dist/src/frontend/homepage-view.js +4 -4
- package/dist/src/frontend/homepage-view.js.map +1 -1
- package/dist/src/frontend/page-runtime-client.js +23 -2
- package/dist/src/frontend/page-runtime-client.js.map +1 -1
- package/dist/src/frontend/template-editor-chat.js +28 -35
- package/dist/src/frontend/template-editor-chat.js.map +1 -1
- package/dist/src/homepage.js +1 -1
- package/dist/src/homepage.js.map +1 -1
- package/dist/src/page-shell.js +27 -1105
- package/dist/src/page-shell.js.map +1 -1
- package/dist/src/primitive-registry.js +3 -3
- package/dist/src/primitive-registry.js.map +1 -1
- package/dist/src/services/fork-access.js +6 -7
- package/dist/src/services/fork-access.js.map +1 -1
- package/dist/src/services/fork-manifest.js +43 -0
- package/dist/src/services/fork-manifest.js.map +1 -0
- package/dist/src/services/serverless-records.js +2 -0
- package/dist/src/services/serverless-records.js.map +1 -1
- package/dist/src/services/storage.js +3 -2
- package/dist/src/services/storage.js.map +1 -1
- package/dist/src/template-editor-pages.js +3 -4136
- package/dist/src/template-editor-pages.js.map +1 -1
- package/dist/src/template-editor-shell.js +42 -53
- package/dist/src/template-editor-shell.js.map +1 -1
- package/package.json +1 -1
- package/public/assets/homepage-client-app.js +4 -4
- package/public/assets/page-runtime-client-app.js +29 -29
package/dist/src/page-shell.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EDITOR_DARK_THEME_CSS } from "./editor-dark-theme.js";
|
|
1
2
|
export function escapeHtml(value) {
|
|
2
3
|
return value
|
|
3
4
|
.replace(/&/g, "&")
|
|
@@ -79,8 +80,8 @@ export function renderPrimaryNav(input) {
|
|
|
79
80
|
];
|
|
80
81
|
const menuItems = input.loggedIn
|
|
81
82
|
? [
|
|
82
|
-
{ id: "job-runs", href: withAccountQuery("/job-runs", input.accountId), label: "
|
|
83
|
-
{ id: "inpaint", href: withAccountQuery("/inpaint", input.accountId), label: "
|
|
83
|
+
{ id: "job-runs", href: withAccountQuery("/job-runs", input.accountId), label: "Run History" },
|
|
84
|
+
{ id: "inpaint", href: withAccountQuery("/inpaint", input.accountId), label: "Inpaint" },
|
|
84
85
|
{ id: "help", href: "/help", label: "Help" },
|
|
85
86
|
{ id: "logout", action: "logout", label: "Log Out" }
|
|
86
87
|
]
|
|
@@ -167,6 +168,7 @@ export function renderBrandLockup(input) {
|
|
|
167
168
|
`;
|
|
168
169
|
}
|
|
169
170
|
export function renderPageShell(input) {
|
|
171
|
+
const isEditorTheme = input.bodyClass?.split(/\s+/).includes("is-editor-theme") ?? false;
|
|
170
172
|
return `<!doctype html>
|
|
171
173
|
<html lang="en">
|
|
172
174
|
<head>
|
|
@@ -179,21 +181,21 @@ export function renderPageShell(input) {
|
|
|
179
181
|
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
|
|
180
182
|
<style>
|
|
181
183
|
:root {
|
|
182
|
-
color-scheme:
|
|
183
|
-
--bg: #
|
|
184
|
-
--paper: rgba(
|
|
185
|
-
--paper-strong: rgba(
|
|
184
|
+
color-scheme: light;
|
|
185
|
+
--bg: #f8f4eb;
|
|
186
|
+
--paper: rgba(255, 252, 247, 0.88);
|
|
187
|
+
--paper-strong: rgba(255, 252, 247, 0.96);
|
|
186
188
|
--panel: transparent;
|
|
187
|
-
--panel-muted: rgba(
|
|
188
|
-
--ink: #
|
|
189
|
-
--muted: #
|
|
190
|
-
--line: rgba(
|
|
191
|
-
--line-strong: rgba(
|
|
192
|
-
--accent: #
|
|
193
|
-
--accent-deep: #
|
|
194
|
-
--accent-soft: rgba(
|
|
195
|
-
--shadow: 0
|
|
196
|
-
--shadow-soft: 0
|
|
189
|
+
--panel-muted: rgba(250, 245, 234, 0.9);
|
|
190
|
+
--ink: #2f3748;
|
|
191
|
+
--muted: #74829c;
|
|
192
|
+
--line: rgba(209, 219, 233, 0.9);
|
|
193
|
+
--line-strong: rgba(191, 164, 109, 0.42);
|
|
194
|
+
--accent: #dec081;
|
|
195
|
+
--accent-deep: #243041;
|
|
196
|
+
--accent-soft: rgba(222, 192, 129, 0.18);
|
|
197
|
+
--shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
|
|
198
|
+
--shadow-soft: 0 16px 36px rgba(148, 109, 42, 0.08);
|
|
197
199
|
--radius-lg: 32px;
|
|
198
200
|
--radius-md: 26px;
|
|
199
201
|
--radius-sm: 18px;
|
|
@@ -217,10 +219,10 @@ export function renderPageShell(input) {
|
|
|
217
219
|
color: var(--ink);
|
|
218
220
|
font-family: "Manrope", sans-serif;
|
|
219
221
|
background:
|
|
220
|
-
radial-gradient(circle at
|
|
221
|
-
radial-gradient(circle at 84%
|
|
222
|
-
|
|
223
|
-
linear-gradient(145deg, #
|
|
222
|
+
radial-gradient(circle at 12% 18%, rgba(222, 192, 129, 0.28), transparent 24%),
|
|
223
|
+
radial-gradient(circle at 84% 12%, rgba(123, 92, 29, 0.12), transparent 22%),
|
|
224
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
|
|
225
|
+
linear-gradient(145deg, #f8f4eb 0%, #f1e7d3 52%, #e9dbba 100%);
|
|
224
226
|
background-attachment: fixed;
|
|
225
227
|
}
|
|
226
228
|
|
|
@@ -230,26 +232,10 @@ export function renderPageShell(input) {
|
|
|
230
232
|
inset: 0;
|
|
231
233
|
pointer-events: none;
|
|
232
234
|
background-image:
|
|
233
|
-
linear-gradient(rgba(
|
|
234
|
-
linear-gradient(90deg, rgba(
|
|
235
|
-
linear-gradient(115deg, transparent 0 47%, rgba(255, 222, 88, 0.04) 48% 52%, transparent 53% 100%);
|
|
235
|
+
linear-gradient(rgba(96, 74, 36, 0.035) 1px, transparent 1px),
|
|
236
|
+
linear-gradient(90deg, rgba(96, 74, 36, 0.035) 1px, transparent 1px);
|
|
236
237
|
background-size: 30px 30px;
|
|
237
|
-
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
body::after {
|
|
241
|
-
content: "";
|
|
242
|
-
position: fixed;
|
|
243
|
-
inset: auto -10% -18% -10%;
|
|
244
|
-
height: 34vh;
|
|
245
|
-
pointer-events: none;
|
|
246
|
-
background:
|
|
247
|
-
repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.18) 0 2px, transparent 2px 72px),
|
|
248
|
-
linear-gradient(180deg, transparent, rgba(215, 255, 70, 0.08));
|
|
249
|
-
filter: blur(0.2px);
|
|
250
|
-
opacity: 0.45;
|
|
251
|
-
transform: perspective(520px) rotateX(58deg);
|
|
252
|
-
transform-origin: bottom center;
|
|
238
|
+
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 86%);
|
|
253
239
|
}
|
|
254
240
|
|
|
255
241
|
a {
|
|
@@ -1013,1071 +999,7 @@ export function renderPageShell(input) {
|
|
|
1013
999
|
|
|
1014
1000
|
${input.style ?? ""}
|
|
1015
1001
|
|
|
1016
|
-
|
|
1017
|
-
.frame {
|
|
1018
|
-
overflow: visible;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.frame-body {
|
|
1022
|
-
position: relative;
|
|
1023
|
-
z-index: 1;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
.topbar {
|
|
1027
|
-
position: relative;
|
|
1028
|
-
z-index: 40;
|
|
1029
|
-
border: 1px solid rgba(215, 255, 70, 0.22);
|
|
1030
|
-
background:
|
|
1031
|
-
linear-gradient(135deg, rgba(10, 18, 9, 0.92), rgba(15, 18, 5, 0.84)),
|
|
1032
|
-
radial-gradient(circle at 10% 0%, rgba(215, 255, 70, 0.14), transparent 36%);
|
|
1033
|
-
box-shadow:
|
|
1034
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.08),
|
|
1035
|
-
0 24px 68px rgba(0, 0, 0, 0.44);
|
|
1036
|
-
backdrop-filter: blur(18px);
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
.brand-lockup::before {
|
|
1040
|
-
content: "";
|
|
1041
|
-
width: 10px;
|
|
1042
|
-
height: 10px;
|
|
1043
|
-
border-radius: 999px;
|
|
1044
|
-
background: #d7ff46;
|
|
1045
|
-
box-shadow: 0 0 0 5px rgba(215, 255, 70, 0.12), 0 0 26px rgba(215, 255, 70, 0.64);
|
|
1046
|
-
flex: 0 0 auto;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
.brand-logo-image {
|
|
1050
|
-
filter: saturate(1.12) contrast(1.08);
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
.brand-title,
|
|
1054
|
-
.brand-title-static,
|
|
1055
|
-
h1,
|
|
1056
|
-
h2 {
|
|
1057
|
-
color: var(--ink);
|
|
1058
|
-
font-family: "Bebas Neue", "Instrument Serif", serif;
|
|
1059
|
-
font-weight: 400;
|
|
1060
|
-
letter-spacing: 0.01em;
|
|
1061
|
-
text-transform: uppercase;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
h3 {
|
|
1065
|
-
color: var(--ink);
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
p,
|
|
1069
|
-
.brand-account-meta,
|
|
1070
|
-
.brand-account-meta span,
|
|
1071
|
-
.helper,
|
|
1072
|
-
.tiny,
|
|
1073
|
-
.meta-copy {
|
|
1074
|
-
color: var(--muted);
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
.primary-nav {
|
|
1078
|
-
position: relative;
|
|
1079
|
-
z-index: 45;
|
|
1080
|
-
border: 1px solid rgba(215, 255, 70, 0.18);
|
|
1081
|
-
background:
|
|
1082
|
-
linear-gradient(180deg, rgba(18, 28, 15, 0.72), rgba(6, 12, 6, 0.78)),
|
|
1083
|
-
repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.07) 0 1px, transparent 1px 38px);
|
|
1084
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
.nav-link,
|
|
1088
|
-
.nav-menu-trigger,
|
|
1089
|
-
.nav-menu-item {
|
|
1090
|
-
color: rgba(255, 249, 215, 0.72);
|
|
1091
|
-
font-family: "JetBrains Mono", "SFMono-Regular", monospace;
|
|
1092
|
-
font-size: 0.78rem;
|
|
1093
|
-
font-weight: 700;
|
|
1094
|
-
letter-spacing: 0.02em;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
.nav-link:hover,
|
|
1098
|
-
.nav-menu-trigger:hover,
|
|
1099
|
-
.nav-menu[open] > .nav-menu-trigger {
|
|
1100
|
-
color: var(--ink);
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
.nav-link.is-active,
|
|
1104
|
-
.nav-menu-item.is-active {
|
|
1105
|
-
border-color: rgba(215, 255, 70, 0.42);
|
|
1106
|
-
background: rgba(215, 255, 70, 0.12);
|
|
1107
|
-
color: #f8ffd6;
|
|
1108
|
-
box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.08), 0 10px 28px rgba(0, 0, 0, 0.28);
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.nav-menu-panel,
|
|
1112
|
-
.logout-dialog,
|
|
1113
|
-
.notice,
|
|
1114
|
-
.empty-state {
|
|
1115
|
-
z-index: 80;
|
|
1116
|
-
border-color: rgba(215, 255, 70, 0.22);
|
|
1117
|
-
background: rgba(8, 14, 8, 0.96);
|
|
1118
|
-
color: var(--ink);
|
|
1119
|
-
box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
.surface,
|
|
1123
|
-
.surface-hero,
|
|
1124
|
-
.surface-muted,
|
|
1125
|
-
.page-section,
|
|
1126
|
-
.developer-panel,
|
|
1127
|
-
.settings-pane,
|
|
1128
|
-
.library-shell,
|
|
1129
|
-
.help-shell,
|
|
1130
|
-
.discover-shell,
|
|
1131
|
-
.calendar-shell,
|
|
1132
|
-
.custom-inpaint-panel,
|
|
1133
|
-
.custom-inpaint-stage,
|
|
1134
|
-
.custom-inpaint-output,
|
|
1135
|
-
.editor-inpaint-panel,
|
|
1136
|
-
.history-toolbar,
|
|
1137
|
-
.history-group,
|
|
1138
|
-
.history-subgroup,
|
|
1139
|
-
.history-linked-job,
|
|
1140
|
-
.history-media-modal,
|
|
1141
|
-
.editor-hero,
|
|
1142
|
-
.editor-section,
|
|
1143
|
-
.editor-panel,
|
|
1144
|
-
.editor-modal,
|
|
1145
|
-
.editor-media-modal,
|
|
1146
|
-
.editor-inpaint-modal,
|
|
1147
|
-
.vf-editor-chat-http-card,
|
|
1148
|
-
.vf-editor-chat-http-modal,
|
|
1149
|
-
.library-post,
|
|
1150
|
-
.library-options-panel,
|
|
1151
|
-
.calendar-main,
|
|
1152
|
-
.calendar-sidebar,
|
|
1153
|
-
.calendar-day-panel,
|
|
1154
|
-
.calendar-schedule-modal,
|
|
1155
|
-
.help-details {
|
|
1156
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1157
|
-
background:
|
|
1158
|
-
linear-gradient(180deg, rgba(13, 22, 11, 0.9), rgba(6, 11, 6, 0.9)),
|
|
1159
|
-
radial-gradient(circle at 12% 0%, rgba(215, 255, 70, 0.1), transparent 30%) !important;
|
|
1160
|
-
color: var(--ink);
|
|
1161
|
-
box-shadow: var(--shadow-soft);
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
.surface-hero,
|
|
1165
|
-
.editor-hero,
|
|
1166
|
-
.discover-shell {
|
|
1167
|
-
position: relative;
|
|
1168
|
-
overflow: hidden;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
.surface-hero::after,
|
|
1172
|
-
.editor-hero::after,
|
|
1173
|
-
.discover-shell::after {
|
|
1174
|
-
content: "";
|
|
1175
|
-
position: absolute;
|
|
1176
|
-
inset: auto 20px 18px 20px;
|
|
1177
|
-
height: 8px;
|
|
1178
|
-
border-radius: 999px;
|
|
1179
|
-
background: repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.9) 0 18px, rgba(215, 255, 70, 0.2) 18px 22px, transparent 22px 54px);
|
|
1180
|
-
opacity: 0.4;
|
|
1181
|
-
pointer-events: none;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.button,
|
|
1185
|
-
button,
|
|
1186
|
-
.link-button,
|
|
1187
|
-
.cta-button,
|
|
1188
|
-
.history-filter-button,
|
|
1189
|
-
.history-action-link,
|
|
1190
|
-
.editor-history-button,
|
|
1191
|
-
.vf-editor-chat-new-thread,
|
|
1192
|
-
.vf-editor-chat-history-toggle,
|
|
1193
|
-
.vf-editor-chat-history-close,
|
|
1194
|
-
.vf-editor-chat-back-button {
|
|
1195
|
-
border-color: rgba(215, 255, 70, 0.42);
|
|
1196
|
-
background: linear-gradient(180deg, #e8ff63, #bddf26);
|
|
1197
|
-
color: #071006;
|
|
1198
|
-
font-family: "JetBrains Mono", "SFMono-Regular", monospace;
|
|
1199
|
-
font-weight: 800;
|
|
1200
|
-
letter-spacing: -0.02em;
|
|
1201
|
-
box-shadow:
|
|
1202
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.48),
|
|
1203
|
-
0 12px 28px rgba(174, 219, 32, 0.18);
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.button:hover,
|
|
1207
|
-
button:hover,
|
|
1208
|
-
.link-button:hover,
|
|
1209
|
-
.cta-button:hover,
|
|
1210
|
-
.history-filter-button:hover,
|
|
1211
|
-
.history-action-link:hover,
|
|
1212
|
-
.editor-history-button:hover {
|
|
1213
|
-
border-color: rgba(248, 210, 74, 0.74);
|
|
1214
|
-
box-shadow:
|
|
1215
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.54),
|
|
1216
|
-
0 14px 34px rgba(215, 255, 70, 0.24);
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
.button.secondary,
|
|
1220
|
-
button.secondary,
|
|
1221
|
-
.link-button.secondary,
|
|
1222
|
-
.history-filter-button:not(.is-primary),
|
|
1223
|
-
.editor-history-button:not(.is-primary),
|
|
1224
|
-
.discover-media-modal-action,
|
|
1225
|
-
.history-media-modal-source,
|
|
1226
|
-
.editor-media-modal-source {
|
|
1227
|
-
border-color: rgba(255, 249, 215, 0.16);
|
|
1228
|
-
background: rgba(255, 249, 215, 0.08);
|
|
1229
|
-
color: rgba(255, 249, 215, 0.88);
|
|
1230
|
-
box-shadow: none;
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
.input,
|
|
1234
|
-
input,
|
|
1235
|
-
select,
|
|
1236
|
-
textarea {
|
|
1237
|
-
border-color: rgba(215, 255, 70, 0.22);
|
|
1238
|
-
background: rgba(0, 0, 0, 0.34);
|
|
1239
|
-
color: var(--ink);
|
|
1240
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
input::placeholder,
|
|
1244
|
-
textarea::placeholder {
|
|
1245
|
-
color: rgba(166, 179, 155, 0.66);
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
input:focus,
|
|
1249
|
-
select:focus,
|
|
1250
|
-
textarea:focus {
|
|
1251
|
-
border-color: rgba(215, 255, 70, 0.74);
|
|
1252
|
-
box-shadow: 0 0 0 4px rgba(215, 255, 70, 0.13);
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
label,
|
|
1256
|
-
.label,
|
|
1257
|
-
.kicker,
|
|
1258
|
-
.eyebrow,
|
|
1259
|
-
.pill,
|
|
1260
|
-
.pill-tag,
|
|
1261
|
-
.history-chip,
|
|
1262
|
-
.editor-pill,
|
|
1263
|
-
.vf-editor-chat-kicker,
|
|
1264
|
-
.vf-editor-chat-tracer-label,
|
|
1265
|
-
.vf-editor-chat-http-label {
|
|
1266
|
-
color: rgba(215, 255, 70, 0.82);
|
|
1267
|
-
font-family: "JetBrains Mono", "SFMono-Regular", monospace;
|
|
1268
|
-
letter-spacing: 0.18em;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.pill,
|
|
1272
|
-
.pill-tag,
|
|
1273
|
-
.history-chip,
|
|
1274
|
-
.editor-pill,
|
|
1275
|
-
.vf-editor-chat-tracer-chip,
|
|
1276
|
-
.vf-editor-chat-thread-chip {
|
|
1277
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1278
|
-
background: rgba(215, 255, 70, 0.08);
|
|
1279
|
-
color: rgba(255, 249, 215, 0.86);
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
pre,
|
|
1283
|
-
code,
|
|
1284
|
-
.vf-editor-chat-http-pre {
|
|
1285
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1286
|
-
background: rgba(0, 0, 0, 0.48);
|
|
1287
|
-
color: #e8ff9b;
|
|
1288
|
-
}
|
|
1289
|
-
|
|
1290
|
-
.discover-shell {
|
|
1291
|
-
border: 1px solid rgba(215, 255, 70, 0.22);
|
|
1292
|
-
background:
|
|
1293
|
-
radial-gradient(circle at 9% 12%, rgba(215, 255, 70, 0.12), transparent 30%),
|
|
1294
|
-
linear-gradient(135deg, rgba(9, 15, 8, 0.96), rgba(3, 6, 3, 0.94)) !important;
|
|
1295
|
-
box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
.discover-sidebar {
|
|
1299
|
-
border-right-color: rgba(215, 255, 70, 0.18);
|
|
1300
|
-
background:
|
|
1301
|
-
linear-gradient(180deg, rgba(16, 27, 12, 0.94), rgba(4, 8, 4, 0.9)),
|
|
1302
|
-
repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.06) 0 1px, transparent 1px 44px) !important;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
.discover-filter-block {
|
|
1306
|
-
padding: 18px;
|
|
1307
|
-
border: 1px solid rgba(215, 255, 70, 0.16);
|
|
1308
|
-
border-radius: 20px;
|
|
1309
|
-
background: rgba(0, 0, 0, 0.22);
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
.bookmarks-row,
|
|
1313
|
-
.switch-shell,
|
|
1314
|
-
.discover-filter-panel > summary {
|
|
1315
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1316
|
-
background: rgba(0, 0, 0, 0.26);
|
|
1317
|
-
color: rgba(255, 249, 215, 0.82);
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
.switch-shell[data-active="true"],
|
|
1321
|
-
.switch-input:checked + .switch-knob {
|
|
1322
|
-
background: #d7ff46;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
.discover-results {
|
|
1326
|
-
background:
|
|
1327
|
-
linear-gradient(90deg, transparent 0 21px, rgba(215, 255, 70, 0.08) 21px 22px, transparent 22px 100%),
|
|
1328
|
-
linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent);
|
|
1329
|
-
background-size: 44px 100%, auto;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
.discover-count {
|
|
1333
|
-
color: rgba(215, 255, 70, 0.72);
|
|
1334
|
-
background: linear-gradient(180deg, rgba(5, 9, 5, 0.98), rgba(5, 9, 5, 0));
|
|
1335
|
-
font-family: "JetBrains Mono", "SFMono-Regular", monospace;
|
|
1336
|
-
letter-spacing: 0.02em;
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
.discover-card {
|
|
1340
|
-
position: relative;
|
|
1341
|
-
overflow: hidden;
|
|
1342
|
-
border-color: rgba(215, 255, 70, 0.2);
|
|
1343
|
-
background:
|
|
1344
|
-
linear-gradient(90deg, rgba(215, 255, 70, 0.09) 0 1px, transparent 1px 100%),
|
|
1345
|
-
linear-gradient(180deg, rgba(17, 28, 13, 0.94), rgba(4, 8, 4, 0.94)) !important;
|
|
1346
|
-
background-size: 58px 100%, auto !important;
|
|
1347
|
-
box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
|
-
.discover-card::before {
|
|
1351
|
-
content: "TIMELINE LAYERS";
|
|
1352
|
-
position: absolute;
|
|
1353
|
-
top: 14px;
|
|
1354
|
-
right: 20px;
|
|
1355
|
-
color: rgba(215, 255, 70, 0.46);
|
|
1356
|
-
font-family: "JetBrains Mono", "SFMono-Regular", monospace;
|
|
1357
|
-
font-size: 0.65rem;
|
|
1358
|
-
font-weight: 800;
|
|
1359
|
-
letter-spacing: 0.22em;
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
.discover-card-media {
|
|
1363
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1364
|
-
background:
|
|
1365
|
-
linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
|
|
1366
|
-
linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
|
|
1367
|
-
#050905;
|
|
1368
|
-
background-size: 24px 24px;
|
|
1369
|
-
box-shadow: inset 0 0 0 1px rgba(255, 249, 215, 0.04);
|
|
1370
|
-
}
|
|
1371
|
-
|
|
1372
|
-
.discover-card-media::after {
|
|
1373
|
-
content: "";
|
|
1374
|
-
position: absolute;
|
|
1375
|
-
left: 16px;
|
|
1376
|
-
right: 16px;
|
|
1377
|
-
bottom: 16px;
|
|
1378
|
-
height: 5px;
|
|
1379
|
-
border-radius: 999px;
|
|
1380
|
-
background: linear-gradient(90deg, #d7ff46 0 26%, rgba(215, 255, 70, 0.2) 26% 64%, rgba(248, 210, 74, 0.78) 64% 100%);
|
|
1381
|
-
opacity: 0.78;
|
|
1382
|
-
}
|
|
1383
|
-
|
|
1384
|
-
.discover-card-title-wrap h2,
|
|
1385
|
-
.library-post-title,
|
|
1386
|
-
.history-title,
|
|
1387
|
-
.editor-title,
|
|
1388
|
-
.vf-editor-chat-empty h2,
|
|
1389
|
-
.vf-editor-chat-disabled h2 {
|
|
1390
|
-
color: var(--ink);
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
.discover-card-meta,
|
|
1394
|
-
.discover-card-body p,
|
|
1395
|
-
.editor-note,
|
|
1396
|
-
.history-linked-job-meta,
|
|
1397
|
-
.library-post-meta,
|
|
1398
|
-
.vf-editor-chat-empty p,
|
|
1399
|
-
.vf-editor-chat-disabled p {
|
|
1400
|
-
color: rgba(201, 215, 188, 0.78);
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
.difficulty-pill,
|
|
1404
|
-
.difficulty-pill[data-difficulty="hard"],
|
|
1405
|
-
.difficulty-pill[data-difficulty="expert"] {
|
|
1406
|
-
border-color: rgba(248, 210, 74, 0.42);
|
|
1407
|
-
background: rgba(248, 210, 74, 0.12);
|
|
1408
|
-
color: #ffe878;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
.copy-inline[data-state="done"] {
|
|
1412
|
-
border-color: rgba(215, 255, 70, 0.5);
|
|
1413
|
-
background: rgba(215, 255, 70, 0.12);
|
|
1414
|
-
color: var(--ink);
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
|
-
.editor-floating-nav {
|
|
1418
|
-
border-color: rgba(215, 255, 70, 0.24);
|
|
1419
|
-
background: rgba(5, 10, 5, 0.9);
|
|
1420
|
-
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
|
|
1421
|
-
backdrop-filter: blur(18px);
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.editor-back-link {
|
|
1425
|
-
border-color: rgba(215, 255, 70, 0.42);
|
|
1426
|
-
background: #d7ff46;
|
|
1427
|
-
color: #071006;
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
.editor-nav-title,
|
|
1431
|
-
.vf-editor-chat-brainstorm-title,
|
|
1432
|
-
.vf-editor-chat-header-title,
|
|
1433
|
-
.vf-editor-chat-header-subtitle,
|
|
1434
|
-
.vf-editor-chat-thread-chip-title,
|
|
1435
|
-
.vf-editor-chat-http-url,
|
|
1436
|
-
.editor-media-modal-title {
|
|
1437
|
-
color: var(--ink);
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
.editor-chat-panel,
|
|
1441
|
-
.vf-editor-chat-thread,
|
|
1442
|
-
.vf-editor-chat-history-pane,
|
|
1443
|
-
.vf-editor-chat-header,
|
|
1444
|
-
.vf-editor-chat-empty,
|
|
1445
|
-
.vf-editor-chat-disabled,
|
|
1446
|
-
.vf-editor-chat-bubble,
|
|
1447
|
-
.vf-editor-chat-thread-chip,
|
|
1448
|
-
.vf-editor-chat-thread-menu {
|
|
1449
|
-
border-color: rgba(215, 255, 70, 0.16);
|
|
1450
|
-
background:
|
|
1451
|
-
linear-gradient(180deg, rgba(12, 20, 10, 0.96), rgba(4, 8, 4, 0.96)) !important;
|
|
1452
|
-
color: var(--ink);
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
.vf-editor-chat-message.is-assistant .vf-editor-chat-bubble {
|
|
1456
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1457
|
-
background: rgba(255, 249, 215, 0.08) !important;
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
.vf-editor-chat-message.is-user .vf-editor-chat-bubble {
|
|
1461
|
-
background: rgba(215, 255, 70, 0.14) !important;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
.vf-editor-chat-composer,
|
|
1465
|
-
.vf-editor-chat-input-shell {
|
|
1466
|
-
border-color: rgba(215, 255, 70, 0.2);
|
|
1467
|
-
background: rgba(0, 0, 0, 0.32);
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
.history-card,
|
|
1471
|
-
.history-subgroup,
|
|
1472
|
-
.history-linked-job,
|
|
1473
|
-
.library-post,
|
|
1474
|
-
.help-details,
|
|
1475
|
-
.settings-pane,
|
|
1476
|
-
.developer-panel {
|
|
1477
|
-
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
.history-card-path,
|
|
1481
|
-
.history-linked-job-title,
|
|
1482
|
-
.history-card-time,
|
|
1483
|
-
.library-content-box,
|
|
1484
|
-
.calendar-ribbon-title,
|
|
1485
|
-
.calendar-post-title {
|
|
1486
|
-
color: var(--ink);
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
.library-toolbar,
|
|
1490
|
-
.calendar-toolbar,
|
|
1491
|
-
.history-options-popover {
|
|
1492
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1493
|
-
background: rgba(6, 11, 6, 0.94);
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
.library-post[data-selected="true"] {
|
|
1497
|
-
border-color: rgba(215, 255, 70, 0.48);
|
|
1498
|
-
box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.16), 0 18px 52px rgba(0, 0, 0, 0.42);
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
|
-
.discover-media-modal,
|
|
1502
|
-
.custom-inpaint-lightbox-dialog,
|
|
1503
|
-
.logout-dialog-head {
|
|
1504
|
-
border-color: rgba(215, 255, 70, 0.18);
|
|
1505
|
-
background: rgba(8, 14, 8, 0.98);
|
|
1506
|
-
}
|
|
1507
|
-
|
|
1508
|
-
.discover-media-modal-head h2,
|
|
1509
|
-
.custom-inpaint-lightbox-title,
|
|
1510
|
-
.logout-dialog-head h3 {
|
|
1511
|
-
color: var(--ink);
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
.discover-media-modal-stage,
|
|
1515
|
-
.custom-inpaint-lightbox-stage,
|
|
1516
|
-
.editor-media-modal-body {
|
|
1517
|
-
background: #020402;
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
|
-
.auth-frame {
|
|
1521
|
-
overflow: visible;
|
|
1522
|
-
}
|
|
1523
|
-
|
|
1524
|
-
.auth-layout {
|
|
1525
|
-
align-items: stretch;
|
|
1526
|
-
overflow: auto;
|
|
1527
|
-
padding-bottom: 22px;
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
.auth-shell-panel {
|
|
1531
|
-
position: relative;
|
|
1532
|
-
overflow: hidden;
|
|
1533
|
-
border-color: rgba(215, 255, 70, 0.22) !important;
|
|
1534
|
-
background:
|
|
1535
|
-
radial-gradient(circle at 12% 8%, rgba(215, 255, 70, 0.12), transparent 30%),
|
|
1536
|
-
linear-gradient(135deg, rgba(9, 15, 8, 0.96), rgba(3, 6, 3, 0.94)) !important;
|
|
1537
|
-
color: var(--ink);
|
|
1538
|
-
box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
|
|
1539
|
-
}
|
|
1540
|
-
|
|
1541
|
-
.auth-shell-inner {
|
|
1542
|
-
min-height: min(680px, calc(100dvh - 148px));
|
|
1543
|
-
}
|
|
1544
|
-
|
|
1545
|
-
.auth-shell-copy {
|
|
1546
|
-
border-right-color: rgba(215, 255, 70, 0.18) !important;
|
|
1547
|
-
background:
|
|
1548
|
-
linear-gradient(180deg, rgba(16, 27, 12, 0.82), rgba(4, 8, 4, 0.68)),
|
|
1549
|
-
repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.06) 0 1px, transparent 1px 44px) !important;
|
|
1550
|
-
}
|
|
1551
|
-
|
|
1552
|
-
.auth-copy-stack .label,
|
|
1553
|
-
.auth-plan-kicker,
|
|
1554
|
-
.mode-switch a {
|
|
1555
|
-
color: #e8ff63 !important;
|
|
1556
|
-
}
|
|
1557
|
-
|
|
1558
|
-
.auth-plan-card,
|
|
1559
|
-
.auth-shell,
|
|
1560
|
-
.form-panel {
|
|
1561
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1562
|
-
background: rgba(0, 0, 0, 0.26) !important;
|
|
1563
|
-
color: var(--ink);
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
.auth-plan-card.featured {
|
|
1567
|
-
border-color: rgba(248, 210, 74, 0.42) !important;
|
|
1568
|
-
background:
|
|
1569
|
-
linear-gradient(180deg, rgba(248, 210, 74, 0.12), rgba(0, 0, 0, 0.24)) !important;
|
|
1570
|
-
}
|
|
1571
|
-
|
|
1572
|
-
.auth-plan-card p,
|
|
1573
|
-
.auth-shell p,
|
|
1574
|
-
.form-panel p {
|
|
1575
|
-
color: rgba(201, 215, 188, 0.78) !important;
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
.auth-plan-name,
|
|
1579
|
-
.auth-plan-price strong,
|
|
1580
|
-
.auth-plan-features span,
|
|
1581
|
-
.form-panel label {
|
|
1582
|
-
color: var(--ink) !important;
|
|
1583
|
-
}
|
|
1584
|
-
|
|
1585
|
-
.form-panel input,
|
|
1586
|
-
.auth-shell input {
|
|
1587
|
-
border-color: rgba(215, 255, 70, 0.22) !important;
|
|
1588
|
-
background: rgba(0, 0, 0, 0.32) !important;
|
|
1589
|
-
color: var(--ink) !important;
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
/* Dark surface normalization for legacy pages that still ship light local CSS. */
|
|
1593
|
-
.app-shell h1,
|
|
1594
|
-
.app-shell h2,
|
|
1595
|
-
.app-shell .history-title,
|
|
1596
|
-
.app-shell .settings-sidebar h1,
|
|
1597
|
-
.app-shell .calendar-ribbon-title {
|
|
1598
|
-
font-family: "Bebas Neue", "Arial Narrow", sans-serif !important;
|
|
1599
|
-
font-weight: 400 !important;
|
|
1600
|
-
letter-spacing: 0.01em !important;
|
|
1601
|
-
text-transform: uppercase !important;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
.auth-login-frame .auth-shell-inner {
|
|
1605
|
-
grid-template-columns: minmax(360px, 0.66fr) minmax(0, 1fr) !important;
|
|
1606
|
-
align-items: stretch;
|
|
1607
|
-
}
|
|
1608
|
-
|
|
1609
|
-
.auth-login-frame .auth-shell-form {
|
|
1610
|
-
order: 1;
|
|
1611
|
-
align-items: stretch;
|
|
1612
|
-
justify-content: stretch;
|
|
1613
|
-
padding: clamp(20px, 3vw, 34px);
|
|
1614
|
-
border: 1px solid rgba(215, 255, 70, 0.2);
|
|
1615
|
-
border-radius: 28px;
|
|
1616
|
-
background:
|
|
1617
|
-
radial-gradient(circle at 16% 12%, rgba(215, 255, 70, 0.12), transparent 34%),
|
|
1618
|
-
rgba(0, 0, 0, 0.26);
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
.auth-login-frame .auth-shell-copy {
|
|
1622
|
-
order: 2;
|
|
1623
|
-
padding: clamp(18px, 2.2vw, 28px);
|
|
1624
|
-
border-right: 0 !important;
|
|
1625
|
-
border-left: 1px solid rgba(215, 255, 70, 0.14);
|
|
1626
|
-
}
|
|
1627
|
-
|
|
1628
|
-
.auth-login-frame .auth-shell {
|
|
1629
|
-
display: grid;
|
|
1630
|
-
width: 100%;
|
|
1631
|
-
align-content: center;
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
.auth-login-frame .auth-plan-grid {
|
|
1635
|
-
max-height: min(54dvh, 520px);
|
|
1636
|
-
overflow: auto;
|
|
1637
|
-
padding-right: 6px;
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
|
-
.auth-shell-form .form-panel {
|
|
1641
|
-
padding: clamp(22px, 3vw, 34px);
|
|
1642
|
-
border-radius: 24px;
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
.auth-shell-form .form-panel h2 {
|
|
1646
|
-
font-size: clamp(3rem, 6vw, 5.4rem);
|
|
1647
|
-
line-height: 0.85;
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
|
-
.auth-frame .price-panel,
|
|
1651
|
-
.auth-frame .auth-plan-features span,
|
|
1652
|
-
.settings-frame .settings-nav-panel > summary,
|
|
1653
|
-
.settings-frame .flockposter-dialog,
|
|
1654
|
-
.settings-frame .channel-menu,
|
|
1655
|
-
.settings-frame .channel-menu-panel {
|
|
1656
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1657
|
-
background:
|
|
1658
|
-
linear-gradient(180deg, rgba(13, 22, 11, 0.94), rgba(6, 11, 6, 0.94)) !important;
|
|
1659
|
-
color: var(--ink) !important;
|
|
1660
|
-
}
|
|
1661
|
-
|
|
1662
|
-
.auth-login-frame .auth-shell-panel {
|
|
1663
|
-
place-items: stretch;
|
|
1664
|
-
overflow: auto;
|
|
1665
|
-
}
|
|
1666
|
-
|
|
1667
|
-
.auth-login-frame .auth-shell-inner {
|
|
1668
|
-
min-height: 0;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.settings-shell,
|
|
1672
|
-
.calendar-shell,
|
|
1673
|
-
.calendar-rail,
|
|
1674
|
-
.calendar-stage,
|
|
1675
|
-
.library-toolbar,
|
|
1676
|
-
.history-toolbar,
|
|
1677
|
-
.custom-inpaint-workbench,
|
|
1678
|
-
.vf-editor-chat-shell {
|
|
1679
|
-
color: var(--ink) !important;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
.settings-shell,
|
|
1683
|
-
.calendar-shell {
|
|
1684
|
-
border-color: rgba(215, 255, 70, 0.2) !important;
|
|
1685
|
-
background:
|
|
1686
|
-
linear-gradient(135deg, rgba(10, 18, 9, 0.94), rgba(3, 6, 3, 0.96)),
|
|
1687
|
-
radial-gradient(circle at 8% 8%, rgba(215, 255, 70, 0.12), transparent 32%) !important;
|
|
1688
|
-
box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52) !important;
|
|
1689
|
-
}
|
|
1690
|
-
|
|
1691
|
-
.settings-sidebar,
|
|
1692
|
-
.settings-content,
|
|
1693
|
-
.calendar-rail,
|
|
1694
|
-
.calendar-stage {
|
|
1695
|
-
border-color: rgba(215, 255, 70, 0.16) !important;
|
|
1696
|
-
background:
|
|
1697
|
-
linear-gradient(180deg, rgba(14, 24, 11, 0.9), rgba(3, 7, 3, 0.92)),
|
|
1698
|
-
repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.045) 0 1px, transparent 1px 42px) !important;
|
|
1699
|
-
}
|
|
1700
|
-
|
|
1701
|
-
.profile-card,
|
|
1702
|
-
.files-card,
|
|
1703
|
-
.settings-panel,
|
|
1704
|
-
.key-card,
|
|
1705
|
-
.attachment-card,
|
|
1706
|
-
.price-panel,
|
|
1707
|
-
.developer-panel,
|
|
1708
|
-
.wallet-panel,
|
|
1709
|
-
.wallet-history,
|
|
1710
|
-
.wallet-history-item,
|
|
1711
|
-
.wallet-history-empty,
|
|
1712
|
-
.file-card,
|
|
1713
|
-
.developer-card,
|
|
1714
|
-
.channel-card,
|
|
1715
|
-
.provider-key-card,
|
|
1716
|
-
.email-avatar-preview,
|
|
1717
|
-
.files-dropzone,
|
|
1718
|
-
.file-popconfirm,
|
|
1719
|
-
.settings-flash,
|
|
1720
|
-
.agency-list-card,
|
|
1721
|
-
.agency-account-card,
|
|
1722
|
-
.library-post,
|
|
1723
|
-
.library-options-panel,
|
|
1724
|
-
.library-row-menu,
|
|
1725
|
-
.library-content-box,
|
|
1726
|
-
.library-empty,
|
|
1727
|
-
.history-card,
|
|
1728
|
-
.history-group,
|
|
1729
|
-
.history-subgroup,
|
|
1730
|
-
.history-linked-job,
|
|
1731
|
-
.history-options-popover,
|
|
1732
|
-
.history-output-preview,
|
|
1733
|
-
.history-preview-empty,
|
|
1734
|
-
.history-summary-preview,
|
|
1735
|
-
.history-summary-preview-more,
|
|
1736
|
-
.history-mobile-details summary::after,
|
|
1737
|
-
.calendar-channel-card,
|
|
1738
|
-
.calendar-empty-card,
|
|
1739
|
-
.calendar-board,
|
|
1740
|
-
.calendar-weekdays,
|
|
1741
|
-
.calendar-grid,
|
|
1742
|
-
.calendar-cell,
|
|
1743
|
-
.calendar-day-post,
|
|
1744
|
-
.calendar-day-hero,
|
|
1745
|
-
.calendar-post-pill,
|
|
1746
|
-
.calendar-view-tabs,
|
|
1747
|
-
.calendar-nav,
|
|
1748
|
-
.custom-inpaint-upload,
|
|
1749
|
-
.custom-inpaint-history,
|
|
1750
|
-
.custom-inpaint-history-item,
|
|
1751
|
-
.custom-inpaint-history-empty,
|
|
1752
|
-
.custom-inpaint-history-popconfirm,
|
|
1753
|
-
.custom-inpaint-settings,
|
|
1754
|
-
.custom-inpaint-output,
|
|
1755
|
-
.editor-inpaint-toolbar,
|
|
1756
|
-
.editor-inpaint-color-row,
|
|
1757
|
-
.editor-inpaint-global,
|
|
1758
|
-
.editor-inpaint-prompt-field,
|
|
1759
|
-
.editor-inpaint-attachment-chip,
|
|
1760
|
-
.vf-editor-chat-footer,
|
|
1761
|
-
.vf-editor-chat-composer,
|
|
1762
|
-
.vf-editor-chat-input-shell,
|
|
1763
|
-
.vf-editor-chat-empty-prompts button {
|
|
1764
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1765
|
-
background:
|
|
1766
|
-
linear-gradient(180deg, rgba(16, 27, 12, 0.88), rgba(4, 8, 4, 0.9)),
|
|
1767
|
-
radial-gradient(circle at 0% 0%, rgba(215, 255, 70, 0.08), transparent 34%) !important;
|
|
1768
|
-
color: var(--ink) !important;
|
|
1769
|
-
box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34) !important;
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
|
-
.wallet-hero {
|
|
1773
|
-
border-color: rgba(248, 210, 74, 0.32) !important;
|
|
1774
|
-
background:
|
|
1775
|
-
linear-gradient(135deg, rgba(248, 210, 74, 0.16), rgba(215, 255, 70, 0.08)),
|
|
1776
|
-
rgba(0, 0, 0, 0.26) !important;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.settings-nav-item,
|
|
1780
|
-
.library-options summary,
|
|
1781
|
-
.library-row-menu button,
|
|
1782
|
-
.library-row-menu a,
|
|
1783
|
-
.history-filter-button,
|
|
1784
|
-
.history-toolbar-back,
|
|
1785
|
-
.calendar-tab,
|
|
1786
|
-
.calendar-nav button,
|
|
1787
|
-
.calendar-ribbon-refresh,
|
|
1788
|
-
.calendar-refresh-button,
|
|
1789
|
-
.vf-editor-chat-empty-prompts button {
|
|
1790
|
-
border-color: rgba(215, 255, 70, 0.24) !important;
|
|
1791
|
-
background: rgba(255, 249, 215, 0.07) !important;
|
|
1792
|
-
color: rgba(255, 249, 215, 0.86) !important;
|
|
1793
|
-
box-shadow: none !important;
|
|
1794
|
-
}
|
|
1795
|
-
|
|
1796
|
-
.settings-nav-item.is-active,
|
|
1797
|
-
.calendar-tab.is-active,
|
|
1798
|
-
.calendar-day-chip.is-selected,
|
|
1799
|
-
.history-filter-button.is-primary {
|
|
1800
|
-
border-color: rgba(215, 255, 70, 0.66) !important;
|
|
1801
|
-
background: linear-gradient(180deg, #e8ff63, #bddf26) !important;
|
|
1802
|
-
color: #071006 !important;
|
|
1803
|
-
box-shadow: 0 12px 28px rgba(215, 255, 70, 0.18) !important;
|
|
1804
|
-
}
|
|
1805
|
-
|
|
1806
|
-
.settings-nav-item-danger {
|
|
1807
|
-
color: #ffb5a7 !important;
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
.wallet-balance-label,
|
|
1811
|
-
.history-toolbar .label-group label,
|
|
1812
|
-
.library-options-panel label,
|
|
1813
|
-
.library-selection-count,
|
|
1814
|
-
.calendar-post-meta,
|
|
1815
|
-
.calendar-cell-more,
|
|
1816
|
-
.editor-inpaint-label,
|
|
1817
|
-
.custom-inpaint-status,
|
|
1818
|
-
.vf-editor-chat-history-kicker,
|
|
1819
|
-
.vf-editor-chat-kicker {
|
|
1820
|
-
color: rgba(215, 255, 70, 0.72) !important;
|
|
1821
|
-
}
|
|
1822
|
-
|
|
1823
|
-
.wallet-balance-amount,
|
|
1824
|
-
.wallet-history-item-title,
|
|
1825
|
-
.files-dropzone-title,
|
|
1826
|
-
.file-card-copy h3,
|
|
1827
|
-
.developer-card-titleline h3,
|
|
1828
|
-
.history-group-head h2,
|
|
1829
|
-
.history-subgroup-head h3,
|
|
1830
|
-
.history-path,
|
|
1831
|
-
.history-linked-job-title,
|
|
1832
|
-
.library-post-title,
|
|
1833
|
-
.library-content-details summary,
|
|
1834
|
-
.calendar-channel-name,
|
|
1835
|
-
.calendar-day-post-top,
|
|
1836
|
-
.calendar-empty-title,
|
|
1837
|
-
.custom-inpaint-history-title,
|
|
1838
|
-
.vf-editor-chat-input {
|
|
1839
|
-
color: var(--ink) !important;
|
|
1840
|
-
}
|
|
1841
|
-
|
|
1842
|
-
.wallet-history-item-meta,
|
|
1843
|
-
.files-dropzone-copy p,
|
|
1844
|
-
.file-popconfirm p,
|
|
1845
|
-
.profile-id-inline,
|
|
1846
|
-
.history-toolbar-copy .tiny,
|
|
1847
|
-
.history-card-time,
|
|
1848
|
-
.history-mobile-details summary,
|
|
1849
|
-
.history-linked-job-meta,
|
|
1850
|
-
.library-post-meta span,
|
|
1851
|
-
.custom-inpaint-history-subtitle,
|
|
1852
|
-
.vf-editor-chat-input::placeholder {
|
|
1853
|
-
color: rgba(201, 215, 188, 0.72) !important;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
.wallet-history-item-amount.is-credit,
|
|
1857
|
-
.history-chip.is-success,
|
|
1858
|
-
.calendar-status.sent,
|
|
1859
|
-
.calendar-post-pill.sent,
|
|
1860
|
-
.custom-inpaint-status[data-tone="success"] {
|
|
1861
|
-
color: #abff9b !important;
|
|
1862
|
-
border-color: rgba(171, 255, 155, 0.28) !important;
|
|
1863
|
-
}
|
|
1864
|
-
|
|
1865
|
-
.wallet-history-item-amount.is-debit,
|
|
1866
|
-
.history-chip.is-error,
|
|
1867
|
-
.calendar-status.error,
|
|
1868
|
-
.calendar-post-pill.error,
|
|
1869
|
-
.custom-inpaint-status[data-tone="error"] {
|
|
1870
|
-
color: #ff9f91 !important;
|
|
1871
|
-
border-color: rgba(255, 159, 145, 0.28) !important;
|
|
1872
|
-
}
|
|
1873
|
-
|
|
1874
|
-
.history-chip,
|
|
1875
|
-
.history-method,
|
|
1876
|
-
.library-post-meta span,
|
|
1877
|
-
.calendar-status,
|
|
1878
|
-
.calendar-today-badge {
|
|
1879
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1880
|
-
background: rgba(215, 255, 70, 0.08) !important;
|
|
1881
|
-
color: rgba(255, 249, 215, 0.86) !important;
|
|
1882
|
-
}
|
|
1883
|
-
|
|
1884
|
-
.calendar-board {
|
|
1885
|
-
overflow: hidden;
|
|
1886
|
-
}
|
|
1887
|
-
|
|
1888
|
-
.calendar-weekdays,
|
|
1889
|
-
.calendar-grid {
|
|
1890
|
-
border-color: rgba(215, 255, 70, 0.16) !important;
|
|
1891
|
-
}
|
|
1892
|
-
|
|
1893
|
-
.calendar-cell {
|
|
1894
|
-
box-shadow: inset 1px 0 0 rgba(215, 255, 70, 0.09), inset 0 1px 0 rgba(215, 255, 70, 0.09) !important;
|
|
1895
|
-
}
|
|
1896
|
-
|
|
1897
|
-
.calendar-cell.is-outside {
|
|
1898
|
-
opacity: 0.56;
|
|
1899
|
-
}
|
|
1900
|
-
|
|
1901
|
-
.calendar-day-chip {
|
|
1902
|
-
color: rgba(255, 249, 215, 0.92) !important;
|
|
1903
|
-
}
|
|
1904
|
-
|
|
1905
|
-
.calendar-day-chip.is-muted {
|
|
1906
|
-
color: rgba(201, 215, 188, 0.42) !important;
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
.calendar-channel-card.is-selected {
|
|
1910
|
-
border-color: rgba(248, 210, 74, 0.42) !important;
|
|
1911
|
-
background:
|
|
1912
|
-
linear-gradient(180deg, rgba(248, 210, 74, 0.12), rgba(4, 8, 4, 0.88)) !important;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
.calendar-avatar,
|
|
1916
|
-
.calendar-platform-avatar,
|
|
1917
|
-
.file-card-art,
|
|
1918
|
-
.history-summary-preview-fallback {
|
|
1919
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1920
|
-
background: rgba(255, 249, 215, 0.08) !important;
|
|
1921
|
-
color: var(--ink) !important;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
.custom-inpaint-stage,
|
|
1925
|
-
.editor-inpaint-canvas-wrap {
|
|
1926
|
-
background:
|
|
1927
|
-
radial-gradient(circle at center, rgba(215, 255, 70, 0.05), transparent 44%),
|
|
1928
|
-
rgba(0, 0, 0, 0.32) !important;
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
.custom-inpaint-upload {
|
|
1932
|
-
border-style: dashed !important;
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
.editor-inpaint-prompt,
|
|
1936
|
-
.editor-inpaint-provider select,
|
|
1937
|
-
.vf-editor-chat-input,
|
|
1938
|
-
.settings-frame input,
|
|
1939
|
-
.settings-frame textarea,
|
|
1940
|
-
.settings-frame select,
|
|
1941
|
-
.calendar-frame input,
|
|
1942
|
-
.calendar-frame select,
|
|
1943
|
-
.history-toolbar input,
|
|
1944
|
-
.history-toolbar select,
|
|
1945
|
-
.library-search,
|
|
1946
|
-
.library-options input,
|
|
1947
|
-
.library-options select {
|
|
1948
|
-
border-color: rgba(215, 255, 70, 0.24) !important;
|
|
1949
|
-
background: rgba(0, 0, 0, 0.38) !important;
|
|
1950
|
-
color: var(--ink) !important;
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
|
-
.editor-inpaint-color-picker {
|
|
1954
|
-
background: transparent !important;
|
|
1955
|
-
box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.2) !important;
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
|
-
.vf-editor-chat-footer {
|
|
1959
|
-
border-top: 1px solid rgba(215, 255, 70, 0.18) !important;
|
|
1960
|
-
}
|
|
1961
|
-
|
|
1962
|
-
.frame :is(
|
|
1963
|
-
.calendar-weekday,
|
|
1964
|
-
.calendar-day-view,
|
|
1965
|
-
.calendar-empty,
|
|
1966
|
-
.calendar-ribbon,
|
|
1967
|
-
.calendar-ribbon-channel,
|
|
1968
|
-
.history-http-action,
|
|
1969
|
-
.history-output-previews,
|
|
1970
|
-
.vf-editor-chat-http-card,
|
|
1971
|
-
.vf-editor-chat-http-modal,
|
|
1972
|
-
.vf-editor-chat-http-modal-header,
|
|
1973
|
-
.vf-editor-chat-http-body,
|
|
1974
|
-
.vf-editor-chat-http-pre,
|
|
1975
|
-
.custom-inpaint-panel-head,
|
|
1976
|
-
.custom-inpaint-tool-head,
|
|
1977
|
-
.editor-inpaint-color-row[data-active="true"]
|
|
1978
|
-
) {
|
|
1979
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
1980
|
-
background: rgba(6, 11, 6, 0.9) !important;
|
|
1981
|
-
color: var(--ink) !important;
|
|
1982
|
-
}
|
|
1983
|
-
|
|
1984
|
-
.frame :is(
|
|
1985
|
-
.calendar-nav-title,
|
|
1986
|
-
.calendar-day-date,
|
|
1987
|
-
.calendar-post-title,
|
|
1988
|
-
.vf-editor-chat-http-url,
|
|
1989
|
-
.vf-editor-chat-http-modal-url,
|
|
1990
|
-
.vf-editor-chat-http-status,
|
|
1991
|
-
.vf-editor-chat-http-expand
|
|
1992
|
-
) {
|
|
1993
|
-
color: var(--ink) !important;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
|
-
.frame :is(
|
|
1997
|
-
.calendar-channel-handle-inline,
|
|
1998
|
-
.calendar-ribbon-channel-handle,
|
|
1999
|
-
.calendar-day-post-summary,
|
|
2000
|
-
.custom-inpaint-history-empty,
|
|
2001
|
-
.vf-editor-chat-http-label,
|
|
2002
|
-
.vf-editor-chat-http-meta
|
|
2003
|
-
) {
|
|
2004
|
-
color: rgba(201, 215, 188, 0.78) !important;
|
|
2005
|
-
}
|
|
2006
|
-
|
|
2007
|
-
.vf-editor-chat-empty-prompts div,
|
|
2008
|
-
.vf-editor-chat-attachment,
|
|
2009
|
-
.vf-editor-chat-composer-attachment-item,
|
|
2010
|
-
.vf-editor-chat-http-pill {
|
|
2011
|
-
border-color: rgba(215, 255, 70, 0.18) !important;
|
|
2012
|
-
background: rgba(0, 0, 0, 0.34) !important;
|
|
2013
|
-
color: var(--ink) !important;
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
|
-
.vf-editor-chat-attach-button,
|
|
2017
|
-
.vf-editor-chat-send-button,
|
|
2018
|
-
.editor-inpaint-attach-button,
|
|
2019
|
-
.custom-inpaint-history-icon,
|
|
2020
|
-
.custom-inpaint-history-check,
|
|
2021
|
-
.editor-inpaint-color-remove {
|
|
2022
|
-
border-color: rgba(215, 255, 70, 0.22) !important;
|
|
2023
|
-
background: rgba(255, 249, 215, 0.08) !important;
|
|
2024
|
-
color: var(--ink) !important;
|
|
2025
|
-
box-shadow: none !important;
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
|
-
@media (max-width: 900px) {
|
|
2029
|
-
.auth-login-frame .auth-shell-inner {
|
|
2030
|
-
grid-template-columns: 1fr !important;
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
.auth-login-frame .auth-shell-copy {
|
|
2034
|
-
border-left: 0 !important;
|
|
2035
|
-
border-top: 1px solid rgba(215, 255, 70, 0.14);
|
|
2036
|
-
}
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
.frame h1,
|
|
2040
|
-
.frame h2,
|
|
2041
|
-
.frame h3,
|
|
2042
|
-
.frame summary,
|
|
2043
|
-
.frame [class$="-title"],
|
|
2044
|
-
.frame [class*="-title "],
|
|
2045
|
-
.frame [class*="-title"],
|
|
2046
|
-
.frame [class*="-head"] h1,
|
|
2047
|
-
.frame [class*="-head"] h2,
|
|
2048
|
-
.frame [class*="-head"] h3,
|
|
2049
|
-
.editor-workbench h1,
|
|
2050
|
-
.editor-workbench h2,
|
|
2051
|
-
.editor-workbench h3,
|
|
2052
|
-
.editor-workbench [class*="-title"],
|
|
2053
|
-
.vf-editor-chat-shell h1,
|
|
2054
|
-
.vf-editor-chat-shell h2,
|
|
2055
|
-
.vf-editor-chat-shell h3 {
|
|
2056
|
-
color: var(--ink) !important;
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
.frame p,
|
|
2060
|
-
.frame [class*="-meta"],
|
|
2061
|
-
.frame [class*="-note"],
|
|
2062
|
-
.frame [class*="-desc"],
|
|
2063
|
-
.frame [class*="-subtitle"],
|
|
2064
|
-
.frame [class*="-empty"],
|
|
2065
|
-
.editor-workbench p,
|
|
2066
|
-
.editor-workbench [class*="-meta"],
|
|
2067
|
-
.editor-workbench [class*="-note"],
|
|
2068
|
-
.editor-workbench [class*="-desc"],
|
|
2069
|
-
.editor-workbench [class*="-subtitle"],
|
|
2070
|
-
.vf-editor-chat-shell p,
|
|
2071
|
-
.vf-editor-chat-shell [class*="-preview"],
|
|
2072
|
-
.vf-editor-chat-shell [class*="-tracers"] {
|
|
2073
|
-
color: rgba(201, 215, 188, 0.78) !important;
|
|
2074
|
-
}
|
|
2075
|
-
|
|
2076
|
-
.frame a:not(.button):not(.cta-button):not(.link-button),
|
|
2077
|
-
.editor-workbench a:not(.button):not(.cta-button):not(.link-button),
|
|
2078
|
-
.vf-editor-chat-shell a:not(.button):not(.cta-button):not(.link-button) {
|
|
2079
|
-
color: #e8ff63;
|
|
2080
|
-
}
|
|
1002
|
+
${isEditorTheme ? EDITOR_DARK_THEME_CSS : ""}
|
|
2081
1003
|
|
|
2082
1004
|
@media (max-width: 1024px) {
|
|
2083
1005
|
.hero-grid,
|
|
@@ -2311,7 +1233,7 @@ export function renderPageShell(input) {
|
|
|
2311
1233
|
</style>
|
|
2312
1234
|
<script src="/assets/sentry-config.js"></script>
|
|
2313
1235
|
</head>
|
|
2314
|
-
<body>
|
|
1236
|
+
<body${input.bodyClass ? ` class="${escapeAttribute(input.bodyClass)}"` : ""}>
|
|
2315
1237
|
<main class="app-shell${input.mainClass ? ` ${escapeHtml(input.mainClass)}` : ""}">
|
|
2316
1238
|
<div class="page-stack${input.shellClass ? ` ${escapeHtml(input.shellClass)}` : ""}">
|
|
2317
1239
|
${input.body}
|