Nearly finished the Excel Password Remover revamp, Only the download is missing

Update commons.yml, excel-password-remover.yml, and 14 more files...
This commit is contained in:
2025-03-01 18:27:13 +01:00
parent 0a02a1e56d
commit b2064cbbaf
16 changed files with 465 additions and 115 deletions

View File

@@ -1,6 +1,6 @@
<button
{% if button_id is not none %}id="{{ button_id }}" {% endif %}
class="p-mxs r-s border b-light t-nowrap {{ button_extra_classes }}"
class="p-xs r-s border b-light t-nowrap {{ button_extra_classes }}"
{% if button_disabled %}disabled{% endif %}>
{{ button_inner_html }}
</button>

View File

@@ -1,7 +1,8 @@
<div class="np-file-input-root-container">
<!-- FIXME: Use the common renderer ! -->
{% if file_upload_button %}
<button id="{{ file_input_id }}-add" class="p-xs r-s border btn-primary">
<i class="fa-duotone fa-solid fa-cloud-arrow-up mr-xs"></i>
<i class="fa-duotone fa-solid fa-cloud-arrow-up mr-xxs"></i>
{% if file_multiple %}
{{ l10n("file.drop.upload.multiple", "commons", user_lang) }}
{% else %}
@@ -12,7 +13,7 @@
{% if file_clear_button %}
<button id="{{ file_input_id }}-reset" class="p-xs r-s border btn-warning">
{{ l10n("file.drop.clear", "commons", user_lang) }}
{{ "<i class=\"fa-duotone fa-solid fa-trash mr-xs\"></i>" + l10n("file.drop.clear", "commons", user_lang) }}
</button>
{% endif %}