4
|
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;
|
6
|
13 position: fixed;
|
4
|
14 top: 50%;
|
|
15 left: 50%;
|
|
16 transform: translate(-50%,-50%);
|
|
17 z-index: 3000;
|
|
18 display: none;
|
|
19 }
|
|
20
|
|
21 [ai_container] textarea {
|
14
|
22 display: block;
|
|
23 width: 100%;
|
|
24 margin-top: 36px;
|
4
|
25 resize: none;
|
|
26 }
|
14
|
27 [ai_container] div[buttons] {
|
|
28 display: flex;
|
|
29 justify-content: flex-end;
|
|
30 margin-top: 8px;
|
|
31 padding-bottom: 8px;
|
|
32 gap: 8px;
|
|
33 }
|
4
|
34
|
32
|
35 dialog[edit] {
|
|
36 width: 600px;
|
|
37 max-width: 90%;
|
|
38 }
|
34
|
39 dialog[edit] input[type=text] {
|
32
|
40 width: 100%;
|
4
|
41 }
|
28
|
42
|
41
|
43 div[role=assistant] div[message] {
|
34
|
44 filter: blur(5px);
|
28
|
45 }
|
41
|
46 div[role=assistant]:has([name=show_text]:checked) div[message] {
|
|
47 filter: none;
|
|
48 }
|