Change btn name

This commit is contained in:
John Botella 2019-10-31 08:44:08 +01:00
parent 2293048fdb
commit d0a5e30faa
2 changed files with 4 additions and 4 deletions

View File

@ -844,7 +844,7 @@ function show_ticket_messaging($conf, $langs, $db, $filterobj, $objcon = '', $no
$class.= ' documentpreview';
}
$footer.= '<a href="'.$doclink.'" class="btn-file '.$class.'" target="_blank" '.$mimeAttr.' >';
$footer.= '<a href="'.$doclink.'" class="btn-link '.$class.'" target="_blank" '.$mimeAttr.' >';
$footer.= img_mime($filePath).' '.$doc->filename;
$footer.= '</a>';

View File

@ -264,10 +264,10 @@ div.pagination li:first-child a.btnTitle{
/*
* BTN FILE doc
* BTN LINK
*/
.btn-file{
.btn-link{
margin-right: 5px;
border: 1px solid #ddd;
color: #333;
@ -276,7 +276,7 @@ div.pagination li:first-child a.btnTitle{
text-decoration: none !important;
}
.btn-file:hover{
.btn-link:hover{
background-color: #ddd;
border: 1px solid #ddd;
}