File size: 4,742 Bytes
d44b3c1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#chat .mes[type="assistant_message"] .mes_button {
    display: none;
}

.welcomePanel {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    width: 100%;
}

.welcomePanel:has(.showMoreChats) {
    padding-bottom: 5px;
}

.welcomePanel.recentHidden .welcomeRecent,
.welcomePanel.recentHidden .recentChatsTitle,
.welcomePanel.recentHidden .hideRecentChats,
.welcomePanel:not(.recentHidden) .showRecentChats {
    display: none;
}

body.bubblechat .welcomePanel {
    border-radius: 10px;
    background-color: var(--SmartThemeBotMesBlurTintColor);
    border: 1px solid var(--SmartThemeBorderColor);
    margin-bottom: 5px;
}

body.hideChatAvatars .welcomePanel .recentChatList .recentChat .avatar {
    display: none;
}

.welcomePanel .welcomeHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.welcomePanel .recentChatsTitle {
    flex-grow: 1;
    font-size: calc(var(--mainFontSize) * 1.15);
    font-weight: 600;
}

.welcomePanel .welcomeHeaderTitle {
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.welcomePanel .welcomeHeaderVersionDisplay {
    font-size: calc(var(--mainFontSize) * 1.3);
    font-weight: 600;
    flex-grow: 1;
}

.welcomePanel .welcomeHeaderLogo {
    width: 30px;
    height: 30px;
}

.welcomePanel .welcomeShortcuts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.welcomePanel .welcomeShortcuts .welcomeShortcutsSeparator {
    margin: 0 2px;
    color: var(--SmartThemeBorderColor);
    font-size: calc(var(--mainFontSize) * 1.1);
}

.welcomeRecent .recentChatList {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
}

.welcomeRecent .welcomePanelLoader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    height: 100%;
    position: absolute;
}

.welcomePanel .recentChatList .noRecentChat {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    padding: 10px;
}

.welcomeRecent .recentChatList .recentChat {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    gap: 10px;
    border: 1px solid var(--SmartThemeBorderColor);
}

.welcomeRecent .recentChatList .recentChat .avatar {
    flex: 0;
    align-self: center;
}

.welcomeRecent .recentChatList .recentChat:hover {
    background-color: var(--white30a);
}

.welcomeRecent .recentChatList .recentChat .recentChatInfo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-grow: 1;
    overflow: hidden;
    justify-content: center;
    align-self: flex-start;
}

.welcomeRecent .recentChatList .recentChat .chatNameContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    font-size: calc(var(--mainFontSize) * 1);
}

.welcomeRecent .recentChatList .recentChat .chatNameContainer .chatName {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.welcomeRecent .recentChatList .recentChat .chatMessageContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: calc(var(--mainFontSize) * 0.85);
}

.welcomeRecent .recentChatList .recentChat .chatMessageContainer .chatMessage {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

body.big-avatars .welcomeRecent .recentChatList .recentChat .chatMessageContainer .chatMessage {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.welcomeRecent .recentChatList .recentChat .chatStats {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: baseline;
    align-self: flex-start;
    gap: 5px;
}

.welcomeRecent .recentChatList .recentChat .chatStats .counterBlock {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
}

.welcomeRecent .recentChatList .recentChat .chatStats .counterBlock::after {
    content: "|";
    color: var(--SmartThemeBorderColor);
    font-size: calc(var(--mainFontSize) * 0.95);
}

.welcomeRecent .recentChatList .recentChat.hidden {
    display: none;
}

.welcomeRecent .recentChatList .showMoreChats {
    align-self: center;
}

.welcomeRecent .recentChatList .showMoreChats.rotated {
    transform: rotate(180deg);
}

@media screen and (max-width: 1000px) {
    .welcomePanel .welcomeShortcuts a span {
        display: none;
    }
}