Should not be called anymore

This commit is contained in:
Michal Čihař 2011-08-22 15:36:54 +02:00
parent a0309eb384
commit 85e778ffc8

View File

@ -33,7 +33,6 @@ function PMA_css_gradient($start_color, $end_color)
$result[] = 'background: -webkit-gradient(linear, left top, left bottom, from(#' . $start_color . '), to(#' . $end_color . '));';
$result[] = 'background: -moz-linear-gradient(top, #' . $start_color . ', #' . $end_color . ');';
$result[] = 'background: -o-linear-gradient(top, #' . $start_color . ', #' . $end_color . ');';
$result[] = PMA_ieFilter($start_color, $end_color);
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 6 && PMA_USR_BROWSER_VER <= 8) {
$result[] = 'filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#' . $start_color . '", endColorstr="#' . $end_color . '");';
}