fixes #1235 capitalized words in actions

In album edit page, the actions had every word capitalized, so I removed text-transform:capitalize from theme.css, then added translation for french and UK but with Capitlalized actions names who where modified in cat_modify template
This commit is contained in:
Louis
2020-10-13 17:49:41 +02:00
parent 54eac47699
commit 37f90c90c3
2 changed files with 3 additions and 4 deletions
+3 -3
View File
@@ -251,19 +251,19 @@ function cropImage() {
{/if}
{if isset($U_MANAGE_ELEMENTS) }
<a class="icon-picture" href="{$U_MANAGE_ELEMENTS}">{'manage album photos'|@translate}</a>
<a class="icon-picture" href="{$U_MANAGE_ELEMENTS}">{'Manage album photos'|@translate}</a>
{/if}
<a class="icon-plus-circled" href="{$U_ADD_PHOTOS_ALBUM}">{'Add Photos'|translate}</a>
<a class="icon-sitemap" href="{$U_CHILDREN}">{'manage sub-albums'|@translate}</a>
<a class="icon-sitemap" href="{$U_CHILDREN}">{'Manage sub-albums'|@translate}</a>
{if isset($U_SYNC) }
<a class="icon-exchange" href="{$U_SYNC}">{'Synchronize'|@translate}</a>
{/if}
{if isset($U_DELETE) }
<a class="icon-trash deleteAlbum" href="#">{'delete album'|@translate}</a>
<a class="icon-trash deleteAlbum" href="#">{'Delete album'|@translate}</a>
{/if}
</div>
</div>
-1
View File
@@ -476,7 +476,6 @@ LI.menuLi {
}
#catHeader .catAction a {
text-transform: capitalize;
color: #888;
font-size: 14px;
white-space: nowrap;