Fixes #115
jdarwood007

jdarwood007 commited on 2019-04-13 09:58:37
Showing 3 changed files, with 5 additions and 1 deletions.

... ...
@@ -81,6 +81,10 @@ span.shd_new_tickets {
81 81
     padding: 1px 5px 3px 4px;
82 82
 }
83 83
 
84
+.shd_smallicon {
85
+	max-width: initial;
86
+}
87
+
84 88
 /* The page index color looks ugly with our theme. */
85 89
 .shd_cat_bar .current_page, .shd_pages .current_page {
86 90
 	color: #fff;
... ...
@@ -545,7 +545,7 @@ function template_shd_action_log()
545 545
 				<td>', $action['member']['link'], '</td>
546 546
 				<td>', $action['member']['group'], '</td>
547 547
 				<td>', !empty($action['member']['ip']) ? $action['member']['ip'] : $txt['shd_admin_actionlog_hidden'], '</td>
548
-				<td>', $action['can_remove'] && $context['can_delete'] ? '<a href="' . $scripturl . '?action=admin;area=helpdesk_info;sa=actionlog;remove=' . $action['id'] . '"><img src="' . $settings['default_images_url'] . '/simpledesk/delete.png" alt="' . $txt['shd_delete_item'] . '"></a>' : '', '</td>
548
+				<td>', $action['can_remove'] && $context['can_delete'] ? '<a href="' . $scripturl . '?action=admin;area=helpdesk_info;sa=actionlog;remove=' . $action['id'] . '"><img src="' . $settings['default_images_url'] . '/simpledesk/delete.png" class="shd_smallicon" alt="' . $txt['shd_delete_item'] . '"></a>' : '', '</td>
549 549
 			</tr>';
550 550
 
551 551
 	echo '
552 552