-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (87 loc) · 2.13 KB
/
styles.css
File metadata and controls
98 lines (87 loc) · 2.13 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
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
.vc-file-splitter-card {
width: 100%;
max-width: 420px;
margin-top: 8px;
overflow: hidden;
border: 1px solid var(--border-subtle, var(--background-modifier-accent));
border-radius: 8px;
background: var(--background-secondary);
box-shadow: 0 6px 18px rgb(0 0 0 / 24%);
}
.vc-file-splitter-card[data-status="error"] {
border-color: var(--status-danger);
}
.vc-file-splitter-image {
display: block;
width: 100%;
max-height: 420px;
object-fit: contain;
background: var(--background-primary);
}
.vc-file-splitter-body {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
}
.vc-file-splitter-file-icon {
display: grid;
flex-shrink: 0;
width: 52px;
height: 52px;
place-items: center;
border-radius: 8px;
color: var(--white-500);
background: linear-gradient(135deg, var(--brand-500), var(--background-accent));
}
.vc-file-splitter-text {
display: flex;
flex: 1;
min-width: 0;
flex-direction: column;
gap: 3px;
}
.vc-file-splitter-title {
overflow: hidden;
color: var(--text-normal, #f2f3f5);
font-family: var(--font-primary, "gg sans", sans-serif);
font-size: 14px;
font-weight: 700;
line-height: 1.25;
text-overflow: ellipsis;
white-space: nowrap;
}
.vc-file-splitter-subtitle {
overflow: hidden;
color: var(--text-muted, var(--channels-default));
font-family: var(--font-primary, "gg sans", sans-serif);
font-size: 12px;
font-weight: 600;
line-height: 1.3;
text-overflow: ellipsis;
white-space: nowrap;
}
.vc-file-splitter-actions {
display: flex;
flex-shrink: 0;
gap: 8px;
}
.vc-file-splitter-action {
border: 0;
border-radius: 6px;
padding: 8px 12px;
background: var(--button-secondary-background);
color: var(--white-500);
cursor: pointer;
font-size: 13px;
font-weight: 700;
line-height: 1.2;
}
.vc-file-splitter-action:disabled {
cursor: default;
opacity: 0.6;
}
.vc-file-splitter-action:hover:not(:disabled) {
background: var(--button-secondary-background-hover);
}