testio-tailwind 3.6.0 → 3.8.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.
Files changed (42) hide show
  1. package/.eleventy.js +2 -1
  2. package/package.json +1 -1
  3. package/src/_includes/example-header-agenticqa.njk +70 -0
  4. package/src/_includes/page-with-sidebar-dark.njk +48 -0
  5. package/src/_layouts/page-example-agenticqa.njk +19 -0
  6. package/src/assets/{stylesheets/components/fonts → fonts}/testio.eot +0 -0
  7. package/src/assets/{stylesheets/components/fonts → fonts}/testio.svg +349 -226
  8. package/src/assets/{stylesheets/components/fonts → fonts}/testio.ttf +0 -0
  9. package/src/assets/{stylesheets/components/fonts → fonts}/testio.woff +0 -0
  10. package/src/assets/fonts/testio.woff2 +0 -0
  11. package/src/assets/images/profilepic_testinator.png +0 -0
  12. package/src/assets/stylesheets/app.css +4 -0
  13. package/src/assets/stylesheets/components/agenticqa/agenticqa_header.css +37 -0
  14. package/src/assets/stylesheets/components/agenticqa/agenticqa_sidebar.css +12 -0
  15. package/src/assets/stylesheets/components/chat.css +115 -7
  16. package/src/assets/stylesheets/components/divider.css +3 -0
  17. package/src/assets/stylesheets/components/iconfont.css +528 -140
  18. package/src/assets/stylesheets/components/icons.css +12 -0
  19. package/src/assets/stylesheets/components/layout.css +11 -1
  20. package/src/assets/stylesheets/components/list_item.css +36 -3
  21. package/src/assets/stylesheets/components/lists.css +2 -2
  22. package/src/assets/stylesheets/components/splitview.css +72 -16
  23. package/src/assets/stylesheets/components/tabs.css +14 -5
  24. package/src/assets/stylesheets/components/tags.css +22 -7
  25. package/src/assets/stylesheets/components/typography.css +1 -1
  26. package/src/assets/stylesheets/components/uploads.css +1 -1
  27. package/src/assets/stylesheets/tailwind_config.css +5 -0
  28. package/src/assets/stylesheets/tailwind_custom_utilities.css +18 -1
  29. package/src/assets/stylesheets/tailwind_theme_dark.css +23 -4
  30. package/src/pages/agenticqa/chat_collapsable.haml +29 -0
  31. package/src/pages/agenticqa/chat_form.haml +15 -0
  32. package/src/pages/agenticqa/chat_history.haml +24 -0
  33. package/src/pages/agenticqa/chat_messages.haml +53 -0
  34. package/src/pages/agenticqa/header.haml +77 -0
  35. package/src/pages/agenticqa/index.njk +1 -1
  36. package/src/pages/agenticqa/listitem.haml +42 -0
  37. package/src/pages/components/splitview_item_collapsable.haml +1 -1
  38. package/src/pages/components/tags.haml +11 -1
  39. package/src/pages/examples/agenticqa.haml +188 -0
  40. package/src/assets/stylesheets/components/fonts/testio.woff2 +0 -0
  41. package/src/static/app.compiled.css +0 -20627
  42. package/src/static/app.compiled.css.map +0 -1
@@ -100,6 +100,18 @@
100
100
  @apply text-danger;
101
101
  }
102
102
 
103
+ .icon.blocked {
104
+ @apply text-blocked;
105
+ }
106
+
107
+ .icon.pending {
108
+ @apply text-pending;
109
+ }
110
+
111
+ .icon.empty {
112
+ @apply text-chart-empty;
113
+ }
114
+
103
115
  /*///// Status Icons /////*/
104
116
 
