Skip to content

Commit

Permalink
add tratamento layout upload mobile remove span
Browse files Browse the repository at this point in the history
  • Loading branch information
vicmagpac committed Jan 11, 2023
1 parent 4c7dcd7 commit 3fb0712
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</div>
<ul ng-if="!field.multiple && field.file" class="widget-list js-downloads js-slimScroll">
<li class="widget-list-item is-editable">
<a href="{{field.file.url}}" target="_blank" rel='noopener noreferrer'><span>{{field.file.name}}</span></a>
<a href="{{field.file.url}}" target="_blank" rel='noopener noreferrer'>{{field.file.name}}</a>
<div class="botoes">
<a hltip ng-click="removeFile(field.file)" class="delete hltip" title="<?php \MapasCulturais\i::esc_attr_e("Excluir arquivo");?>"></a>
</div>
Expand All @@ -33,7 +33,7 @@

<ul ng-if="field.multiple" ng-repeat="file in field.file track by $index" class="widget-list js-downloads js-slimScroll">
<li id="{{file.id}}" class="widget-list-item is-editable">
<a href="{{file.url}}" target="_blank" rel='noopener noreferrer'><span>{{file.description}} - {{file.name}}</span></a>
<a href="{{file.url}}" target="_blank" rel='noopener noreferrer'>{{file.description}} - {{file.name}}</a>
<div class="botoes">
<a hltip ng-click="removeFile(file)" class="delete hltip" title="<?php \MapasCulturais\i::esc_attr_e("Excluir arquivo");?>"></a>
</div>
Expand Down

0 comments on commit 3fb0712

Please sign in to comment.