comparison src/chat.css @ 74:64e35a92d163

add translation
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 28 Aug 2025 13:31:46 -0600
parents 27758f3b2d69
children b96cf27e719d
comparison
equal deleted inserted replaced
73:60ebb333b40c 74:64e35a92d163
37 } 37 }
38 dialog[edit] input[type=text] { 38 dialog[edit] input[type=text] {
39 width: 100%; 39 width: 100%;
40 } 40 }
41 41
42 div[role=assistant]:has(option[hide_text]:checked) div[message] { 42 div[role=assistant]:has(option[value=hide_text]:checked) div[message] {
43 filter: blur(5px); 43 filter: blur(5px);
44 } 44 }
45 div[role=assistant]:has(option[hide_ruby]:checked) div[message] rt { 45 div[role=assistant]:has(option[value=hide_ruby]:checked) div[message] rt {
46 filter: blur(5px); 46 filter: blur(5px);
47 } 47 }
48 div[role=assistant] div[trans] {
49 display: none;
50 border-top: 1px solid #cccccc;
51 white-space: pre-wrap;
52 }
53 div[role=assistant]:has(option[value=show_trans]:checked) div[trans] {
54 display: block;
55 }
56
57 div[controls] {
58 margin-top: 16px;
59 }