105
117
  .status-icon {
@@ -1,5 +1,9 @@
1
+ html, body {
2
+ @apply h-full;
3
+ }
4
+
1
5
  .app-body {
2
- @apply grid h-screen max-h-screen w-full overflow-hidden bg-appbody text-appbody-textcolor;
6
+ @apply grid h-screen max-h-full w-full overflow-hidden bg-appbody text-appbody-textcolor;
3
7
  grid-template-areas: "header header header"
4
8
  "sidebar test-header test-header"
5
9
  "sidebar main aside"
@@ -34,4 +38,10 @@
34
38
  @apply pb-lg;
35
39
  }
36
40
 
41
+ .main-content.centered {
42
+ @apply flex justify-center;
43
+ }
37
44
 
45
+ .centered-content {
46
+ @apply relative w-full max-w-centered-content h-fit overflow-hidden;
47
+ }
@@ -71,8 +71,22 @@ a.listitem:hover {
71
71
  mask-image: url("/assets/images/icons/arrow-up.svg");
72
72
  }
73
73
 
74
+ .dark .listitem .collapse-btn:after {
75
+ @apply w-icon bg-label-color;
76
+ mask-image: url("/assets/images/icons/triangle-centered-left.svg");
77
+ }
78
+
79
+ .dark .listitem[open] > .listitem-header .collapse-btn:after {
80
+ mask-image: url("/assets/images/icons/triangle-centered-down.svg");
81
+ }
82
+
83
+ .dark .listitem .collapse-btn:hover:after {
84
+ @apply bg-white;
85
+ }
86
+
87
+
74
88
  .listitem-badge {
75
- @apply flex justify-center items-start w-btn p-xxs pt-xs text-white bg-black dark:bg-gray-700 rounded-l;
89
+ @apply flex justify-center items-start w-btn p-xxs pt-xs text-white dark:font-bold dark:text-heading-5 dark:leading-none bg-black dark:bg-gray-750 rounded-l;
76
90
  grid-area: badge;
77
91
  }
78
92
 
@@ -142,7 +156,7 @@ a.listitem:hover {
142
156
  }
143
157
 
144
158
  .listitem-card {
145
- @apply relative mb-md p-sm bg-appbody rounded last:mb-0;
159
+ @apply relative mb-md p-sm bg-appbody dark:bg-gray-750 rounded last:mb-0;
146
160
  }
147
161
 
148
162
  .listitem-card img {
@@ -154,7 +168,7 @@ a.listitem:hover {
154
168
  }
155
169
 
156
170
  .listitem-subheadline {
157
- @apply mb-xs text-label font-semibold uppercase;
171
+ @apply mb-xs text-label font-semibold uppercase dark:uppercase dark:text-label-color;
158
172
  }
159
173
 
160
174
  .listitem[open] > .listitem-header .listitem-actions .btn,
@@ -302,3 +316,22 @@ a.listitem:hover {
302
316
  .listitem-with-footer .listitem-footer .btn-square {
303
317
  @apply flex-auto flex-grow-0 flex-shrink-0;
304
318
  }
319
+
320
+ /*///// Attachments /////*/
321
+
322
+ .listitem-attachments {
323
+ @apply grid grid-cols-2 gap-xs place-content-start;
324
+ grid-template-columns: auto auto;
325
+ }
326
+
327
+ .listitem-attachments .attachment {
328
+ @apply h-full w-auto max-h-spacing-4xl;
329
+ }
330
+
331
+ .listitem-attachments .attachment .attachment-thumb {
332
+ @apply h-full w-auto;
333
+ }
334
+
335
+ .listitem-attachments .attachment .attachment-thumb img {
336
+ @apply h-full w-auto;
337
+ }
@@ -18,12 +18,12 @@ dl dd {
18
18
  }
19
19
 
20
20
  dl.list-inline {
21
- @apply grid gap-xs content-start;
21
+ @apply grid gap-xs content-start dark:text-label-color;
22
22
  grid-template-columns: auto 1fr;
23
23
  }
24
24
 
25
25
  dl.list-inline dt {
26
- @apply pr-spacing;
26
+ @apply pr-spacing dark:pr-xs dark:pt-[2px];
27
27
  }
28
28
 
29
29
  dl.list-inline dd {
@@ -67,8 +67,6 @@
67
67
  }
68
68
  .splitview-list {
69
69
  display: block;
70
- /* grid-row-start: 3;
71
- grid-row-end: 5; */
72
70
  }
73
71
  }
74
72
 
@@ -113,7 +111,7 @@
113
111
  /*///// Splitview Details /////*/
114
112
 
115
113
  .splitview-details {
116
- @apply grid overflow-hidden h-full max-h-full min-h-0 max-w-full min-w-0 lg:border-l-2 border-bordercolor;
114
+ @apply grid overflow-hidden h-full max-h-full min-h-0 max-w-full min-w-0 lg:border-l-2 border-bordercolor dark:border-none;
117
115
  grid-area: splitview-details;
118
116
  grid-template-areas: "details-content details-metasidebar"
119
117
  "details-actionbar details-actionbar";
@@ -130,8 +128,12 @@
130
128
  grid-template-columns: auto 1fr auto;
131
129
  }
132
130
 
131
+ .dark .splitview-details-header {
132
+ grid-template-columns: 1fr auto;
133
+ }
134
+
133
135
  .splitview-details-title {
134
- @apply text-heading-3;
136
+ @apply text-heading-3 dark:text-card-header;
135
137
  }
136
138
 
137
139
  .splitview-details-header .btn-close-detailview {
@@ -179,6 +181,11 @@
179
181
  }
180
182
  }
181
183
 
184
+ .meta-info {
185
+ @apply grid grid-cols-2 gap-spacing place-content-start place-items-center text-label-color;
186
+ grid-template-columns: auto auto;
187
+ }
188
+
182
189
  .splitview-details-content-grid {
183
190
  @apply grid gap-xs mb-md;
184
191
 
@@ -215,20 +222,14 @@
215
222
  /*///// Splitview item /////*/
216
223
 
217
224
  .splitview-item {
218
- @apply grid p-xs pr-spacing -mx-xs cursor-pointer;
225
+ @apply relative grid p-xs pr-spacing -mx-xs dark:mx-0 dark:mb-1px cursor-pointer dark:bg-listitem dark:rounded;
219
226
  grid-template-areas: "split-check split-icon split-text split-status";
220
227
  grid-template-columns: auto auto 1fr auto;
221
228
  }
222
229
 
223
230
  .splitview-item.selected {
224
- @apply text-white bg-info;
225
- .splitview-item-icon,
226
- .splitview-item-metainfo {
227
- @apply text-white;
228
- }
229
- .status-icon {
230
- @apply bg-white;
231
- }
231
+ @apply text-white bg-info dark:bg-listitem dark:border-r-4 border-link-hover;
232
+
232
233
  .splitview-item-checkbox input {
233
234
  @apply border-white;
234
235
  }
@@ -240,6 +241,16 @@
240
241
  }
241
242
  }
242
243
 
244
+ body:not(.dark) .splitview-item.selected {
245
+ .splitview-item-icon,
246
+ .splitview-item-metainfo {
247
+ @apply text-white;
248
+ }
249
+ .status-icon {
250
+ @apply bg-white;
251
+ }
252
+ }
253
+
243
254
  .splitview-item:hover {
244
255
  @apply text-white bg-link-hover;
245
256
 
@@ -259,6 +270,9 @@
259
270
  .splitview-item-checkbox input[type=checkbox]:checked::after {
260
271
  @apply bg-info;
261
272
  }
273
+ .splitview-item-status {
274
+ @apply text-white;
275
+ }
262
276
  }
263
277
 
264
278
  .splitview-item-checkbox {
@@ -280,7 +294,7 @@
280
294
  }
281
295
 
282
296
  .splitview-item-title {
283
- overflow: hidden;
297
+ @apply dark:text-heading-5 dark:font-headings overflow-hidden;
284
298
  display: -webkit-box;
285
299
  -webkit-box-orient: vertical;
286
300
  line-clamp: 4;
@@ -293,7 +307,7 @@
293
307
  }
294
308
 
295
309
  .splitview-item-status {
296
- @apply flex flex-col items-end w-spacing;
310
+ @apply flex flex-col items-end w-spacing dark:w-auto dark:text-label-color;
297
311
  grid-area: split-status;
298
312
  }
299
313
 
@@ -305,8 +319,27 @@
305
319
  @apply mt-xxs;
306
320
  }
