public function __construct(EE_Admin_Page $admin_page)
 {
     parent::__construct($admin_page);
 }
 /**
  * Overrides parent so we can first enqueue the iris color picker styles.
  * This could also be done by registering and enqueueing a custom style
  * in the _script_styles array and adding wp-color-picker as a dependency,
  *  but we currently don't have a custom style to register
  */
 function enqueue_scripts_styles()
 {
     wp_enqueue_style('wp-color-picker');
     parent::enqueue_scripts_styles();
 }