comparison src/chat.css @ 4:b1adec083e44

chat work
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 08 Jul 2025 22:15:41 -0600
parents
children 025bb19b65b1
comparison
equal deleted inserted replaced
3:eee6d4f59811 4:b1adec083e44
1 div[top] {
2 display: flex;
3 justify-content: space-between;
4 align-items: center;
5 }
6
7 div[top] span[pulldown] > div {
8 right: 0;
9 }
10
11 [waiting-ai-icon] {
12 width: 100px;
13 position: absolute;
14 top: 50%;
15 left: 50%;
16 transform: translate(-50%,-50%);
17 z-index: 3000;
18 display: none;
19 }
20
21 [ai_container] div[ask] {
22 padding-top: 1em;
23 padding-bottom: 1em;
24 xpadding-left: 12px;
25 xpadding-right: 12px;
26 display: flex;
27 gap: 8px;
28 align-items: flex-end;
29 }
30 [ai_container] textarea {
31 flex-grow: 1;
32 max-height: 150px;
33 resize: none;
34 }
35
36 dialog[rename] input {
37 width: 300px;
38 }