307
321
 
322
+ .splitview-item.unread::after {
323
+ @apply absolute w-xxs h-xxs bg-purple rounded-full;
324
+ content: "";
325
+ top: 7px;
326
+ right: 7px;
327
+ }
328
+
329
+ .splitview-item:hover::after {
330
+ @apply bg-white;
331
+ }
332
+
308
333
  /*///// Collapsable splitview item/group /////*/
309
334
 
335
+ .splitview-group {
336
+ @apply dark:mb-xs dark:last:mb-0;
337
+ }
338
+
339
+ .splitview-group summary.splitview-item {
340
+ @apply dark:pl-lg;
341
+ }
342
+
310
343
  .splitview-group > summary::before {
311
344
  @apply inline-block w-icon h-icon mr-xxs bg-primary;
312
345
  content: "";
@@ -314,6 +347,14 @@
314
347
  mask-image: url("/assets/images/icons/triangle-centered-right.svg");
315
348
  }
316
349
 
350
+ .dark .splitview-group > summary::before {
351
+ @apply absolute top-xs left-md bg-label-color;
352
+ }
353
+
354
+ .splitview-group[open] > summary {
355
+ @apply rounded-b-none;
356
+ }
357
+
317
358
  .splitview-group[open] > summary::before {
318
359
  mask-image: url("/assets/images/icons/triangle-centered-down.svg");
319
360
  }
