diff --git a/libraries/classes/Server/Status/Processes.php b/libraries/classes/Server/Status/Processes.php index 0e49e79170f5..f4c06f814f1b 100644 --- a/libraries/classes/Server/Status/Processes.php +++ b/libraries/classes/Server/Status/Processes.php @@ -180,9 +180,11 @@ public static function getHtmlForServerProcesslist() if (0 === --$sortableColCount) { $retval .= ''; if ($show_full_sql) { - $retval .= Util::getImage('s_partialtext', __('Truncate Shown Queries')); + $retval .= Util::getImage('s_partialtext', + __('Truncate Shown Queries'), ['class' => 'icon_fulltext']); } else { - $retval .= Util::getImage('s_fulltext', __('Show Full Queries')); + $retval .= Util::getImage('s_fulltext', + __('Show Full Queries'), ['class' => 'icon_fulltext']); } $retval .= ''; } diff --git a/themes/pmahomme/css/icons.css.php b/themes/pmahomme/css/icons.css.php index 10762ae5a322..2f26c91e9d4b 100644 --- a/themes/pmahomme/css/icons.css.php +++ b/themes/pmahomme/css/icons.css.php @@ -22,6 +22,10 @@ width: 16px; height: 16px; } +.icon_fulltext { + width: 50px; + height: 19px; +} .ic_asc_order { background-image: url('getImgPath('asc_order.png'); ?>'); } .ic_b_bookmark { background-image: url('getImgPath('b_bookmark.png'); ?>'); } .ic_b_browse { background-image: url('getImgPath('b_browse.png'); ?>'); } @@ -185,3 +189,5 @@ .ic_show { background-image: url('getImgPath('show.png'); ?>'); } .ic_window-new { background-image: url('getImgPath('window-new.png'); ?>'); } .ic_ajax_clock_small { background-image: url('getImgPath('ajax_clock_small.gif'); ?>'); } +.ic_s_partialtext { background-image: url('getImgPath('s_partialtext.png'); ?>'); } +.ic_s_fulltext { background-image: url('getImgPath('s_fulltext.png'); ?>'); }