forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathColumn.css
More file actions
45 lines (37 loc) · 931 Bytes
/
Column.css
File metadata and controls
45 lines (37 loc) · 931 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
.chart_Column .columnRect {
fill: steelblue;
cursor: pointer;
}
.chart_Column .data.axis path {
display: none;
}
.chart_Column .columnRect {
stroke: transparent;
border-width: 2px;
}
.chart_Column .dataCell.selected .columnRect {
stroke: #dc3545 !important;
stroke-width: 3px !important;
paint-order: fill stroke !important;
transition: all 0.2s ease;
}
.chart_Column .dataCell:hover .columnRect {
stroke: rgba(108, 117, 125, 0.6);
stroke-width: 2px;
filter: brightness(1.05);
}
.chart_Column .dataCell:focus .columnRect {
stroke: #007bff !important;
stroke-width: 3px !important;
paint-order: fill stroke !important;
transition: all 0.2s ease;
}
.chart_Column .dataCell.selected:focus .columnRect {
stroke: #6f42c1 !important;
}
.chart_Column .dataCell:focus-visible {
outline: none;
}
.chart_Column .dataCell:active {
outline: none !important;
}