blob: c4f4b97b2e3f79c8d4a29e031dd1ab76f5b2f0c6 (
plain)
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
|
.sidebar {
width: 260px;
background: #f8f8f8;
border-right: 1px solid #e0e0e0;
display: flex;
flex-direction: column;
height: 100vh;
}
.sidebar-header {
padding: 16px;
border-bottom: 1px solid #e0e0e0;
}
.sidebar-header h1 {
font-size: 18px;
margin: 0 0 12px 0;
color: #333;
}
.new-conversation-btn {
width: 100%;
padding: 10px;
background: #4a90e2;
border: 1px solid #4a90e2;
border-radius: 6px;
color: #fff;
cursor: pointer;
font-size: 14px;
transition: background 0.2s;
font-weight: 500;
}
.new-conversation-btn:hover {
background: #357abd;
border-color: #357abd;
}
.conversation-list {
flex: 1;
overflow-y: auto;
padding: 8px;
}
.no-conversations {
padding: 16px;
text-align: center;
color: #999;
font-size: 14px;
}
.conversation-item {
padding: 12px;
margin-bottom: 4px;
border-radius: 6px;
cursor: pointer;
transition: background 0.2s;
}
.conversation-item:hover {
background: #f0f0f0;
}
.conversation-item.active {
background: #e8f0fe;
border: 1px solid #4a90e2;
}
.conversation-title {
color: #333;
font-size: 14px;
margin-bottom: 4px;
}
.conversation-meta {
color: #999;
font-size: 12px;
}
|