Improve the look of the language selection flags

This commit is contained in:
j2blake 2013-04-26 23:44:17 -04:00
parent 96336cfbfd
commit c59076a19a

View file

@ -9,14 +9,12 @@
<#-- This is included by identity.ftl --> <#-- This is included by identity.ftl -->
<#if selectLocale??> <#if selectLocale??>
<li> <li>
<form method="get" action="${selectLocale.selectLocaleUrl}" > <#list selectLocale.locales as locale>
<#list selectLocale.locales as locale> <a href="${selectLocale.selectLocaleUrl}?selection=${locale.code}">
<button type="submit" name="selection" value="${locale.code}"> <img src="${locale.imageUrl}" height="15" align="middle" alt="${locale.label}"/>
<img src="${locale.imageUrl}" height="15" align="middle" alt="${locale.label}"/> </a>
</button> <#if locale_has_next>|</#if>
<#if locale_has_next>|</#if> </#list>
</#list>
</form>
</li> </li>
</#if> </#if>