diff --git a/css/status_config.php b/css/status_config.php index 12191fd63b..97385581ee 100644 --- a/css/status_config.php +++ b/css/status_config.php @@ -81,7 +81,6 @@ $t_status_string = config_get( 'status_enum_string' ); $t_statuses = MantisEnum::getAssocArrayIndexedByValues( $t_status_string ); $t_colors = config_get( 'status_colors' ); -$t_status_percents = auth_is_user_authenticated() ? get_percentage_by_status() : array(); foreach( $t_statuses as $t_id => $t_label ) { $t_css_class = html_get_status_css_class( $t_id ); @@ -91,12 +90,6 @@ echo '.' . $t_css_class . " { color: {$t_colors[$t_label]}; background-color: {$t_colors[$t_label]}; }\n"; } - - # Status percentage width class - if( array_key_exists( $t_id, $t_status_percents ) ) { - echo '.' . str_replace( 'color', 'percentage', $t_css_class ) - . " { width: {$t_status_percents[$t_id]}%; }\n"; - } } # Status legend width class