Changeset 3787:24c2472a688c
- Timestamp:
- 07/30/18 09:48:26 (7 years ago)
- Branch:
- default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default-dark.css
r3780 r3787 2123 2123 #icons p { 2124 2124 width: 13em; 2125 text-align: center; 2126 margin: 1em 0 2em; } 2125 margin: 1em 0 2em; 2126 display: flex; 2127 flex-direction: column; 2128 justify-content: flex-start; 2129 align-items: center; } 2127 2130 #icons a, #icons a:link, #icons a:visited, #icons a:hover, #icons a:focus { 2128 2131 border-bottom-width: 0; -
admin/style/default.css
r3779 r3787 2123 2123 #icons p { 2124 2124 width: 13em; 2125 text-align: center; 2126 margin: 1em 0 2em; } 2125 margin: 1em 0 2em; 2126 display: flex; 2127 flex-direction: column; 2128 justify-content: flex-start; 2129 align-items: center; } 2127 2130 #icons a, #icons a:link, #icons a:visited, #icons a:hover, #icons a:focus { 2128 2131 border-bottom-width: 0; -
admin/style/scss/partials/_index.scss
r3770 r3787 12 12 p { 13 13 width: 13em; 14 text-align: center;15 14 margin: 1em 0 2em; 15 display: flex; 16 flex-direction: column; 17 justify-content: flex-start; 18 align-items: center; 16 19 } 17 20 a { -
plugins/antispam/inc/lib.dc.antispam.php
r3781 r3787 73 73 if (($count = self::countSpam($core)) > 0) { 74 74 $str = ($count > 1) ? __('(including %d spam comments)') : __('(including %d spam comment)'); 75 $icons['comments'][0] .= '</span></a> < br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' .75 $icons['comments'][0] .= '</span></a> <a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' . 76 76 sprintf($str, $count); 77 77 } … … 82 82 if (($count = self::countSpam($core)) > 0) { 83 83 $str = ($count > 1) ? __('(including %d spam comments)') : __('(including %d spam comment)'); 84 return '</span></a> < br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' .84 return '</span></a> <a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' . 85 85 sprintf($str, $count); 86 86 } else { -
plugins/antispam/js/dashboard.js
r3786 r3787 28 28 var icon = $('#dashboard-main #icons p a[href="comments.php"]'); 29 29 if (icon.length) { 30 var xml = ' < br /><a href="comments.php?status=-2"><span class="db-icon-title-spam">' + nb + '</span></a>';30 var xml = ' <a href="comments.php?status=-2"><span class="db-icon-title-spam">' + nb + '</span></a>'; 31 31 icon.after(xml); 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.