jstree-rails-4 3.3.4 → 3.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile.lock +2 -2
- data/README.md +2 -2
- data/lib/jstree-rails-4/version.rb +1 -1
- data/vendor/assets/images/default-dark/32px.png +0 -0
- data/vendor/assets/images/default-dark/40px.png +0 -0
- data/vendor/assets/images/default-dark/throbber.gif +0 -0
- data/vendor/assets/images/default/32px.png +0 -0
- data/vendor/assets/images/default/40px.png +0 -0
- data/vendor/assets/images/default/throbber.gif +0 -0
- data/vendor/assets/javascripts/jstree.js +349 -160
- data/vendor/assets/stylesheets/jstree-default-dark.scss +36 -42
- data/vendor/assets/stylesheets/jstree-default.scss +26 -32
- metadata +3 -3
@@ -189,6 +189,9 @@
|
|
189
189
|
border: 0;
|
190
190
|
box-shadow: 0 0 0;
|
191
191
|
}
|
192
|
+
.vakata-context .vakata-contextmenu-disabled > a > i {
|
193
|
+
filter: grayscale(100%);
|
194
|
+
}
|
192
195
|
.vakata-context li > a > i {
|
193
196
|
text-decoration: none;
|
194
197
|
display: inline-block;
|
@@ -297,14 +300,14 @@
|
|
297
300
|
transition: background-color 0.15s, box-shadow 0.15s;
|
298
301
|
}
|
299
302
|
.jstree-default-dark .jstree-hovered {
|
300
|
-
background: #
|
303
|
+
background: #555;
|
301
304
|
border-radius: 2px;
|
302
|
-
box-shadow: inset 0 0 1px #
|
305
|
+
box-shadow: inset 0 0 1px #555;
|
303
306
|
}
|
304
307
|
.jstree-default-dark .jstree-context {
|
305
|
-
background: #
|
308
|
+
background: #555;
|
306
309
|
border-radius: 2px;
|
307
|
-
box-shadow: inset 0 0 1px #
|
310
|
+
box-shadow: inset 0 0 1px #555;
|
308
311
|
}
|
309
312
|
.jstree-default-dark .jstree-clicked {
|
310
313
|
background: #5fa2db;
|
@@ -347,13 +350,13 @@
|
|
347
350
|
box-shadow: none;
|
348
351
|
}
|
349
352
|
.jstree-default-dark.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
|
350
|
-
background: #
|
353
|
+
background: #555;
|
351
354
|
}
|
352
355
|
.jstree-default-dark.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
|
353
356
|
background: transparent;
|
354
357
|
}
|
355
358
|
.jstree-default-dark.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
|
356
|
-
background: #
|
359
|
+
background: #555;
|
357
360
|
}
|
358
361
|
.jstree-default-dark > .jstree-striped {
|
359
362
|
min-width: 100%;
|
@@ -372,7 +375,7 @@
|
|
372
375
|
box-sizing: border-box;
|
373
376
|
}
|
374
377
|
.jstree-default-dark .jstree-wholerow-hovered {
|
375
|
-
background: #
|
378
|
+
background: #555;
|
376
379
|
}
|
377
380
|
.jstree-default-dark .jstree-wholerow-clicked {
|
378
381
|
background: #5fa2db;
|
@@ -407,7 +410,7 @@
|
|
407
410
|
}
|
408
411
|
.jstree-default-dark .jstree-node,
|
409
412
|
.jstree-default-dark .jstree-icon {
|
410
|
-
background-image:
|
413
|
+
background-image: url("32px.png");
|
411
414
|
}
|
412
415
|
.jstree-default-dark .jstree-node {
|
413
416
|
background-position: -292px -4px;
|
@@ -512,13 +515,13 @@
|
|
512
515
|
background-position: 0 0;
|
513
516
|
}
|
514
517
|
.jstree-default-dark > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
515
|
-
background:
|
518
|
+
background: url("throbber.gif") center center no-repeat;
|
516
519
|
}
|
517
520
|
.jstree-default-dark .jstree-file {
|
518
|
-
background:
|
521
|
+
background: url("32px.png") -100px -68px no-repeat;
|
519
522
|
}
|
520
523
|
.jstree-default-dark .jstree-folder {
|
521
|
-
background:
|
524
|
+
background: url("32px.png") -260px -4px no-repeat;
|
522
525
|
}
|
523
526
|
.jstree-default-dark > .jstree-container-ul > .jstree-node {
|
524
527
|
margin-left: 0;
|
@@ -530,7 +533,7 @@
|
|
530
533
|
}
|
531
534
|
#jstree-dnd.jstree-default-dark .jstree-ok,
|
532
535
|
#jstree-dnd.jstree-default-dark .jstree-er {
|
533
|
-
background-image:
|
536
|
+
background-image: url("32px.png");
|
534
537
|
background-repeat: no-repeat;
|
535
538
|
background-color: transparent;
|
536
539
|
}
|
@@ -554,9 +557,6 @@
|
|
554
557
|
text-overflow: ellipsis;
|
555
558
|
overflow: hidden;
|
556
559
|
}
|
557
|
-
.jstree-default-dark .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
558
|
-
width: calc(100% - 5px);
|
559
|
-
}
|
560
560
|
.jstree-default-dark.jstree-rtl .jstree-node {
|
561
561
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
|
562
562
|
}
|
@@ -591,7 +591,7 @@
|
|
591
591
|
}
|
592
592
|
.jstree-default-dark-small .jstree-node,
|
593
593
|
.jstree-default-dark-small .jstree-icon {
|
594
|
-
background-image:
|
594
|
+
background-image: url("32px.png");
|
595
595
|
}
|
596
596
|
.jstree-default-dark-small .jstree-node {
|
597
597
|
background-position: -295px -7px;
|
@@ -696,13 +696,13 @@
|
|
696
696
|
background-position: 0 0;
|
697
697
|
}
|
698
698
|
.jstree-default-dark-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
699
|
-
background:
|
699
|
+
background: url("throbber.gif") center center no-repeat;
|
700
700
|
}
|
701
701
|
.jstree-default-dark-small .jstree-file {
|
702
|
-
background:
|
702
|
+
background: url("32px.png") -103px -71px no-repeat;
|
703
703
|
}
|
704
704
|
.jstree-default-dark-small .jstree-folder {
|
705
|
-
background:
|
705
|
+
background: url("32px.png") -263px -7px no-repeat;
|
706
706
|
}
|
707
707
|
.jstree-default-dark-small > .jstree-container-ul > .jstree-node {
|
708
708
|
margin-left: 0;
|
@@ -714,7 +714,7 @@
|
|
714
714
|
}
|
715
715
|
#jstree-dnd.jstree-default-dark-small .jstree-ok,
|
716
716
|
#jstree-dnd.jstree-default-dark-small .jstree-er {
|
717
|
-
background-image:
|
717
|
+
background-image: url("32px.png");
|
718
718
|
background-repeat: no-repeat;
|
719
719
|
background-color: transparent;
|
720
720
|
}
|
@@ -738,9 +738,6 @@
|
|
738
738
|
text-overflow: ellipsis;
|
739
739
|
overflow: hidden;
|
740
740
|
}
|
741
|
-
.jstree-default-dark-small .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
742
|
-
width: calc(100% - 5px);
|
743
|
-
}
|
744
741
|
.jstree-default-dark-small.jstree-rtl .jstree-node {
|
745
742
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
|
746
743
|
}
|
@@ -775,7 +772,7 @@
|
|
775
772
|
}
|
776
773
|
.jstree-default-dark-large .jstree-node,
|
777
774
|
.jstree-default-dark-large .jstree-icon {
|
778
|
-
background-image:
|
775
|
+
background-image: url("32px.png");
|
779
776
|
}
|
780
777
|
.jstree-default-dark-large .jstree-node {
|
781
778
|
background-position: -288px 0px;
|
@@ -880,13 +877,13 @@
|
|
880
877
|
background-position: 0 0;
|
881
878
|
}
|
882
879
|
.jstree-default-dark-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
883
|
-
background:
|
880
|
+
background: url("throbber.gif") center center no-repeat;
|
884
881
|
}
|
885
882
|
.jstree-default-dark-large .jstree-file {
|
886
|
-
background:
|
883
|
+
background: url("32px.png") -96px -64px no-repeat;
|
887
884
|
}
|
888
885
|
.jstree-default-dark-large .jstree-folder {
|
889
|
-
background:
|
886
|
+
background: url("32px.png") -256px 0px no-repeat;
|
890
887
|
}
|
891
888
|
.jstree-default-dark-large > .jstree-container-ul > .jstree-node {
|
892
889
|
margin-left: 0;
|
@@ -898,7 +895,7 @@
|
|
898
895
|
}
|
899
896
|
#jstree-dnd.jstree-default-dark-large .jstree-ok,
|
900
897
|
#jstree-dnd.jstree-default-dark-large .jstree-er {
|
901
|
-
background-image:
|
898
|
+
background-image: url("32px.png");
|
902
899
|
background-repeat: no-repeat;
|
903
900
|
background-color: transparent;
|
904
901
|
}
|
@@ -922,9 +919,6 @@
|
|
922
919
|
text-overflow: ellipsis;
|
923
920
|
overflow: hidden;
|
924
921
|
}
|
925
|
-
.jstree-default-dark-large .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
926
|
-
width: calc(100% - 5px);
|
927
|
-
}
|
928
922
|
.jstree-default-dark-large.jstree-rtl .jstree-node {
|
929
923
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
|
930
924
|
}
|
@@ -944,12 +938,12 @@
|
|
944
938
|
height: 40px;
|
945
939
|
}
|
946
940
|
#jstree-dnd.jstree-dnd-responsive > .jstree-ok {
|
947
|
-
background-image:
|
941
|
+
background-image: url("40px.png");
|
948
942
|
background-position: 0 -200px;
|
949
943
|
background-size: 120px 240px;
|
950
944
|
}
|
951
945
|
#jstree-dnd.jstree-dnd-responsive > .jstree-er {
|
952
|
-
background-image:
|
946
|
+
background-image: url("40px.png");
|
953
947
|
background-position: -40px -200px;
|
954
948
|
background-size: 120px 240px;
|
955
949
|
}
|
@@ -968,7 +962,7 @@
|
|
968
962
|
*/
|
969
963
|
}
|
970
964
|
.jstree-default-dark-responsive .jstree-icon {
|
971
|
-
background-image:
|
965
|
+
background-image: url("40px.png");
|
972
966
|
}
|
973
967
|
.jstree-default-dark-responsive .jstree-node,
|
974
968
|
.jstree-default-dark-responsive .jstree-leaf > .jstree-ocl {
|
@@ -1012,13 +1006,13 @@
|
|
1012
1006
|
background: transparent;
|
1013
1007
|
}
|
1014
1008
|
.jstree-default-dark-responsive .jstree-open > .jstree-ocl {
|
1015
|
-
background-position: 0
|
1009
|
+
background-position: 0 0 !important;
|
1016
1010
|
}
|
1017
1011
|
.jstree-default-dark-responsive .jstree-closed > .jstree-ocl {
|
1018
1012
|
background-position: 0 -40px !important;
|
1019
1013
|
}
|
1020
1014
|
.jstree-default-dark-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
|
1021
|
-
background-position: -40px
|
1015
|
+
background-position: -40px 0 !important;
|
1022
1016
|
}
|
1023
1017
|
.jstree-default-dark-responsive .jstree-themeicon {
|
1024
1018
|
background-position: -40px -40px;
|
@@ -1046,13 +1040,13 @@
|
|
1046
1040
|
background: transparent;
|
1047
1041
|
}
|
1048
1042
|
.jstree-default-dark-responsive .jstree-wholerow {
|
1049
|
-
border-top: 1px solid #
|
1050
|
-
border-bottom: 1px solid #
|
1043
|
+
border-top: 1px solid #666;
|
1044
|
+
border-bottom: 1px solid #000;
|
1051
1045
|
background: #333333;
|
1052
1046
|
height: 40px;
|
1053
1047
|
}
|
1054
1048
|
.jstree-default-dark-responsive .jstree-wholerow-hovered {
|
1055
|
-
background: #
|
1049
|
+
background: #555;
|
1056
1050
|
}
|
1057
1051
|
.jstree-default-dark-responsive .jstree-wholerow-clicked {
|
1058
1052
|
background: #5fa2db;
|
@@ -1072,7 +1066,7 @@
|
|
1072
1066
|
.jstree-default-dark-responsive .jstree-node > .jstree-ocl,
|
1073
1067
|
.jstree-default-dark-responsive .jstree-themeicon,
|
1074
1068
|
.jstree-default-dark-responsive .jstree-checkbox {
|
1075
|
-
background-image:
|
1069
|
+
background-image: url("40px.png");
|
1076
1070
|
background-size: 120px 240px;
|
1077
1071
|
}
|
1078
1072
|
.jstree-default-dark-responsive .jstree-node {
|
@@ -1094,11 +1088,11 @@
|
|
1094
1088
|
background-position: 0 0;
|
1095
1089
|
}
|
1096
1090
|
.jstree-default-dark-responsive .jstree-file {
|
1097
|
-
background:
|
1091
|
+
background: url("40px.png") 0 -160px no-repeat;
|
1098
1092
|
background-size: 120px 240px;
|
1099
1093
|
}
|
1100
1094
|
.jstree-default-dark-responsive .jstree-folder {
|
1101
|
-
background:
|
1095
|
+
background: url("40px.png") -40px -40px no-repeat;
|
1102
1096
|
background-size: 120px 240px;
|
1103
1097
|
}
|
1104
1098
|
.jstree-default-dark-responsive > .jstree-container-ul > .jstree-node {
|
@@ -189,6 +189,9 @@
|
|
189
189
|
border: 0;
|
190
190
|
box-shadow: 0 0 0;
|
191
191
|
}
|
192
|
+
.vakata-context .vakata-contextmenu-disabled > a > i {
|
193
|
+
filter: grayscale(100%);
|
194
|
+
}
|
192
195
|
.vakata-context li > a > i {
|
193
196
|
text-decoration: none;
|
194
197
|
display: inline-block;
|
@@ -407,7 +410,7 @@
|
|
407
410
|
}
|
408
411
|
.jstree-default .jstree-node,
|
409
412
|
.jstree-default .jstree-icon {
|
410
|
-
background-image:
|
413
|
+
background-image: url("32px.png");
|
411
414
|
}
|
412
415
|
.jstree-default .jstree-node {
|
413
416
|
background-position: -292px -4px;
|
@@ -512,13 +515,13 @@
|
|
512
515
|
background-position: 0 0;
|
513
516
|
}
|
514
517
|
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
515
|
-
background:
|
518
|
+
background: url("throbber.gif") center center no-repeat;
|
516
519
|
}
|
517
520
|
.jstree-default .jstree-file {
|
518
|
-
background:
|
521
|
+
background: url("32px.png") -100px -68px no-repeat;
|
519
522
|
}
|
520
523
|
.jstree-default .jstree-folder {
|
521
|
-
background:
|
524
|
+
background: url("32px.png") -260px -4px no-repeat;
|
522
525
|
}
|
523
526
|
.jstree-default > .jstree-container-ul > .jstree-node {
|
524
527
|
margin-left: 0;
|
@@ -530,7 +533,7 @@
|
|
530
533
|
}
|
531
534
|
#jstree-dnd.jstree-default .jstree-ok,
|
532
535
|
#jstree-dnd.jstree-default .jstree-er {
|
533
|
-
background-image:
|
536
|
+
background-image: url("32px.png");
|
534
537
|
background-repeat: no-repeat;
|
535
538
|
background-color: transparent;
|
536
539
|
}
|
@@ -554,9 +557,6 @@
|
|
554
557
|
text-overflow: ellipsis;
|
555
558
|
overflow: hidden;
|
556
559
|
}
|
557
|
-
.jstree-default .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
558
|
-
width: calc(100% - 5px);
|
559
|
-
}
|
560
560
|
.jstree-default.jstree-rtl .jstree-node {
|
561
561
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
|
562
562
|
}
|
@@ -591,7 +591,7 @@
|
|
591
591
|
}
|
592
592
|
.jstree-default-small .jstree-node,
|
593
593
|
.jstree-default-small .jstree-icon {
|
594
|
-
background-image:
|
594
|
+
background-image: url("32px.png");
|
595
595
|
}
|
596
596
|
.jstree-default-small .jstree-node {
|
597
597
|
background-position: -295px -7px;
|
@@ -696,13 +696,13 @@
|
|
696
696
|
background-position: 0 0;
|
697
697
|
}
|
698
698
|
.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
699
|
-
background:
|
699
|
+
background: url("throbber.gif") center center no-repeat;
|
700
700
|
}
|
701
701
|
.jstree-default-small .jstree-file {
|
702
|
-
background:
|
702
|
+
background: url("32px.png") -103px -71px no-repeat;
|
703
703
|
}
|
704
704
|
.jstree-default-small .jstree-folder {
|
705
|
-
background:
|
705
|
+
background: url("32px.png") -263px -7px no-repeat;
|
706
706
|
}
|
707
707
|
.jstree-default-small > .jstree-container-ul > .jstree-node {
|
708
708
|
margin-left: 0;
|
@@ -714,7 +714,7 @@
|
|
714
714
|
}
|
715
715
|
#jstree-dnd.jstree-default-small .jstree-ok,
|
716
716
|
#jstree-dnd.jstree-default-small .jstree-er {
|
717
|
-
background-image:
|
717
|
+
background-image: url("32px.png");
|
718
718
|
background-repeat: no-repeat;
|
719
719
|
background-color: transparent;
|
720
720
|
}
|
@@ -738,9 +738,6 @@
|
|
738
738
|
text-overflow: ellipsis;
|
739
739
|
overflow: hidden;
|
740
740
|
}
|
741
|
-
.jstree-default-small .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
742
|
-
width: calc(100% - 5px);
|
743
|
-
}
|
744
741
|
.jstree-default-small.jstree-rtl .jstree-node {
|
745
742
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
|
746
743
|
}
|
@@ -775,7 +772,7 @@
|
|
775
772
|
}
|
776
773
|
.jstree-default-large .jstree-node,
|
777
774
|
.jstree-default-large .jstree-icon {
|
778
|
-
background-image:
|
775
|
+
background-image: url("32px.png");
|
779
776
|
}
|
780
777
|
.jstree-default-large .jstree-node {
|
781
778
|
background-position: -288px 0px;
|
@@ -880,13 +877,13 @@
|
|
880
877
|
background-position: 0 0;
|
881
878
|
}
|
882
879
|
.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
883
|
-
background:
|
880
|
+
background: url("throbber.gif") center center no-repeat;
|
884
881
|
}
|
885
882
|
.jstree-default-large .jstree-file {
|
886
|
-
background:
|
883
|
+
background: url("32px.png") -96px -64px no-repeat;
|
887
884
|
}
|
888
885
|
.jstree-default-large .jstree-folder {
|
889
|
-
background:
|
886
|
+
background: url("32px.png") -256px 0px no-repeat;
|
890
887
|
}
|
891
888
|
.jstree-default-large > .jstree-container-ul > .jstree-node {
|
892
889
|
margin-left: 0;
|
@@ -898,7 +895,7 @@
|
|
898
895
|
}
|
899
896
|
#jstree-dnd.jstree-default-large .jstree-ok,
|
900
897
|
#jstree-dnd.jstree-default-large .jstree-er {
|
901
|
-
background-image:
|
898
|
+
background-image: url("32px.png");
|
902
899
|
background-repeat: no-repeat;
|
903
900
|
background-color: transparent;
|
904
901
|
}
|
@@ -922,9 +919,6 @@
|
|
922
919
|
text-overflow: ellipsis;
|
923
920
|
overflow: hidden;
|
924
921
|
}
|
925
|
-
.jstree-default-large .jstree-ellipsis.jstree-no-icons .jstree-anchor {
|
926
|
-
width: calc(100% - 5px);
|
927
|
-
}
|
928
922
|
.jstree-default-large.jstree-rtl .jstree-node {
|
929
923
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
|
930
924
|
}
|
@@ -944,12 +938,12 @@
|
|
944
938
|
height: 40px;
|
945
939
|
}
|
946
940
|
#jstree-dnd.jstree-dnd-responsive > .jstree-ok {
|
947
|
-
background-image:
|
941
|
+
background-image: url("40px.png");
|
948
942
|
background-position: 0 -200px;
|
949
943
|
background-size: 120px 240px;
|
950
944
|
}
|
951
945
|
#jstree-dnd.jstree-dnd-responsive > .jstree-er {
|
952
|
-
background-image:
|
946
|
+
background-image: url("40px.png");
|
953
947
|
background-position: -40px -200px;
|
954
948
|
background-size: 120px 240px;
|
955
949
|
}
|
@@ -968,7 +962,7 @@
|
|
968
962
|
*/
|
969
963
|
}
|
970
964
|
.jstree-default-responsive .jstree-icon {
|
971
|
-
background-image:
|
965
|
+
background-image: url("40px.png");
|
972
966
|
}
|
973
967
|
.jstree-default-responsive .jstree-node,
|
974
968
|
.jstree-default-responsive .jstree-leaf > .jstree-ocl {
|
@@ -1012,13 +1006,13 @@
|
|
1012
1006
|
background: transparent;
|
1013
1007
|
}
|
1014
1008
|
.jstree-default-responsive .jstree-open > .jstree-ocl {
|
1015
|
-
background-position: 0
|
1009
|
+
background-position: 0 0 !important;
|
1016
1010
|
}
|
1017
1011
|
.jstree-default-responsive .jstree-closed > .jstree-ocl {
|
1018
1012
|
background-position: 0 -40px !important;
|
1019
1013
|
}
|
1020
1014
|
.jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
|
1021
|
-
background-position: -40px
|
1015
|
+
background-position: -40px 0 !important;
|
1022
1016
|
}
|
1023
1017
|
.jstree-default-responsive .jstree-themeicon {
|
1024
1018
|
background-position: -40px -40px;
|
@@ -1072,7 +1066,7 @@
|
|
1072
1066
|
.jstree-default-responsive .jstree-node > .jstree-ocl,
|
1073
1067
|
.jstree-default-responsive .jstree-themeicon,
|
1074
1068
|
.jstree-default-responsive .jstree-checkbox {
|
1075
|
-
background-image:
|
1069
|
+
background-image: url("40px.png");
|
1076
1070
|
background-size: 120px 240px;
|
1077
1071
|
}
|
1078
1072
|
.jstree-default-responsive .jstree-node {
|
@@ -1094,11 +1088,11 @@
|
|
1094
1088
|
background-position: 0 0;
|
1095
1089
|
}
|
1096
1090
|
.jstree-default-responsive .jstree-file {
|
1097
|
-
background:
|
1091
|
+
background: url("40px.png") 0 -160px no-repeat;
|
1098
1092
|
background-size: 120px 240px;
|
1099
1093
|
}
|
1100
1094
|
.jstree-default-responsive .jstree-folder {
|
1101
|
-
background:
|
1095
|
+
background: url("40px.png") -40px -40px no-repeat;
|
1102
1096
|
background-size: 120px 240px;
|
1103
1097
|
}
|
1104
1098
|
.jstree-default-responsive > .jstree-container-ul > .jstree-node {
|