File size: 2,230 Bytes
01a34c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #1a2e5a;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.newBtn {
  margin: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .15s;
  flex-shrink: 0;
}
.newBtn:hover { background: rgba(255,255,255,.2); }

.list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 8px;
}
.list::-webkit-scrollbar { width: 4px; }
.list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.empty {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 24px;
}

.item {
  padding: 9px 10px 7px;
  border-radius: 7px;
  cursor: pointer;
  margin-bottom: 2px;
  transition: background .12s;
}
.item:hover { background: rgba(255,255,255,.1); }
.item.active { background: rgba(255,255,255,.18); }

.itemTitle {
  font-size: .85rem;
  color: #e8edf8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  line-height: 1.4;
}

.itemMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.itemMeta span {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}

.delBtn {
  background: transparent;
  color: rgba(255,255,255,.3);
  font-size: .72rem;
  padding: 1px 5px;
  border-radius: 3px;
  opacity: 0;
  transition: opacity .12s, color .12s;
  border: none;
}
.item:hover .delBtn { opacity: 1; }
.delBtn:hover { color: #f87171; }

.footer {
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

.userEmail {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.logoutBtn {
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.logoutBtn:hover { color: #fff; border-color: rgba(255,255,255,.4); }