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
| .histogram{
| user-select: none;
| margin-bottom: 8px;
|
| &.disabled{
| opacity: 0.5;
| pointer-events: none;
| }
|
| .histogram-container{
| &:hover{
| cursor: pointer;
| }
| }
|
| select, input{
| height: auto;
| padding: 4px;
| }
|
| .min-max{
| display: inline;
| width: 92px;
| margin-right: 12px;
| }
|
| .axis {
| shape-rendering: crispEdges;
| }
|
| .x.axis line {
| display: none;
| }
|
| .x.axis .minor {
| stroke-opacity: .5;
| }
|
| .x.axis path {
| display: none;
| }
|
| .slider-line{
| stroke-width: 4;
| opacity: 0.4;
| &:hover{
| cursor: ew-resize;
| }
| }
| }
|
|