testio-tailwind 3.7.0 → 3.9.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/package.json +1 -1
- package/src/_includes/page-with-sidebar-dark.njk +48 -0
- package/src/_layouts/page-example-agenticqa.njk +1 -1
- package/src/assets/images/profilepic_testinator.png +0 -0
- package/src/assets/stylesheets/app.css +3 -1
- package/src/assets/stylesheets/components/agenticqa/agenticqa_pageheader.css +48 -0
- package/src/assets/stylesheets/components/buttons.css +2 -1
- package/src/assets/stylesheets/components/chat.css +115 -7
- package/src/assets/stylesheets/components/divider.css +3 -0
- package/src/assets/stylesheets/components/forms.css +1 -1
- package/src/assets/stylesheets/components/layout.css +1 -1
- package/src/assets/stylesheets/components/list_item.css +34 -1
- package/src/assets/stylesheets/components/lists.css +3 -3
- package/src/assets/stylesheets/components/splitview.css +45 -7
- package/src/assets/stylesheets/components/tags.css +22 -7
- package/src/assets/stylesheets/components/typography.css +1 -1
- package/src/assets/stylesheets/components/uploads.css +1 -1
- package/src/assets/stylesheets/tailwind_config.css +2 -0
- package/src/assets/stylesheets/tailwind_theme_dark.css +3 -2
- package/src/pages/agenticqa/chat_collapsable.haml +29 -0
- package/src/pages/agenticqa/chat_form.haml +15 -0
- package/src/pages/agenticqa/chat_history.haml +24 -0
- package/src/pages/agenticqa/chat_messages.haml +53 -0
- package/src/pages/agenticqa/index.njk +1 -1
- package/src/pages/agenticqa/listitem.haml +42 -0
- package/src/pages/agenticqa/pageheader.haml +95 -0
- package/src/pages/components/tags.haml +11 -1
- package/src/pages/examples/agenticqa.haml +192 -4
- package/src/static/app.compiled.css +0 -20627
- package/src/static/app.compiled.css.map +0 -1
package/package.json
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
<nav class="sidebar manager">
|
|
3
|
+
<div class="navlinks">
|
|
4
|
+
{% set sortedSections = collection | sort(attribute='data.title') %}
|
|
5
|
+
{% for section in sortedSections %}
|
|
6
|
+
<a class="navlink" href="#{{ section.data.title }}">{{ section.data.title }}</a>
|
|
7
|
+
{% endfor %}
|
|
8
|
+
</div>
|
|
9
|
+
</nav>
|
|
10
|
+
|
|
11
|
+
<main tabindex="-1" id="main-content" class="main-content main-content-padding">
|
|
12
|
+
<article class="">
|
|
13
|
+
|
|
14
|
+
{% for item in navigation.items %}
|
|
15
|
+
{% if page.url == item.url %}
|
|
16
|
+
<h1 class="mb-heading">{{ item.text }}</h1>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endfor %}
|
|
19
|
+
|
|
20
|
+
{% set sortedSections = collection | sort(attribute='data.title') %}
|
|
21
|
+
{% for section in sortedSections %}
|
|
22
|
+
<section class="section" id="{{ section.data.title }}">
|
|
23
|
+
<div class="section-header">
|
|
24
|
+
<h4 class="section-title">{{ section.data.title }}</h2>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
{% if section.data.type == 'block' %}
|
|
28
|
+
{% set direction = 'y' %}
|
|
29
|
+
{% else %}
|
|
30
|
+
{% set direction = 'x' %}
|
|
31
|
+
{% endif %}
|
|
32
|
+
{{ section.templateContent | safe }}
|
|
33
|
+
|
|
34
|
+
<details class="mt-3">
|
|
35
|
+
<summary class="btn btn-sm btn-secondary inline-block cursor-pointer mb-2">
|
|
36
|
+
Show source
|
|
37
|
+
</summary>
|
|
38
|
+
<div class="prose max-w-none bg-gray-light p-2 rounded mb-1">
|
|
39
|
+
<pre><code class="html-preview">{{ section.templateContent | trim }}</code></pre>
|
|
40
|
+
</div>
|
|
41
|
+
</details>
|
|
42
|
+
</section>
|
|
43
|
+
{%- endfor -%}
|
|
44
|
+
</article>
|
|
45
|
+
</main>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
Binary file
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
@import './components/chat.css' layer(components);
|
|
31
31
|
@import './components/checkboxes_radiobuttons.css' layer(components);
|
|
32
32
|
@import './components/devices.css' layer(components);
|
|
33
|
+
@import './components/divider.css' layer(components);
|
|
33
34
|
@import './components/drawer.css' layer(components);
|
|
34
35
|
@import './components/dropdown.css' layer(components);
|
|
35
36
|
@import './components/emptystate_message.css' layer(components);
|
|
@@ -91,4 +92,5 @@
|
|
|
91
92
|
|
|
92
93
|
/*//// Agentic QA components ////*/
|
|
93
94
|
@import './components/agenticqa/agenticqa_header.css' layer(components);
|
|
94
|
-
@import './components/agenticqa/agenticqa_sidebar.css' layer(components);
|
|
95
|
+
@import './components/agenticqa/agenticqa_sidebar.css' layer(components);
|
|
96
|
+
@import './components/agenticqa/agenticqa_pageheader.css' layer(components);
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
.page-header {
|
|
3
|
+
@apply grid lg:grid-cols-5 gap-xs lg:gap-grid-gutter mb-grid-gutter;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.page-header .page-maincard {
|
|
7
|
+
@apply lg:col-span-4;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.page-session-title {
|
|
11
|
+
@apply mb-sm;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.page-meta-info {
|
|
15
|
+
@apply grid grid-cols-2 xl:grid-cols-6 gap-xs place-content-start mb-xs;
|
|
16
|
+
grid-template-columns: auto auto;
|
|
17
|
+
@media (width >= theme(--breakpoint-xl)) {
|
|
18
|
+
grid-template-columns: auto auto auto auto auto auto;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.page-meta-info dt {
|
|
23
|
+
@apply pr-xs;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.page-meta-info dd {
|
|
27
|
+
@apply mb-0 pr-lg text-label-color;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.page-meta-info .row-testsuite {
|
|
31
|
+
@apply xl:col-span-5;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.page-actions {
|
|
35
|
+
@apply flex flex-row lg:flex-col h-full;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.page-actions .btn {
|
|
39
|
+
@apply justify-center text-center ml-xxs first:ml-0 mr-xxs last:mr-0 lg:mx-0 lg:mb-xs lg:last:mb-0 w-full border-bordercolor;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.page-actions .btn-main {
|
|
43
|
+
@apply flex-grow lg:flex-col;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.page-actions .btn-main .icon {
|
|
47
|
+
@apply hidden lg:block lg:mb-sm lg:h-icon-xl lg:text-icon-xl;
|
|
48
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
.btn,
|
|
2
2
|
input.btn,
|
|
3
3
|
input[type="submit"].btn {
|
|
4
|
-
@apply inline-flex justify-start items-center h-btn px-md font-body font-semibold text-buttons whitespace-nowrap text-primary border-0 rounded cursor-pointer select-none
|
|
4
|
+
@apply inline-flex justify-start items-center h-btn px-md font-body font-semibold text-buttons whitespace-nowrap text-primary border-0 rounded cursor-pointer select-none
|
|
5
|
+
dark:uppercase;
|
|
5
6
|
|
|
6
7
|
&:hover,
|
|
7
8
|
&:focus,
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
.list-chat-messages {
|
|
2
|
-
@apply grid gap-md;
|
|
2
|
+
@apply grid grid-cols-1 gap-md;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.list-chat-messages.full-width .chat-message-item {
|
|
6
|
+
@apply max-w-full;
|
|
3
7
|
}
|
|
4
8
|
|
|
5
9
|
.chat-message-item {
|
|
@@ -11,16 +15,23 @@
|
|
|
11
15
|
grid-template-columns: auto auto 1fr;
|
|
12
16
|
}
|
|
13
17
|
|
|
18
|
+
.dark .chat-message-item {
|
|
19
|
+
grid-template-areas: "chat-avatar chat-header"
|
|
20
|
+
"chat-avatar chat-message";
|
|
21
|
+
grid-template-columns: auto auto 1fr;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
14
25
|
.chat-avatar {
|
|
15
26
|
grid-area: chat-avatar;
|
|
16
27
|
}
|
|
17
28
|
|
|
18
29
|
img.chat-avatar {
|
|
19
|
-
@apply w-spacing h-spacing mr-xs rounded-full;
|
|
30
|
+
@apply w-spacing h-spacing mr-xs rounded-full dark:mr-md;
|
|
20
31
|
}
|
|
21
32
|
|
|
22
33
|
.chat-header {
|
|
23
|
-
@apply flex text-label py-xxs text-label-color;
|
|
34
|
+
@apply relative flex text-label py-xxs text-label-color dark:justify-between dark:px-sm dark:py-xs dark:bg-listitem dark:rounded-t;
|
|
24
35
|
grid-area: chat-header;
|
|
25
36
|
line-height: 1.3;
|
|
26
37
|
}
|
|
@@ -30,11 +41,15 @@ img.chat-avatar {
|
|
|
30
41
|
}
|
|
31
42
|
|
|
32
43
|
.chat-message {
|
|
33
|
-
@apply p-xs rounded bg-card dark:bg-
|
|
44
|
+
@apply p-xs rounded bg-card dark:w-full dark:px-sm dark:pt-0 dark:rounded-t-none dark:bg-listitem;
|
|
34
45
|
grid-area: chat-message;
|
|
35
46
|
min-width: 0;
|
|
36
47
|
}
|
|
37
48
|
|
|
49
|
+
.chat-message-item .chat-title {
|
|
50
|
+
@apply dark:grow shrink-0 dark:mr-md;
|
|
51
|
+
}
|
|
52
|
+
|
|
38
53
|
.chat-message .message-banner {
|
|
39
54
|
@apply relative flex flex-row items-center py-xxs pl-xs -mx-xs -mt-xs mb-xs text-white bg-info border-b border-white rounded-t;
|
|
40
55
|
&::before {
|
|
@@ -101,6 +116,7 @@ img.chat-avatar {
|
|
|
101
116
|
/*///// Your message /////*/
|
|
102
117
|
|
|
103
118
|
.chat-message-item.your-message {
|
|
119
|
+
@apply dark:pl-lg;
|
|
104
120
|
grid-template-areas: "chat-header chat-header chat-avatar "
|
|
105
121
|
"chat-actions chat-message chat-avatar";
|
|
106
122
|
grid-template-columns: 1fr auto auto;
|
|
@@ -108,7 +124,7 @@ img.chat-avatar {
|
|
|
108
124
|
}
|
|
109
125
|
|
|
110
126
|
.chat-message-item.your-message img.chat-avatar {
|
|
111
|
-
@apply ml-xs mr-0;
|
|
127
|
+
@apply ml-xs mr-0 dark:ml-md;
|
|
112
128
|
}
|
|
113
129
|
|
|
114
130
|
.chat-message-item.your-message .chat-actions {
|
|
@@ -116,12 +132,16 @@ img.chat-avatar {
|
|
|
116
132
|
}
|
|
117
133
|
|
|
118
134
|
.chat-message-item.your-message .chat-header {
|
|
119
|
-
@apply justify-end;
|
|
135
|
+
@apply justify-end dark:justify-between;
|
|
120
136
|
text-align: end;
|
|
121
137
|
}
|
|
122
138
|
|
|
139
|
+
.chat-message-item.your-message .chat-title {
|
|
140
|
+
@apply dark:text-left;
|
|
141
|
+
}
|
|
142
|
+
|
|
123
143
|
.chat-message-item.your-message .chat-message {
|
|
124
|
-
@apply text-white bg-primary dark:bg-
|
|
144
|
+
@apply text-white bg-primary dark:bg-listitem;
|
|
125
145
|
}
|
|
126
146
|
|
|
127
147
|
.chat-message-item.your-message .chat-message-addons .btn {
|
|
@@ -267,3 +287,91 @@ img.chat-avatar {
|
|
|
267
287
|
@apply absolute bottom-md sm:bottom-spacing right-xxs;
|
|
268
288
|
z-index: 1;
|
|
269
289
|
}
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
/*///// Collapsable message /////*/
|
|
293
|
+
|
|
294
|
+
.chat-message-item.collapsable {
|
|
295
|
+
@apply grid-cols-2 cursor-pointer;
|
|
296
|
+
grid-template-columns: auto 1fr;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.chat-message-item.collapsable.your-message {
|
|
300
|
+
@apply w-full;
|
|
301
|
+
grid-template-columns: 1fr auto;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.chat-message-item.collapsable > details {
|
|
305
|
+
@apply col-span-2;
|
|
306
|
+
grid-area: chat-header;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.chat-message-item.collapsable > details .chat-header {
|
|
310
|
+
@apply rounded-b cursor-pointer;
|
|
311
|
+
padding-left: 40px;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.chat-message-item.collapsable > details summary::before {
|
|
315
|
+
@apply absolute inline-block shrink-0 w-icon h-icon left-xs mr-xxs bg-label-color;
|
|
316
|
+
content: "";
|
|
317
|
+
mask-repeat: no-repeat;
|
|
318
|
+
mask-image: url("/assets/images/icons/triangle-centered-right.svg");
|
|
319
|
+
top: 8px;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.chat-message-item.collapsable > details[open] .chat-header::before {
|
|
323
|
+
mask-image: url("/assets/images/icons/triangle-centered-down.svg");
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.chat-message-item.collapsable > details[open] .chat-header {
|
|
327
|
+
@apply rounded-b-none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.chat-action-row {
|
|
331
|
+
@apply flex flex-row pl-lg;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.chat-action-row .btn {
|
|
335
|
+
@apply mr-xs;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
/*///// Chat form /////*/
|
|
340
|
+
|
|
341
|
+
.chat-form-row {
|
|
342
|
+
@apply grid grid-cols-2 pl-lg;
|
|
343
|
+
grid-template-columns: 1fr auto;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.chat-form {
|
|
347
|
+
@apply bg-gray-darkest p-md rounded border border-bordercolor;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.chat-form-row .chat-avatar {
|
|
351
|
+
@apply ml-md mr-0;
|
|
352
|
+
grid-area: initial;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.chat-form .form-actions {
|
|
356
|
+
@apply flex flex-row mt-md;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.chat-form .form-actions .btn {
|
|
360
|
+
@apply mr-xs;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
/*///// Chat history /////*/
|
|
365
|
+
|
|
366
|
+
.chat-history-header {
|
|
367
|
+
@apply flex justify-center items-center w-full text-center text-label font-semibold text-gray-darker uppercase cursor-pointer bg-gray-darkest rounded-full hover:bg-link-hover hover:text-link-hover;
|
|
368
|
+
height: 12px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.chat-history-collapsable[open] .chat-history-header {
|
|
372
|
+
@apply mb-md;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.chat-history-title {
|
|
376
|
+
@apply w-auto px-xs bg-card;
|
|
377
|
+
}
|
|
@@ -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-
|
|
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
|
|
|
@@ -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
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/*/////// Description List ///////*/
|
|
15
15
|
|
|
16
16
|
dl dd {
|
|
17
|
-
@apply mb-xs last:mb-0;
|
|
17
|
+
@apply mb-xs last:mb-0 leading-4;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
dl.list-inline {
|
|
@@ -23,11 +23,11 @@ dl.list-inline {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
dl.list-inline dt {
|
|
26
|
-
@apply pr-spacing;
|
|
26
|
+
@apply pr-spacing dark:pr-xs dark:text-label-color;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
dl.list-inline dd {
|
|
30
|
-
@apply mb-0;
|
|
30
|
+
@apply mb-0 leading-tight break-all;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
dl.list-inline.responsive {
|
|
@@ -124,10 +124,14 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.splitview-details-header {
|
|
127
|
-
@apply grid gap-xs mb-md;
|
|
127
|
+
@apply grid gap-xs mb-md dark:mb-xxs;
|
|
128
128
|
grid-template-columns: auto 1fr auto;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
.dark .splitview-details-header {
|
|
132
|
+
grid-template-columns: 1fr auto;
|
|
133
|
+
}
|
|
134
|
+
|
|
131
135
|
.splitview-details-title {
|
|
132
136
|
@apply text-heading-3 dark:text-card-header;
|
|
133
137
|
}
|
|
@@ -177,6 +181,15 @@
|
|
|
177
181
|
}
|
|
178
182
|
}
|
|
179
183
|
|
|
184
|
+
.meta-info-row {
|
|
185
|
+
@apply grid grid-cols-2 gap-spacing place-content-start place-items-start mb-md text-label-color;
|
|
186
|
+
grid-template-columns: auto auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.meta-info-row .label {
|
|
190
|
+
@apply pt-1px;
|
|
191
|
+
}
|
|
192
|
+
|
|
180
193
|
.splitview-details-content-grid {
|
|
181
194
|
@apply grid gap-xs mb-md;
|
|
182
195
|
|
|
@@ -219,7 +232,7 @@
|
|
|
219
232
|
}
|
|
220
233
|
|
|
221
234
|
.splitview-item.selected {
|
|
222
|
-
@apply text-white bg-info dark:bg-listitem dark:border-r-4 border-link-hover;
|
|
235
|
+
@apply text-white bg-info dark:bg-listitem dark:border-r-4 border-link-hover dark:rounded-r-none;
|
|
223
236
|
|
|
224
237
|
.splitview-item-checkbox input {
|
|
225
238
|
@apply border-white;
|
|
@@ -234,6 +247,7 @@
|
|
|
234
247
|
|
|
235
248
|
body:not(.dark) .splitview-item.selected {
|
|
236
249
|
.splitview-item-icon,
|
|
250
|
+
.splitview-item-icon::before,
|
|
237
251
|
.splitview-item-metainfo {
|
|
238
252
|
@apply text-white;
|
|
239
253
|
}
|
|
@@ -279,9 +293,10 @@ body:not(.dark) .splitview-item.selected {
|
|
|
279
293
|
}
|
|
280
294
|
|
|
281
295
|
.splitview-item-text {
|
|
282
|
-
@apply pr-xs;
|
|
296
|
+
@apply pr-xs dark:text-white font-normal;
|
|
283
297
|
grid-area: split-text;
|
|
284
298
|
line-height: 1.3;
|
|
299
|
+
line-break: anywhere;
|
|
285
300
|
}
|
|
286
301
|
|
|
287
302
|
.splitview-item-title {
|
|
@@ -321,6 +336,7 @@ body:not(.dark) .splitview-item.selected {
|
|
|
321
336
|
@apply bg-white;
|
|
322
337
|
}
|
|
323
338
|
|
|
339
|
+
|
|
324
340
|
/*///// Collapsable splitview item/group /////*/
|
|
325
341
|
|
|
326
342
|
.splitview-group {
|
|
@@ -358,17 +374,39 @@ body:not(.dark) .splitview-item.selected {
|
|
|
358
374
|
@apply pl-[65px] dark:pl-lg dark:rounded-none dark:last:rounded-b;
|
|
359
375
|
}
|
|
360
376
|
|
|
377
|
+
.splitview-group .turbo-wrapper {
|
|
378
|
+
@apply contents;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.splitview-group .turbo-wrapper .splitview-item:not(summary) {
|
|
382
|
+
@apply rounded-none;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.splitview-group .turbo-wrapper:last-child .splitview-item {
|
|
386
|
+
@apply rounded-b;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.splitview-group .turbo-wrapper:last-child .splitview-item.selected {
|
|
390
|
+
@apply rounded-br-none;
|
|
391
|
+
}
|
|
361
392
|
|
|
362
393
|
/*///// Grid split /////*/
|
|
363
394
|
|
|
364
395
|
.grid-splitview {
|
|
365
|
-
@apply grid grid-cols-2 lg:grid-cols-5 gap-grid-gutter;
|
|
396
|
+
@apply grid md:grid-cols-2 lg:grid-cols-5 gap-grid-gutter;
|
|
397
|
+
grid-template-areas: "splitview-list"
|
|
398
|
+
"splitview-details";
|
|
399
|
+
|
|
400
|
+
@media (width >= theme(--breakpoint-md)) {
|
|
401
|
+
grid-template-areas: "splitview-list splitview-details";
|
|
402
|
+
}
|
|
366
403
|
}
|
|
367
404
|
|
|
368
405
|
.grid-splitview .splitview-list {
|
|
369
|
-
@apply
|
|
406
|
+
@apply lg:col-span-2 overflow-y-visible h-fit;
|
|
407
|
+
max-height: auto;
|
|
370
408
|
}
|
|
371
409
|
|
|
372
410
|
.grid-splitview .splitview-details {
|
|
373
|
-
@apply
|
|
374
|
-
}
|
|
411
|
+
@apply block lg:col-span-3 h-auto min-h-auto overflow-y-visible;
|
|
412
|
+
}
|
|
@@ -7,14 +7,13 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.tag {
|
|
10
|
-
@apply inline-flex items-center flex-row
|
|
11
|
-
padding-top:
|
|
12
|
-
padding-bottom:
|
|
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
|
-
|
|
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
|
}
|
|
@@ -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;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
--color-disabled: #5f656d;
|
|
16
16
|
--color-listitem: #343A40;
|
|
17
17
|
--color-placeholder: #5f656d;
|
|
18
|
-
--color-tag: #
|
|
18
|
+
--color-tag: #262626;
|
|
19
19
|
--color-label-color: #888888;
|
|
20
20
|
--color-success: #33BA9E;
|
|
21
21
|
--color-danger: #FF3131;
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
/*//// Fontsize ////*/
|
|
39
|
-
--fontsize-card-header:
|
|
39
|
+
--fontsize-card-header: 1.125rem;
|
|
40
|
+
--font-size-label: 0.75rem;
|
|
40
41
|
}
|
|
41
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
|