| 1 | {combine_css path="$PWG_CUMULUS_PLUGIN_CSS/colorpicker.css"} |
|---|
| 2 | |
|---|
| 3 | {combine_script id="colorpicker" require="jquery" path="$PWG_CUMULUS_PLUGIN_JS/colorpicker.js"} |
|---|
| 4 | {combine_script id="colorpicker.instance" require="colorpicker" path="$PWG_CUMULUS_PLUGIN_JS/colorpicker.instance.js"} |
|---|
| 5 | |
|---|
| 6 | <p>{'Animation configuration : size, tags colors, tags size'|@translate}</p> |
|---|
| 7 | |
|---|
| 8 | <form method="post" action="" class="general"> |
|---|
| 9 | <fieldset> |
|---|
| 10 | <legend>{'Animation width and height'|@translate}</legend> |
|---|
| 11 | <p class="field"> |
|---|
| 12 | <label>{'Width'|@translate} |
|---|
| 13 | <input type="text" name="pwg_cumulus_width" value="{$PWG_CUMULUS_WIDTH}"> |
|---|
| 14 | </label> |
|---|
| 15 | </p> |
|---|
| 16 | <p class="field"> |
|---|
| 17 | <label>{'Height'|@translate} |
|---|
| 18 | <input type="text" name="pwg_cumulus_height" value="{$PWG_CUMULUS_HEIGHT}"> |
|---|
| 19 | </label> |
|---|
| 20 | </p> |
|---|
| 21 | </fieldset> |
|---|
| 22 | |
|---|
| 23 | <fieldset> |
|---|
| 24 | <legend>{'Tags size'|@translate}</legend> |
|---|
| 25 | <p class="field"> |
|---|
| 26 | <label>{'Coefficient'|@translate} |
|---|
| 27 | <input type="text" name="pwg_cumulus_coeff" value="{$PWG_CUMULUS_COEFF}"> |
|---|
| 28 | </label> |
|---|
| 29 | </p> |
|---|
| 30 | </fieldset> |
|---|
| 31 | |
|---|
| 32 | <fieldset> |
|---|
| 33 | <legend>{'Animation colors'|@translate}</legend> |
|---|
| 34 | <div id="picker" style="float: right;"></div> |
|---|
| 35 | |
|---|
| 36 | <p class="field"> |
|---|
| 37 | <label>{'Transparent mode for background'|@translate} |
|---|
| 38 | <input type="checkbox" id="pwg_cumulus_mode_transparent" name="pwg_cumulus_mode_transparent" value="1" |
|---|
| 39 | {if $PWG_CUMULUS_MODE_TRANSPARENT} checked="checked"{/if}> |
|---|
| 40 | </label> |
|---|
| 41 | <span class="info">({'Check the checkbox to use transparent mode for background'|@translate})</span> |
|---|
| 42 | </p> |
|---|
| 43 | <p class="field" id="pwg_cumulus_p_bgcolor"> |
|---|
| 44 | <label>{'Background color'|@translate} |
|---|
| 45 | <input class="pwg-picker" type="text" name="pwg_cumulus_bgcolor" value="{$PWG_CUMULUS_BGCOLOR}"> |
|---|
| 46 | </label> |
|---|
| 47 | </p> |
|---|
| 48 | <p class="field"> |
|---|
| 49 | <label>{'Color 1'|@translate} |
|---|
| 50 | <input class="pwg-picker" type="text" name="pwg_cumulus_color1" value="{$PWG_CUMULUS_COLOR1}"> |
|---|
| 51 | </label> |
|---|
| 52 | </p> |
|---|
| 53 | <p class="field"> |
|---|
| 54 | <label>{'Color 2'|@translate} |
|---|
| 55 | <input class="pwg-picker" type="text" name="pwg_cumulus_color2" value="{$PWG_CUMULUS_COLOR2}"> |
|---|
| 56 | </label> |
|---|
| 57 | </p> |
|---|
| 58 | <p class="field"> |
|---|
| 59 | <label>{'Mouseover color'|@translate} |
|---|
| 60 | <input class="pwg-picker" type="text" name="pwg_cumulus_hicolor" value="{$PWG_CUMULUS_HICOLOR}"> |
|---|
| 61 | </label> |
|---|
| 62 | </p> |
|---|
| 63 | </fieldset> |
|---|
| 64 | <p><input class="submit" type="submit" name="submit" value="{'Submit'|@translate}"></p> |
|---|
| 65 | </form> |
|---|
| 66 | |
|---|