forked from tkh44/opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage-progress.css
More file actions
50 lines (43 loc) · 1.26 KB
/
message-progress.css
File metadata and controls
50 lines (43 loc) · 1.26 KB
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
[data-component="message-progress"] {
display: flex;
flex-direction: column;
gap: 12px;
}
[data-component="message-progress"] [data-slot="message-progress-status"] {
display: flex;
align-items: center;
column-gap: 20px;
padding-left: 12px;
border: 1px solid transparent;
color: var(--text-base);
}
[data-component="message-progress"] [data-slot="message-progress-status-text"] {
font-size: 12px;
font-weight: 500;
line-height: 1.5;
}
[data-component="message-progress"] [data-slot="message-progress-list-container"] {
height: 120px;
overflow: hidden;
pointer-events: none;
padding-bottom: 4px;
mask-image: linear-gradient(to bottom, transparent 0%, black 33%, black 95%, transparent 100%);
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 33%, black 95%, transparent 100%);
}
[data-component="message-progress"] [data-slot="message-progress-list"] {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
align-self: stretch;
gap: 8px;
padding-top: 32px;
padding-bottom: 32px;
transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-component="message-progress"] [data-slot="message-progress-item"] {
height: 32px;
display: flex;
align-items: center;
width: 100%;
}