source: extensions/stripped_black_bloc/admin/admin.tpl

Last change on this file was 23569, checked in by flop25, 11 years ago

adding a new option for the mouseover effect

File size: 4.9 KB
Line 
1{html_style}{literal}
2FORM.properties SPAN.property {
3    float: left;
4    font-weight: bold;
5    margin: 0;
6    padding: 0 0.5em 0 0;
7    text-align: right;
8    width: auto;
9}
10{/literal}{/html_style}
11
12<div class="titrePage">
13  <h2>{'Stripped & Columns Theme Configuration'|@translate}</h2>
14</div>
15<form method="post" class="properties" action="" ENCTYPE="multipart/form-data" name="form" class="properties">
16<div id="configContent">
17  <fieldset>
18    <legend>{'Displaying options'|@translate}</legend>
19    <ul>
20    <li>
21      <label for="color_main"><span class="property">{'color main'|@translate}</span>&nbsp;</label>
22      <input type="text" id="color_main" name="f_color_main" size="6" maxlength="6" value="{$options.color_main}" style="text-align:center;">
23    </li>
24    <li>
25      <br>
26      <label>{'Effect to use when the mouse is over the thumbnails:'|@translate}</label>
27      <br>
28     <label>
29        <input type="radio" name="f_hover_action" id="hover_action" value="fadein"  {if $options.hover_action=="fadein"}checked{/if}>
30        &nbsp;{'Opacity at 75%, then 100% on mouseover'|@translate}</label>
31      <br>
32      <label>
33        <input type="radio" name="f_hover_action" id="hover_action" value="fadeout" {if $options.hover_action=="fadeout"}checked{/if}>
34        &nbsp;{'Opacity at 100%, then 75% on mouseover'|@translate}</label>
35      <br>
36      <label>
37        <input type="radio" name="f_hover_action" id="hover_action" value="border" {if $options.hover_action=="border"}checked{/if}>
38        &nbsp;{'For albums, the border becomes white'|@translate}</label>
39      <br>
40      <label>
41        <input type="radio" name="f_hover_action" id="hover_action" value="none" {if $options.hover_action=="none"}checked{/if}>
42        &nbsp;{'No effect'|@translate}</label>
43      <br><br>
44    </li>
45    <li>
46      <label for="column_width"><span class="property">{'Width of columns'|@translate}</span>&nbsp;</label>
47      <input type="text" id="column_width" name="f_column_width" size="4" maxlength="4" value="{$options.column_width}" style="text-align:center;">
48      &nbsp;{'pixels'|@translate}
49    </li>
50    <li>
51      <label for="column_width"><span class="property">{'Width of thumbnails'|@translate}</span>&nbsp;</label>
52      <input type="text" id="column_width" name="f_thumbnail_width" size="4" maxlength="4" value="{$options.thumbnail_width}" style="text-align:center;">
53      &nbsp;{'pixels'|@translate}&nbsp;{'(it need to be inferior than the width of columns)'|@translate}
54    </li>
55    <li>
56      <label for="every_x"><span class="property">{'Create a big thumbnail every'|@translate}</span>&nbsp;</label>
57      <input type="text" id="every_x" name="f_every_x" size="5" maxlength="5" value="{$options.every_x}" style="text-align:center;">
58       {'Thumbnails'|@translate}&nbsp;{'(set 0 to disable)'|@translate}
59    </li>
60    <li>
61      <label for="starting_to"><span class="property">{'... starting to the position number'|@translate}</span>&nbsp;</label>
62      <input type="text" id="starting_to" name="f_starting_to" size="2" maxlength="2" value="{$options.starting_to}" style="text-align:center;">
63      &nbsp;{'(set 0 to disable)'|@translate}
64    </li>
65    <li>
66      <br><br>
67      <label>{'About portrait/landscape pictures :'|@translate}</label>
68      <br><br>
69     <label>
70        <input type="radio" name="f_orientation_option" id="orientation_option" value="none"  {if $options.orientation_option=="none"}checked{/if}>
71        &nbsp;{'No Maximum Height and the width is the one set above'|@translate}</label>
72      <br>
73      <label>
74        <input type="radio" name="f_orientation_option" id="orientation_option" value="max_heigth" {if $options.orientation_option=="max_heigth"}checked{/if}>
75        &nbsp;{'Use the width parameter above as a maximum heigth'|@translate}</label>
76      <br>
77      <label>
78        <input type="radio" name="f_orientation_option" id="orientation_option" value="big_landscape" {if $options.orientation_option=="big_landscape"}checked{/if}>
79        &nbsp;{'Display big thumbnails for landscape pictures'|@translate}</label>
80      <br>
81    </li>
82    <li>
83      <br><br>
84        <label for="thumbnail">{'About big thumbnails, for the albums :'|@translate}</label>
85      <br><br>
86      <label>
87        <input type="radio" name="f_catthumb" id="catthumb" value="none"  {if $options.catthumb=="none"}checked{/if}>
88        &nbsp;{'don\'t generate big thumbnails'|@translate}</label>
89      <br>
90      <label>
91        <input type="radio" name="f_catthumb" id="catthumb" value="same" {if $options.catthumb=="same"}checked{/if}>
92        &nbsp;{'use the same config as above'|@translate}</label>
93      <br>
94      <label>
95        <input type="radio" name="f_catthumb" id="catthumb" value="all" {if $options.catthumb=="all"}checked{/if}>
96        &nbsp;{'always generate big thumbnails'|@translate}</label>
97      <br>
98    </li>
99  </fieldset>
100  </ul>
101</div>
102<p>
103  <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_stripped_black_bloc" />
104</p>
105</form>
Note: See TracBrowser for help on using the repository browser.