7.1
15832144755
2021-07-01 ba21fcf8482029f7634b62d60daf171538001769
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
//  =================
//      Imports
//  =================
 
@import '../../base/base';    // Base Variables
 
.noUi-target {
  background: $m-color_18;
  border-radius: 4px;
  border: 1px solid $m-color_18;
  box-shadow: none;
}
 
.noUi-horizontal {
  height: 8px;
 
  .noUi-handle {
    width: 25px;
    height: 20px;
    top: -8px;
    border: 1px solid $m-color_7;
    background: $m-color_7;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  }
}
 
.noUi-handle {
  &:after, &:before {
    display: none;
  }
}
 
.noUi-connect {
  background: $m-color_14;
}
 
.noUi-tooltip {
  border: 1px solid $m-color_18;
  border-radius: 8px;
  background: $m-color_18;
  color: $m-color_14;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
 
.noUi-horizontal .noUi-tooltip {
  bottom: 148%;
}
 
.example-val {
  font-weight: 700;
  font-size: 14px;
  color: $m-color_14;
 
  span.precentage-val {
    display: inline-block;
    background: $m-color_18;
    border-radius: 5px;
    color: $m-color_14;
    border: 1px solid $m-color_18;
    padding: 4px 6px;
    font-size: 14px;
  }
}