jstree-rails-4 3.3.8 → 3.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +12 -9
- data/README.md +2 -2
- data/jstree-rails-4.gemspec +4 -4
- data/lib/jstree-rails-4/version.rb +1 -1
- 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/images/default-dark/throbber.gif +0 -0
- data/vendor/assets/javascripts/jstree.js +509 -376
- data/vendor/assets/stylesheets/jstree-default-dark.scss +41 -37
- data/vendor/assets/stylesheets/jstree-default.scss +38 -34
- metadata +12 -15
@@ -110,6 +110,7 @@
|
|
110
110
|
/* disable selection/Copy of UIWebView */
|
111
111
|
-webkit-touch-callout: none;
|
112
112
|
/* disable the IOS popup when long-press on a link */
|
113
|
+
user-select: none;
|
113
114
|
}
|
114
115
|
.vakata-context {
|
115
116
|
display: none;
|
@@ -162,6 +163,9 @@
|
|
162
163
|
.vakata-context li > a:focus {
|
163
164
|
outline: 0;
|
164
165
|
}
|
166
|
+
.vakata-context .vakata-context-no-icons {
|
167
|
+
margin-left: 0;
|
168
|
+
}
|
165
169
|
.vakata-context .vakata-context-hover > a {
|
166
170
|
position: relative;
|
167
171
|
background-color: #e8eff7;
|
@@ -410,14 +414,14 @@
|
|
410
414
|
}
|
411
415
|
.jstree-default-dark .jstree-node,
|
412
416
|
.jstree-default-dark .jstree-icon {
|
413
|
-
background-image: url("32px.png");
|
417
|
+
background-image: image-url("default-dark/32px.png");
|
414
418
|
}
|
415
419
|
.jstree-default-dark .jstree-node {
|
416
420
|
background-position: -292px -4px;
|
417
421
|
background-repeat: repeat-y;
|
418
422
|
}
|
419
423
|
.jstree-default-dark .jstree-last {
|
420
|
-
background:
|
424
|
+
background-image: none;
|
421
425
|
}
|
422
426
|
.jstree-default-dark .jstree-open > .jstree-ocl {
|
423
427
|
background-position: -132px -4px;
|
@@ -488,7 +492,7 @@
|
|
488
492
|
background-repeat: repeat-y;
|
489
493
|
}
|
490
494
|
.jstree-default-dark.jstree-rtl .jstree-last {
|
491
|
-
background:
|
495
|
+
background-image: none;
|
492
496
|
}
|
493
497
|
.jstree-default-dark.jstree-rtl .jstree-open > .jstree-ocl {
|
494
498
|
background-position: -132px -36px;
|
@@ -515,13 +519,13 @@
|
|
515
519
|
background-position: 0 0;
|
516
520
|
}
|
517
521
|
.jstree-default-dark > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
518
|
-
background: url("throbber.gif") center center no-repeat;
|
522
|
+
background: image-url("default-dark/throbber.gif") center center no-repeat;
|
519
523
|
}
|
520
524
|
.jstree-default-dark .jstree-file {
|
521
|
-
background: url("32px.png") -100px -68px no-repeat;
|
525
|
+
background: image-url("default-dark/32px.png") -100px -68px no-repeat;
|
522
526
|
}
|
523
527
|
.jstree-default-dark .jstree-folder {
|
524
|
-
background: url("32px.png") -260px -4px no-repeat;
|
528
|
+
background: image-url("default-dark/32px.png") -260px -4px no-repeat;
|
525
529
|
}
|
526
530
|
.jstree-default-dark > .jstree-container-ul > .jstree-node {
|
527
531
|
margin-left: 0;
|
@@ -533,7 +537,7 @@
|
|
533
537
|
}
|
534
538
|
#jstree-dnd.jstree-default-dark .jstree-ok,
|
535
539
|
#jstree-dnd.jstree-default-dark .jstree-er {
|
536
|
-
background-image: url("32px.png");
|
540
|
+
background-image: image-url("default-dark/32px.png");
|
537
541
|
background-repeat: no-repeat;
|
538
542
|
background-color: transparent;
|
539
543
|
}
|
@@ -553,7 +557,7 @@
|
|
553
557
|
overflow: hidden;
|
554
558
|
}
|
555
559
|
.jstree-default-dark .jstree-ellipsis .jstree-anchor {
|
556
|
-
width: calc(100% -
|
560
|
+
width: calc(100% - 24px + 5px);
|
557
561
|
text-overflow: ellipsis;
|
558
562
|
overflow: hidden;
|
559
563
|
}
|
@@ -561,7 +565,7 @@
|
|
561
565
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
|
562
566
|
}
|
563
567
|
.jstree-default-dark.jstree-rtl .jstree-last {
|
564
|
-
background:
|
568
|
+
background-image: none;
|
565
569
|
}
|
566
570
|
.jstree-default-dark-small .jstree-node {
|
567
571
|
min-height: 18px;
|
@@ -591,14 +595,14 @@
|
|
591
595
|
}
|
592
596
|
.jstree-default-dark-small .jstree-node,
|
593
597
|
.jstree-default-dark-small .jstree-icon {
|
594
|
-
background-image: url("32px.png");
|
598
|
+
background-image: image-url("default-dark/32px.png");
|
595
599
|
}
|
596
600
|
.jstree-default-dark-small .jstree-node {
|
597
601
|
background-position: -295px -7px;
|
598
602
|
background-repeat: repeat-y;
|
599
603
|
}
|
600
604
|
.jstree-default-dark-small .jstree-last {
|
601
|
-
background:
|
605
|
+
background-image: none;
|
602
606
|
}
|
603
607
|
.jstree-default-dark-small .jstree-open > .jstree-ocl {
|
604
608
|
background-position: -135px -7px;
|
@@ -669,7 +673,7 @@
|
|
669
673
|
background-repeat: repeat-y;
|
670
674
|
}
|
671
675
|
.jstree-default-dark-small.jstree-rtl .jstree-last {
|
672
|
-
background:
|
676
|
+
background-image: none;
|
673
677
|
}
|
674
678
|
.jstree-default-dark-small.jstree-rtl .jstree-open > .jstree-ocl {
|
675
679
|
background-position: -135px -39px;
|
@@ -696,13 +700,13 @@
|
|
696
700
|
background-position: 0 0;
|
697
701
|
}
|
698
702
|
.jstree-default-dark-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
699
|
-
background: url("throbber.gif") center center no-repeat;
|
703
|
+
background: image-url("default-dark/throbber.gif") center center no-repeat;
|
700
704
|
}
|
701
705
|
.jstree-default-dark-small .jstree-file {
|
702
|
-
background: url("32px.png") -103px -71px no-repeat;
|
706
|
+
background: image-url("default-dark/32px.png") -103px -71px no-repeat;
|
703
707
|
}
|
704
708
|
.jstree-default-dark-small .jstree-folder {
|
705
|
-
background: url("32px.png") -263px -7px no-repeat;
|
709
|
+
background: image-url("default-dark/32px.png") -263px -7px no-repeat;
|
706
710
|
}
|
707
711
|
.jstree-default-dark-small > .jstree-container-ul > .jstree-node {
|
708
712
|
margin-left: 0;
|
@@ -714,7 +718,7 @@
|
|
714
718
|
}
|
715
719
|
#jstree-dnd.jstree-default-dark-small .jstree-ok,
|
716
720
|
#jstree-dnd.jstree-default-dark-small .jstree-er {
|
717
|
-
background-image: url("32px.png");
|
721
|
+
background-image: image-url("default-dark/32px.png");
|
718
722
|
background-repeat: no-repeat;
|
719
723
|
background-color: transparent;
|
720
724
|
}
|
@@ -734,7 +738,7 @@
|
|
734
738
|
overflow: hidden;
|
735
739
|
}
|
736
740
|
.jstree-default-dark-small .jstree-ellipsis .jstree-anchor {
|
737
|
-
width: calc(100% -
|
741
|
+
width: calc(100% - 18px + 5px);
|
738
742
|
text-overflow: ellipsis;
|
739
743
|
overflow: hidden;
|
740
744
|
}
|
@@ -742,7 +746,7 @@
|
|
742
746
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
|
743
747
|
}
|
744
748
|
.jstree-default-dark-small.jstree-rtl .jstree-last {
|
745
|
-
background:
|
749
|
+
background-image: none;
|
746
750
|
}
|
747
751
|
.jstree-default-dark-large .jstree-node {
|
748
752
|
min-height: 32px;
|
@@ -772,14 +776,14 @@
|
|
772
776
|
}
|
773
777
|
.jstree-default-dark-large .jstree-node,
|
774
778
|
.jstree-default-dark-large .jstree-icon {
|
775
|
-
background-image: url("32px.png");
|
779
|
+
background-image: image-url("default-dark/32px.png");
|
776
780
|
}
|
777
781
|
.jstree-default-dark-large .jstree-node {
|
778
782
|
background-position: -288px 0px;
|
779
783
|
background-repeat: repeat-y;
|
780
784
|
}
|
781
785
|
.jstree-default-dark-large .jstree-last {
|
782
|
-
background:
|
786
|
+
background-image: none;
|
783
787
|
}
|
784
788
|
.jstree-default-dark-large .jstree-open > .jstree-ocl {
|
785
789
|
background-position: -128px 0px;
|
@@ -850,7 +854,7 @@
|
|
850
854
|
background-repeat: repeat-y;
|
851
855
|
}
|
852
856
|
.jstree-default-dark-large.jstree-rtl .jstree-last {
|
853
|
-
background:
|
857
|
+
background-image: none;
|
854
858
|
}
|
855
859
|
.jstree-default-dark-large.jstree-rtl .jstree-open > .jstree-ocl {
|
856
860
|
background-position: -128px -32px;
|
@@ -877,13 +881,13 @@
|
|
877
881
|
background-position: 0 0;
|
878
882
|
}
|
879
883
|
.jstree-default-dark-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
880
|
-
background: url("throbber.gif") center center no-repeat;
|
884
|
+
background: image-url("default-dark/throbber.gif") center center no-repeat;
|
881
885
|
}
|
882
886
|
.jstree-default-dark-large .jstree-file {
|
883
|
-
background: url("32px.png") -96px -64px no-repeat;
|
887
|
+
background: image-url("default-dark/32px.png") -96px -64px no-repeat;
|
884
888
|
}
|
885
889
|
.jstree-default-dark-large .jstree-folder {
|
886
|
-
background: url("32px.png") -256px 0px no-repeat;
|
890
|
+
background: image-url("default-dark/32px.png") -256px 0px no-repeat;
|
887
891
|
}
|
888
892
|
.jstree-default-dark-large > .jstree-container-ul > .jstree-node {
|
889
893
|
margin-left: 0;
|
@@ -895,7 +899,7 @@
|
|
895
899
|
}
|
896
900
|
#jstree-dnd.jstree-default-dark-large .jstree-ok,
|
897
901
|
#jstree-dnd.jstree-default-dark-large .jstree-er {
|
898
|
-
background-image: url("32px.png");
|
902
|
+
background-image: image-url("default-dark/32px.png");
|
899
903
|
background-repeat: no-repeat;
|
900
904
|
background-color: transparent;
|
901
905
|
}
|
@@ -915,7 +919,7 @@
|
|
915
919
|
overflow: hidden;
|
916
920
|
}
|
917
921
|
.jstree-default-dark-large .jstree-ellipsis .jstree-anchor {
|
918
|
-
width: calc(100% -
|
922
|
+
width: calc(100% - 32px + 5px);
|
919
923
|
text-overflow: ellipsis;
|
920
924
|
overflow: hidden;
|
921
925
|
}
|
@@ -923,7 +927,7 @@
|
|
923
927
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
|
924
928
|
}
|
925
929
|
.jstree-default-dark-large.jstree-rtl .jstree-last {
|
926
|
-
background:
|
930
|
+
background-image: none;
|
927
931
|
}
|
928
932
|
@media (max-width: 768px) {
|
929
933
|
#jstree-dnd.jstree-dnd-responsive {
|
@@ -938,12 +942,12 @@
|
|
938
942
|
height: 40px;
|
939
943
|
}
|
940
944
|
#jstree-dnd.jstree-dnd-responsive > .jstree-ok {
|
941
|
-
background-image: url("40px.png");
|
945
|
+
background-image: image-url("default-dark/40px.png");
|
942
946
|
background-position: 0 -200px;
|
943
947
|
background-size: 120px 240px;
|
944
948
|
}
|
945
949
|
#jstree-dnd.jstree-dnd-responsive > .jstree-er {
|
946
|
-
background-image: url("40px.png");
|
950
|
+
background-image: image-url("default-dark/40px.png");
|
947
951
|
background-position: -40px -200px;
|
948
952
|
background-size: 120px 240px;
|
949
953
|
}
|
@@ -962,7 +966,7 @@
|
|
962
966
|
*/
|
963
967
|
}
|
964
968
|
.jstree-default-dark-responsive .jstree-icon {
|
965
|
-
background-image: url("40px.png");
|
969
|
+
background-image: image-url("default-dark/40px.png");
|
966
970
|
}
|
967
971
|
.jstree-default-dark-responsive .jstree-node,
|
968
972
|
.jstree-default-dark-responsive .jstree-leaf > .jstree-ocl {
|
@@ -1066,7 +1070,7 @@
|
|
1066
1070
|
.jstree-default-dark-responsive .jstree-node > .jstree-ocl,
|
1067
1071
|
.jstree-default-dark-responsive .jstree-themeicon,
|
1068
1072
|
.jstree-default-dark-responsive .jstree-checkbox {
|
1069
|
-
background-image: url("40px.png");
|
1073
|
+
background-image: image-url("default-dark/40px.png");
|
1070
1074
|
background-size: 120px 240px;
|
1071
1075
|
}
|
1072
1076
|
.jstree-default-dark-responsive .jstree-node {
|
@@ -1074,7 +1078,7 @@
|
|
1074
1078
|
background-repeat: repeat-y;
|
1075
1079
|
}
|
1076
1080
|
.jstree-default-dark-responsive .jstree-last {
|
1077
|
-
background:
|
1081
|
+
background-image: none;
|
1078
1082
|
}
|
1079
1083
|
.jstree-default-dark-responsive .jstree-leaf > .jstree-ocl {
|
1080
1084
|
background-position: -40px -120px;
|
@@ -1088,11 +1092,11 @@
|
|
1088
1092
|
background-position: 0 0;
|
1089
1093
|
}
|
1090
1094
|
.jstree-default-dark-responsive .jstree-file {
|
1091
|
-
background: url("40px.png") 0 -160px no-repeat;
|
1095
|
+
background: image-url("default-dark/40px.png") 0 -160px no-repeat;
|
1092
1096
|
background-size: 120px 240px;
|
1093
1097
|
}
|
1094
1098
|
.jstree-default-dark-responsive .jstree-folder {
|
1095
|
-
background: url("40px.png") -40px -40px no-repeat;
|
1099
|
+
background: image-url("default-dark/40px.png") -40px -40px no-repeat;
|
1096
1100
|
background-size: 120px 240px;
|
1097
1101
|
}
|
1098
1102
|
.jstree-default-dark-responsive > .jstree-container-ul > .jstree-node {
|
@@ -1130,17 +1134,17 @@
|
|
1130
1134
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
|
1131
1135
|
}
|
1132
1136
|
.jstree-default-dark.jstree-rtl .jstree-last {
|
1133
|
-
background:
|
1137
|
+
background-image: none;
|
1134
1138
|
}
|
1135
1139
|
.jstree-default-dark-small.jstree-rtl .jstree-node {
|
1136
1140
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
|
1137
1141
|
}
|
1138
1142
|
.jstree-default-dark-small.jstree-rtl .jstree-last {
|
1139
|
-
background:
|
1143
|
+
background-image: none;
|
1140
1144
|
}
|
1141
1145
|
.jstree-default-dark-large.jstree-rtl .jstree-node {
|
1142
1146
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
|
1143
1147
|
}
|
1144
1148
|
.jstree-default-dark-large.jstree-rtl .jstree-last {
|
1145
|
-
background:
|
1149
|
+
background-image: none;
|
1146
1150
|
}
|
@@ -110,6 +110,7 @@
|
|
110
110
|
/* disable selection/Copy of UIWebView */
|
111
111
|
-webkit-touch-callout: none;
|
112
112
|
/* disable the IOS popup when long-press on a link */
|
113
|
+
user-select: none;
|
113
114
|
}
|
114
115
|
.vakata-context {
|
115
116
|
display: none;
|
@@ -162,6 +163,9 @@
|
|
162
163
|
.vakata-context li > a:focus {
|
163
164
|
outline: 0;
|
164
165
|
}
|
166
|
+
.vakata-context .vakata-context-no-icons {
|
167
|
+
margin-left: 0;
|
168
|
+
}
|
165
169
|
.vakata-context .vakata-context-hover > a {
|
166
170
|
position: relative;
|
167
171
|
background-color: #e8eff7;
|
@@ -410,14 +414,14 @@
|
|
410
414
|
}
|
411
415
|
.jstree-default .jstree-node,
|
412
416
|
.jstree-default .jstree-icon {
|
413
|
-
background-image: url("32px.png");
|
417
|
+
background-image: image-url("default/32px.png");
|
414
418
|
}
|
415
419
|
.jstree-default .jstree-node {
|
416
420
|
background-position: -292px -4px;
|
417
421
|
background-repeat: repeat-y;
|
418
422
|
}
|
419
423
|
.jstree-default .jstree-last {
|
420
|
-
background:
|
424
|
+
background-image: none;
|
421
425
|
}
|
422
426
|
.jstree-default .jstree-open > .jstree-ocl {
|
423
427
|
background-position: -132px -4px;
|
@@ -488,7 +492,7 @@
|
|
488
492
|
background-repeat: repeat-y;
|
489
493
|
}
|
490
494
|
.jstree-default.jstree-rtl .jstree-last {
|
491
|
-
background:
|
495
|
+
background-image: none;
|
492
496
|
}
|
493
497
|
.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
|
494
498
|
background-position: -132px -36px;
|
@@ -515,13 +519,13 @@
|
|
515
519
|
background-position: 0 0;
|
516
520
|
}
|
517
521
|
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
518
|
-
background: url("throbber.gif") center center no-repeat;
|
522
|
+
background: image-url("default/throbber.gif") center center no-repeat;
|
519
523
|
}
|
520
524
|
.jstree-default .jstree-file {
|
521
|
-
background: url("32px.png") -100px -68px no-repeat;
|
525
|
+
background: image-url("default/32px.png") -100px -68px no-repeat;
|
522
526
|
}
|
523
527
|
.jstree-default .jstree-folder {
|
524
|
-
background: url("32px.png") -260px -4px no-repeat;
|
528
|
+
background: image-url("default/32px.png") -260px -4px no-repeat;
|
525
529
|
}
|
526
530
|
.jstree-default > .jstree-container-ul > .jstree-node {
|
527
531
|
margin-left: 0;
|
@@ -533,7 +537,7 @@
|
|
533
537
|
}
|
534
538
|
#jstree-dnd.jstree-default .jstree-ok,
|
535
539
|
#jstree-dnd.jstree-default .jstree-er {
|
536
|
-
background-image: url("32px.png");
|
540
|
+
background-image: image-url("default/32px.png");
|
537
541
|
background-repeat: no-repeat;
|
538
542
|
background-color: transparent;
|
539
543
|
}
|
@@ -553,7 +557,7 @@
|
|
553
557
|
overflow: hidden;
|
554
558
|
}
|
555
559
|
.jstree-default .jstree-ellipsis .jstree-anchor {
|
556
|
-
width: calc(100% -
|
560
|
+
width: calc(100% - 24px + 5px);
|
557
561
|
text-overflow: ellipsis;
|
558
562
|
overflow: hidden;
|
559
563
|
}
|
@@ -561,7 +565,7 @@
|
|
561
565
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
|
562
566
|
}
|
563
567
|
.jstree-default.jstree-rtl .jstree-last {
|
564
|
-
background:
|
568
|
+
background-image: none;
|
565
569
|
}
|
566
570
|
.jstree-default-small .jstree-node {
|
567
571
|
min-height: 18px;
|
@@ -591,14 +595,14 @@
|
|
591
595
|
}
|
592
596
|
.jstree-default-small .jstree-node,
|
593
597
|
.jstree-default-small .jstree-icon {
|
594
|
-
background-image: url("32px.png");
|
598
|
+
background-image: image-url("default/32px.png");
|
595
599
|
}
|
596
600
|
.jstree-default-small .jstree-node {
|
597
601
|
background-position: -295px -7px;
|
598
602
|
background-repeat: repeat-y;
|
599
603
|
}
|
600
604
|
.jstree-default-small .jstree-last {
|
601
|
-
background:
|
605
|
+
background-image: none;
|
602
606
|
}
|
603
607
|
.jstree-default-small .jstree-open > .jstree-ocl {
|
604
608
|
background-position: -135px -7px;
|
@@ -669,7 +673,7 @@
|
|
669
673
|
background-repeat: repeat-y;
|
670
674
|
}
|
671
675
|
.jstree-default-small.jstree-rtl .jstree-last {
|
672
|
-
background:
|
676
|
+
background-image: none;
|
673
677
|
}
|
674
678
|
.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
|
675
679
|
background-position: -135px -39px;
|
@@ -696,13 +700,13 @@
|
|
696
700
|
background-position: 0 0;
|
697
701
|
}
|
698
702
|
.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
699
|
-
background: url("throbber.gif") center center no-repeat;
|
703
|
+
background: image-url("default/throbber.gif") center center no-repeat;
|
700
704
|
}
|
701
705
|
.jstree-default-small .jstree-file {
|
702
|
-
background: url("32px.png") -103px -71px no-repeat;
|
706
|
+
background: image-url("default/32px.png") -103px -71px no-repeat;
|
703
707
|
}
|
704
708
|
.jstree-default-small .jstree-folder {
|
705
|
-
background: url("32px.png") -263px -7px no-repeat;
|
709
|
+
background: image-url("default/32px.png") -263px -7px no-repeat;
|
706
710
|
}
|
707
711
|
.jstree-default-small > .jstree-container-ul > .jstree-node {
|
708
712
|
margin-left: 0;
|
@@ -714,7 +718,7 @@
|
|
714
718
|
}
|
715
719
|
#jstree-dnd.jstree-default-small .jstree-ok,
|
716
720
|
#jstree-dnd.jstree-default-small .jstree-er {
|
717
|
-
background-image: url("32px.png");
|
721
|
+
background-image: image-url("default/32px.png");
|
718
722
|
background-repeat: no-repeat;
|
719
723
|
background-color: transparent;
|
720
724
|
}
|
@@ -734,7 +738,7 @@
|
|
734
738
|
overflow: hidden;
|
735
739
|
}
|
736
740
|
.jstree-default-small .jstree-ellipsis .jstree-anchor {
|
737
|
-
width: calc(100% -
|
741
|
+
width: calc(100% - 18px + 5px);
|
738
742
|
text-overflow: ellipsis;
|
739
743
|
overflow: hidden;
|
740
744
|
}
|
@@ -742,7 +746,7 @@
|
|
742
746
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
|
743
747
|
}
|
744
748
|
.jstree-default-small.jstree-rtl .jstree-last {
|
745
|
-
background:
|
749
|
+
background-image: none;
|
746
750
|
}
|
747
751
|
.jstree-default-large .jstree-node {
|
748
752
|
min-height: 32px;
|
@@ -772,14 +776,14 @@
|
|
772
776
|
}
|
773
777
|
.jstree-default-large .jstree-node,
|
774
778
|
.jstree-default-large .jstree-icon {
|
775
|
-
background-image: url("32px.png");
|
779
|
+
background-image: image-url("default/32px.png");
|
776
780
|
}
|
777
781
|
.jstree-default-large .jstree-node {
|
778
782
|
background-position: -288px 0px;
|
779
783
|
background-repeat: repeat-y;
|
780
784
|
}
|
781
785
|
.jstree-default-large .jstree-last {
|
782
|
-
background:
|
786
|
+
background-image: none;
|
783
787
|
}
|
784
788
|
.jstree-default-large .jstree-open > .jstree-ocl {
|
785
789
|
background-position: -128px 0px;
|
@@ -850,7 +854,7 @@
|
|
850
854
|
background-repeat: repeat-y;
|
851
855
|
}
|
852
856
|
.jstree-default-large.jstree-rtl .jstree-last {
|
853
|
-
background:
|
857
|
+
background-image: none;
|
854
858
|
}
|
855
859
|
.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
|
856
860
|
background-position: -128px -32px;
|
@@ -877,13 +881,13 @@
|
|
877
881
|
background-position: 0 0;
|
878
882
|
}
|
879
883
|
.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
|
880
|
-
background: url("throbber.gif") center center no-repeat;
|
884
|
+
background: image-url("default/throbber.gif") center center no-repeat;
|
881
885
|
}
|
882
886
|
.jstree-default-large .jstree-file {
|
883
|
-
background: url("32px.png") -96px -64px no-repeat;
|
887
|
+
background: image-url("default/32px.png") -96px -64px no-repeat;
|
884
888
|
}
|
885
889
|
.jstree-default-large .jstree-folder {
|
886
|
-
background: url("32px.png") -256px 0px no-repeat;
|
890
|
+
background: image-url("default/32px.png") -256px 0px no-repeat;
|
887
891
|
}
|
888
892
|
.jstree-default-large > .jstree-container-ul > .jstree-node {
|
889
893
|
margin-left: 0;
|
@@ -895,7 +899,7 @@
|
|
895
899
|
}
|
896
900
|
#jstree-dnd.jstree-default-large .jstree-ok,
|
897
901
|
#jstree-dnd.jstree-default-large .jstree-er {
|
898
|
-
background-image: url("32px.png");
|
902
|
+
background-image: image-url("default/32px.png");
|
899
903
|
background-repeat: no-repeat;
|
900
904
|
background-color: transparent;
|
901
905
|
}
|
@@ -915,7 +919,7 @@
|
|
915
919
|
overflow: hidden;
|
916
920
|
}
|
917
921
|
.jstree-default-large .jstree-ellipsis .jstree-anchor {
|
918
|
-
width: calc(100% -
|
922
|
+
width: calc(100% - 32px + 5px);
|
919
923
|
text-overflow: ellipsis;
|
920
924
|
overflow: hidden;
|
921
925
|
}
|
@@ -923,7 +927,7 @@
|
|
923
927
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
|
924
928
|
}
|
925
929
|
.jstree-default-large.jstree-rtl .jstree-last {
|
926
|
-
background:
|
930
|
+
background-image: none;
|
927
931
|
}
|
928
932
|
@media (max-width: 768px) {
|
929
933
|
#jstree-dnd.jstree-dnd-responsive {
|
@@ -938,12 +942,12 @@
|
|
938
942
|
height: 40px;
|
939
943
|
}
|
940
944
|
#jstree-dnd.jstree-dnd-responsive > .jstree-ok {
|
941
|
-
background-image: url("40px.png");
|
945
|
+
background-image: image-url("default/40px.png");
|
942
946
|
background-position: 0 -200px;
|
943
947
|
background-size: 120px 240px;
|
944
948
|
}
|
945
949
|
#jstree-dnd.jstree-dnd-responsive > .jstree-er {
|
946
|
-
background-image: url("40px.png");
|
950
|
+
background-image: image-url("default/40px.png");
|
947
951
|
background-position: -40px -200px;
|
948
952
|
background-size: 120px 240px;
|
949
953
|
}
|
@@ -962,7 +966,7 @@
|
|
962
966
|
*/
|
963
967
|
}
|
964
968
|
.jstree-default-responsive .jstree-icon {
|
965
|
-
background-image: url("40px.png");
|
969
|
+
background-image: image-url("default/40px.png");
|
966
970
|
}
|
967
971
|
.jstree-default-responsive .jstree-node,
|
968
972
|
.jstree-default-responsive .jstree-leaf > .jstree-ocl {
|
@@ -1066,7 +1070,7 @@
|
|
1066
1070
|
.jstree-default-responsive .jstree-node > .jstree-ocl,
|
1067
1071
|
.jstree-default-responsive .jstree-themeicon,
|
1068
1072
|
.jstree-default-responsive .jstree-checkbox {
|
1069
|
-
background-image: url("40px.png");
|
1073
|
+
background-image: image-url("default/40px.png");
|
1070
1074
|
background-size: 120px 240px;
|
1071
1075
|
}
|
1072
1076
|
.jstree-default-responsive .jstree-node {
|
@@ -1074,7 +1078,7 @@
|
|
1074
1078
|
background-repeat: repeat-y;
|
1075
1079
|
}
|
1076
1080
|
.jstree-default-responsive .jstree-last {
|
1077
|
-
background:
|
1081
|
+
background-image: none;
|
1078
1082
|
}
|
1079
1083
|
.jstree-default-responsive .jstree-leaf > .jstree-ocl {
|
1080
1084
|
background-position: -40px -120px;
|
@@ -1088,11 +1092,11 @@
|
|
1088
1092
|
background-position: 0 0;
|
1089
1093
|
}
|
1090
1094
|
.jstree-default-responsive .jstree-file {
|
1091
|
-
background: url("40px.png") 0 -160px no-repeat;
|
1095
|
+
background: image-url("default/40px.png") 0 -160px no-repeat;
|
1092
1096
|
background-size: 120px 240px;
|
1093
1097
|
}
|
1094
1098
|
.jstree-default-responsive .jstree-folder {
|
1095
|
-
background: url("40px.png") -40px -40px no-repeat;
|
1099
|
+
background: image-url("default/40px.png") -40px -40px no-repeat;
|
1096
1100
|
background-size: 120px 240px;
|
1097
1101
|
}
|
1098
1102
|
.jstree-default-responsive > .jstree-container-ul > .jstree-node {
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jstree-rails-4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kesha Antonov
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: json
|
@@ -16,56 +15,56 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - "~>"
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
18
|
+
version: 2.13.2
|
20
19
|
type: :development
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.
|
25
|
+
version: 2.13.2
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: thor
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
30
29
|
requirements:
|
31
30
|
- - "~>"
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
32
|
+
version: 1.4.0
|
34
33
|
type: :development
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
39
|
+
version: 1.4.0
|
41
40
|
- !ruby/object:Gem::Dependency
|
42
41
|
name: bundler
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
44
43
|
requirements:
|
45
44
|
- - "~>"
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
46
|
+
version: 2.7.1
|
48
47
|
type: :development
|
49
48
|
prerelease: false
|
50
49
|
version_requirements: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
51
|
- - "~>"
|
53
52
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
53
|
+
version: 2.7.1
|
55
54
|
- !ruby/object:Gem::Dependency
|
56
55
|
name: httpclient
|
57
56
|
requirement: !ruby/object:Gem::Requirement
|
58
57
|
requirements:
|
59
58
|
- - "~>"
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.
|
60
|
+
version: 2.9.0
|
62
61
|
type: :development
|
63
62
|
prerelease: false
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - "~>"
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.
|
67
|
+
version: 2.9.0
|
69
68
|
description: jsTree is jquery plugin, that provides interactive trees. It is absolutely
|
70
69
|
free, open source and distributed under the MIT license.
|
71
70
|
email:
|
@@ -74,6 +73,7 @@ executables: []
|
|
74
73
|
extensions: []
|
75
74
|
extra_rdoc_files: []
|
76
75
|
files:
|
76
|
+
- ".gitignore"
|
77
77
|
- Gemfile
|
78
78
|
- Gemfile.lock
|
79
79
|
- LICENSE
|
@@ -97,7 +97,6 @@ homepage: https://github.com/kesha-antonov/jstree-rails-4
|
|
97
97
|
licenses:
|
98
98
|
- MIT
|
99
99
|
metadata: {}
|
100
|
-
post_install_message:
|
101
100
|
rdoc_options: []
|
102
101
|
require_paths:
|
103
102
|
- lib
|
@@ -112,9 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
111
|
- !ruby/object:Gem::Version
|
113
112
|
version: '0'
|
114
113
|
requirements: []
|
115
|
-
|
116
|
-
rubygems_version: 2.7.6
|
117
|
-
signing_key:
|
114
|
+
rubygems_version: 3.6.7
|
118
115
|
specification_version: 4
|
119
116
|
summary: Integrate jsTree javascript library with Rails asset pipeline
|
120
117
|
test_files: []
|