Styling issue in dark theme

In the Custom Dashboard Extension I’ve added this code snippet to fixate 3 columns in the site overview page:

add_filter( 'mainwp_sites_table_features', 'mycustom_fixed_columns', 10, 1 );
function mycustom_fixed_columns( $table_features ) {
	$table_features['fixedColumns'] = "{left:3}";
	return $table_features;
}

But in the dark theme, these fixed columns stay white, so this styling still needs to be fixed as well.

This is not new in 4.5-beta but already exists since I found this snippet, although I can’t find the link to the source anymore.

Hi @josklever, just a quick update here the TD background color issue for fixed columns is resolved.
The fix will be included in 4.5-beta3 release.

2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.