Files
Piwigo/admin/themes/default/template/include/add_album.inc.tpl
T
plegall a30b1115ae issue #1080 moves fontello animation.css at the end of the combined files list
It does not fixes the parsing problem, but it avoids breaking following CSS rules.
2019-09-25 16:25:20 +02:00

31 lines
1.3 KiB
Smarty

{if empty($load_mode)}{$load_mode='footer'}{/if}
{include file='include/colorbox.inc.tpl' load_mode=$load_mode}
{combine_script id='jquery.selectize' load='footer' path='themes/default/js/plugins/selectize.min.js'}
{combine_css id='jquery.selectize' path="themes/default/js/plugins/selectize.{$themeconf.colorscheme}.css"}
{combine_css path="admin/themes/default/fontello/css/animation.css" order=10}
{combine_script id='addAlbum' load=$load_mode path='admin/themes/default/js/addAlbum.js'}
<div style="display:none">
<div id="addAlbumForm">
<form>
<div class="popinField addAlbumFormParent">
<span class="popinFieldLabel">{'Parent album'|@translate}</span>
<select name="category_parent"></select>
</div>
<div class="popinField">
<span class="popinFieldLabel">{'Album name'|@translate}</span>
<input name="category_name" type="text" maxlength="255">
<span id="categoryNameError" style="color:red;">{'The name of an album must not be empty'|translate}</span>
</div>
<div class="popinButtons">
<input type="submit" value="{'Create'|@translate}" class="albumCreationButton">
<span id="albumCreationLoading"><span class="icon-spin6 animate-spin"></span></span>
</div>
</form>
</div>
</div>