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
| /* =============
| Tree view page
| ============= */
|
|
| .jstree-default {
| .jstree-clicked {
| background: rgba($custom, 0.4);
| box-shadow: none;
| }
| .jstree-hovered {
| background: rgba($custom, 0.4);
| box-shadow: none;
| }
| .jstree-wholerow-clicked {
| background: rgba($custom, 0.4);
| }
| .jstree-wholerow-hovered {
| background: rgba($custom, 0.4);
| }
| .zmdi {
| font-size: 16px;
| color: rgba($dark,0.5);
| }
| .jstree-icon {
| color: rgba($dark,0.5);
| }
| }
|
|