style(attachment): enable underlined link on refresh link
This commit is contained in:
parent
91f4971df2
commit
ab1928dc33
2 changed files with 19 additions and 24 deletions
|
@ -16,12 +16,6 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.attachment-link {
|
|
||||||
a:not(:hover) {
|
|
||||||
background-image: none; // remove DSFR underline
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachment-error {
|
.attachment-error {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
|
|
|
@ -9,22 +9,23 @@
|
||||||
- else
|
- else
|
||||||
%span{ data: poll_controller_options }
|
%span{ data: poll_controller_options }
|
||||||
= attachment.filename.to_s
|
= attachment.filename.to_s
|
||||||
- if attachment.virus_scanner.pending?
|
%span.fr-text-mention--grey
|
||||||
(analyse antivirus en cours
|
- if attachment.virus_scanner.pending?
|
||||||
= link_to "rafraichir", attachment_path, data: { action: 'turbo-poll#refresh' }
|
(analyse antivirus en cours
|
||||||
)
|
= link_to "rafraichir", attachment_path, data: { action: 'turbo-poll#refresh' }
|
||||||
- elsif attachment.watermark_pending?
|
)
|
||||||
(traitement de la pièce en cours
|
- elsif attachment.watermark_pending?
|
||||||
= link_to "rafraichir", attachment_path, data: { action: 'turbo-poll#refresh' }
|
(traitement de la pièce en cours
|
||||||
)
|
= link_to "rafraichir", attachment_path, data: { action: 'turbo-poll#refresh' }
|
||||||
- elsif attachment.virus_scanner.infected?
|
)
|
||||||
- if user_can_upload?
|
- elsif attachment.virus_scanner.infected?
|
||||||
(virus détecté, merci d’envoyer un autre fichier)
|
- if user_can_upload?
|
||||||
- else
|
(virus détecté, merci d’envoyer un autre fichier)
|
||||||
(virus détecté, le téléchargement de ce fichier est bloqué)
|
- else
|
||||||
- elsif attachment.virus_scanner.corrupt?
|
(virus détecté, le téléchargement de ce fichier est bloqué)
|
||||||
- if user_can_upload?
|
- elsif attachment.virus_scanner.corrupt?
|
||||||
(le fichier est corrompu, merci d’envoyer un autre fichier)
|
- if user_can_upload?
|
||||||
- else
|
(le fichier est corrompu, merci d’envoyer un autre fichier)
|
||||||
(le fichier est corrompu, le téléchargement est bloqué)
|
- else
|
||||||
|
(le fichier est corrompu, le téléchargement est bloqué)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue