@quilltap/theme-storybook 1.0.63 → 1.0.65
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.css +72 -0
- package/package.json +1 -1
- package/src/css/qt-components.css +91 -0
package/dist/index.css
CHANGED
|
@@ -423,6 +423,8 @@ body {
|
|
|
423
423
|
--qt-queue-badge-group-radius: var(--radius-md);
|
|
424
424
|
--qt-queue-badge-memory-bg: hsl(225 55% 48%);
|
|
425
425
|
--qt-queue-badge-memory-fg: hsl(0 0% 100%);
|
|
426
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 48%);
|
|
427
|
+
--qt-queue-badge-embedding-fg: hsl(0 0% 100%);
|
|
426
428
|
--qt-queue-badge-summary-bg: hsl(152 55% 38%);
|
|
427
429
|
--qt-queue-badge-summary-fg: hsl(0 0% 100%);
|
|
428
430
|
--qt-queue-badge-danger-bg: hsl(0 60% 48%);
|
|
@@ -2252,6 +2254,9 @@ body {
|
|
|
2252
2254
|
.hover\:qt-bg-muted\/80:hover {
|
|
2253
2255
|
background-color: color-mix(in srgb, var(--color-muted) 80%, transparent);
|
|
2254
2256
|
}
|
|
2257
|
+
.hover\:qt-bg-primary:hover {
|
|
2258
|
+
background-color: var(--color-primary);
|
|
2259
|
+
}
|
|
2255
2260
|
.hover\:qt-bg-primary\/5:hover {
|
|
2256
2261
|
background-color: color-mix(in srgb, var(--color-primary) 5%, transparent);
|
|
2257
2262
|
}
|
|
@@ -2273,6 +2278,9 @@ body {
|
|
|
2273
2278
|
.hover\:qt-bg-destructive\/90:hover {
|
|
2274
2279
|
background-color: color-mix(in srgb, var(--color-destructive) 90%, transparent);
|
|
2275
2280
|
}
|
|
2281
|
+
.hover\:qt-bg-success:hover {
|
|
2282
|
+
background-color: var(--color-success);
|
|
2283
|
+
}
|
|
2276
2284
|
.hover\:qt-bg-success\/20:hover {
|
|
2277
2285
|
background-color: color-mix(in srgb, var(--color-success) 20%, transparent);
|
|
2278
2286
|
}
|
|
@@ -2810,6 +2818,11 @@ body {
|
|
|
2810
2818
|
}
|
|
2811
2819
|
}
|
|
2812
2820
|
.dark {
|
|
2821
|
+
--qt-queue-badge-memory-bg: hsl(225 55% 55%);
|
|
2822
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 55%);
|
|
2823
|
+
--qt-queue-badge-summary-bg: hsl(152 50% 42%);
|
|
2824
|
+
--qt-queue-badge-danger-bg: hsl(0 60% 52%);
|
|
2825
|
+
--qt-queue-badge-story-bg: hsl(225 12% 44%);
|
|
2813
2826
|
--qt-chat-whisper-bg: color-mix(in srgb, var(--qt-chat-assistant-bg) 60%, #6b5b95 40%);
|
|
2814
2827
|
--qt-chat-whisper-border: #6b5b95;
|
|
2815
2828
|
--qt-chat-whisper-label-fg: #b5a9d1;
|
|
@@ -3111,6 +3124,65 @@ body {
|
|
|
3111
3124
|
background-color: var(--qt-terminal-closed-badge-bg);
|
|
3112
3125
|
color: var(--qt-terminal-closed-badge-fg);
|
|
3113
3126
|
}
|
|
3127
|
+
.qt-queue-badge-group {
|
|
3128
|
+
display: inline-flex;
|
|
3129
|
+
align-items: center;
|
|
3130
|
+
overflow: hidden;
|
|
3131
|
+
flex-shrink: 0;
|
|
3132
|
+
gap: var(--qt-queue-badge-group-gap);
|
|
3133
|
+
border-radius: var(--qt-queue-badge-group-radius);
|
|
3134
|
+
}
|
|
3135
|
+
.qt-queue-badge,
|
|
3136
|
+
.qt-queue-badge-memory,
|
|
3137
|
+
.qt-queue-badge-embedding,
|
|
3138
|
+
.qt-queue-badge-summary,
|
|
3139
|
+
.qt-queue-badge-danger,
|
|
3140
|
+
.qt-queue-badge-story {
|
|
3141
|
+
display: inline-flex;
|
|
3142
|
+
align-items: center;
|
|
3143
|
+
gap: 0.25rem;
|
|
3144
|
+
flex-shrink: 0;
|
|
3145
|
+
line-height: 1;
|
|
3146
|
+
white-space: nowrap;
|
|
3147
|
+
padding: var(--qt-queue-badge-padding-y) var(--qt-queue-badge-padding-x);
|
|
3148
|
+
font-size: var(--qt-queue-badge-font-size);
|
|
3149
|
+
font-weight: var(--qt-queue-badge-font-weight);
|
|
3150
|
+
transition: opacity 200ms ease;
|
|
3151
|
+
}
|
|
3152
|
+
.qt-queue-badge-idle {
|
|
3153
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3154
|
+
}
|
|
3155
|
+
.qt-queue-badge-pulse {
|
|
3156
|
+
animation: qt-queue-badge-blip 600ms ease-in-out 2;
|
|
3157
|
+
}
|
|
3158
|
+
@keyframes qt-queue-badge-blip {
|
|
3159
|
+
0%, 100% {
|
|
3160
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3161
|
+
}
|
|
3162
|
+
50% {
|
|
3163
|
+
opacity: 1;
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
.qt-queue-badge-memory {
|
|
3167
|
+
background: var(--qt-queue-badge-memory-bg);
|
|
3168
|
+
color: var(--qt-queue-badge-memory-fg);
|
|
3169
|
+
}
|
|
3170
|
+
.qt-queue-badge-embedding {
|
|
3171
|
+
background: var(--qt-queue-badge-embedding-bg);
|
|
3172
|
+
color: var(--qt-queue-badge-embedding-fg);
|
|
3173
|
+
}
|
|
3174
|
+
.qt-queue-badge-summary {
|
|
3175
|
+
background: var(--qt-queue-badge-summary-bg);
|
|
3176
|
+
color: var(--qt-queue-badge-summary-fg);
|
|
3177
|
+
}
|
|
3178
|
+
.qt-queue-badge-danger {
|
|
3179
|
+
background: var(--qt-queue-badge-danger-bg);
|
|
3180
|
+
color: var(--qt-queue-badge-danger-fg);
|
|
3181
|
+
}
|
|
3182
|
+
.qt-queue-badge-story {
|
|
3183
|
+
background: var(--qt-queue-badge-story-bg);
|
|
3184
|
+
color: var(--qt-queue-badge-story-fg);
|
|
3185
|
+
}
|
|
3114
3186
|
.qt-roleplay-1,
|
|
3115
3187
|
.qt-roleplay-2,
|
|
3116
3188
|
.qt-roleplay-3,
|
package/package.json
CHANGED
|
@@ -328,6 +328,8 @@
|
|
|
328
328
|
--qt-queue-badge-group-radius: var(--radius-md);
|
|
329
329
|
--qt-queue-badge-memory-bg: hsl(225 55% 48%);
|
|
330
330
|
--qt-queue-badge-memory-fg: hsl(0 0% 100%);
|
|
331
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 48%);
|
|
332
|
+
--qt-queue-badge-embedding-fg: hsl(0 0% 100%);
|
|
331
333
|
--qt-queue-badge-summary-bg: hsl(152 55% 38%);
|
|
332
334
|
--qt-queue-badge-summary-fg: hsl(0 0% 100%);
|
|
333
335
|
--qt-queue-badge-danger-bg: hsl(0 60% 48%);
|
|
@@ -2804,6 +2806,10 @@
|
|
|
2804
2806
|
background-color: color-mix(in srgb, var(--color-muted) 80%, transparent);
|
|
2805
2807
|
}
|
|
2806
2808
|
|
|
2809
|
+
.hover\:qt-bg-primary:hover {
|
|
2810
|
+
background-color: var(--color-primary);
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2807
2813
|
.hover\:qt-bg-primary\/5:hover {
|
|
2808
2814
|
background-color: color-mix(in srgb, var(--color-primary) 5%, transparent);
|
|
2809
2815
|
}
|
|
@@ -2832,6 +2838,10 @@
|
|
|
2832
2838
|
background-color: color-mix(in srgb, var(--color-destructive) 90%, transparent);
|
|
2833
2839
|
}
|
|
2834
2840
|
|
|
2841
|
+
.hover\:qt-bg-success:hover {
|
|
2842
|
+
background-color: var(--color-success);
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2835
2845
|
.hover\:qt-bg-success\/20:hover {
|
|
2836
2846
|
background-color: color-mix(in srgb, var(--color-success) 20%, transparent);
|
|
2837
2847
|
}
|
|
@@ -3528,6 +3538,13 @@
|
|
|
3528
3538
|
Adjusted colors for dark backgrounds with better contrast
|
|
3529
3539
|
========================================================================== */
|
|
3530
3540
|
.dark {
|
|
3541
|
+
/* Queue status badges — dark mode */
|
|
3542
|
+
--qt-queue-badge-memory-bg: hsl(225 55% 55%);
|
|
3543
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 55%);
|
|
3544
|
+
--qt-queue-badge-summary-bg: hsl(152 50% 42%);
|
|
3545
|
+
--qt-queue-badge-danger-bg: hsl(0 60% 52%);
|
|
3546
|
+
--qt-queue-badge-story-bg: hsl(225 12% 44%);
|
|
3547
|
+
|
|
3531
3548
|
/* Chat: Whisper messages — dark mode */
|
|
3532
3549
|
--qt-chat-whisper-bg: color-mix(in srgb, var(--qt-chat-assistant-bg) 60%, #6b5b95 40%);
|
|
3533
3550
|
--qt-chat-whisper-border: #6b5b95;
|
|
@@ -3937,6 +3954,80 @@
|
|
|
3937
3954
|
color: var(--qt-terminal-closed-badge-fg);
|
|
3938
3955
|
}
|
|
3939
3956
|
|
|
3957
|
+
/* ==========================================================================
|
|
3958
|
+
QUEUE STATUS BADGE GROUP
|
|
3959
|
+
The compact chip group in the page toolbar reporting in-flight background
|
|
3960
|
+
activity per kind (memory, embedding, summarization, the Concierge, images).
|
|
3961
|
+
========================================================================== */
|
|
3962
|
+
.qt-queue-badge-group {
|
|
3963
|
+
display: inline-flex;
|
|
3964
|
+
align-items: center;
|
|
3965
|
+
overflow: hidden;
|
|
3966
|
+
flex-shrink: 0;
|
|
3967
|
+
gap: var(--qt-queue-badge-group-gap);
|
|
3968
|
+
border-radius: var(--qt-queue-badge-group-radius);
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
.qt-queue-badge,
|
|
3972
|
+
.qt-queue-badge-memory,
|
|
3973
|
+
.qt-queue-badge-embedding,
|
|
3974
|
+
.qt-queue-badge-summary,
|
|
3975
|
+
.qt-queue-badge-danger,
|
|
3976
|
+
.qt-queue-badge-story {
|
|
3977
|
+
display: inline-flex;
|
|
3978
|
+
align-items: center;
|
|
3979
|
+
gap: 0.25rem;
|
|
3980
|
+
flex-shrink: 0;
|
|
3981
|
+
line-height: 1;
|
|
3982
|
+
white-space: nowrap;
|
|
3983
|
+
padding: var(--qt-queue-badge-padding-y) var(--qt-queue-badge-padding-x);
|
|
3984
|
+
font-size: var(--qt-queue-badge-font-size);
|
|
3985
|
+
font-weight: var(--qt-queue-badge-font-weight);
|
|
3986
|
+
transition: opacity 200ms ease;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
/* Idle state (count is 0). */
|
|
3990
|
+
.qt-queue-badge-idle {
|
|
3991
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
/* Blip — work that started and finished between two polls of the activity
|
|
3995
|
+
snapshot never shows up as a count, so the badge pulses to mark that it
|
|
3996
|
+
happened. */
|
|
3997
|
+
.qt-queue-badge-pulse {
|
|
3998
|
+
animation: qt-queue-badge-blip 600ms ease-in-out 2;
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
@keyframes qt-queue-badge-blip {
|
|
4002
|
+
0%, 100% { opacity: var(--qt-queue-badge-idle-opacity); }
|
|
4003
|
+
50% { opacity: 1; }
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
.qt-queue-badge-memory {
|
|
4007
|
+
background: var(--qt-queue-badge-memory-bg);
|
|
4008
|
+
color: var(--qt-queue-badge-memory-fg);
|
|
4009
|
+
}
|
|
4010
|
+
|
|
4011
|
+
.qt-queue-badge-embedding {
|
|
4012
|
+
background: var(--qt-queue-badge-embedding-bg);
|
|
4013
|
+
color: var(--qt-queue-badge-embedding-fg);
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
.qt-queue-badge-summary {
|
|
4017
|
+
background: var(--qt-queue-badge-summary-bg);
|
|
4018
|
+
color: var(--qt-queue-badge-summary-fg);
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
.qt-queue-badge-danger {
|
|
4022
|
+
background: var(--qt-queue-badge-danger-bg);
|
|
4023
|
+
color: var(--qt-queue-badge-danger-fg);
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4026
|
+
.qt-queue-badge-story {
|
|
4027
|
+
background: var(--qt-queue-badge-story-bg);
|
|
4028
|
+
color: var(--qt-queue-badge-story-fg);
|
|
4029
|
+
}
|
|
4030
|
+
|
|
3940
4031
|
/* ==========================================================================
|
|
3941
4032
|
ROLEPLAY-TEMPLATE STYLES
|
|
3942
4033
|
The chips + add-on flourishes a roleplay-template delimiter can opt into. In
|