Skip to content

Commit db015de

Browse files
Merge pull request #454 from contactashish13/issue-450
Improvements to CSS Props for DataTable
2 parents 5bd59af + 2e4f234 commit db015de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/Visualizer/Module.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ protected function get_inline_custom_css( $id, $settings ) {
544544
$attributes[] = $this->handle_css_property( $property, $value );
545545
}
546546
$class_name = $id . $name;
547-
$properties = implode( '; ', array_filter( $attributes ) );
547+
$properties = implode( ' !important; ', array_filter( $attributes ) );
548548
if ( ! empty( $properties ) ) {
549549
$css .= '.' . $class_name . ' {' . $properties . ' !important;}';
550550
$classes[ $name ] = $class_name;

0 commit comments

Comments
 (0)