@@ -323,5 +364,20 @@
323
364
  }
324
365
 
325
366
  .splitview-group .splitview-item:not(summary) {
326
- padding-left: 65px;
367
+ @apply pl-[65px] dark:pl-lg dark:rounded-none dark:last:rounded-b;
327
368
  }
369
+
370
+
371
+ /*///// Grid split /////*/
372
+
373
+ .grid-splitview {
374
+ @apply grid grid-cols-2 lg:grid-cols-5 gap-grid-gutter;
375
+ }
376
+
377
+ .grid-splitview .splitview-list {
378
+ @apply col-span-1 lg:col-span-2 overflow-y-visible h-fit;
379
+ }
380
+
381
+ .grid-splitview .splitview-details {
382
+ @apply block col-span-1 lg:col-span-3 h-auto min-h-auto overflow-y-visible;
383
+ }
@@ -6,7 +6,7 @@
6
6
  }
7
7
 
8
8
  .nav-tabs {
9
- @apply border-b border-bordercolor;
9
+ @apply border-b border-bordercolor dark:border-none dark:-ml-sm;
10
10
  }
11
11
 
12
12
  .nav-tabs::after {
@@ -15,6 +15,16 @@
15
15
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
16
16
  }
17
17
 
18
+ .dark .nav-tabs::after {
19
+ @apply hidden;
20
+ }
21
+
22
+ .dark .nav-tabs .navlink.active::after {
23
+ @apply absolute block left-sm right-sm bottom-0 bg-link-hover;
24
+ content: '';
25
+ height: 2px;
26
+ }
27
+
18
28
  .nav-tabs::-webkit-scrollbar,
19
29
  .nav-pills::-webkit-scrollbar,
