-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
37 lines (33 loc) · 1.06 KB
/
Copy pathcontent.css
File metadata and controls
37 lines (33 loc) · 1.06 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
/* Table selection highlight styles */
.table-csv-highlight {
outline: 3px solid #0078d4 !important;
outline-offset: 2px !important;
background-color: rgba(0, 120, 212, 0.1) !important;
cursor: pointer !important;
position: relative !important;
}
.table-csv-highlight::before {
content: 'Click to export as CSV';
position: absolute !important;
top: -30px !important;
left: 0 !important;
background: #0078d4 !important;
color: white !important;
padding: 4px 8px !important;
border-radius: 4px !important;
font-size: 12px !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
z-index: 10000 !important;
white-space: nowrap !important;
}
.table-csv-selection-active {
cursor: crosshair !important;
}
.table-csv-selection-active table {
transition: all 0.2s ease !important;
}
.table-csv-selection-active table:hover {
outline: 2px solid #0078d4 !important;
outline-offset: 2px !important;
background-color: rgba(0, 120, 212, 0.05) !important;
}