-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon-uix.xml
More file actions
2866 lines (2733 loc) · 194 KB
/
addon-uix.xml
File metadata and controls
2866 lines (2733 loc) · 194 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="uix" title="[TH] UI.X" version_string="1.1.2" version_id="1010270" url="https://www.themehouse.com/xenforo" install_callback_class="Audentio_UIX_Listener_Install" install_callback_method="run" uninstall_callback_class="Audentio_UIX_Listener_Uninstall" uninstall_callback_method="run">
<admin_navigation>
<navigation navigation_id="uix" parent_navigation_id="appearance" display_order="30" link="uix" admin_permission_id="" debug_only="0" hide_no_children="1"/>
<navigation navigation_id="uix_styles" parent_navigation_id="uix" display_order="5" link="uix-styles" admin_permission_id="style" debug_only="0" hide_no_children="0"/>
<navigation navigation_id="uix_styles_options" parent_navigation_id="uix" display_order="10" link="uix-options" admin_permission_id="option" debug_only="0" hide_no_children="0"/>
</admin_navigation>
<admin_permissions>
<admin_permission admin_permission_id="uix_styles" display_order="1500"/>
</admin_permissions>
<admin_style_properties/>
<admin_templates>
<template title="uix_category_edit_tab"><![CDATA[<ul class="tabs Tabs" data-panes="#forumPanes > li">
<li class="active"><a>{xen:phrase basic_information}</a></li>
<li><a>{xen:phrase uix_node_icons}</a></li>
<li><a>{xen:phrase uix_styling}</a></li>
</ul>]]></template>
<template title="uix_drag_and_drop_nodes.css"><![CDATA[.ui-sortable-placeholder {
background-color: {xen:property faintTextColor};
visibility: visible !important;
}
div._depth0 + ol .ui-sortable-placeholder { margin-left: 2em; }
div._depth1 + ol .ui-sortable-placeholder { margin-left: 4em; }
div._depth2 + ol .ui-sortable-placeholder { margin-left: 6em; }
div._depth3 + ol .ui-sortable-placeholder { margin-left: 8em; }
div._depth4 + ol .ui-sortable-placeholder { margin-left: 10em; }
div._depth5 + ol .ui-sortable-placeholder { margin-left: 12em; }
div._depth6 + ol .ui-sortable-placeholder { margin-left: 14em; }
div._depth7 + ol .ui-sortable-placeholder { margin-left: 16em; }
div._depth8 + ol .ui-sortable-placeholder { margin-left: 18em; }
div._depth9 + ol .ui-sortable-placeholder { margin-left: 20em; }
.FilterList.Scrollable, .FilterList .Scrollable {
max-height: 100%;
}
.uix_nodeTreeHandle {
display: inline-block;
height: 15px;
width: 15px;
margin-right: 10px;
margin-bottom: -2px;
cursor: move;
background-image: url("styles/default/uix_addon/moveIcon.png");
background-size: 15px 15px;
background-repeat: no-repeat;
}
<xen:comment>Below here can be removed after debug version -- KC</xen:comment>
.listItem input {
float: right;
width: 25px;
height: 26px;
text-align: center;
display: none;
}]]></template>
<template title="uix_drag_and_drop_nodes_list_item"><![CDATA[<input type="text" name="node[{$node.node_id}][display_order]" id="display_order_node{$node.node_id}" class="input_display_order">
<input type="text" name="node[{$node.node_id}][parent_node_id]" id="parent_node_id{$node.node_id}" value="{$node.parent_node_id}" class="input_parent_node_id">]]></template>
<template title="uix_force_reinstall_all_confirm"><![CDATA[<xen:title>{xen:phrase uix_update_all_styles}</xen:title>
<xen:require css="uix_style_install_confirm.css" />
<xen:navigation>
<xen:breadcrumb href="{xen:adminlink 'uix-styles'}">{xen:phrase uix_audentio_styles}</xen:breadcrumb>
</xen:navigation>
<ul class="tabs Tabs" data-panes="#userPanes > li">
<li id="tabPhp" class="active"><a>{xen:phrase uix_install_automatically}</a></li>
<li id="tabFtp"><a>{xen:phrase uix_install_automatically_with_ftp}</a></li>
<li id="tabManual"><a>{xen:phrase uix_install_manually}</a></li>
</ul>
<ul id="userPanes">
<li>
<xen:if is="{$requireFtp}">
<p class="importantMessage">{xen:phrase uix_not_writable}</p>
</xen:if>
<xen:form action="{xen:adminlink 'uix-styles/force-reinstall-next'}" class="formOverlay">
<dl>
<dt>
<xen:if is="{$style}">
{xen:phrase uix_about_to_download_update_style_notice, 'styleName={$product.name}'}
<xen:else />
{xen:phrase uix_about_to_download_install_style_notice, 'styleName={$product.name}'}
</xen:if>
</dt>
<xen:comment><xen:if is="{$requireFtp}">
<dd>{xen:phrase uix_not_writable_provide_ftp_details}</dd>
</xen:if></xen:comment>
</dl>
<input type="hidden" name="require_ftp" value="0">
<xen:if is="!{$requireFtp}">
<xen:submitunit save="{xen:phrase uix_update_all}" />
<input type="hidden" name="_xfConfirm" value="1" />
<input type="hidden" name="_updateAll" value="1" />
</xen:if>
</xen:form>
</li>
<li>
<xen:form action="{xen:adminlink 'uix-styles/update-next'}" class="formOverlay">
<dl>
<dt>
<xen:if is="{$style}">
{xen:phrase uix_about_to_download_update_style_notice, 'styleName={$product.name}'}
<xen:else />
{xen:phrase uix_about_to_download_install_style_notice, 'styleName={$product.name}'}
</xen:if>
</dt>
</dl>
<input type="hidden" name="require_ftp" value="1">
<xen:textboxunit label="{xen:phrase uix_ftp_host}" name="ftp_host" value="localhost" />
<xen:textboxunit label="{xen:phrase uix_ftp_port}" name="ftp_port" value="21" />
<xen:textboxunit label="{xen:phrase uix_ftp_user}" name="ftp_user" />
<xen:passwordunit label="{xen:phrase uix_ftp_password}" name="ftp_pass" />
<xen:textboxunit label="{xen:phrase uix_ftp_path}" explain="{xen:phrase uix_ftp_path_explain}" name="ftp_path" />
<xen:submitunit save="{xen:phrase uix_update_all}" />
<input type="hidden" name="_xfConfirm" value="1" />
<input type="hidden" name="_updateAll" value="1" />
</xen:form>
</li>
<li>
{xen:phrase uix_if_you_want_to_manually_install_this_style_use_the_following_instructions}:
{xen:phrase uix_manual_install_instructions}
</li>
</ul>]]></template>
<template title="uix_iconator.css"><![CDATA[.uix_iconInput {
vertical-align: middle;
height: 32px;
line-height: 32px;
vertical-align: middle;
border: 1px solid rgba(0,0,0,.2);
padding: 0;
box-sizing: border-box;
margin: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
text-indent: 8px;
}
.xenForm .ctrlUnit > dd .textCtrl.uix_iconInput {
width: auto;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
margin-bottom: 0;
text-indent: 8px;
}
.uix_iconTrigger {
{xen:property titlePrefix}
display: inline-block;
text-align: center;
width: 40px;
height: 30px;
line-height: 30px;
padding: 0;
border: 1px solid rgba(0,0,0,.2);
border-left: 0;
vertical-align: middle;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.PopupClosed .uix_iconTrigger:hover {
background: rgba(0, 0, 0, 0.15) url('{xen:property imagePath}/xenforo/gradients/form-button-white-25px.png') repeat-x top;
}
.PopupOpen .uix_iconTrigger {
background: rgba(0, 0, 0, 0.15) url('{xen:property imagePath}/xenforo/gradients/form-button-white-25px.png') repeat-x top;
}
.uix_iconWrapper {
display: inline-block;
}
.uix_iconator {
width: 266px;
}
.uix_iconator .blockLinksList {text-align: center;}
.uix_iconator .menuHeader {
background-color: {xen:property primaryLighterStill};
}
.uix_iconator .uix_iconatorInputWrapper {
margin: 8px;
}
.uix_iconator .uix_iconatorInput {
width: 100%;
display: block;
text-indent: 10px;
padding: 4px 0;
}
.uix_iconator .uix_iconatorIcon {
{xen:property titlePrefix}
margin: 4px;
border: 1px solid {xen:property primaryLighterStill};
padding: 0;
}
.uix_iconator .uix_iconatorIcon:hover {
{xen:property titlePrefixHover}
padding: 0;
}
.uix_iconator .uix_iconatorIcon.active {
color: {xen:property secondaryDark};
background-color: {xen:property secondaryLighter};
border-color: {xen:property secondaryLighter};
}
.uix_iconator .uix_iconatorIcon.active:hover {background-color: {xen:property secondaryLighter};}
.uix_iconator .uix_iconatorIcon i, .uix_iconTrigger i {
font-size: 20px;
width: 30px;
height: 30px;
line-height: 30px;
font-style: normal;
}
.uix_iconator .uix_iconatorNoIcons {
display: none;
}
.uix_iconatorDefault:before {
content: '?';
}]]></template>
<template title="uix_iconator_js"><![CDATA[<script src="{$javaScriptSource}/audentio/uix_addon/iconPicker.js?_v={$xenOptions.jsVersion}"></script>
{xen:raw $xenOptions.uix_cssToLoad}
<script>
uix.admin.iconator.searchIconsPhrase = "{xen:phrase uix_search_icons}";
uix.admin.iconator.noIconsPhrase= "{xen:phrase uix_no_icons_to_display}";
uix.admin.iconator.iconList = "{$xenOptions.uix_iconatorIcons}".split(",");
</script>]]></template>
<template title="uix_link_forum_edit_tab"><![CDATA[<ul class="tabs Tabs" data-panes="#forumPanes > li">
<li class="active"><a>{xen:phrase basic_information}</a></li>
<li><a>{xen:phrase uix_node_icons}</a></li>
<li><a>{xen:phrase uix_styling}</a></li>
</ul>]]></template>
<template title="uix_node_edit.css"><![CDATA[html .uixNodeIcon .formValidationInlineError {
display: none !important;
}
html .propertyComponentGroup .formValidationInlineError {
display: none !important;
}
.xenForm fieldset.propertyCss {border-top: 0;}
ul#nodePanes li fieldset:first-child {border-top: 0;}]]></template>
<template title="uix_node_edit_styling"><![CDATA[<xen:require css="style_property.css" />
<xen:require js="js/xenforo/style_property_editor.js" />
<div class="styleProperty StylePropertyEditor">
<div class="propertyEditorFields">
<div class="propertyComponentGroup">
<h4 class="textHeading">{xen:phrase text}</h4>
<table>
<tr>
<th>{xen:phrase color}</th>
<th>{xen:phrase size}</th>
<th>{xen:phrase font_family}</th>
<th> </th>
</tr>
<tr>
<td><xen:textbox id="color"
name="uix_styling[color]"
value="{$node.uix_styling.color}"
inputclass="ColorPicker" /></td>
<td><xen:textbox id="font-size"
name="uix_styling[font-size]"
value="{$node.uix_styling.font-size}"
inputclass="unitInput" /></td>
<td><xen:textbox id="font-family"
name="uix_styling[font-family]"
value="{$node.uix_styling.font-family}"
size="15"
inputclass="fontFamily" /></td>
<td><xen:checkbox listclass="toggleButtonList">
<xen:option name="uix_styling[font-weight]"
selected="{$node.uix_styling.font-weight}"
value="bold"
label="{xen:phrase bold}"
title="B"
class="ToggleButton bold" />
<xen:option name="uix_styling[font-style]"
selected="{$node.uix_styling.font-style}"
value="italic"
label="{xen:phrase italic}"
title="I"
class="ToggleButton italic" />
<xen:option name="uix_styling[font-variant]"
selected="{$node.uix_styling.font-variant}"
value="small-caps"
label="{xen:phrase small_caps}"
title="Aa"
class="ToggleButton small-caps" />
</xen:checkbox></td>
</tr>
</table>
<dl class="TextDecoration">
<dt class="rowLabel"><!--Decoration:--></dt>
<dd>
<label class="underline"><input type="checkbox" value="underline"
name="uix_styling[text-decoration][underline]"
{xen:checked $node.uix_styling.text-decoration.underline} />
{xen:phrase underline}</label>
<label class="overline"><input type="checkbox" value="overline"
name="uix_styling[text-decoration][overline]"
{xen:checked $node.uix_styling.text-decoration.overline} />
{xen:phrase overline}</label>
<label class="line-through"><input type="checkbox" value="line-through"
name="uix_styling[text-decoration][line-through]"
{xen:checked $node.uix_styling.text-decoration.line-through} />
{xen:phrase line_through}</label>
</dd>
<dd>
<label class="none"><input type="checkbox" value="none"
name="uix_styling[text-decoration][none]"
{xen:checked $node.uix_styling.text-decoration.none} />
{xen:phrase no_text_decoration}</label>
</dd>
</dl>
</div>
<div class="propertyComponentGroup">
<h4 class="textHeading">{xen:phrase background}</h4>
<table>
<tr>
<th>{xen:phrase color}</th>
<th>{xen:phrase image}</th>
<th>{xen:phrase repeat}</th>
<th>{xen:phrase position}</th>
</tr>
<tr>
<td><xen:textbox id="background-color"
name="uix_styling[background-color]"
value="{$node.uix_styling.background-color}"
inputclass="ColorPicker" /></td>
<td><xen:textbox id="background-image"
name="uix_styling[background-image]"
value="{$node.uix_styling.background-image}"
size="15"
inputclass="backgroundImage" /></td>
<td><xen:select name="uix_styling[background-repeat]"
value="{$node.uix_styling.background-repeat}" inputclass="autoSize">
<xen:option value=""> </xen:option>
<xen:option value="repeat">{xen:phrase repeat}</xen:option>
<xen:option value="repeat-x">{xen:phrase repeat_x}</xen:option>
<xen:option value="repeat-y">{xen:phrase repeat_y}</xen:option>
<xen:option value="no-repeat">{xen:phrase no_repeat}</xen:option>
</xen:select></td>
<td><xen:textbox id="background-position"
name="uix_styling[background-position]"
value="{$node.uix_styling.background-position}"
size="5"
inputclass="backgroundPosition" />
</td>
</tr>
</table>
</div>
<div class="propertyComponentGroup">
<table class="layoutPropertyTable">
<thead>
<tr>
<th class="textHeading">{xen:phrase border}</th>
<th class="textHeading minorHeading">{xen:phrase color}</th>
<th class="textHeading minorHeading">{xen:phrase style}</th>
<th class="textHeading minorHeading">{xen:phrase width}</th>
<th class="textHeading minorHeading">{xen:phrase radius}</th>
</tr>
</thead>
<tbody>
<tr>
<td class="rowLabel">{xen:phrase all}:</td>
<td>
<xen:textbox name="uix_styling[border-color]"
value="{$node.uix_styling.border-color}" inputclass="ColorPicker" />
</td>
<td>
<xen:select name="uix_styling[border-style]"
value="{$node.uix_styling.border-style}" inputclass="autoSize">
<xen:option value=""></xen:option>
<xen:option value="none">{xen:phrase none}</xen:option>
<xen:option value="solid">{xen:phrase solid}</xen:option>
<xen:option value="dashed">{xen:phrase dashed}</xen:option>
<xen:option value="dotted">{xen:phrase dotted}</xen:option>
<xen:option value="double">{xen:phrase double}</xen:option>
<xen:option value="groove">{xen:phrase groove}</xen:option>
<xen:option value="inset">{xen:phrase inset}</xen:option>
<xen:option value="outset">{xen:phrase outset}</xen:option>
<xen:option value="ridge">{xen:phrase ridge}</xen:option>
<xen:option value="hidden">{xen:phrase hidden}</xen:option>
</xen:select>
</td>
<td>
<xen:textbox name="uix_styling[border-width]"
value="{$node.uix_styling.border-width}" inputclass="unitInput" />
</td>
<td>
<xen:textbox name="uix_styling[border-radius]"
value="{$node.uix_styling.border-radius}" inputclass="unitInput" />
</td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase top}:</td>
<td>
<xen:textbox name="uix_styling[border-top-color]"
value="{$node.uix_styling.border-top-color}" inputclass="ColorPicker" />
</td>
<td>
<xen:select name="uix_styling[border-top-style]"
value="{$node.uix_styling.border-top-style}" inputclass="autoSize">
<xen:option value=""></xen:option>
<xen:option value="none">{xen:phrase none}</xen:option>
<xen:option value="solid">{xen:phrase solid}</xen:option>
<xen:option value="dashed">{xen:phrase dashed}</xen:option>
<xen:option value="dotted">{xen:phrase dotted}</xen:option>
<xen:option value="double">{xen:phrase double}</xen:option>
<xen:option value="groove">{xen:phrase groove}</xen:option>
<xen:option value="inset">{xen:phrase inset}</xen:option>
<xen:option value="outset">{xen:phrase outset}</xen:option>
<xen:option value="ridge">{xen:phrase ridge}</xen:option>
<xen:option value="hidden">{xen:phrase hidden}</xen:option>
</xen:select>
</td>
<td>
<xen:textbox name="uix_styling[border-top-width]"
value="{$node.uix_styling.border-top-width}" inputclass="unitInput" />
</td>
<td>
<xen:textbox name="uix_styling[border-top-left-radius]"
value="{$node.uix_styling.border-top-left-radius}" inputclass="unitInput" />
</td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase right}:</td>
<td>
<xen:textbox name="uix_styling[border-right-color]"
value="{$node.uix_styling.border-right-color}" inputclass="ColorPicker" />
</td>
<td>
<xen:select name="uix_styling[border-right-style]"
value="{$node.uix_styling.border-right-style}" inputclass="autoSize">
<xen:option value=""></xen:option>
<xen:option value="none">{xen:phrase none}</xen:option>
<xen:option value="solid">{xen:phrase solid}</xen:option>
<xen:option value="dashed">{xen:phrase dashed}</xen:option>
<xen:option value="dotted">{xen:phrase dotted}</xen:option>
<xen:option value="double">{xen:phrase double}</xen:option>
<xen:option value="groove">{xen:phrase groove}</xen:option>
<xen:option value="inset">{xen:phrase inset}</xen:option>
<xen:option value="outset">{xen:phrase outset}</xen:option>
<xen:option value="ridge">{xen:phrase ridge}</xen:option>
<xen:option value="hidden">{xen:phrase hidden}</xen:option>
</xen:select>
</td>
<td>
<xen:textbox name="uix_styling[border-right-width]"
value="{$node.uix_styling.border-right-width}" inputclass="unitInput" />
</td>
<td>
<xen:textbox name="uix_styling[border-top-right-radius]"
value="{$node.uix_styling.border-top-right-radius}" inputclass="unitInput" />
</td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase bottom}:</td>
<td>
<xen:textbox name="uix_styling[border-bottom-color]"
value="{$node.uix_styling.border-bottom-color}" inputclass="ColorPicker" />
</td>
<td>
<xen:select name="uix_styling[border-bottom-style]"
value="{$node.uix_styling.border-bottom-style}" inputclass="autoSize">
<xen:option value=""></xen:option>
<xen:option value="none">{xen:phrase none}</xen:option>
<xen:option value="solid">{xen:phrase solid}</xen:option>
<xen:option value="dashed">{xen:phrase dashed}</xen:option>
<xen:option value="dotted">{xen:phrase dotted}</xen:option>
<xen:option value="double">{xen:phrase double}</xen:option>
<xen:option value="groove">{xen:phrase groove}</xen:option>
<xen:option value="inset">{xen:phrase inset}</xen:option>
<xen:option value="outset">{xen:phrase outset}</xen:option>
<xen:option value="ridge">{xen:phrase ridge}</xen:option>
<xen:option value="hidden">{xen:phrase hidden}</xen:option>
</xen:select>
</td>
<td>
<xen:textbox name="uix_styling[border-bottom-width]"
value="{$node.uix_styling.border-bottom-width}" inputclass="unitInput" />
</td>
<td>
<xen:textbox name="uix_styling[border-bottom-right-radius]"
value="{$node.uix_styling.border-bottom-right-radius}" inputclass="unitInput" />
</td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase left}:</td>
<td>
<xen:textbox name="uix_styling[border-left-color]"
value="{$node.uix_styling.border-left-color}" inputclass="ColorPicker" />
</td>
<td>
<xen:select name="uix_styling[border-left-style]"
value="{$node.uix_styling.border-left-style}" inputclass="autoSize">
<xen:option value=""></xen:option>
<xen:option value="none">{xen:phrase none}</xen:option>
<xen:option value="solid">{xen:phrase solid}</xen:option>
<xen:option value="dashed">{xen:phrase dashed}</xen:option>
<xen:option value="dotted">{xen:phrase dotted}</xen:option>
<xen:option value="double">{xen:phrase double}</xen:option>
<xen:option value="groove">{xen:phrase groove}</xen:option>
<xen:option value="inset">{xen:phrase inset}</xen:option>
<xen:option value="outset">{xen:phrase outset}</xen:option>
<xen:option value="ridge">{xen:phrase ridge}</xen:option>
<xen:option value="hidden">{xen:phrase hidden}</xen:option>
</xen:select>
</td>
<td>
<xen:textbox name="uix_styling[border-left-width]"
value="{$node.uix_styling.border-left-width}" inputclass="unitInput" />
</td>
<td>
<xen:textbox name="uix_styling[border-bottom-left-radius]"
value="{$node.uix_styling.border-bottom-left-radius}" inputclass="unitInput" />
</td>
</tr>
</tbody>
</table>
<table class="layoutPropertyTable">
<thead>
<tr>
<th class="textHeading" colspan="2">{xen:phrase margin}</th>
</tr>
</thead>
<tbody>
<tr>
<td class="rowLabel">{xen:phrase all}:</td>
<td><xen:textbox name="uix_styling[margin-all]"
value="{$node.uix_styling.margin-all}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase top}:</td>
<td><xen:textbox name="uix_styling[margin-top]"
value="{$node.uix_styling.margin-top}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase right}:</td>
<td><xen:textbox name="uix_styling[margin-right]"
value="{$node.uix_styling.margin-right}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase bottom}:</td>
<td><xen:textbox name="uix_styling[margin-bottom]"
value="{$node.uix_styling.margin-bottom}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase left}:</td>
<td><xen:textbox name="uix_styling[margin-left]"
value="{$node.uix_styling.margin-left}" inputclass="unitInput" /></td>
</tr>
</tbody>
</table>
<table class="layoutPropertyTable">
<thead>
<tr class="headingRow">
<th class="textHeading" colspan="2">{xen:phrase padding}</th>
</tr>
</thead>
<tbody>
<tr>
<td class="rowLabel">{xen:phrase all}:</td>
<td><xen:textbox name="uix_styling[padding-all]"
value="{$node.uix_styling.padding-all}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase top}:</td>
<td><xen:textbox name="uix_styling[padding-top]"
value="{$node.uix_styling.padding-top}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase right}:</td>
<td><xen:textbox name="uix_styling[padding-right]"
value="{$node.uix_styling.padding-right}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase bottom}:</td>
<td><xen:textbox name="uix_styling[padding-bottom]"
value="{$node.uix_styling.padding-bottom}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase left}:</td>
<td><xen:textbox name="uix_styling[padding-left]"
value="{$node.uix_styling.padding-left}" inputclass="unitInput" /></td>
</tr>
</tbody>
</table>
</div>
<div class="propertyComponentGroup">
<h4 class="textHeading">{xen:phrase miscellaneous}</h4>
<div class="propertyDimensions">
<table>
<tr>
<td class="rowLabel">{xen:phrase width}:</td>
<td><xen:textbox name="uix_styling[width]"
value="{$node.uix_styling.width}" inputclass="unitInput" /></td>
</tr>
<tr>
<td class="rowLabel">{xen:phrase height}:</td>
<td><xen:textbox name="uix_styling[height]"
value="{$node.uix_styling.height}" inputclass="unitInput"/></td>
</tr>
</table>
</div>
<div class="propertyExtra">
<xen:textbox name="uix_styling[extra]"
value="{$node.uix_styling.extra}" rows="2" inputclass="Elastic code" />
<p class="explain">{xen:phrase use_this_box_to_enter_any_additional_css_to_include}</p>
</div>
</div>
</div>
</div>]]></template>
<template title="uix_node_layout_edit"><![CDATA[<xen:require js="js/audentio/uix_addon/editNodeLayout.js" />
<xen:require css="uix_node_layout.css" />
<xen:title>{xen:phrase uix_edit_layout_options}: {$node.title}</xen:title>
<xen:h1>{xen:phrase uix_edit_layout_options}: {$node.title}</xen:h1>
<xen:form action="{xen:adminlink 'nodes/layout-save', $node}" class="xenForm AutoValidator" data-redirect="on">
<xen:if is="{$node.node_id} && {$node.node_id} != 10240">
<xen:selectunit label="{xen:phrase uix_use_default_options}" name="layout_options[options][use_default]" value="{$node.layout_options.options.use_default}">
<xen:option value="1">{xen:phrase yes}</xen:option>
<xen:option value="0">{xen:phrase no}</xen:option>
</xen:selectunit>
</xen:if>
<fieldset id="edit_options">
<xen:if is="{$node.node_id} && {$node.node_id} != 10240">
<xen:checkboxunit explain="{xen:phrase uix_maximum_columns_explain}" label="{xen:phrase uix_maximum_columns}:">
<xen:option name="layout_options[maximum_columns][use_custom]" label="{xen:phrase uix_use_custom_value}" selected="{$node.layout_options.maximum_columns.use_custom}">
<xen:textbox name="layout_options[maximum_columns][value]" value="{$node.layout_options.maximum_columns.value}" />
</xen:option>
</xen:checkboxunit>
<xen:else />
<xen:textboxunit explain="{xen:phrase uix_maximum_columns_explain}" label="{xen:phrase uix_maximum_columns}:" name="layout_options[maximum_columns][value]" value="{$node.layout_options.maximum_columns.value}" />
</xen:if>
<xen:if is="{$node.node_id} && {$node.node_id} != 10240">
<xen:checkboxunit explain="{xen:phrase uix_minimum_column_width_explain}" label="{xen:phrase uix_minimum_column_width}:">
<xen:option name="layout_options[minimum_column_width][use_custom]" label="{xen:phrase uix_use_custom_value}" selected="{$node.layout_options.minimum_column_width.use_custom}">
<xen:textbox name="layout_options[minimum_column_width][value]" value="{$node.layout_options.minimum_column_width.value}" />
</xen:option>
</xen:checkboxunit>
<xen:else />
<xen:textboxunit explain="{xen:phrase uix_minimum_column_width_explain}" label="{xen:phrase uix_minimum_column_width}:" name="layout_options[minimum_column_width][value]" value="{$node.layout_options.minimum_column_width.value}" />
</xen:if>
<xen:if is="{$node.node_id} && {$node.node_id} != 10240">
<xen:checkboxunit explain="{xen:phrase uix_fill_last_row_explain}" label="{xen:phrase uix_fill_last_row}:">
<xen:option name="layout_options[fill_last_row][use_custom]" label="{xen:phrase uix_use_custom_value}" selected="{$node.layout_options.fill_last_row.use_custom}">
<xen:select name="layout_options[fill_last_row][value]" value="{$node.layout_options.fill_last_row.value}">
<xen:option value="0">{xen:phrase uix_divide_last_row_into_equal_widths}</xen:option>
<xen:option value="1">{xen:phrase uix_dont_fill}</xen:option>
<xen:option value="2">{xen:phrase uix_divide_last_row_according_to_lower_number_of_columns}</xen:option>
<xen:option value="3">{xen:phrase uix_make_remaining_nodes_full_width_on_their_own_row}</xen:option>
</xen:select>
</xen:option>
</xen:checkboxunit>
<xen:else />
<xen:selectunit explain="{xen:phrase uix_fill_last_row_explain}" label="{xen:phrase uix_fill_last_row}:" name="layout_options[fill_last_row][value]" value="{$node.layout_options.fill_last_row.value}">
<xen:option value="0">{xen:phrase uix_divide_last_row_into_equal_widths}</xen:option>
<xen:option value="1">{xen:phrase uix_dont_fill}</xen:option>
<xen:option value="2">{xen:phrase uix_divide_last_row_according_to_lower_number_of_columns}</xen:option>
<xen:option value="3">{xen:phrase uix_make_remaining_nodes_full_width_on_their_own_row}</xen:option>
</xen:selectunit>
</xen:if>
<xen:if is="{$node.node_id} && {$node.node_id} != 10240">
<xen:checkboxunit explain="{xen:phrase uix_column_widths_explain}" label="{xen:phrase uix_column_widths}:">
<xen:option name="layout_options[column_widths][use_custom]" label="{xen:phrase uix_use_custom_value}" selected="{$node.layout_options.column_widths.use_custom}">
<xen:select name="layout_options[column_widths][value]" value="{$node.layout_options.column_widths.value}">
<xen:option value="0">{xen:phrase uix_divide_columns_equally}</xen:option>
<xen:option value="1">{xen:phrase uix_divide_columns_using_custom_widths}</xen:option>
</xen:select>
</xen:option>
</xen:checkboxunit>
<xen:else />
<xen:selectunit explain="{xen:phrase uix_column_widths_explain}" label="{xen:phrase uix_column_widths}:" name="layout_options[column_widths][value]" value="{$node.layout_options.column_widths.value}">
<xen:option value="0">{xen:phrase uix_divide_columns_equally}</xen:option>
<xen:option value="1">{xen:phrase uix_divide_columns_using_custom_widths}</xen:option>
</xen:selectunit>
</xen:if>
<input type="hidden" name="layout_options[custom_column_widths][count]" id="numColumns" value="{$node.layout_options.maximum_columns.use_custom}" />
</fieldset>
<div id="custom_widths">
<xen:if is="{$node.layout_options.custom_column_widths.layouts}">
<xen:foreach loop="$node.layout_options.custom_column_widths.layouts" key="$numColumns" value="$layout">
<xen:if is="{$numColumns} > 1">
<fieldset class="column_width" id="fieldset_{$numColumns}">
<h2>{$numColumns} Column Layout</h2>
<xen:foreach loop="$layout" key="$columnId" value="$columnWidth">
<xen:textboxunit label="Column {$columnId}:" name="layout_options[custom_column_widths][layouts][{$numColumns}][{$columnId}]" value="{$columnWidth}" />
</xen:foreach>
</fieldset>
</xen:if>
</xen:foreach>
</xen:if>
</div>
<xen:submitunit save="{xen:phrase save}" />
</xen:form>]]></template>
<template title="uix_node_layout_separator_delete"><![CDATA[<xen:title>{xen:phrase uix_confirm_deletion_of_separator_node}: {$node.title}</xen:title>
<xen:h1>{xen:phrase uix_confirm_deletion_of_separator_node}</xen:h1>
<xen:navigation>
<xen:breadcrumb href="{xen:adminlink 'uix-node/edit', $node}">{$node.title}</xen:breadcrumb>
</xen:navigation>
<xen:require css="public:delete_confirmation.css" />
<xen:form action="{xen:adminlink 'uix-layoutseparator/delete'}" class="deleteConfirmForm formOverlay">
<p>{xen:phrase uix_please_confirm_you_want_to_delete_separator_node}:</p>
<strong><a href="{xen:adminlink 'uix-layoutseparator/edit', $node}">{$node.title}</a></strong>
<xen:include template="helper_node_delete_children" />
<input type="hidden" name="node_id" value="{$node.node_id}" />
<input type="hidden" name="_xfConfirm" value="1" />
<xen:submitunit save="{xen:phrase uix_delete_separator_node}" />
</xen:form>]]></template>
<template title="uix_node_layout_separator_edit"><![CDATA[<xen:require js="js/audentio/uix_addon/editNodeLayout.js" />
<xen:require css="uix_node_layout.css" />
<xen:title>{xen:if $node.node_id, '{xen:phrase uix_edit_separator_node}: {$node.title}', '{xen:phrase uix_create_new_separator_node}'}</xen:title>
<xen:h1>{xen:if $node.node_id, '{xen:phrase uix_edit_separator_node}: {$node.title}', '{xen:phrase uix_create_new_separator_node}'}</xen:h1>
<xen:form action="{xen:adminlink 'uix-layoutseparator/save', $node}" class="xenForm AutoValidator" data-redirect="on">
<fieldset>
<xen:textboxunit name="title" value="{$node.title}" label="{xen:phrase title}:" inputclass="OptIn" data-liveTitleTemplate="{xen:if {$node.node_id},
'{xen:phrase uix_edit_separator_node}: <em>%s</em>',
'{xen:phrase uix_create_new_separator_node}: <em>%s</em>'}" />
<input type="hidden" name="node_type_id" value="uix_nodeLayoutSeparator" />
<xen:selectunit name="parent_node_id" value="{$node.parent_node_id}" label="{xen:phrase parent_node}:" inputclass="OptIn">
<xen:options source="$nodeParentOptions" />
</xen:selectunit>
<xen:textboxunit name="display_order" value="{$node.display_order}" label="{xen:phrase display_order}:" inputclass="OptIn">
<xen:explain>{xen:phrase position_of_this_item_relative_to_other_nodes_with_same_parent}</xen:explain>
</xen:textboxunit>
<xen:selectunit name="separator_type" label="{xen:phrase uix_separator_type}:" value="{$node.separator_type}">
<xen:option value="grid">{xen:phrase uix_grid}</xen:option>
<xen:option value="collapse">{xen:phrase uix_collapse}</xen:option>
</xen:selectunit>
<xen:spinboxunit name="separator_max_width" label="{xen:phrase uix_separator_max_width}:" value="{$node.separator_max_width}" explain="{xen:phrase uix_separator_max_width_explain}" min="0" step="50" />
</fieldset>
<fieldset id="edit_options">
<xen:textboxunit explain="{xen:phrase uix_maximum_columns_explain}" label="{xen:phrase uix_maximum_columns}:" name="layout_options[maximum_columns][value]" value="{$node.layout_options.maximum_columns.value}" />
<xen:textboxunit explain="{xen:phrase uix_minimum_column_width_explain}" label="{xen:phrase uix_minimum_column_width}:" name="layout_options[minimum_column_width][value]" value="{$node.layout_options.minimum_column_width.value}" />
<xen:selectunit explain="{xen:phrase uix_fill_last_row_explain}" label="{xen:phrase uix_fill_last_row}:" name="layout_options[fill_last_row][value]" value="{$node.layout_options.fill_last_row.value}">
<xen:option value="0">{xen:phrase uix_divide_last_row_into_equal_widths}</xen:option>
<xen:option value="1">{xen:phrase uix_dont_fill}</xen:option>
<xen:option value="2">{xen:phrase uix_divide_last_row_according_to_lower_number_of_columns}</xen:option>
<xen:option value="3">{xen:phrase uix_make_remaining_nodes_full_width_on_their_own_row}</xen:option>
</xen:selectunit>
<xen:selectunit explain="{xen:phrase uix_column_widths_explain}" label="{xen:phrase uix_column_widths}:" name="layout_options[column_widths][value]" value="{$node.layout_options.column_widths.value}">
<xen:option value="0">{xen:phrase uix_divide_columns_equally}</xen:option>
<xen:option value="1">{xen:phrase uix_divide_columns_using_custom_widths}</xen:option>
</xen:selectunit>
<input type="hidden" name="layout_options[custom_column_widths][count]" id="numColumns" value="{$node.layout_options.maximum_columns.use_custom}" />
</fieldset>
<div id="custom_widths">
<xen:if is="{$node.layout_options.custom_column_widths.layouts}">
<xen:foreach loop="$node.layout_options.custom_column_widths.layouts" key="$numColumns" value="$layout">
<xen:if is="{$numColumns} > 1">
<fieldset class="column_width" id="fieldset_{$numColumns}">
<h2>{$numColumns} Column Layout</h2>
<xen:foreach loop="$layout" key="$columnId" value="$columnWidth">
<xen:textboxunit label="Column {$columnId}:" name="layout_options[custom_column_widths][layouts][{$numColumns}][{$columnId}]" value="{$columnWidth}" />
</xen:foreach>
</fieldset>
</xen:if>
</xen:foreach>
</xen:if>
</div>
<xen:submitunit save="{xen:phrase save}" />
</xen:form>
<xen:comment>
<script>
$(document).ready(function() {
var val = $('#ctrl_separator_type').val();
if (val == 'grid') {
$('#edit_options').show();
} else {
$('#edit_options').hide();
}
});
$('#ctrl_separator_type').change(function() {
var val = $('#ctrl_separator_type').val();
if (val == 'grid') {
$('#edit_options').show();
} else {
$('#edit_options').hide();
}
});
</script>
</xen:comment>]]></template>
<template title="uix_node_list.css"><![CDATA[.uix_separatorNode {
background-color: {xen:property primaryLightest};
}
.uix_separatorNode .secondaryContent.fixedOptionBox {
display: none;
}
.uix_separatorNode .Popup {
display: none;
}]]></template>
<template title="uix_node_list_before_xf_js"><![CDATA[<xen:if is="{$xenOptions.uix_enableDragAndDropNodes} && {$xenOptions.uix_jqueryUiUrl}">
<script src="{$xenOptions.uix_jqueryUiUrl}"></script>
</xen:if>
<xen:if is="{$xenOptions.uix_enableDragAndDropNodes}">
<script src="js/audentio/uix_addon/jquery.nestedSortable.min.js?_v={$xenOptions.jsVersion}"></script>
<script src="js/audentio/uix_addon/nodeListPre.js?_v={$xenOptions.jsVersion}"></script>
</xen:if>]]></template>
<template title="uix_node_list_options"><![CDATA[<a href="{xen:adminlink 'nodes/uix-option', $node}" class="secondaryContent fixedOptionBox OverlayTrigger">{xen:phrase uix_node_options}</a>]]></template>
<template title="uix_node_option"><![CDATA[<xen:title>{xen:phrase uix_node_options}: {$node.title}</xen:title>
<xen:form
action="{xen:adminlink nodes/uix-option, $node}"
class="xenForm formOverlay"
data-redirect="on">
<xen:radiounit name="action" label="{xen:phrase options}:">
<xen:option value="general" selected="true">{xen:phrase uix_style_options}</xen:option>
<xen:option value="layout">{xen:phrase uix_grid_options}</xen:option>
</xen:radiounit>
<xen:submitunit save="{xen:phrase continue}..." />
<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}">
<input type="hidden" name="_xfConfirm" value="1">
</xen:form>]]></template>
<template title="uix_node_options"><![CDATA[<xen:title>{xen:phrase uix_style_options}: {$node.title}</xen:title>
<xen:require css="uix_node_edit.css" />
<xen:include template="color_picker" />
<xen:include template="style_property_list_js" />
<xen:form action="{xen:adminlink 'nodes/uix-options', $node}"
class="AutoValidator"
data-redirect="on">
<ul class="tabs Tabs" data-panes="#nodePanes > li">
<li class="active"><a>{xen:phrase options}</a></li>
<li><a>{xen:phrase uix_node_icons}</a></li>
<li><a>{xen:phrase uix_styling}</a></li>
</ul>
<ul id="nodePanes">
<li>
<xen:textboxunit name="uix_styling[nodeInfo-class]" label="{xen:phrase uix_class_to_append_to_nodeInfo}:" value="{$node.uix_styling.nodeInfo-class}" />
<xen:if is="{$node.parent_node_id}">
<xen:checkboxunit label="{xen:phrase uix_class_options}:">
<xen:option name="inheritClass" selected="{$node.inheritClass}">{xen:phrase uix_inherit_parent_class}</xen:option>
<xen:option name="inheritStyling" selected="{$node.inheritStyling}">{xen:phrase uix_inherit_styling}</xen:option>
</xen:checkboxunit>
</xen:if>
<xen:if is="{$node.node_type_id} == 'Category'">
<xen:checkboxunit label="{xen:phrase options}:">
<xen:option name="collapsed" selected="{$node.collapsed}">{xen:phrase uix_collapsed_by_default}</xen:option>
</xen:checkboxunit>
</xen:if>
</li>
<li>
<fieldset>
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[category_read]" label="{xen:phrase uix_read_category}:" value="{$node.uix_node_icons.category_read}" />
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[category_unread]" label="{xen:phrase uix_unread_category}:" value="{$node.uix_node_icons.category_unread}" />
</fieldset>
<fieldset>
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[forum_read]" label="{xen:phrase uix_read_forum}:" value="{$node.uix_node_icons.forum_read}" />
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[forum_unread]" label="{xen:phrase uix_unread_forum}:" value="{$node.uix_node_icons.forum_unread}" />
</fieldset>
<fieldset>
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[link_node]" label="{xen:phrase uix_link_node}:" value="{$node.uix_node_icons.link_node}" />
<xen:textboxunit inputclass="uixNodeIcon uix_iconInput" name="uix_node_icons[page_node]" label="{xen:phrase uix_page_node}:" value="{$node.uix_node_icons.page_node}" />
</fieldset>
</li>
<li>
<div id="propertiesContainer">
<fieldset class="propertyCss">
<xen:include template="uix_node_edit_styling" />
</fieldset>
</div>
</li>
</ul>
<xen:submitunit save="{xen:phrase save}" />
<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}">
<input type="hidden" name="_xfConfirm" value="1">
</xen:form>]]></template>
<template title="uix_option_apiKey"><![CDATA[<xen:textboxunit label="{$preparedOption.title}" name="{$fieldPrefix}[{$preparedOption.option_id}]"
hint="{$formatParams.hint}" placeholder="{$formatParams.placeholder}" type="{$formatParams.type}" size="{$formatParams.size}" maxlength="{$formatParams.maxlength}" rows="{$formatParams.rows}">
<xen:explain>
{xen:if $xenOptions.uix_apiKey, '<font color="green">{xen:phrase uix_you_currently_have_an_api_key_set, 'link={xen:adminlink uix/clear-api-key}'}</font><br>'}
{xen:raw $preparedOption.explain}
</xen:explain>
<xen:html>
<xen:include template="option_list_option_editlink" />
<input type="hidden" name="{$listedFieldName}" value="{$preparedOption.option_id}" />
{xen:raw $editLink}
</xen:html>
</xen:textboxunit>]]></template>
<template title="uix_option_uix_iconInput"><![CDATA[<xen:textboxunit label="{$preparedOption.title}" name="{$fieldPrefix}[{$preparedOption.option_id}]" value="{$preparedOption.option_value}"
hint="{$formatParams.hint}" placeholder="{$formatParams.placeholder}" type="{$formatParams.type}" size="{$formatParams.size}" maxlength="{$formatParams.maxlength}" rows="{$formatParams.rows}" inputclass="uix_iconInput Elastic">
<xen:explain>{xen:raw $preparedOption.explain}</xen:explain>
<xen:html>
<xen:include template="option_list_option_editlink" />
<input type="hidden" name="{$listedFieldName}" value="{$preparedOption.option_id}" />
{xen:raw $editLink}
</xen:html>
</xen:textboxunit>]]></template>
<template title="uix_outdatedTemplates"><![CDATA[<xen:if is="{$outdatedTemplates}">
<p class="importantMessage">
<a href="{xen:adminlink templates/outdated}">{xen:phrase there_templates_that_may_be_outdated_click_to_review}</a>
</p>
</xen:if>]]></template>
<template title="uix_splash"><![CDATA[<xen:require css="uix_splash.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<div class="uix_splash_header">
<div class="ad_container">
<div class="head">
<div class="left">
<h1>UI.X</h1>
<span>Ultimate Theme Framework</span>
</div>
<div class="right">
<a href="https://www.themehouse.com/contact/hire">Hire Us!</a>
</div>
<div style="clear: both;"></div>
</div>
<ul class="social_links">
<li class="twitter_social"><a href="https://twitter.com/themehouse"></a></li>
<li class="facebook_social"><a href="https://www.facebook.com/ThemeHouse"></a></li>
<li class="yt_social"><a href="https://www.youtube.com/channel/UC6-PTvGitgR5_-Kv1Doggew"></a></li>
<li class="other_links">
<a href="https://www.themehouse.com/help/documentation/uix">Documentation</a>
<a href="https://www.themehouse.com/contact/create-ticket/choose-product">Get Support</a>
</li>
</ul>
</div>
</div>
<div class="socialWidgets">
<div class="col col1">
<a class="twitter-timeline" data-height="680" href="https://twitter.com/themehouse">Tweets by themehouse</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="col col2">
<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fthemehouse&width&height=680&colorscheme=light&show_faces=true&header=false&stream=true&show_border=false&appId=235988599753831" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:680px; width: 100%" allowTransparency="true"></iframe>
</div>
</div>]]></template>
<template title="uix_splash.css"><![CDATA[.uix_splash_header {
font-family: 'Lato', sans-serif;
font-size: 20px;
margin-bottom: 5px;
}
.titleBar { display: none; }
#breadcrumbsContainer { display: none; }
.uix_splash_header a:link,a:visited,a:hover,a:active { text-decoration: none; }
{xen:helper clearfix, '.uix_splash_header .ad_container'}
.uix_splash_header .ad_container {