File size: 1,180 Bytes
4bae792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.file-preview-item {
  transition: all 0.15s ease;
}

.file-preview-item:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Image lightbox effect */
.file-attachment-image .group:hover .group-hover\\:opacity-100 {
  opacity: 1;
}

/* Mention tag styles */
.mention-tag {
  display: inline-block;
  padding: 0 2px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.mention-tag:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Chat input placeholder */
.chat-input-placeholder {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted, #6b7280);
  font-size: 0.875rem;
}

/* Scrollbar styling */
.overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}

.overflow-y-auto::-webkit-scrollbar-track {
  background: transparent;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
  background: var(--border-primary, #e5e7eb);
  border-radius: 3px;
}

.overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted, #9ca3af);
}