-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrollEngine.css
More file actions
106 lines (92 loc) · 1.66 KB
/
scrollEngine.css
File metadata and controls
106 lines (92 loc) · 1.66 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
99
100
101
102
103
104
105
106
.table-container {
border: 1px solid #ccc;
overflow: hidden;
position: relative;
font-family: Arial, sans-serif;
}
.search-bar {
display: flex;
justify-content: flex-end;
padding: 0.5rem;
background: #f9f9f9;
border-bottom: 1px solid #ccc;
}
.search-input {
width: 200px;
min-width: 150px;
font-size: 0.75rem;
}
.table-body {
overflow-y: auto;
height: 100%;
}
.row {
display: flex;
height: 40px;
line-height: 40px;
border-bottom: 1px solid #eee;
background: white;
}
.header-cell {
flex: 1;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
white-space: nowrap;
height: 40px;
border-right: 1px solid #e0e0e0;
padding: 0 0.5rem;
overflow: hidden;
}
.cell {
flex: 1;
padding: 0 0.5rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.sticky-header {
display: flex;
position: sticky;
top: 0;
background: #f4f6f9;
z-index: 10;
border-bottom: 2px solid #ccc;
}
.table-header {
display: flex;
background: #f4f6f9;
position: sticky;
top: 0;
z-index: 10;
}
.sort-icon {
--slds-c-icon-color-foreground: #0070d2;
}
.sort-indicator {
font-size: 0.75rem;
padding-left: 4px;
color: #444;
}
.row:hover {
background: #f3f3f3;
}
.loading-overlay {
position: absolute;
top: 40px;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.6);
display: flex;
justify-content: center;
align-items: center;
z-index: 50;
}
.empty-state {
text-align: center;
color: #999;
padding: 1rem;
font-style: italic;
}