A WordPress stylesheet for according jQuery UI elements to admin area.
This files are created with the jQueryUI ThemeRoller.
The jquery-ui.css and jquery-ui.min.css files are including both structure and theme. The index.html file is an example page with many jQueryUI components.
To include this theme in your plugin, use PHP code :
add_action('admin_enqueue_scripts', 'kodex_admin_enqueue_scripts');
function kodex_admin_enqueue_scripts(){
wp_enqueue_style('kodex_jqueryui', plugin_dir_url(__FILE__).'jqueryui/jquery-ui.min.css');
wp_enqueue_script('kodex_plugin', plugin_dir_url(__FILE__).'script.js', array('jquery', 'jquery-ui-core', 'jquery-ui-datepicker'));
}