-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.css
More file actions
51 lines (48 loc) · 982 Bytes
/
chat.css
File metadata and controls
51 lines (48 loc) · 982 Bytes
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
.chat-section .form-control {
border-color: transparent;
}
.chat-section .form-control:focus {
border-color: transparent;
box-shadow: inset 0px 0px 0px 1px transparent;
}
.chat-section .date-divider:after,
.chat-section .date-divider:before {
content: "";
flex: 1;
height: 1px;
background: #eee;
}
.chat-avatar {
width: 45px;
height: 45px;
}
.chat-senderOptions textarea {
resize: none;
}
.chat-senderOptions:has(textarea:focus) {
border-color: transparent;
box-shadow: inset 0px 0px 0px 1px transparent;
flex: 1;
background-color: transparent;
}
.chat-senderOptions:has(textarea:focus) > .input-group {
height: 100%;
}
.chat-senderOptions:has(textarea:focus) textarea {
height: 100%;
}
.chat-delete-btn {
position: absolute;
bottom: -10px;
right: -10px;
width: 24px;
height: 24px;
display: none;
align-items: center;
justify-content: center;
cursor: pointer;
color: white;
font-weight: bold;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
z-index: 10;
}