@quilltap/theme-storybook 1.0.63 → 1.0.64
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 +66 -0
- package/package.json +1 -1
- package/src/css/qt-components.css +83 -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%);
|
|
@@ -2810,6 +2812,11 @@ body {
|
|
|
2810
2812
|
}
|
|
2811
2813
|
}
|
|
2812
2814
|
.dark {
|
|
2815
|
+
--qt-queue-badge-memory-bg: hsl(225 55% 55%);
|
|
2816
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 55%);
|
|
2817
|
+
--qt-queue-badge-summary-bg: hsl(152 50% 42%);
|
|
2818
|
+
--qt-queue-badge-danger-bg: hsl(0 60% 52%);
|
|
2819
|
+
--qt-queue-badge-story-bg: hsl(225 12% 44%);
|
|
2813
2820
|
--qt-chat-whisper-bg: color-mix(in srgb, var(--qt-chat-assistant-bg) 60%, #6b5b95 40%);
|
|
2814
2821
|
--qt-chat-whisper-border: #6b5b95;
|
|
2815
2822
|
--qt-chat-whisper-label-fg: #b5a9d1;
|
|
@@ -3111,6 +3118,65 @@ body {
|
|
|
3111
3118
|
background-color: var(--qt-terminal-closed-badge-bg);
|
|
3112
3119
|
color: var(--qt-terminal-closed-badge-fg);
|
|
3113
3120
|
}
|
|
3121
|
+
.qt-queue-badge-group {
|
|
3122
|
+
display: inline-flex;
|
|
3123
|
+
align-items: center;
|
|
3124
|
+
overflow: hidden;
|
|
3125
|
+
flex-shrink: 0;
|
|
3126
|
+
gap: var(--qt-queue-badge-group-gap);
|
|
3127
|
+
border-radius: var(--qt-queue-badge-group-radius);
|
|
3128
|
+
}
|
|
3129
|
+
.qt-queue-badge,
|
|
3130
|
+
.qt-queue-badge-memory,
|
|
3131
|
+
.qt-queue-badge-embedding,
|
|
3132
|
+
.qt-queue-badge-summary,
|
|
3133
|
+
.qt-queue-badge-danger,
|
|
3134
|
+
.qt-queue-badge-story {
|
|
3135
|
+
display: inline-flex;
|
|
3136
|
+
align-items: center;
|
|
3137
|
+
gap: 0.25rem;
|
|
3138
|
+
flex-shrink: 0;
|
|
3139
|
+
line-height: 1;
|
|
3140
|
+
white-space: nowrap;
|
|
3141
|
+
padding: var(--qt-queue-badge-padding-y) var(--qt-queue-badge-padding-x);
|
|
3142
|
+
font-size: var(--qt-queue-badge-font-size);
|
|
3143
|
+
font-weight: var(--qt-queue-badge-font-weight);
|
|
3144
|
+
transition: opacity 200ms ease;
|
|
3145
|
+
}
|
|
3146
|
+
.qt-queue-badge-idle {
|
|
3147
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3148
|
+
}
|
|
3149
|
+
.qt-queue-badge-pulse {
|
|
3150
|
+
animation: qt-queue-badge-blip 600ms ease-in-out 2;
|
|
3151
|
+
}
|
|
3152
|
+
@keyframes qt-queue-badge-blip {
|
|
3153
|
+
0%, 100% {
|
|
3154
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3155
|
+
}
|
|
3156
|
+
50% {
|
|
3157
|
+
opacity: 1;
|
|
3158
|
+
}
|
|
3159
|
+
}
|
|
3160
|
+
.qt-queue-badge-memory {
|
|
3161
|
+
background: var(--qt-queue-badge-memory-bg);
|
|
3162
|
+
color: var(--qt-queue-badge-memory-fg);
|
|
3163
|
+
}
|
|
3164
|
+
.qt-queue-badge-embedding {
|
|
3165
|
+
background: var(--qt-queue-badge-embedding-bg);
|
|
3166
|
+
color: var(--qt-queue-badge-embedding-fg);
|
|
3167
|
+
}
|
|
3168
|
+
.qt-queue-badge-summary {
|
|
3169
|
+
background: var(--qt-queue-badge-summary-bg);
|
|
3170
|
+
color: var(--qt-queue-badge-summary-fg);
|
|
3171
|
+
}
|
|
3172
|
+
.qt-queue-badge-danger {
|
|
3173
|
+
background: var(--qt-queue-badge-danger-bg);
|
|
3174
|
+
color: var(--qt-queue-badge-danger-fg);
|
|
3175
|
+
}
|
|
3176
|
+
.qt-queue-badge-story {
|
|
3177
|
+
background: var(--qt-queue-badge-story-bg);
|
|
3178
|
+
color: var(--qt-queue-badge-story-fg);
|
|
3179
|
+
}
|
|
3114
3180
|
.qt-roleplay-1,
|
|
3115
3181
|
.qt-roleplay-2,
|
|
3116
3182
|
.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%);
|
|
@@ -3528,6 +3530,13 @@
|
|
|
3528
3530
|
Adjusted colors for dark backgrounds with better contrast
|
|
3529
3531
|
========================================================================== */
|
|
3530
3532
|
.dark {
|
|
3533
|
+
/* Queue status badges — dark mode */
|
|
3534
|
+
--qt-queue-badge-memory-bg: hsl(225 55% 55%);
|
|
3535
|
+
--qt-queue-badge-embedding-bg: hsl(270 50% 55%);
|
|
3536
|
+
--qt-queue-badge-summary-bg: hsl(152 50% 42%);
|
|
3537
|
+
--qt-queue-badge-danger-bg: hsl(0 60% 52%);
|
|
3538
|
+
--qt-queue-badge-story-bg: hsl(225 12% 44%);
|
|
3539
|
+
|
|
3531
3540
|
/* Chat: Whisper messages — dark mode */
|
|
3532
3541
|
--qt-chat-whisper-bg: color-mix(in srgb, var(--qt-chat-assistant-bg) 60%, #6b5b95 40%);
|
|
3533
3542
|
--qt-chat-whisper-border: #6b5b95;
|
|
@@ -3937,6 +3946,80 @@
|
|
|
3937
3946
|
color: var(--qt-terminal-closed-badge-fg);
|
|
3938
3947
|
}
|
|
3939
3948
|
|
|
3949
|
+
/* ==========================================================================
|
|
3950
|
+
QUEUE STATUS BADGE GROUP
|
|
3951
|
+
The compact chip group in the page toolbar reporting in-flight background
|
|
3952
|
+
activity per kind (memory, embedding, summarization, the Concierge, images).
|
|
3953
|
+
========================================================================== */
|
|
3954
|
+
.qt-queue-badge-group {
|
|
3955
|
+
display: inline-flex;
|
|
3956
|
+
align-items: center;
|
|
3957
|
+
overflow: hidden;
|
|
3958
|
+
flex-shrink: 0;
|
|
3959
|
+
gap: var(--qt-queue-badge-group-gap);
|
|
3960
|
+
border-radius: var(--qt-queue-badge-group-radius);
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
.qt-queue-badge,
|
|
3964
|
+
.qt-queue-badge-memory,
|
|
3965
|
+
.qt-queue-badge-embedding,
|
|
3966
|
+
.qt-queue-badge-summary,
|
|
3967
|
+
.qt-queue-badge-danger,
|
|
3968
|
+
.qt-queue-badge-story {
|
|
3969
|
+
display: inline-flex;
|
|
3970
|
+
align-items: center;
|
|
3971
|
+
gap: 0.25rem;
|
|
3972
|
+
flex-shrink: 0;
|
|
3973
|
+
line-height: 1;
|
|
3974
|
+
white-space: nowrap;
|
|
3975
|
+
padding: var(--qt-queue-badge-padding-y) var(--qt-queue-badge-padding-x);
|
|
3976
|
+
font-size: var(--qt-queue-badge-font-size);
|
|
3977
|
+
font-weight: var(--qt-queue-badge-font-weight);
|
|
3978
|
+
transition: opacity 200ms ease;
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
/* Idle state (count is 0). */
|
|
3982
|
+
.qt-queue-badge-idle {
|
|
3983
|
+
opacity: var(--qt-queue-badge-idle-opacity);
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
/* Blip — work that started and finished between two polls of the activity
|
|
3987
|
+
snapshot never shows up as a count, so the badge pulses to mark that it
|
|
3988
|
+
happened. */
|
|
3989
|
+
.qt-queue-badge-pulse {
|
|
3990
|
+
animation: qt-queue-badge-blip 600ms ease-in-out 2;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
@keyframes qt-queue-badge-blip {
|
|
3994
|
+
0%, 100% { opacity: var(--qt-queue-badge-idle-opacity); }
|
|
3995
|
+
50% { opacity: 1; }
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
.qt-queue-badge-memory {
|
|
3999
|
+
background: var(--qt-queue-badge-memory-bg);
|
|
4000
|
+
color: var(--qt-queue-badge-memory-fg);
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.qt-queue-badge-embedding {
|
|
4004
|
+
background: var(--qt-queue-badge-embedding-bg);
|
|
4005
|
+
color: var(--qt-queue-badge-embedding-fg);
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
.qt-queue-badge-summary {
|
|
4009
|
+
background: var(--qt-queue-badge-summary-bg);
|
|
4010
|
+
color: var(--qt-queue-badge-summary-fg);
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
.qt-queue-badge-danger {
|
|
4014
|
+
background: var(--qt-queue-badge-danger-bg);
|
|
4015
|
+
color: var(--qt-queue-badge-danger-fg);
|
|
4016
|
+
}
|
|
4017
|
+
|
|
4018
|
+
.qt-queue-badge-story {
|
|
4019
|
+
background: var(--qt-queue-badge-story-bg);
|
|
4020
|
+
color: var(--qt-queue-badge-story-fg);
|
|
4021
|
+
}
|
|
4022
|
+
|
|
3940
4023
|
/* ==========================================================================
|
|
3941
4024
|
ROLEPLAY-TEMPLATE STYLES
|
|
3942
4025
|
The chips + add-on flourishes a roleplay-template delimiter can opt into. In
|