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 }
|
14
|
26 [ai_container] div[buttons] {
|
|
27 display: flex;
|
|
28 justify-content: flex-end;
|
|
29 margin-top: 8px;
|
|
30 padding-bottom: 8px;
|
|
31 gap: 8px;
|
|
32 }
|
4
|
33
|
32
|
34 dialog[edit] {
|
|
35 width: 600px;
|
|
36 max-width: 90%;
|
|
37 }
|
34
|
38 dialog[edit] input[type=text] {
|
32
|
39 width: 100%;
|
4
|
40 }
|
28
|
41
|
52
|
42 div[role=assistant]:has(option[hide_text]:checked) div[message] {
|
34
|
43 filter: blur(5px);
|
28
|
44 }
|
52
|
45 div[role=assistant]:has(option[hide_ruby]:checked) div[message] rt {
|
|
46 filter: blur(5px);
|
41
|
47 }
|