Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: perfect-scrollbar
2
// github link: https://github.com/mdbootstrap/perfect-scrollbar
3
 
4
.ps__thumb-x {
5
	background-color: darken($card-bg, 15%);
6
	height: 4px;
7
}
8
 
9
.ps__rail-x.ps--clicking .ps__thumb-x,
10
.ps__rail-x:focus>.ps__thumb-x,
11
.ps__rail-x:hover>.ps__thumb-x {
12
	background-color: darken($card-bg, 30%);
13
	height: 6px;
14
}
15
 
16
.ps__rail-x {
17
	height: 10px;
18
}
19
 
20
.ps__thumb-y {
21
	background-color: darken($card-bg, 15%);
22
	width: 4px;
23
	/*rtl:raw:
24
  left: 2px !important;
25
	right: auto !important;
26
  */
27
}
28
 
29
.ps__rail-y.ps--clicking .ps__thumb-y,
30
.ps__rail-y:focus>.ps__thumb-y,
31
.ps__rail-y:hover>.ps__thumb-y {
32
	background-color: darken($card-bg, 30%);
33
	width: 6px;
34
}
35
 
36
.ps__rail-y {
37
	width: 10px;
38
	/*rtl:raw:
39
  left: 0 !important;
40
	right: auto !important;
41
  */
42
}
43
 
44
.ps .ps__rail-x.ps--clicking,
45
.ps .ps__rail-x:focus,
46
.ps .ps__rail-x:hover,
47
.ps .ps__rail-y.ps--clicking,
48
.ps .ps__rail-y:focus,
49
.ps .ps__rail-y:hover {
50
	background-color: $light;
51
}