File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -1039,3 +1039,8 @@ a.plugin_formcreator_formTile_title {
1039
1039
.formcreator_dashboard_container .dashboard .big-number .label {
1040
1040
font-size : 12px !important ;
1041
1041
}
1042
+
1043
+ .plugin_formcreator_sort .fa {
1044
+ padding-left : 5px ;
1045
+ color : #717171 ;
1046
+ }
Original file line number Diff line number Diff line change @@ -662,13 +662,17 @@ public function showWizard() : void {
662
662
$ sort_order = PluginFormcreatorEntityconfig::getUsedConfig ('sort_order ' , Session::getActiveEntity ());
663
663
$ selected = $ sort_order == PluginFormcreatorEntityconfig::CONFIG_SORT_POPULARITY ? 'checked="checked" ' : '' ;
664
664
echo '<input type="radio" class="-check-input" id="plugin_formcreator_mostPopular" name="sort" value="mostPopularSort" ' .$ selected .' onclick="showTiles(tiles)"/> ' ;
665
- echo '<label for="plugin_formcreator_mostPopular"> ' .$ sort_settings [PluginFormcreatorEntityConfig::CONFIG_SORT_POPULARITY ] .'</label> ' ;
665
+ echo '<label for="plugin_formcreator_mostPopular"> ' ;
666
+ echo '<a title=" ' . $ sort_settings [PluginFormcreatorEntityConfig::CONFIG_SORT_POPULARITY ] . '"><i class="fa fa-star" aria-hidden="true"></i></a> ' ;
667
+ echo '</label> ' ;
666
668
echo '</span> ' ;
667
669
echo ' ' ;
668
670
echo '<span class="radios"> ' ;
669
671
$ selected = $ sort_order == PluginFormcreatorEntityconfig::CONFIG_SORT_ALPHABETICAL ? 'checked="checked" ' : '' ;
670
672
echo '<input type="radio" class="-check-input" id="plugin_formcreator_alphabetic" name="sort" value="alphabeticSort" ' .$ selected .' onclick="showTiles(tiles)"/> ' ;
671
- echo '<label for="plugin_formcreator_alphabetic"> ' .$ sort_settings [PluginFormcreatorEntityConfig::CONFIG_SORT_ALPHABETICAL ].'</label> ' ;
673
+ echo '<label for="plugin_formcreator_alphabetic"> ' ;
674
+ echo '<a title=" ' . $ sort_settings [PluginFormcreatorEntityConfig::CONFIG_SORT_ALPHABETICAL ] . '"><i class="fa fa-arrow-down-a-z"></i></a> ' ;
675
+ echo '</label> ' ;
672
676
echo '</span> ' ;
673
677
echo '</div> ' ;
674
678
echo '<div id="plugin_formcreator_wizard_forms"> ' ;
You can’t perform that action at this time.
0 commit comments