]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/theme_settings.tpl
Merge branch 'master' of ../save/merge/frio into frio_merge
[friendica.git] / view / theme / frio / templates / theme_settings.tpl
1
2 <link rel="stylesheet" href="{{$baseurl}}/view/theme/frio/frameworks/jRange/jquery.range.css" type="text/css" media="screen" />
3 <script src="{{$baseurl}}/view/theme/quattro/jquery.tools.min.js"></script>
4 <script src="{{$baseurl}}/view/theme/frio/frameworks/jRange/jquery.range.js"></script>
5 <script type="text/javascript" src="{{$baseurl}}/js/ajaxupload.js" ></script>
6
7 {{include file="field_select.tpl" field=$schema}}
8
9 {{if $nav_bg}}{{include file="field_colorinput.tpl" field=$nav_bg}}{{/if}}
10 {{if $nav_icon_color}}{{include file="field_colorinput.tpl" field=$nav_icon_color}}{{/if}}
11 {{if $link_color}}{{include file="field_colorinput.tpl" field=$link_color}}{{/if}}
12
13 {{if $bgcolor}}{{include file="field_colorinput.tpl" field=$bgcolor}}{{/if}}
14
15 {{* The slider for the content opacity - We use no template for this since it is only used at this page *}}
16 {{if $contentbg_transp}}
17 <div class="form-group field input color">
18         <label for="id_{{$contentbg_transp.0}}" id="label_{{$contentbg_transp.0}}">{{$contentbg_transp.1}}</label>
19         <input type="hidden" class="form-control color slider-input" name="{{$contentbg_transp.0}}" id="{{$contentbg_transp.0}}" type="text" value="{{$contentbg_transp.2}}">
20         <span id="help_{{$contentbg_transp.0}}" class="help-block">{{$contentbg_transp.3}}</span>
21         <div id="end_{{$contentbg_transp.0}}" class="field_end"></div>
22 </div>
23 {{/if}}
24
25 {{if $background_image}}{{include file="field_fileinput.tpl" field=$background_image}}{{/if}}
26
27 <div id="frio_bg_image_options" style="display: none;">
28 {{foreach $bg_image_options as $options}}
29         {{include file="field_radio.tpl" field=$options}}
30 {{/foreach}}
31 </div>
32
33 <script>
34         $(function(){
35                 $("#frio_nav_bg, #frio_nav_icon_color, #frio_background_color, #frio_link_color").colorpicker({format: 'hex', align: 'left'});
36
37                 // show image options when user user starts to type the address of the image
38                 $("#id_frio_background_image").keyup(function(){
39                         var elText = $(this).val();
40                         if(elText.length !== 0) {
41                                 $("#frio_bg_image_options").show();
42                         } else {
43                                 $("#frio_bg_image_options").hide();
44                         }
45                 });
46
47                 // show the image options is there is allready an image
48                 if($("#id_frio_background_image").val().length != 0) {
49                                 $("#frio_bg_image_options").show();
50                 }
51
52                 $('.slider-input').jRange({
53                         from: 0,
54                         to: 100,
55                         step: 1,
56                         scale: [0,10,20,30,40,50,60,70,80,90,100],
57                         format: '%s',
58                         width: '100%',
59                         showLabels: true,
60                         theme: 'theme-frio',
61                 });
62
63         });
64 </script>
65
66 <div class="settings-submit-wrapper pull-right">
67         <button type="submit" value="{{$submit}}" class="settings-submit btn btn-primary" name="frio-settings-submit"><i class="fa fa-slideshare"></i>&nbsp;{{$submit}}</button>
68 </div>
69 <div class="clearfix"></div>
70
71 <script>
72     
73     $(".inputRange").rangeinput();
74 </script>