Better UI for save button

This commit is contained in:
Miraty 2021-11-25 20:34:34 +01:00
parent 69d172a8d8
commit b280d85a4a
3 changed files with 11 additions and 2 deletions

View File

@ -25,7 +25,7 @@ $loc = array(
'help_size' => "By how much will the dimensions of the image be multiplied?",
'button_create' => "Generate",
'button_download' => "Download this QR code",
'button_download' => "Save this QR code",
'title_showOnlyQR' => "Show this QR code only",

View File

@ -25,7 +25,7 @@ $loc = array(
'help_size' => "Par combien les dimensions de l'image seront-elles multipliées ?",
'button_create' => "Générer",
'button_download' => "Télécharger ce code QR",
'button_download' => "Enregistrer ce code QR",
'title_showOnlyQR' => "Afficher uniquement ce code QR",

View File

@ -425,3 +425,12 @@ input[type=color] {
}
}
a[download]::before {
content: "💾 ";
filter: drop-shadow(1px 1px white)
drop-shadow(-1px -1px white)
drop-shadow(-1px 1px white)
drop-shadow(1px -1px white);
}