green-screen-react 1.0.2 → 1.1.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/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +185 -57
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +185 -57
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +63 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -83,6 +83,24 @@
|
|
|
83
83
|
animation: gs-pulse 2s infinite;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
+
.gs-badge-lock {
|
|
87
|
+
padding: 2px 6px;
|
|
88
|
+
background-color: #EF4444;
|
|
89
|
+
color: white;
|
|
90
|
+
font-size: 10px;
|
|
91
|
+
font-weight: bold;
|
|
92
|
+
border-radius: 4px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.gs-badge-ins {
|
|
96
|
+
padding: 2px 6px;
|
|
97
|
+
background-color: #F59E0B;
|
|
98
|
+
color: black;
|
|
99
|
+
font-size: 10px;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
border-radius: 4px;
|
|
102
|
+
}
|
|
103
|
+
|
|
86
104
|
.gs-timestamp {
|
|
87
105
|
font-family: var(--gs-font);
|
|
88
106
|
font-size: 10px;
|
|
@@ -257,6 +275,51 @@
|
|
|
257
275
|
pointer-events: none;
|
|
258
276
|
}
|
|
259
277
|
|
|
278
|
+
/* ── Shortcuts Panel ──────────────────────────────────────────────── */
|
|
279
|
+
|
|
280
|
+
.gs-shortcuts-panel {
|
|
281
|
+
position: absolute;
|
|
282
|
+
bottom: 8px;
|
|
283
|
+
right: 8px;
|
|
284
|
+
z-index: 8;
|
|
285
|
+
background-color: rgba(14, 20, 34, 0.95);
|
|
286
|
+
border: 1px solid var(--gs-card-border);
|
|
287
|
+
border-radius: 4px;
|
|
288
|
+
padding: 8px 12px;
|
|
289
|
+
font-family: var(--gs-font);
|
|
290
|
+
font-size: 11px;
|
|
291
|
+
color: var(--gs-muted);
|
|
292
|
+
pointer-events: none;
|
|
293
|
+
animation: gs-fade-in 200ms ease-out;
|
|
294
|
+
max-width: 260px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.gs-shortcuts-header {
|
|
298
|
+
display: flex;
|
|
299
|
+
justify-content: space-between;
|
|
300
|
+
align-items: center;
|
|
301
|
+
margin-bottom: 6px;
|
|
302
|
+
color: var(--gs-green);
|
|
303
|
+
font-size: 11px;
|
|
304
|
+
letter-spacing: 0.05em;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.gs-shortcuts-table {
|
|
308
|
+
border-collapse: collapse;
|
|
309
|
+
width: 100%;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.gs-shortcuts-table td {
|
|
313
|
+
padding: 2px 0;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.gs-shortcut-key {
|
|
317
|
+
color: var(--gs-green);
|
|
318
|
+
padding-right: 12px;
|
|
319
|
+
white-space: nowrap;
|
|
320
|
+
font-weight: 500;
|
|
321
|
+
}
|
|
322
|
+
|
|
260
323
|
/* ── Inline Sign-In ──────────────────────────────────────────────── */
|
|
261
324
|
|
|
262
325
|
.gs-signin {
|