diff --git a/core/modules/image/lib/Drupal/image/ImageStyleListController.php b/core/modules/image/lib/Drupal/image/ImageStyleListController.php index f132f60..4cf5775 100644 --- a/core/modules/image/lib/Drupal/image/ImageStyleListController.php +++ b/core/modules/image/lib/Drupal/image/ImageStyleListController.php @@ -40,6 +40,7 @@ public function buildRow(EntityInterface $entity) { public function render() { $build = parent::render(); $build['#empty'] = t('There are currently no styles. Add a new one.', array('!url' => url('admin/config/media/image-styles/add'))); + $build['#attached']['css'][] = drupal_get_path('module', 'image') . '/css/image.admin.css'; return $build; }