20
30
  .nav-tabs .navlinks::-webkit-scrollbar {
@@ -25,17 +35,16 @@
25
35
 
26
36
  .nav-tabs .navlink,
27
37
  .nav-tabs .nav-link {
28
- @apply inline-flex items-start whitespace-nowrap mr-md h-spacing text-primary text-heading-5 font-headings border-b border-link-hover rounded-none cursor-pointer;
29
- margin-bottom: -1px;
38
+ @apply relative inline-flex items-start dark:items-center mr-md dark:mr-0 -mb-1px dark:mb-0 h-spacing dark:h-[34px] text-primary dark:text-label-color dark:px-sm dark:rounded-full whitespace-nowrap text-heading-5 font-headings dark:uppercase border-b border-link-hover dark:border-none rounded-none cursor-pointer;
30
39
  line-height: 1;
31
40
  user-select: none;
32
41
 
33
42
  &.active {
34
- @apply border-b-4 border-info;
43
+ @apply border-b-4 dark:border-b-2 border-info dark:border-none dark:text-white;
35
44
  }
36
45
 
37
46
  &:hover, &:focus {
38
- @apply text-link-hover border-b-4 border-link-hover;
47
+ @apply text-link-hover border-b-4 dark:border-none border-link-hover dark:bg-link-hover dark:text-white;
39
48
  }
40
49
 
41
50
  &.disabled, &.disabled:hover, &.disabled:focus {
@@ -7,14 +7,13 @@
7
7
  }
8
8
 
9
9
  .tag {
10
- @apply inline-flex items-center flex-row h-md px-xs text-sm leading-none bg-tag text-appbody-textcolor rounded;
11
- padding-top: 2px;
12
- padding-bottom: 2px;
10
+ @apply inline-flex items-center flex-row px-xs dark:px-sm text-sm dark:text-base leading-normal bg-tag text-appbody-textcolor rounded;
11
+ padding-top: 3px;
12
+ padding-bottom: 3px;
13
13
  }
14
14
 
15
15
  .tag .icon {
16
- height: var(--font-size-icon-xs);
17
- font-size: var(--font-size-icon-xs);
16
+ @apply mr-icon-spacing h-icon-xs dark:h-icon text-icon-xs dark:text-icon;
18
17
  }
19
18
 
20
19
  .tag.sm {
@@ -36,7 +35,7 @@
36
35
  }
37
36
 
38
37
  .tag.popover-tag:hover {
39
- @apply bg-link-hover text-white;
38
+ @apply bg-link-hover! text-white;
40
39
  }
41
40
 
42
41
  .tag.popover-tag .icon {
@@ -46,5 +45,21 @@
46
45
  }
47
46
 
48
47
  .tag.popover-tag:hover .icon {
49
- @apply text-white;
48
+ @apply text-white!;
49
+ }
50
+
51
+ .tag.success {
52
+ @apply bg-success text-black;
53
+ }
54
+
55
+ .tag.danger {
56
+ @apply bg-danger text-white;
57
+ }
58
+
59
+ .tag.pending {
60
+ @apply bg-pending text-black;
61
+ }
62
+
63
+ .tag.light {
64
+ @apply bg-gray-lightest dark:bg-gray-darker text-black dark:text-white;
50
65
  }
@@ -53,7 +53,7 @@ code {
53
53
  }
54
54
 
55
55
  .label, .form-label, dt {
56
- @apply text-label-color text-label font-semibold;
56
+ @apply text-label-color text-label font-semibold dark:uppercase;
57
57
  }
58
58
 
59
59
  .link-with-icon {
@@ -21,7 +21,7 @@
21
21
  @apply relative inline-flex flex-col h-auto w-xxl overflow-visible rounded;
22
22
 
23
23
  & .attachment-thumb {
24
- @apply relative flex justify-center items-center w-xxl h-xxl overflow-hidden border-1 border-primary bg-primary rounded text-white;
24
+ @apply relative flex justify-center items-center w-xxl h-xxl overflow-hidden border-1 border-primary bg-primary rounded text-white dark:border-bordercolor;
25
25
 
26
26
  & .icon {
27
27
  @apply text-icon-lg;
@@ -11,6 +11,7 @@
11
11
  --color-gray-500: #888888;
12
12
  --color-gray-600: #5f656d;
13
13
  --color-gray-700: #343A40;
14
+ --color-gray-750: #2E2E2E;
14
15
  --color-gray-800: #262626;
15
16
  --color-gray-900: #222222;
16
17
  --color-gray-lightest: #f2f2f2;
@@ -64,6 +65,8 @@
64
65
  --color-bordercolor-dark: #D4D6DC;
65
66
  --color-success: #8cbd24;
66
67
  --color-danger: #ec0404;
68
+ --color-blocked: #f48d21;
69
+ --color-pending: #888888;
67
70
  --color-disabled: #bfc1c5;
68
71
  --color-disabled-dark: #5f656d;
69
72
  --color-placeholder: #bfc1c5;
@@ -203,6 +206,7 @@
203
206
  --spacing-card-md: 17.5rem;
204
207
  --spacing-card-sm: 11.25rem;
205
208
  --spacing-card-xs: 5rem;
209
+ --card-padding: 30px;
206
210
  --spacing-1px: 1px;
207
211
  --spacing-modal-lg: 75rem;
208
212
  --spacing-modal-md: 43.75rem;
@@ -277,6 +281,7 @@
277
281
  --max-w-card-sm: 11.25rem;
278
282
  --max-w-card-xs: 5rem;
279
283
  --max-w-capped: 43.75rem;
284
+ --max-w-centered-content: 1600px;
280
285
  --shadow-DEFAULT: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0, 0, 0, 0.05);
281
286
 
282
287
  /*//// Grid ////*/
@@ -101,6 +101,11 @@
101
101
  @utility text-purple-light { color: var(--color-purple-light); }
102
102
  @utility text-purple-500 { color: var(--color-purple-500); }
103
103
  @utility text-purple { color: var(--color-purple-DEFAULT); }
104
+ @utility text-blocked { color: var(--color-blocked); }
105
+ @utility text-pending { color: var(--color-pending); }
106
+ @utility text-chart-empty { color: var(--color-chart-empty); }
107
+
108
+
104
109
 
105
110
  @utility border-transparent { border-color: var(--color-transparent); }
106
111
  @utility border-current { border-color: var(--color-current); }
@@ -183,9 +188,18 @@
183
188
  @utility text-display-3 { font-size: var(--font-size-display-3); }
184
189
  @utility text-display-4 { font-size: var(--font-size-display-4); }
185
190
  @utility text-hidden { font-size: var(--font-size-hidden); }
191
+ @utility text-card-header {
192
+ font-size: var(--fontsize-card-header);
193
+ font-weight: var( --font-weight-headings);
194
+ text-transform: uppercase;
195
+ }
196
+
186
197
 
198
+ /* Padding */
199
+ @utility p-card-padding { padding: var(--card-padding); }
187
200
 
188
- /* Spacing classes */
201
+
202
+ /* min width */
189
203
  @utility min-w-auto { min-width: var(--min-w-auto); }
190
204
  @utility min-w-btn { min-width: var(--min-w-btn); }
191
205
  @utility min-w-btn-sm { min-width: var(--min-w-btn-sm); }
@@ -235,6 +249,8 @@
235
249
  @utility min-h-lg { min-height: var(--min-h-lg); }
236
250
  @utility min-h-xl { min-height: var(--min-h-xl); }
237
251
  @utility min-h-xxl { min-height: var(--min-h-xxl); }
252
+
253
+ /* max width */
238
254
  @utility max-w-1/2 { max-width: var(--max-w-1/2); }
239
255
  @utility max-w-2/3 { max-width: var(--max-w-2/3); }
240
256
  @utility max-w-8 { max-width: var(--max-w-8); }
@@ -250,6 +266,7 @@
250
266
  @utility max-w-card-sm { max-width: var(--max-w-card-sm); }
251
267
  @utility max-w-card-xs { max-width: var(--max-w-card-xs); }
252
268
  @utility max-w-capped { max-width: var(--max-w-capped); }
269
+ @utility max-w-centered-content { max-width: var(--max-w-centered-content); }
253
270
 
254
271
  /* Grid classes */
255
272
  @utility grid-cols-3-1 { grid-template-columns: var(--grid-cols-3-1); }
@@ -2,22 +2,41 @@
2
2
  @layer theme {
3
3
  .dark {
4
4
  /* Colors */
5
- --color-appbody: #1d1d1d;
5
+ --color-appbody: #181818;
6
6
  --color-appbody-textcolor: #f2f2f2;
7
+ --color-header: #1d1d1d;
7
8
  --color-actionbar: #343A40;
8
9
  --color-metasidebar: #262626;
9
10
  --color-primary: #78eac1;
10
11
  --color-link: #8988eb;
11
12
  --color-link-hover: #7954ff;
12
- --color-bordercolor: #343A40;
13
+ --color-bordercolor: #2E2E2E;
13
14
  --color-card: #262626;
14
15
  --color-disabled: #5f656d;
15
16
  --color-listitem: #343A40;
16
17
  --color-placeholder: #5f656d;
17
- --color-tag: #5f656d;
18
- --color-label-color: #bfc1c5;
18
+ --color-tag: #262626;
19
+ --color-label-color: #888888;
20
+ --color-success: #33BA9E;
21
+ --color-danger: #FF3131;
22
+ --color-blocked: #F48D21;
23
+ --color-pending: #888888;
24
+ --color-chart-empty: #2E2E2E;
25
+ --color-info: #326dd1;
26
+ --color-dark: #222222;
27
+ --color-card: #1D1D1D;
28
+ --color-listitem: #262626;
19
29
 
20
30
  /*//// Border radius ////*/
21
31
  --radius: 12px;
32
+
33
+ /*//// Spacing ////*/
34
+ --card-padding: 30px;
35
+ --spacing-grid-gutter: 40px;
36
+
37
+
38
+ /*//// Fontsize ////*/
39
+ --fontsize-card-header: 1.125rem;
40
+ --font-size-label: 0.75rem;
22
41
  }
23
42
  }
@@ -0,0 +1,29 @@
1
+ ---
2
+ tags: agenticqa
3
+ title: Chat collapsable
4
+ ---
5
+
6
+ .list-chat-messages.full-width
7
+ .chat-message-item.collapsable
8
+ %details
9
+ %summary.chat-header
10
+ %span.chat-title.label Collapsable message
11
+ %span.label 5 mins ago
12
+ .chat-message
13
+ Here's a short message.
14
+ .chat-message-item.collapsable
15
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
16
+ %details
17
+ %summary.chat-header
18
+ %span.chat-title.label Collapsable message
19
+ %span.label 5 mins ago
20
+ .chat-message
21
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
22
+ .chat-message-item.collapsable.your-message
23
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
24
+ %details
25
+ %summary.chat-header
26
+ %span.chat-title.label Collapsable message
27
+ %span.label 5 mins ago
28
+ .chat-message
29
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
@@ -0,0 +1,15 @@
1
+ ---
2
+ tags: agenticqa
3
+ title: Chat form
4
+ ---
5
+
6
+ .chat-form-row
7
+ %form.chat-form
8
+ %h5.text-card-header.mb-xxs Re-Run this check
9
+ %p.font-light.mb-md Add additional instructions for re-running this check.
10
+ %textarea.form-control{placeholder:"Add your instructions or feedback for Testinator"}
11
+ .form-actions
12
+ %a.btn.btn-primary.rounded-full
13
+ %span.icon.icon-sync.mr-icon-spacing
14
+ re-run check
15
+ %button.btn.btn-secondary.rounded-full Cancel
@@ -0,0 +1,24 @@
1
+ ---
2
+ tags: agenticqa
3
+ title: Chat history
4
+ ---
5
+
6
+ .card.p-card-padding
7
+ %details.chat-history-collapsable
8
+ %summary.chat-history-header
9
+ .chat-history-title Show complete history
10
+ .list-chat-messages.full-width
11
+ .chat-message-item
12
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
13
+ .chat-header
14
+ %span.chat-title.label Justification
15
+ %span.label 5 mins ago
16
+ .chat-message
17
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
18
+ .chat-message-item.your-message
19
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
20
+ .chat-header
21
+ %span.chat-title.label Justification
22
+ %span.label 5 mins ago
23
+ .chat-message
24
+ Here's a short message with bits of lorem ipsum.
@@ -0,0 +1,53 @@
1
+ ---
2
+ tags: agenticqa
3
+ title: Chat messages
4
+ ---
5
+
6
+ .list-chat-messages.full-width
7
+ .chat-message-item
8
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
9
+ .chat-header
10
+ %span.chat-title.label Justification
11
+ %span.label 5 mins ago
12
+ .chat-message
13
+ Here's a short message with bits of lorem ipsum.
14
+ .chat-message-item
15
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
16
+ .chat-header
17
+ %span.chat-title.label Justification
18
+ %span.label 5 mins ago
19
+ .chat-message
20
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
21
+ .chat-message-item.your-message
22
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
23
+ .chat-header
24
+ %span.chat-title.label Justification
25
+ %span.label 5 mins ago
26
+ .chat-message
27
+ Here's a short message with bits of lorem ipsum.
28
+ .chat-message-item.your-message
29
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
30
+ .chat-header
31
+ %span.chat-title.label Justification
32
+ %span.label 5 mins ago
33
+ .chat-message
34
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
35
+ .chat-message-item.collapsable.your-message
36
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
37
+ %details
38
+ %summary.chat-header
39
+ %span.chat-title.label Collapsable message
40
+ %span.label 5 mins ago
41
+ .chat-message
42
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
43
+ .chat-message-item.collapsable
44
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
45
+ %details
46
+ %summary.chat-header
47
+ %span.chat-title.label Collapsable message
48
+ %span.label 5 mins ago
49
+ .chat-message
50
+ Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
51
+ .chat-action-row
52
+ %a.btn.btn-primary.rounded-full re-run check
53
+ %a.btn.btn-secondary.rounded-full update check