-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddon-sidaneThreadmarks.xml
More file actions
2172 lines (2051 loc) · 92.4 KB
/
addon-sidaneThreadmarks.xml
File metadata and controls
2172 lines (2051 loc) · 92.4 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<addon addon_id="sidaneThreadmarks" title="Threadmarks" version_string="1.5.4" version_id="1050400" url="https://xenforo.com/community/resources/threadmarks.3939/" install_callback_class="Sidane_Threadmarks_Install" install_callback_method="install" uninstall_callback_class="Sidane_Threadmarks_Install" uninstall_callback_method="uninstall">
<admin_navigation>
<navigation navigation_id="sidane_tm_categories" parent_navigation_id="threadsPosts" display_order="5" link="threadmark-categories" admin_permission_id="sidane_threadmarks" debug_only="0" hide_no_children="0"/>
</admin_navigation>
<admin_permissions>
<admin_permission admin_permission_id="sidane_threadmarks" display_order="121"/>
</admin_permissions>
<admin_style_properties/>
<admin_templates>
<template title="sidane_threadmarks_category_delete"><![CDATA[<xen:title>{xen:phrase sidane_confirm_deletion_of_threadmark_category}: {$threadmarkCategory.title}</xen:title>
<xen:h1>{xen:phrase sidane_confirm_deletion_of_threadmark_category}</xen:h1>
<xen:navigation>
<xen:breadcrumb href="{xen:adminlink 'threadmark-categories/edit', $threadmarkCategory}">{$threadmarkCategory.title}</xen:breadcrumb>
</xen:navigation>
<xen:require css="public:delete_confirmation.css" />
<xen:form action="{xen:adminlink 'threadmark-categories/delete', $threadmarkCategory}" class="deleteConfirmForm formOverlay">
<p>{xen:phrase sidane_please_confirm_that_you_want_to_delete_following_threadmark_category}:</p>
<strong><a href="{xen:adminlink 'threadmark-categories/edit', $threadmarkCategory}">{$threadmarkCategory.title}</a></strong>
<p>{xen:phrase sidane_confirm_delete_threadmark_category_footnote}</p>
<xen:submitunit save="{xen:phrase sidane_delete_threadmark_category}" />
<input type="hidden" name="_xfConfirm" value="1" />
</xen:form>]]></template>
<template title="sidane_threadmarks_category_edit"><![CDATA[<xen:title>{xen:if '{$threadmarkCategory.threadmark_category_id}', '{xen:phrase sidane_edit_threadmark_category}: {$threadmarkCategory.title}', '{xen:phrase sidane_create_new_threadmark_category}'}</xen:title>
<xen:if is="{$threadmarkCategory.threadmark_category_id}">
<xen:navigation>
<xen:breadcrumb href="{xen:adminlink threadmark-categories}#{xen:helper listitemid, $threadmarkCategory.threadmark_category_id}">{$threadmarkCategory.title}</xen:breadcrumb>
</xen:navigation>
</xen:if>
<xen:form class="AutoValidator"
action="{xen:adminlink 'threadmark-categories/save', $threadmarkCategory}"
data-redirect="on">
<xen:textboxunit label="{xen:phrase title}:" name="title" value="{$threadmarkCategory.title}" data-optinout="OptOut" data-livetitletemplate="{xen:if {$threadmarkCategory.threadmark_category_id},
'{xen:phrase sidane_edit_threadmark_category}: <em>%s</em>',
'{xen:phrase sidane_create_new_threadmark_category}: <em>%s</em>'}" />
<xen:spinboxunit label="{xen:phrase display_order}:" name="display_order" value="{$threadmarkCategory.display_order}" min="0" step="10" />
<xen:checkboxunit id="allowedUserGroups" label="{xen:phrase sidane_allowed_user_groups}:" name="allowed_user_group_ids[]" listclass="checkboxColumns">
<xen:hint><br /><label><input type="checkbox" class="CheckAll" data-target="#allowedUserGroups" /> {xen:phrase select_all}</label></xen:hint>
<xen:options source="$userGroups" />
</xen:checkboxunit>
<xen:submitunit save="{xen:phrase sidane_save_threadmark_category}">
<xen:if is="{$threadmarkCategory.threadmark_category_id}"><a href="{xen:adminlink 'threadmark-categories/delete', $threadmarkCategory}" class="button OverlayTrigger">{xen:phrase sidane_delete_threadmark_category}...</a></xen:if>
</xen:submitunit>
</xen:form>]]></template>
<template title="sidane_threadmarks_category_list"><![CDATA[<xen:title>{xen:phrase sidane_threadmark_categories}</xen:title>
<xen:topctrl>
<a href="{xen:adminlink threadmark-categories/add}" class="button">+ {xen:phrase sidane_create_new_threadmark_category}</a>
</xen:topctrl>
<xen:require css="filter_list.css" />
<xen:require js="js/xenforo/filter_list.js" />
<xen:form action="{xen:adminlink threadmark-categories}" class="section">
<xen:if is="{$threadmarkCategories}">
<h2 class="subHeading">
<xen:include template="filter_list_controls" />
{xen:phrase sidane_threadmark_categories}
</h2>
<ol class="FilterList Scrollable">
<xen:foreach loop="$threadmarkCategories" key="$threadmarkCategoryId" value="$threadmarkCategory">
<xen:listitem
id="{$threadmarkCategory.threadmark_category_id}"
label="{$threadmarkCategory.title}"
href="{xen:adminlink threadmark-categories/edit, $threadmarkCategory}"
delete="{xen:adminlink threadmark-categories/delete, $threadmarkCategory}" />
</xen:foreach>
</ol>
<p class="sectionFooter">{xen:phrase showing_x_of_y_items, 'count=<span class="FilterListCount">{xen:count $threadmarkCategories}</span>', 'total={xen:count $threadmarkCategories}'}</p>
<xen:else />
<div class="noResults">{xen:phrase sidane_no_threadmark_categories_have_been_defined}</div>
</xen:if>
</xen:form>]]></template>
<template title="tools_rebuild_threadmarks"><![CDATA[<xen:form action="{xen:adminlink 'tools/trigger-deferred'}">
<h2 class="subHeading">{xen:phrase rebuild_threadmarks}</h2>
<xen:spinboxunit name="options[batch]" value="100" step="50" min="1" label="{xen:phrase items_to_process_per_page}:" />
<xen:submitunit save="{xen:phrase rebuild_now}" />
<input type="hidden" name="cache" value="Sidane_Threadmarks_Deferred_Cache" />
</xen:form>
]]></template>
</admin_templates>
<admin_template_modifications>
<modification template="tools_rebuild" modification_key="threadmarks_tools_rebuild" description="Add the builders for threadmarks" execution_order="10" enabled="1" action="preg_replace">
<find><![CDATA[/$/]]></find>
<replace><![CDATA[<xen:include template="tools_rebuild_threadmarks" />]]></replace>
</modification>
</admin_template_modifications>
<code_events/>
<code_event_listeners>
<listener event_id="load_class_controller" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_ControllerPublic_Thread" description="XenForo_ControllerPublic_Thread"/>
<listener event_id="load_class_controller" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_ControllerPublic_Post" description="XenForo_ControllerPublic_Post"/>
<listener event_id="load_class_datawriter" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_DataWriter_DiscussionMessage_Post" description="XenForo_DataWriter_DiscussionMessage_Post"/>
<listener event_id="load_class_model" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_Model_Post" description="XenForo_Model_Post"/>
<listener event_id="load_class_model" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_Model_Thread" description="XenForo_Model_Thread"/>
<listener event_id="load_class_model" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_Model_Draft" description="XenForo_Model_Draft"/>
<listener event_id="load_class_model" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenES_Model_Elasticsearch" description="XenES_Model_Elasticsearch"/>
<listener event_id="load_class_view" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_ViewPublic_Thread_ThreadmarksLoadTree" description="XenForo_ViewPublic_Thread_ThreadmarksLoadTree"/>
<listener event_id="load_class_view" execute_order="3939" callback_class="Sidane_Threadmarks_Listener" callback_method="load_class" active="1" hint="XenForo_ViewPublic_Post_ThreadmarkPositionFill" description="XenForo_ViewPublic_Post_ThreadmarkPositionFill"/>
</code_event_listeners>
<cron/>
<email_templates/>
<email_template_modifications/>
<optiongroups>
<group group_id="sidaneThreadmarks" display_order="30000" debug_only="0"/>
<option option_id="sidaneThreadmarksHideMenuFromGuests" edit_format="onoff" data_type="boolean" can_backup="1">
<default_value>0</default_value>
<edit_format_params></edit_format_params>
<sub_options></sub_options>
<relation group_id="sidaneThreadmarks" display_order="1"/>
</option>
<option option_id="sidaneThreadmarksNavLinks" edit_format="onoff" data_type="boolean" can_backup="1">
<default_value>1</default_value>
<edit_format_params></edit_format_params>
<sub_options></sub_options>
<relation group_id="sidaneThreadmarks" display_order="10"/>
</option>
<option option_id="threadmarks_stats" edit_format="onoff" data_type="boolean" can_backup="1">
<default_value>1</default_value>
<edit_format_params></edit_format_params>
<sub_options></sub_options>
<relation group_id="sidaneThreadmarks" display_order="30"/>
</option>
</optiongroups>
<permissions>
<permission_groups/>
<permissions>
<permission permission_group_id="forum" permission_id="sidane_tm_add" permission_type="flag" default_value="unset" interface_group_id="forumPermissions" display_order="1230"/>
<permission permission_group_id="forum" permission_id="sidane_tm_delete" permission_type="flag" default_value="unset" interface_group_id="forumPermissions" display_order="1250"/>
<permission permission_group_id="forum" permission_id="sidane_tm_edit" permission_type="flag" default_value="unset" interface_group_id="forumPermissions" display_order="1240"/>
<permission permission_group_id="forum" permission_id="sidane_tm_manage" permission_type="flag" default_value="unset" interface_group_id="forumModeratorPermissions" display_order="50000"/>
<permission permission_group_id="forum" permission_id="sidane_tm_menu_limit" permission_type="integer" default_value_int="0" interface_group_id="forumPermissions" display_order="1220"/>
<permission permission_group_id="forum" permission_id="sidane_tm_view" permission_type="flag" default_value="unset" interface_group_id="forumPermissions" display_order="1210"/>
</permissions>
<interface_groups/>
</permissions>
<phrases>
<phrase title="add_threadmark" version_id="1" version_string="1.0"><![CDATA[Add Threadmark]]></phrase>
<phrase title="admin_navigation_sidane_tm_categories" version_id="1040000" version_string="1.4.0"><![CDATA[Threadmark Categories]]></phrase>
<phrase title="admin_permission_sidane_threadmarks" version_id="1040000" version_string="1.4.0"><![CDATA[Manage threadmarks]]></phrase>
<phrase title="click_to_lock" version_id="1020100" version_string="1.2.1"><![CDATA[Click to lock]]></phrase>
<phrase title="click_to_unlock" version_id="12" version_string="1.1.9"><![CDATA[Click to unlock]]></phrase>
<phrase title="delete_threadmark" version_id="1" version_string="1.0"><![CDATA[Delete this threadmark]]></phrase>
<phrase title="edit_threadmark" version_id="1" version_string="1.0"><![CDATA[Edit Threadmark]]></phrase>
<phrase title="moderator_log_post_create_threadmark" version_id="3" version_string="1.1"><![CDATA[Threadmark '{label}' created]]></phrase>
<phrase title="moderator_log_post_create_threadmark_2" version_id="1050023" version_string="1.5.0"><![CDATA[Threadmark '{category}: {label}' created]]></phrase>
<phrase title="moderator_log_post_delete_threadmark" version_id="3" version_string="1.1"><![CDATA[Threadmark '{label}' deleted]]></phrase>
<phrase title="moderator_log_post_delete_threadmark_2" version_id="1050023" version_string="1.5.0"><![CDATA[Threadmark '{category}: {label}' deleted]]></phrase>
<phrase title="moderator_log_post_update_threadmark" version_id="3" version_string="1.1"><![CDATA[Threadmark changed from '{old_label}' to '{new_label}']]></phrase>
<phrase title="moderator_log_post_update_threadmark_2" version_id="1050023" version_string="1.5.0"><![CDATA[Threadmark changed from '{old_category}: {old_label}' to '{new_category}: {new_label}']]></phrase>
<phrase title="most_recent_threadmarks" version_id="1" version_string="1.0"><![CDATA[Most recent threadmarks]]></phrase>
<phrase title="option_group_sidaneThreadmarks" version_id="1" version_string="1.0"><![CDATA[Threadmarks]]></phrase>
<phrase title="option_group_sidaneThreadmarks_description" version_id="1" version_string="1.0"><![CDATA[]]></phrase>
<phrase title="option_sidaneThreadmarksHideMenuFromGuests" version_id="1" version_string="1.0"><![CDATA[Hide threadmarks drop down menu from guests]]></phrase>
<phrase title="option_sidaneThreadmarksHideMenuFromGuests_explain" version_id="1" version_string="1.0"><![CDATA[If enabled, guests will have to click the threadmarks link to see the list of threadmarks.]]></phrase>
<phrase title="option_sidaneThreadmarksNavLinks" version_id="1" version_string="1.0"><![CDATA[Threadmark Nav links]]></phrase>
<phrase title="option_sidaneThreadmarksNavLinks_explain" version_id="1" version_string="1.0"><![CDATA[If enabled, automatically generate index/next/previous threadmark links.]]></phrase>
<phrase title="option_threadmarks_stats" version_id="1050200" version_string="1.5.2"><![CDATA[Threadmarks stats]]></phrase>
<phrase title="option_threadmarks_stats_explain" version_id="1050200" version_string="1.5.2"><![CDATA[Show a summary of threadmark statistics at the top of each threadmark index for each category.]]></phrase>
<phrase title="permission_forum_sidane_tm_add" version_id="2" version_string="1.0"><![CDATA[Add Threadmarks to Own Thread]]></phrase>
<phrase title="permission_forum_sidane_tm_delete" version_id="2" version_string="1.0"><![CDATA[Delete Threadmarks in Own Thread]]></phrase>
<phrase title="permission_forum_sidane_tm_edit" version_id="2" version_string="1.0"><![CDATA[Edit Threadmarks in Own Thread]]></phrase>
<phrase title="permission_forum_sidane_tm_manage" version_id="2" version_string="1.0"><![CDATA[Manage threadmarks]]></phrase>
<phrase title="permission_forum_sidane_tm_menu_limit" version_id="2" version_string="1.0"><![CDATA[Max Threadmarks In Menu]]></phrase>
<phrase title="permission_forum_sidane_tm_view" version_id="2" version_string="1.0"><![CDATA[View Threadmarks]]></phrase>
<phrase title="please_enter_label_for_threadmark" version_id="1" version_string="1.0"><![CDATA[Please enter label for Threadmark]]></phrase>
<phrase title="rebuild_threadmarks" version_id="1030000" version_string="1.3.0"><![CDATA[Rebuild Threadmark Summary Information]]></phrase>
<phrase title="select_this_threadmark" version_id="9" version_string="1.1.6"><![CDATA[Select this threadmark]]></phrase>
<phrase title="select_this_threadmark_by_x" version_id="9" version_string="1.1.6"><![CDATA[Select this threadmark by {name}]]></phrase>
<phrase title="sidane_allowed_user_groups" version_id="1040000" version_string="1.4.0"><![CDATA[Allowed User Groups]]></phrase>
<phrase title="sidane_confirm_delete_threadmark_category_footnote" version_id="1040000" version_string="1.4.0"><![CDATA[Any threadmarks belonging to this category will also be deleted.]]></phrase>
<phrase title="sidane_confirm_deletion_of_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Confirm Deletion of Threadmark Category]]></phrase>
<phrase title="sidane_create_new_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Create New Threadmark Category]]></phrase>
<phrase title="sidane_delete_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Delete Threadmark Category]]></phrase>
<phrase title="sidane_edit_display_order" version_id="1040006" version_string="1.4.0"><![CDATA[Edit Display Order]]></phrase>
<phrase title="sidane_edit_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Edit Threadmark Category]]></phrase>
<phrase title="sidane_no_threadmark_categories_have_been_defined" version_id="1040000" version_string="1.5.0"><![CDATA[No threadmark categories are defined]]></phrase>
<phrase title="sidane_please_confirm_that_you_want_to_delete_following_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Please confirm that you want to delete the following threadmark category]]></phrase>
<phrase title="sidane_please_enter_valid_threadmark_category_id" version_id="1040000" version_string="1.4.0"><![CDATA[Please enter a valid threadmark category ID.]]></phrase>
<phrase title="sidane_requested_threadmark_category_not_found" version_id="1040000" version_string="1.4.0"><![CDATA[The requested threadmark categorycould not be found.]]></phrase>
<phrase title="sidane_save_display_order" version_id="1040006" version_string="1.4.0"><![CDATA[Save Display Order]]></phrase>
<phrase title="sidane_save_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Save Threadmark Category]]></phrase>
<phrase title="sidane_threadmarks_cache" version_id="2" version_string="2.0"><![CDATA[Threadmark cache]]></phrase>
<phrase title="sidane_threadmark_categories" version_id="1040000" version_string="1.4.0"><![CDATA[Threadmark Categories]]></phrase>
<phrase title="sidane_threadmark_category" version_id="1040000" version_string="1.4.0"><![CDATA[Threadmark Category]]></phrase>
<phrase title="sidane_threadmark_statistics" version_id="1050025" version_string="1.5.0"><![CDATA[Threadmark Statistics]]></phrase>
<phrase title="sidane_x_threadmarks" version_id="1060020" version_string="1.6.0rc20"><![CDATA[{count} threadmarks]]></phrase>
<phrase title="sidane_you_may_not_delete_default_threadmark_category" version_id="1050009" version_string="1.5.0"><![CDATA[You may not delete the default threadmark category.]]></phrase>
<phrase title="style_property_group_Threadmarks_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmarks]]></phrase>
<phrase title="style_property_group_Threadmarks_master_desc" version_id="17" version_string="1.1.11b"><![CDATA[Threadmarks and Threadmark Byproducts]]></phrase>
<phrase title="style_property_messageNewIndicatorInnerThreadmarks_description_master" version_id="17" version_string="1.1.11b"><![CDATA[?????]]></phrase>
<phrase title="style_property_messageNewIndicatorInnerThreadmarks_master" version_id="17" version_string="1.1.11b"><![CDATA[Message New Indicator Inner Threadmarks]]></phrase>
<phrase title="style_property_messageNewIndicatorThreadmarks_description_master" version_id="17" version_string="1.1.11b"><![CDATA[not sure]]></phrase>
<phrase title="style_property_messageNewIndicatorThreadmarks_master" version_id="17" version_string="1.1.11b"><![CDATA[Message New Indicator]]></phrase>
<phrase title="style_property_ThreadmarkButtonHover_description_master" version_id="17" version_string="1.1.11b"><![CDATA[What happens when you mouse over]]></phrase>
<phrase title="style_property_ThreadmarkButtonHover_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Button Hover]]></phrase>
<phrase title="style_property_ThreadmarkButtons_description_master" version_id="17" version_string="1.1.11b"><![CDATA[Everything you can click.]]></phrase>
<phrase title="style_property_ThreadmarkButtons_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Buttons]]></phrase>
<phrase title="style_property_Threadmarker_description_master" version_id="17" version_string="1.1.11b"><![CDATA[The space above the Threadmarked post.]]></phrase>
<phrase title="style_property_Threadmarker_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmarker]]></phrase>
<phrase title="style_property_ThreadmarkHistory_description_master" version_id="17" version_string="1.1.11b"><![CDATA[The history button]]></phrase>
<phrase title="style_property_ThreadmarkHistory_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark History]]></phrase>
<phrase title="style_property_ThreadmarkIndexButtons_description_master" version_id="17" version_string="1.1.11b"><![CDATA[The << Index >> button styling]]></phrase>
<phrase title="style_property_ThreadmarkIndexButtons_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Index Buttons]]></phrase>
<phrase title="style_property_ThreadmarkJSTree_description_master" version_id="17" version_string="1.1.11b"><![CDATA[I think it's related to the sortable bits?]]></phrase>
<phrase title="style_property_ThreadmarkJSTree_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark JS Tree]]></phrase>
<phrase title="style_property_ThreadmarkLabelStrong_description_master" version_id="17" version_string="1.1.11b"><![CDATA[The 'Threadmark' thing before the label]]></phrase>
<phrase title="style_property_ThreadmarkLabelStrong_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Label Strong]]></phrase>
<phrase title="style_property_ThreadmarkLabel_description_master" version_id="17" version_string="1.1.11b"><![CDATA[Styling of what you name the threadmark]]></phrase>
<phrase title="style_property_ThreadmarkLabel_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Label]]></phrase>
<phrase title="style_property_ThreadmarkSortable_description_master" version_id="17" version_string="1.1.11b"><![CDATA[The things you can move around when you're reorganizing your threadmarks]]></phrase>
<phrase title="style_property_ThreadmarkSortable_master" version_id="17" version_string="1.1.11b"><![CDATA[Threadmark Sortable]]></phrase>
<phrase title="threadmark" global_cache="1" version_id="1" version_string="1.0"><![CDATA[Threadmark]]></phrase>
<phrase title="threadmarks" version_id="1" version_string="1.0"><![CDATA[Threadmarks]]></phrase>
<phrase title="threadmarks_for" version_id="1" version_string="1.0"><![CDATA[Threadmarks for]]></phrase>
<phrase title="threadmarks_stats_hide" version_id="1050200" version_string="1.5.2"><![CDATA[⇑]]></phrase>
<phrase title="threadmarks_stats_show" version_id="1050200" version_string="1.5.2"><![CDATA[⇓]]></phrase>
<phrase title="threadmark_after_this_post" version_id="1040006" version_string="1.4.0"><![CDATA[After this post]]></phrase>
<phrase title="threadmark_created" version_id="1" version_string="1.0"><![CDATA[Threadmark created]]></phrase>
<phrase title="threadmark_created_by_x_on_y" version_id="9" version_string="1.1.6"><![CDATA[Threadmark created by {name} on {date}]]></phrase>
<phrase title="threadmark_deleted" version_id="1" version_string="1.0"><![CDATA[Threadmark deleted]]></phrase>
<phrase title="threadmark_end_of_index" version_id="1040004" version_string="1.4.0 rc4"><![CDATA[This threadmark is at the end of the threadmark index]]></phrase>
<phrase title="threadmark_history" version_id="9" version_string="1.1.6"><![CDATA[History]]></phrase>
<phrase title="threadmark_index" version_id="9" version_string="1.1.6"><![CDATA[Index]]></phrase>
<phrase title="threadmark_insert_before_existing" version_id="1040004" version_string="1.4.0 rc4"><![CDATA[Insert before existing threadmarks]]></phrase>
<phrase title="threadmark_label" version_id="1040000" version_string="1.4.0"><![CDATA[Threadmark Label]]></phrase>
<phrase title="threadmark_next" version_id="9" version_string="1.1.6"><![CDATA[>>]]></phrase>
<phrase title="threadmark_position_after" version_id="1040004" version_string="1.4.0 rc4"><![CDATA[Add threadmark after]]></phrase>
<phrase title="threadmark_previous" version_id="9" version_string="1.1.6"><![CDATA[<<]]></phrase>
<phrase title="threadmark_reset_nesting" version_id="1040006" version_string="1.4.0"><![CDATA[Reset Nesting]]></phrase>
<phrase title="threadmark_updated" version_id="1" version_string="1.0"><![CDATA[Threadmark updated]]></phrase>
<phrase title="update_threadmark" version_id="1" version_string="1.0"><![CDATA[Update Threadmark]]></phrase>
<phrase title="view_all_threadmarks" version_id="1" version_string="1.0"><![CDATA[View all {count} threadmarks]]></phrase>
<phrase title="x_created_threadmark_in_thread_z" version_id="9" version_string="1.1.6"><![CDATA[{name} created the threadmark {threadmark} in thread {title}]]></phrase>
<phrase title="x_created_threadmark_on_ys_post_in_thread_z" version_id="9" version_string="1.1.6"><![CDATA[{name} created the threadmark {threadmark} on {poster}'s post in thread {title}]]></phrase>
<phrase title="you_do_not_have_permission_to_add_threadmarks" version_id="2" version_string="1.0"><![CDATA[You do not have permission to add threadmarks.]]></phrase>
<phrase title="you_do_not_have_permission_to_delete_threadmark" version_id="1040006" version_string="1.4.0"><![CDATA[You do not have permission to delete this threadmark.]]></phrase>
<phrase title="you_do_not_have_permission_to_edit_threadmark" version_id="1040006" version_string="1.4.0"><![CDATA[You do not have permission to edit this threadmark.]]></phrase>
<phrase title="you_do_not_have_permission_to_use_threadmark_category" version_id="1050013" version_string="1.5.0"><![CDATA[You do not have permission to use this threadmark category.]]></phrase>
</phrases>
<route_prefixes>
<route_type type="admin">
<prefix original_prefix="threadmark-categories" class="Sidane_Threadmarks_Route_PrefixAdmin_ThreadmarkCategories" build_link="data_only"/>
</route_type>
</route_prefixes>
<style_properties>
<property property_name="Threadmarker" property_type="css" definition="1" group_name="Threadmarks" title="Threadmarker" description="The space above the Threadmarked post." css_components="background,border,layout" scalar_type="" scalar_parameters="" display_order="1" sub_group=""><![CDATA[{"border-bottom-color":"@primaryLighterStill","border-bottom-style":"solid","border-bottom-width":"1px","margin-bottom":"10px","margin-left":"0","margin-right":"0","margin-top":"0"}]]></property>
<property property_name="ThreadmarkLabel" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Label" description="Styling of what you name the threadmark" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="2" sub_group=""><![CDATA[{"background-color":"@primaryLighterStill","border-top-left-radius":"4px","border-top-right-radius":"4px","color":"@contentText","font-size":"12px","padding-bottom":"2px","padding-left":"6px","padding-right":"8px","padding-top":"3px"}]]></property>
<property property_name="ThreadmarkLabelStrong" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Label Strong" description="The 'Threadmark' thing before the label" css_components="text" scalar_type="" scalar_parameters="" display_order="3" sub_group=""><![CDATA[{"color":"@secondaryMedium","font-weight":"bold"}]]></property>
<property property_name="ThreadmarkButtons" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Buttons" description="Everything you can click." css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="4" sub_group=""><![CDATA[{"background-color":"@primaryLighterStill","border-top-left-radius":"4px","border-top-right-radius":"4px","color":"@primaryMedium","font-size":"12px","text-decoration":{"none":"none"}}]]></property>
<property property_name="ThreadmarkHistory" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark History" description="The history button" css_components="layout,extra" scalar_type="" scalar_parameters="" display_order="5" sub_group=""><![CDATA[{"extra":"display: inline-flex ;","margin-bottom":"0","margin-left":"4px","margin-right":"0","margin-top":"0","padding-bottom":"2px","padding-left":"6px","padding-right":"8px","padding-top":"3px"}]]></property>
<property property_name="ThreadmarkIndexButtons" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Index Buttons" description="The << Index >> button styling" css_components="border,layout,extra" scalar_type="" scalar_parameters="" display_order="6" sub_group=""><![CDATA[{"border-bottom-left-radius":"4px","border-bottom-right-radius":"4px","extra":"display: inline-block;","margin-all":"0","padding-bottom":"2px","padding-left":"6px","padding-right":"8px","padding-top":"3px"}]]></property>
<property property_name="ThreadmarkButtonHover" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Button Hover" description="What happens when you mouse over" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="7" sub_group=""><![CDATA[{"background-color":"@secondaryLighter","border-color":"@secondaryLight","color":"@secondaryDark","text-decoration":{"none":"none"}}]]></property>
<property property_name="ThreadmarkSortable" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark Sortable" description="The things you can move around when you're reorganizing your threadmarks" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="8" sub_group=""><![CDATA[{"background-color":"@contentBackground"}]]></property>
<property property_name="ThreadmarkJSTree" property_type="css" definition="1" group_name="Threadmarks" title="Threadmark JS Tree" description="I think it's related to the sortable bits?" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="9" sub_group=""><![CDATA[{"color":"@primaryMedium"}]]></property>
<property property_name="messageNewIndicatorThreadmarks" property_type="css" definition="1" group_name="Threadmarks" title="Message New Indicator" description="not sure" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="10" sub_group=""><![CDATA[{"background-color":"@primaryLight","background-image":"@imagePath\/xenforo\/gradients\/form-button-white-25px.png","background-position":"top","background-repeat":"repeat-x","border-color":"@primaryLight","border-radius":"3px","border-style":"solid","border-top-right-radius":"3px","border-width":"1px","color":"@primaryMedium","extra":"display: block;\nfloat: right;\nposition: relative;\nbox-shadow: 1px 1px 3px rgba(0,0,0, 0.25);\nbox-shadow: 1px 1px 1px rgba(0,0,0, 0.25);","font-size":"11px","margin-bottom":"5px","margin-left":"5px","margin-right":"0px","margin-top":"0px","padding-bottom":"1px","padding-left":"5px","padding-right":"5px","padding-top":"1px"}]]></property>
<property property_name="messageNewIndicatorInnerThreadmarks" property_type="css" definition="1" group_name="Threadmarks" title="Message New Indicator Inner Threadmarks" description="?????" css_components="text,background,border,layout,extra" scalar_type="" scalar_parameters="" display_order="11" sub_group=""><![CDATA[{"background-color":"@primaryLight","border-top-right-radius":"0px","extra":"position: absolute;\ntop: -4px;\nright: -1px;","height":"4px","width":"5px"}]]></property>
<group group_name="Threadmarks" display_order="3">
<title>Threadmarks</title>
<description>Threadmarks and Threadmark Byproducts</description>
</group>
</style_properties>
<templates>
<template title="edit_threadmark" version_id="1050008" version_string="1.5.0"><![CDATA[<xen:title>{xen:helper threadPrefix, $thread, escaped}{$thread.title} - {xen:phrase edit_threadmark}</xen:title>
<xen:h1>{xen:phrase edit_threadmark}</xen:h1>
<xen:navigation>
<xen:breadcrumb source="$nodeBreadCrumbs" />
<xen:breadcrumb href="{xen:link full:posts, $post}">{xen:helper threadPrefix, $thread}{$thread.title}</xen:breadcrumb>
</xen:navigation>
<xen:container var="$bodyClasses">{xen:helper nodeClasses, $nodeBreadCrumbs, $forum}</xen:container>
<xen:container var="$searchBar.thread"><xen:include template="search_bar_thread_only" /></xen:container>
<xen:container var="$searchBar.forum"><xen:include template="search_bar_forum_only" /></xen:container>
<form action="{xen:link 'posts/threadmark', $post}" method="post" class="xenForm formOverlay AutoValidator" data-redirect="on">
<dl class="ctrlUnit">
<dt><label for="ctrl_message">{xen:phrase threadmark_label}:</label></dt>
<dd><input type="text" name="label" id="ctrl_message" class="textCtrl" value="{$threadmark.label}" maxlength="255" <xen:if is="!{$threadmark.canEdit}">readonly</xen:if> /></dd>
</dl>
<dl class="ctrlUnit">
<dt><label for="ctrl_threadmark_category_id">{xen:phrase sidane_threadmark_category}:</label></dt>
<dd>
<select name="threadmark_category_id" class="textCtrl OptOut" id="ctrl_threadmark_category_id <xen:if is="!{$threadmark.canEdit}">readonly</xen:if>">
<xen:foreach loop="$threadmarkCategoryOptions" key="$threadmarkCategoryId" value="$threadmarkCategoryOption">
<option value="{$threadmarkCategoryId}" {xen:selected '{$threadmarkCategoryId} == {$threadmark.threadmark_category_id}'}>{$threadmarkCategoryOption}</option>
</xen:foreach>
</select>
</dd>
</dl>
<xen:if is="{$threadmark.canDelete}">
<dl class="ctrlUnit">
<dt></dt>
<dd>
<label><input type="checkbox" name="_xfConfirm" value="1" /> {xen:phrase delete_threadmark}</label>
</dd>
</dl>
</xen:if>
<dl class="ctrlUnit submitUnit">
<dt></dt>
<dd><input type="submit" value="{xen:phrase update_threadmark}" accesskey="s" class="button primary" /></dd>
</dl>
<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
</form>]]></template>
<template title="jstree.css" version_id="1040006" version_string="1.4.0"><![CDATA[/* jsTree default theme */
.jstree-node,
.jstree-children,
.jstree-container-ul {
display: block;
margin: 0;
padding: 0;
list-style-type: none;
list-style-image: none;
}
.jstree-node {
white-space: nowrap;
}
.jstree-anchor {
display: inline-block;
color: black;
white-space: nowrap;
padding: 0 4px 0 1px;
margin: 0;
vertical-align: top;
}
.jstree-anchor:focus {
outline: 0;
}
.jstree-anchor,
.jstree-anchor:link,
.jstree-anchor:visited,
.jstree-anchor:hover,
.jstree-anchor:active {
text-decoration: none;
color: inherit;
}
.jstree-icon {
display: inline-block;
text-decoration: none;
margin: 0;
padding: 0;
vertical-align: top;
text-align: center;
}
.jstree-icon:empty {
display: inline-block;
text-decoration: none;
margin: 0;
padding: 0;
vertical-align: top;
text-align: center;
}
.jstree-ocl {
cursor: pointer;
}
.jstree-leaf > .jstree-ocl {
cursor: default;
}
.jstree .jstree-open > .jstree-children {
display: block;
}
.jstree .jstree-closed > .jstree-children,
.jstree .jstree-leaf > .jstree-children {
display: none;
}
.jstree-anchor > .jstree-themeicon {
margin-right: 2px;
}
.jstree-no-icons .jstree-themeicon,
.jstree-anchor > .jstree-themeicon-hidden {
display: none;
}
.jstree-hidden,
.jstree-node.jstree-hidden {
display: none;
}
.jstree-rtl .jstree-anchor {
padding: 0 1px 0 4px;
}
.jstree-rtl .jstree-anchor > .jstree-themeicon {
margin-left: 2px;
margin-right: 0;
}
.jstree-rtl .jstree-node {
margin-left: 0;
}
.jstree-rtl .jstree-container-ul > .jstree-node {
margin-right: 0;
}
.jstree-wholerow-ul {
position: relative;
display: inline-block;
min-width: 100%;
}
.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
cursor: pointer;
}
.jstree-wholerow-ul .jstree-anchor,
.jstree-wholerow-ul .jstree-icon {
position: relative;
}
.jstree-wholerow-ul .jstree-wholerow {
width: 100%;
cursor: pointer;
position: absolute;
left: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.jstree-contextmenu .jstree-anchor {
-webkit-user-select: none;
/* disable selection/Copy of UIWebView */
-webkit-touch-callout: none;
/* disable the IOS popup when long-press on a link */
}
.vakata-context {
display: none;
}
.vakata-context,
.vakata-context ul {
margin: 0;
padding: 2px;
position: absolute;
background: #f5f5f5;
border: 1px solid #979797;
box-shadow: 2px 2px 2px #999999;
}
.vakata-context ul {
list-style: none;
left: 100%;
margin-top: -2.7em;
margin-left: -4px;
}
.vakata-context .vakata-context-right ul {
left: auto;
right: 100%;
margin-left: auto;
margin-right: -4px;
}
.vakata-context li {
list-style: none;
}
.vakata-context li > a {
display: block;
padding: 0 2em 0 2em;
text-decoration: none;
width: auto;
color: black;
white-space: nowrap;
line-height: 2.4em;
text-shadow: 1px 1px 0 white;
border-radius: 1px;
}
.vakata-context li > a:hover {
position: relative;
background-color: #e8eff7;
box-shadow: 0 0 2px #0a6aa1;
}
.vakata-context li > a.vakata-context-parent {
background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
background-position: right center;
background-repeat: no-repeat;
}
.vakata-context li > a:focus {
outline: 0;
}
.vakata-context .vakata-context-hover > a {
position: relative;
background-color: #e8eff7;
box-shadow: 0 0 2px #0a6aa1;
}
.vakata-context .vakata-context-separator > a,
.vakata-context .vakata-context-separator > a:hover {
background: white;
border: 0;
border-top: 1px solid #e2e3e3;
height: 1px;
min-height: 1px;
max-height: 1px;
padding: 0;
margin: 0 0 0 2.4em;
border-left: 1px solid #e0e0e0;
text-shadow: 0 0 0 transparent;
box-shadow: 0 0 0 transparent;
border-radius: 0;
}
.vakata-context .vakata-contextmenu-disabled a,
.vakata-context .vakata-contextmenu-disabled a:hover {
color: silver;
background-color: transparent;
border: 0;
box-shadow: 0 0 0;
}
.vakata-context li > a > i {
text-decoration: none;
display: inline-block;
width: 2.4em;
height: 2.4em;
background: transparent;
margin: 0 0 0 -2em;
vertical-align: top;
text-align: center;
line-height: 2.4em;
}
.vakata-context li > a > i:empty {
width: 2.4em;
line-height: 2.4em;
}
.vakata-context li > a .vakata-contextmenu-sep {
display: inline-block;
width: 1px;
height: 2.4em;
background: white;
margin: 0 0.5em 0 0;
border-left: 1px solid #e2e3e3;
}
.vakata-context .vakata-contextmenu-shortcut {
font-size: 0.8em;
color: silver;
opacity: 0.5;
display: none;
}
.vakata-context-rtl ul {
left: auto;
right: 100%;
margin-left: auto;
margin-right: -4px;
}
.vakata-context-rtl li > a.vakata-context-parent {
background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
background-position: left center;
background-repeat: no-repeat;
}
.vakata-context-rtl .vakata-context-separator > a {
margin: 0 2.4em 0 0;
border-left: 0;
border-right: 1px solid #e2e3e3;
}
.vakata-context-rtl .vakata-context-left ul {
right: auto;
left: 100%;
margin-left: -4px;
margin-right: auto;
}
.vakata-context-rtl li > a > i {
margin: 0 -2em 0 0;
}
.vakata-context-rtl li > a .vakata-contextmenu-sep {
margin: 0 0 0 0.5em;
border-left-color: white;
background: #e2e3e3;
}
#jstree-marker {
position: absolute;
top: 0;
left: 0;
margin: -5px 0 0 0;
padding: 0;
border-right: 0;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
}
#jstree-dnd {
line-height: 16px;
margin: 0;
padding: 4px;
}
#jstree-dnd .jstree-icon,
#jstree-dnd .jstree-copy {
display: inline-block;
text-decoration: none;
margin: 0 2px 0 0;
padding: 0;
width: 16px;
height: 16px;
}
#jstree-dnd .jstree-ok {
background: green;
}
#jstree-dnd .jstree-er {
background: red;
}
#jstree-dnd .jstree-copy {
margin: 0 2px 0 2px;
}
.jstree-default .jstree-node,
.jstree-default .jstree-icon {
background-repeat: no-repeat;
background-color: transparent;
}
.jstree-default .jstree-anchor,
.jstree-default .jstree-animated,
.jstree-default .jstree-wholerow {
transition: background-color 0.15s, box-shadow 0.15s;
}
.jstree-default .jstree-hovered {
background: #e7f4f9;
border-radius: 2px;
box-shadow: inset 0 0 1px #cccccc;
}
.jstree-default .jstree-context {
background: #e7f4f9;
border-radius: 2px;
box-shadow: inset 0 0 1px #cccccc;
}
.jstree-default .jstree-clicked {
background: #beebff;
border-radius: 2px;
box-shadow: inset 0 0 1px #999999;
}
.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
display: none;
}
.jstree-default .jstree-disabled {
background: transparent;
color: #666666;
}
.jstree-default .jstree-disabled.jstree-hovered {
background: transparent;
box-shadow: none;
}
.jstree-default .jstree-disabled.jstree-clicked {
background: #efefef;
}
.jstree-default .jstree-disabled > .jstree-icon {
opacity: 0.8;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
/* Firefox 10+ */
filter: gray;
/* IE6-9 */
-webkit-filter: grayscale(100%);
/* Chrome 19+ & Safari 6+ */
}
.jstree-default .jstree-search {
font-style: italic;
color: #8b0000;
font-weight: bold;
}
.jstree-default .jstree-no-checkboxes .jstree-checkbox {
display: none !important;
}
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
background: transparent;
box-shadow: none;
}
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
background: #e7f4f9;
}
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
background: transparent;
}
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
background: #e7f4f9;
}
.jstree-default > .jstree-striped {
min-width: 100%;
display: inline-block;
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat;
}
.jstree-default > .jstree-wholerow-ul .jstree-hovered,
.jstree-default > .jstree-wholerow-ul .jstree-clicked {
background: transparent;
box-shadow: none;
border-radius: 0;
}
.jstree-default .jstree-wholerow {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.jstree-default .jstree-wholerow-hovered {
background: #e7f4f9;
}
.jstree-default .jstree-wholerow-clicked {
background: #beebff;
background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%);
}
.jstree-default .jstree-node {
min-height: 24px;
line-height: 24px;
margin-left: 24px;
min-width: 24px;
}
.jstree-default .jstree-anchor {
line-height: 24px;
height: 24px;
}
.jstree-default .jstree-icon {
width: 24px;
height: 24px;
line-height: 24px;
}
.jstree-default .jstree-icon:empty {
width: 24px;
height: 24px;
line-height: 24px;
}
.jstree-default.jstree-rtl .jstree-node {
margin-right: 24px;
}
.jstree-default .jstree-wholerow {
height: 24px;
}
.jstree-default .jstree-node,
.jstree-default .jstree-icon {
background-image: url("styles/jstree/default/32px.png");
}
.jstree-default .jstree-node {
background-position: -292px -4px;
background-repeat: repeat-y;
}
.jstree-default .jstree-last {
background: transparent;
}
.jstree-default .jstree-open > .jstree-ocl {
background-position: -132px -4px;
}
.jstree-default .jstree-closed > .jstree-ocl {
background-position: -100px -4px;
}
.jstree-default .jstree-leaf > .jstree-ocl {
background-position: -68px -4px;
}
.jstree-default .jstree-themeicon {
background-position: -260px -4px;
}
.jstree-default > .jstree-no-dots .jstree-node,
.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
background: transparent;
}
.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
background-position: -36px -4px;
}
.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
background-position: -4px -4px;
}
.jstree-default .jstree-disabled {
background: transparent;
}
.jstree-default .jstree-disabled.jstree-hovered {
background: transparent;
}
.jstree-default .jstree-disabled.jstree-clicked {
background: #efefef;
}
.jstree-default .jstree-checkbox {
background-position: -164px -4px;
}
.jstree-default .jstree-checkbox:hover {
background-position: -164px -36px;
}
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default .jstree-checked > .jstree-checkbox {
background-position: -228px -4px;
}
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default .jstree-checked > .jstree-checkbox:hover {
background-position: -228px -36px;
}
.jstree-default .jstree-anchor > .jstree-undetermined {
background-position: -196px -4px;
}
.jstree-default .jstree-anchor > .jstree-undetermined:hover {
background-position: -196px -36px;
}
.jstree-default .jstree-checkbox-disabled {
opacity: 0.8;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
/* Firefox 10+ */
filter: gray;
/* IE6-9 */
-webkit-filter: grayscale(100%);
/* Chrome 19+ & Safari 6+ */
}
.jstree-default > .jstree-striped {
background-size: auto 48px;
}
.jstree-default.jstree-rtl .jstree-node {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
background-position: 100% 1px;
background-repeat: repeat-y;
}
.jstree-default.jstree-rtl .jstree-last {
background: transparent;
}
.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
background-position: -132px -36px;
}
.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
background-position: -100px -36px;
}
.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
background-position: -68px -36px;
}
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
background: transparent;
}
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
background-position: -36px -36px;
}
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
background-position: -4px -36px;
}
.jstree-default .jstree-themeicon-custom {
background-color: transparent;
background-image: none;
background-position: 0 0;
}
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
background: url("styles/jstree/default/throbber.gif") center center no-repeat;
}
.jstree-default .jstree-file {
background: url("styles/jstree/default/32px.png") -100px -68px no-repeat;
}
.jstree-default .jstree-folder {
background: url("styles/jstree/default/32px.png") -260px -4px no-repeat;
}
.jstree-default > .jstree-container-ul > .jstree-node {
margin-left: 0;
margin-right: 0;
}
#jstree-dnd.jstree-default {
line-height: 24px;
padding: 0 4px;
}
#jstree-dnd.jstree-default .jstree-ok,
#jstree-dnd.jstree-default .jstree-er {
background-image: url("styles/jstree/default/32px.png");
background-repeat: no-repeat;
background-color: transparent;
}
#jstree-dnd.jstree-default i {
background: transparent;
width: 24px;
height: 24px;
line-height: 24px;
}
#jstree-dnd.jstree-default .jstree-ok {
background-position: -4px -68px;
}
#jstree-dnd.jstree-default .jstree-er {
background-position: -36px -68px;
}
.jstree-default .jstree-ellipsis {
overflow: hidden;
}
.jstree-default .jstree-ellipsis .jstree-anchor {
width: calc(100% - 29px);
text-overflow: ellipsis;
overflow: hidden;
}
.jstree-default .jstree-ellipsis.jstree-no-icons .jstree-anchor {
width: calc(100% - 5px);
}
.jstree-default.jstree-rtl .jstree-node {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
}
.jstree-default.jstree-rtl .jstree-last {
background: transparent;
}
.jstree-default-small .jstree-node {
min-height: 18px;
line-height: 18px;
margin-left: 18px;
min-width: 18px;
}
.jstree-default-small .jstree-anchor {
line-height: 18px;
height: 18px;
}
.jstree-default-small .jstree-icon {
width: 18px;
height: 18px;
line-height: 18px;
}
.jstree-default-small .jstree-icon:empty {
width: 18px;
height: 18px;
line-height: 18px;
}
.jstree-default-small.jstree-rtl .jstree-node {
margin-right: 18px;
}
.jstree-default-small .jstree-wholerow {
height: 18px;
}
.jstree-default-small .jstree-node,
.jstree-default-small .jstree-icon {
background-image: url("styles/jstree/default/32px.png");
}
.jstree-default-small .jstree-node {
background-position: -295px -7px;
background-repeat: repeat-y;
}
.jstree-default-small .jstree-last {
background: transparent;
}
.jstree-default-small .jstree-open > .jstree-ocl {
background-position: -135px -7px;
}
.jstree-default-small .jstree-closed > .jstree-ocl {
background-position: -103px -7px;
}
.jstree-default-small .jstree-leaf > .jstree-ocl {
background-position: -71px -7px;
}
.jstree-default-small .jstree-themeicon {
background-position: -263px -7px;
}
.jstree-default-small > .jstree-no-dots .jstree-node,
.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
background: transparent;
}
.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
background-position: -39px -7px;
}
.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
background-position: -7px -7px;
}
.jstree-default-small .jstree-disabled {
background: transparent;
}
.jstree-default-small .jstree-disabled.jstree-hovered {
background: transparent;
}
.jstree-default-small .jstree-disabled.jstree-clicked {
background: #efefef;
}
.jstree-default-small .jstree-checkbox {
background-position: -167px -7px;
}
.jstree-default-small .jstree-checkbox:hover {
background-position: -167px -39px;
}
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default-small .jstree-checked > .jstree-checkbox {
background-position: -231px -7px;
}
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default-small .jstree-checked > .jstree-checkbox:hover {
background-position: -231px -39px;
}
.jstree-default-small .jstree-anchor > .jstree-undetermined {
background-position: -199px -7px;
}
.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
background-position: -199px -39px;
}
.jstree-default-small .jstree-checkbox-disabled {
opacity: 0.8;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
/* Firefox 10+ */
filter: gray;
/* IE6-9 */
-webkit-filter: grayscale(100%);
/* Chrome 19+ & Safari 6+ */
}
.jstree-default-small > .jstree-striped {
background-size: auto 36px;
}
.jstree-default-small.jstree-rtl .jstree-node {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
background-position: 100% 1px;
background-repeat: repeat-y;
}
.jstree-default-small.jstree-rtl .jstree-last {
background: transparent;
}
.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
background-position: -135px -39px;
}
.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {