Version Description
Requests are being done trough REST API's now
=
Download this release
Release Info
| Developer | turcuciprian |
| Plugin | |
| Version | 1.3.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.3 to 1.3.3
- abExport.php +0 -57
- css/style.css +3 -0
- jquery-ui.css +1225 -0
- jquery-ui.min.css +7 -0
- readme.txt +37 -37
- regenerate-thumbnails-advanced.php +100 -178
- rest.php +203 -0
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- script.js +214 -0
- style.css +72 -59
abExport.php
DELETED
|
@@ -1,57 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
$abError = false;
|
| 3 |
-
include_once ABSPATH.'wp-admin/includes/plugin.php';
|
| 4 |
-
if (!is_plugin_active('admin-builder/admin-builder.php')) {
|
| 5 |
-
if(!function_exists('sample_admin_notice__success'))
|
| 6 |
-
{
|
| 7 |
-
function sample_admin_notice__success()
|
| 8 |
-
{
|
| 9 |
-
$pluginInstalled = false;
|
| 10 |
-
if (!function_exists('get_plugins')) {
|
| 11 |
-
require_once ABSPATH.'wp-admin/includes/plugin.php';
|
| 12 |
-
}
|
| 13 |
-
$allPlugins = get_plugins();
|
| 14 |
-
foreach ($allPlugins as $key => $value) {
|
| 15 |
-
if ($key === 'admin-builder/admin_builder.php') {
|
| 16 |
-
$pluginInstalled = true;
|
| 17 |
-
}
|
| 18 |
-
}
|
| 19 |
-
if ($pluginInstalled){
|
| 20 |
-
if (!is_plugin_active('admin-builder/admin_builder.php')) {
|
| 21 |
-
$abError = true;
|
| 22 |
-
$url = admin_url();
|
| 23 |
-
echo '<div class="notice notice-error is-dismissible">';
|
| 24 |
-
echo '<h3>Admin Builder Plugin is not ACTIVE!</h3>';
|
| 25 |
-
echo '<p>';
|
| 26 |
-
echo 'To get the full functionality , activate Admin Builder from the <a href="'.$url.'/plugins.php">plugins directory</a>.';
|
| 27 |
-
echo '</p>';
|
| 28 |
-
echo '</div>';
|
| 29 |
-
} else {
|
| 30 |
-
$theJson = '';
|
| 31 |
-
}
|
| 32 |
-
} else {
|
| 33 |
-
$abError = true;
|
| 34 |
-
echo '<div class="notice notice-error is-dismissible">';
|
| 35 |
-
echo '<h3>Admin Builder Plugin is not installed!</h3>';
|
| 36 |
-
echo '<p>';
|
| 37 |
-
echo 'To get the full functionality , install Admin Builder.';
|
| 38 |
-
echo '</p>';
|
| 39 |
-
echo '<p>';
|
| 40 |
-
$plugin_name = 'admin-builder';
|
| 41 |
-
$install_link = '<a href="'.esc_url(network_admin_url('plugin-install.php?tab=plugin-information&plugin='.$plugin_name.'&TB_iframe=true&width=600&height=550')).'" class="thickbox" title="More info about '.$plugin_name.'">Install '.$plugin_name.'</a>';
|
| 42 |
-
echo $install_link;
|
| 43 |
-
echo '</p>';
|
| 44 |
-
echo '</div>';
|
| 45 |
-
}
|
| 46 |
-
}
|
| 47 |
-
add_action('admin_notices', 'sample_admin_notice__success');
|
| 48 |
-
}
|
| 49 |
-
}
|
| 50 |
-
if (!$abError) {
|
| 51 |
-
|
| 52 |
-
$theJson = '{\"menus\":[{\"label\":\"Posts\",\"type\":\"post\",\"name\":\"posts\",\"unique\":true,\"children\":[],\"$$hashKey\":\"object:66\"},{\"label\":\"Pages\",\"type\":\"page\",\"name\":\"pages\",\"unique\":true,\"children\":[],\"$$hashKey\":\"object:67\"},{\"label\":\"Reg. Thumbnails\",\"type\":\"cPage\",\"name\":\"regenerateThumbnailsAdvanced\",\"unique\":false,\"children\":[{\"label\":\"General Settings\",\"name\":\"tab1\",\"context\":\"normal\",\"priority\":\"default\",\"fields\":[{\"name\":\"rtaOTF\",\"type\":\"checkbox\",\"label\":\"Auto Regenerate\",\"description\":\"Check this if you want missing thumbnails to be created on the fly, when needed.\",\"extraText\":\"Activate\",\"$$hashKey\":\"object:293\"},{\"name\":\"imageSizes\",\"type\":\"textboxesDynamic\",\"label\":\"Add Image sizes\",\"description\":\"Add as many image sizes you want for your thumbnails as you want\",\"oArr\":[{\"label\":\"Width (in px)\",\"value\":\"width\",\"$$hashKey\":\"object:1203\"},{\"label\":\"Height (in px)\",\"value\":\"height\",\"$$hashKey\":\"object:1219\"},{\"label\":\"Thumbnail Size Name\",\"value\":\"name\",\"$$hashKey\":\"object:1232\"}],\"$$hashKey\":\"object:1101\"}],\"$$hashKey\":\"object:92\"}],\"capability\":\"manage_options\",\"handler\":\"ab_regenerateThumbnailsAdvanced\",\"pageTitle\":\"regenerate Thumbnails Settings\",\"$$hashKey\":\"object:89\",\"pageDescription\":\"Configure if you want to regenerate thumbnails on the fly or not. Just make sure to check the checkbox if you do want everything to be taken care of regarding unexisting plugins.\"}]}';
|
| 53 |
-
if(class_exists('generalFunctionality')){
|
| 54 |
-
$abGeneral = new generalFunctionality();
|
| 55 |
-
$abGeneral->loadNew($theJson,$plugin_folder[$plugin_file]);
|
| 56 |
-
}
|
| 57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/style.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#progressbar .ui-progressbar-value {
|
| 2 |
+
background-color: rgb(17, 104, 233);
|
| 3 |
+
}
|
jquery-ui.css
ADDED
|
@@ -0,0 +1,1225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*! jQuery UI - v1.11.4 - 2015-03-11
|
| 2 |
+
* http://jqueryui.com
|
| 3 |
+
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
|
| 4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
| 5 |
+
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
|
| 6 |
+
|
| 7 |
+
/* Layout helpers
|
| 8 |
+
----------------------------------*/
|
| 9 |
+
.ui-helper-hidden {
|
| 10 |
+
display: none;
|
| 11 |
+
}
|
| 12 |
+
.ui-helper-hidden-accessible {
|
| 13 |
+
border: 0;
|
| 14 |
+
clip: rect(0 0 0 0);
|
| 15 |
+
height: 1px;
|
| 16 |
+
margin: -1px;
|
| 17 |
+
overflow: hidden;
|
| 18 |
+
padding: 0;
|
| 19 |
+
position: absolute;
|
| 20 |
+
width: 1px;
|
| 21 |
+
}
|
| 22 |
+
.ui-helper-reset {
|
| 23 |
+
margin: 0;
|
| 24 |
+
padding: 0;
|
| 25 |
+
border: 0;
|
| 26 |
+
outline: 0;
|
| 27 |
+
line-height: 1.3;
|
| 28 |
+
text-decoration: none;
|
| 29 |
+
font-size: 100%;
|
| 30 |
+
list-style: none;
|
| 31 |
+
}
|
| 32 |
+
.ui-helper-clearfix:before,
|
| 33 |
+
.ui-helper-clearfix:after {
|
| 34 |
+
content: "";
|
| 35 |
+
display: table;
|
| 36 |
+
border-collapse: collapse;
|
| 37 |
+
}
|
| 38 |
+
.ui-helper-clearfix:after {
|
| 39 |
+
clear: both;
|
| 40 |
+
}
|
| 41 |
+
.ui-helper-clearfix {
|
| 42 |
+
min-height: 0; /* support: IE7 */
|
| 43 |
+
}
|
| 44 |
+
.ui-helper-zfix {
|
| 45 |
+
width: 100%;
|
| 46 |
+
height: 100%;
|
| 47 |
+
top: 0;
|
| 48 |
+
left: 0;
|
| 49 |
+
position: absolute;
|
| 50 |
+
opacity: 0;
|
| 51 |
+
filter:Alpha(Opacity=0); /* support: IE8 */
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
.ui-front {
|
| 55 |
+
z-index: 100;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
/* Interaction Cues
|
| 60 |
+
----------------------------------*/
|
| 61 |
+
.ui-state-disabled {
|
| 62 |
+
cursor: default !important;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
/* Icons
|
| 67 |
+
----------------------------------*/
|
| 68 |
+
|
| 69 |
+
/* states and images */
|
| 70 |
+
.ui-icon {
|
| 71 |
+
display: block;
|
| 72 |
+
text-indent: -99999px;
|
| 73 |
+
overflow: hidden;
|
| 74 |
+
background-repeat: no-repeat;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
/* Misc visuals
|
| 79 |
+
----------------------------------*/
|
| 80 |
+
|
| 81 |
+
/* Overlays */
|
| 82 |
+
.ui-widget-overlay {
|
| 83 |
+
position: fixed;
|
| 84 |
+
top: 0;
|
| 85 |
+
left: 0;
|
| 86 |
+
width: 100%;
|
| 87 |
+
height: 100%;
|
| 88 |
+
}
|
| 89 |
+
.ui-accordion .ui-accordion-header {
|
| 90 |
+
display: block;
|
| 91 |
+
cursor: pointer;
|
| 92 |
+
position: relative;
|
| 93 |
+
margin: 2px 0 0 0;
|
| 94 |
+
padding: .5em .5em .5em .7em;
|
| 95 |
+
min-height: 0; /* support: IE7 */
|
| 96 |
+
font-size: 100%;
|
| 97 |
+
}
|
| 98 |
+
.ui-accordion .ui-accordion-icons {
|
| 99 |
+
padding-left: 2.2em;
|
| 100 |
+
}
|
| 101 |
+
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
| 102 |
+
padding-left: 2.2em;
|
| 103 |
+
}
|
| 104 |
+
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
| 105 |
+
position: absolute;
|
| 106 |
+
left: .5em;
|
| 107 |
+
top: 50%;
|
| 108 |
+
margin-top: -8px;
|
| 109 |
+
}
|
| 110 |
+
.ui-accordion .ui-accordion-content {
|
| 111 |
+
padding: 1em 2.2em;
|
| 112 |
+
border-top: 0;
|
| 113 |
+
overflow: auto;
|
| 114 |
+
}
|
| 115 |
+
.ui-autocomplete {
|
| 116 |
+
position: absolute;
|
| 117 |
+
top: 0;
|
| 118 |
+
left: 0;
|
| 119 |
+
cursor: default;
|
| 120 |
+
}
|
| 121 |
+
.ui-button {
|
| 122 |
+
display: inline-block;
|
| 123 |
+
position: relative;
|
| 124 |
+
padding: 0;
|
| 125 |
+
line-height: normal;
|
| 126 |
+
margin-right: .1em;
|
| 127 |
+
cursor: pointer;
|
| 128 |
+
vertical-align: middle;
|
| 129 |
+
text-align: center;
|
| 130 |
+
overflow: visible; /* removes extra width in IE */
|
| 131 |
+
}
|
| 132 |
+
.ui-button,
|
| 133 |
+
.ui-button:link,
|
| 134 |
+
.ui-button:visited,
|
| 135 |
+
.ui-button:hover,
|
| 136 |
+
.ui-button:active {
|
| 137 |
+
text-decoration: none;
|
| 138 |
+
}
|
| 139 |
+
/* to make room for the icon, a width needs to be set here */
|
| 140 |
+
.ui-button-icon-only {
|
| 141 |
+
width: 2.2em;
|
| 142 |
+
}
|
| 143 |
+
/* button elements seem to need a little more width */
|
| 144 |
+
button.ui-button-icon-only {
|
| 145 |
+
width: 2.4em;
|
| 146 |
+
}
|
| 147 |
+
.ui-button-icons-only {
|
| 148 |
+
width: 3.4em;
|
| 149 |
+
}
|
| 150 |
+
button.ui-button-icons-only {
|
| 151 |
+
width: 3.7em;
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
/* button text element */
|
| 155 |
+
.ui-button .ui-button-text {
|
| 156 |
+
display: block;
|
| 157 |
+
line-height: normal;
|
| 158 |
+
}
|
| 159 |
+
.ui-button-text-only .ui-button-text {
|
| 160 |
+
padding: .4em 1em;
|
| 161 |
+
}
|
| 162 |
+
.ui-button-icon-only .ui-button-text,
|
| 163 |
+
.ui-button-icons-only .ui-button-text {
|
| 164 |
+
padding: .4em;
|
| 165 |
+
text-indent: -9999999px;
|
| 166 |
+
}
|
| 167 |
+
.ui-button-text-icon-primary .ui-button-text,
|
| 168 |
+
.ui-button-text-icons .ui-button-text {
|
| 169 |
+
padding: .4em 1em .4em 2.1em;
|
| 170 |
+
}
|
| 171 |
+
.ui-button-text-icon-secondary .ui-button-text,
|
| 172 |
+
.ui-button-text-icons .ui-button-text {
|
| 173 |
+
padding: .4em 2.1em .4em 1em;
|
| 174 |
+
}
|
| 175 |
+
.ui-button-text-icons .ui-button-text {
|
| 176 |
+
padding-left: 2.1em;
|
| 177 |
+
padding-right: 2.1em;
|
| 178 |
+
}
|
| 179 |
+
/* no icon support for input elements, provide padding by default */
|
| 180 |
+
input.ui-button {
|
| 181 |
+
padding: .4em 1em;
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
/* button icon element(s) */
|
| 185 |
+
.ui-button-icon-only .ui-icon,
|
| 186 |
+
.ui-button-text-icon-primary .ui-icon,
|
| 187 |
+
.ui-button-text-icon-secondary .ui-icon,
|
| 188 |
+
.ui-button-text-icons .ui-icon,
|
| 189 |
+
.ui-button-icons-only .ui-icon {
|
| 190 |
+
position: absolute;
|
| 191 |
+
top: 50%;
|
| 192 |
+
margin-top: -8px;
|
| 193 |
+
}
|
| 194 |
+
.ui-button-icon-only .ui-icon {
|
| 195 |
+
left: 50%;
|
| 196 |
+
margin-left: -8px;
|
| 197 |
+
}
|
| 198 |
+
.ui-button-text-icon-primary .ui-button-icon-primary,
|
| 199 |
+
.ui-button-text-icons .ui-button-icon-primary,
|
| 200 |
+
.ui-button-icons-only .ui-button-icon-primary {
|
| 201 |
+
left: .5em;
|
| 202 |
+
}
|
| 203 |
+
.ui-button-text-icon-secondary .ui-button-icon-secondary,
|
| 204 |
+
.ui-button-text-icons .ui-button-icon-secondary,
|
| 205 |
+
.ui-button-icons-only .ui-button-icon-secondary {
|
| 206 |
+
right: .5em;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
/* button sets */
|
| 210 |
+
.ui-buttonset {
|
| 211 |
+
margin-right: 7px;
|
| 212 |
+
}
|
| 213 |
+
.ui-buttonset .ui-button {
|
| 214 |
+
margin-left: 0;
|
| 215 |
+
margin-right: -.3em;
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
+
/* workarounds */
|
| 219 |
+
/* reset extra padding in Firefox, see h5bp.com/l */
|
| 220 |
+
input.ui-button::-moz-focus-inner,
|
| 221 |
+
button.ui-button::-moz-focus-inner {
|
| 222 |
+
border: 0;
|
| 223 |
+
padding: 0;
|
| 224 |
+
}
|
| 225 |
+
.ui-datepicker {
|
| 226 |
+
width: 17em;
|
| 227 |
+
padding: .2em .2em 0;
|
| 228 |
+
display: none;
|
| 229 |
+
}
|
| 230 |
+
.ui-datepicker .ui-datepicker-header {
|
| 231 |
+
position: relative;
|
| 232 |
+
padding: .2em 0;
|
| 233 |
+
}
|
| 234 |
+
.ui-datepicker .ui-datepicker-prev,
|
| 235 |
+
.ui-datepicker .ui-datepicker-next {
|
| 236 |
+
position: absolute;
|
| 237 |
+
top: 2px;
|
| 238 |
+
width: 1.8em;
|
| 239 |
+
height: 1.8em;
|
| 240 |
+
}
|
| 241 |
+
.ui-datepicker .ui-datepicker-prev-hover,
|
| 242 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
| 243 |
+
top: 1px;
|
| 244 |
+
}
|
| 245 |
+
.ui-datepicker .ui-datepicker-prev {
|
| 246 |
+
left: 2px;
|
| 247 |
+
}
|
| 248 |
+
.ui-datepicker .ui-datepicker-next {
|
| 249 |
+
right: 2px;
|
| 250 |
+
}
|
| 251 |
+
.ui-datepicker .ui-datepicker-prev-hover {
|
| 252 |
+
left: 1px;
|
| 253 |
+
}
|
| 254 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
| 255 |
+
right: 1px;
|
| 256 |
+
}
|
| 257 |
+
.ui-datepicker .ui-datepicker-prev span,
|
| 258 |
+
.ui-datepicker .ui-datepicker-next span {
|
| 259 |
+
display: block;
|
| 260 |
+
position: absolute;
|
| 261 |
+
left: 50%;
|
| 262 |
+
margin-left: -8px;
|
| 263 |
+
top: 50%;
|
| 264 |
+
margin-top: -8px;
|
| 265 |
+
}
|
| 266 |
+
.ui-datepicker .ui-datepicker-title {
|
| 267 |
+
margin: 0 2.3em;
|
| 268 |
+
line-height: 1.8em;
|
| 269 |
+
text-align: center;
|
| 270 |
+
}
|
| 271 |
+
.ui-datepicker .ui-datepicker-title select {
|
| 272 |
+
font-size: 1em;
|
| 273 |
+
margin: 1px 0;
|
| 274 |
+
}
|
| 275 |
+
.ui-datepicker select.ui-datepicker-month,
|
| 276 |
+
.ui-datepicker select.ui-datepicker-year {
|
| 277 |
+
width: 45%;
|
| 278 |
+
}
|
| 279 |
+
.ui-datepicker table {
|
| 280 |
+
width: 100%;
|
| 281 |
+
font-size: .9em;
|
| 282 |
+
border-collapse: collapse;
|
| 283 |
+
margin: 0 0 .4em;
|
| 284 |
+
}
|
| 285 |
+
.ui-datepicker th {
|
| 286 |
+
padding: .7em .3em;
|
| 287 |
+
text-align: center;
|
| 288 |
+
font-weight: bold;
|
| 289 |
+
border: 0;
|
| 290 |
+
}
|
| 291 |
+
.ui-datepicker td {
|
| 292 |
+
border: 0;
|
| 293 |
+
padding: 1px;
|
| 294 |
+
}
|
| 295 |
+
.ui-datepicker td span,
|
| 296 |
+
.ui-datepicker td a {
|
| 297 |
+
display: block;
|
| 298 |
+
padding: .2em;
|
| 299 |
+
text-align: right;
|
| 300 |
+
text-decoration: none;
|
| 301 |
+
}
|
| 302 |
+
.ui-datepicker .ui-datepicker-buttonpane {
|
| 303 |
+
background-image: none;
|
| 304 |
+
margin: .7em 0 0 0;
|
| 305 |
+
padding: 0 .2em;
|
| 306 |
+
border-left: 0;
|
| 307 |
+
border-right: 0;
|
| 308 |
+
border-bottom: 0;
|
| 309 |
+
}
|
| 310 |
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
| 311 |
+
float: right;
|
| 312 |
+
margin: .5em .2em .4em;
|
| 313 |
+
cursor: pointer;
|
| 314 |
+
padding: .2em .6em .3em .6em;
|
| 315 |
+
width: auto;
|
| 316 |
+
overflow: visible;
|
| 317 |
+
}
|
| 318 |
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
| 319 |
+
float: left;
|
| 320 |
+
}
|
| 321 |
+
|
| 322 |
+
/* with multiple calendars */
|
| 323 |
+
.ui-datepicker.ui-datepicker-multi {
|
| 324 |
+
width: auto;
|
| 325 |
+
}
|
| 326 |
+
.ui-datepicker-multi .ui-datepicker-group {
|
| 327 |
+
float: left;
|
| 328 |
+
}
|
| 329 |
+
.ui-datepicker-multi .ui-datepicker-group table {
|
| 330 |
+
width: 95%;
|
| 331 |
+
margin: 0 auto .4em;
|
| 332 |
+
}
|
| 333 |
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
| 334 |
+
width: 50%;
|
| 335 |
+
}
|
| 336 |
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
| 337 |
+
width: 33.3%;
|
| 338 |
+
}
|
| 339 |
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
| 340 |
+
width: 25%;
|
| 341 |
+
}
|
| 342 |
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
| 343 |
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
| 344 |
+
border-left-width: 0;
|
| 345 |
+
}
|
| 346 |
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
| 347 |
+
clear: left;
|
| 348 |
+
}
|
| 349 |
+
.ui-datepicker-row-break {
|
| 350 |
+
clear: both;
|
| 351 |
+
width: 100%;
|
| 352 |
+
font-size: 0;
|
| 353 |
+
}
|
| 354 |
+
|
| 355 |
+
/* RTL support */
|
| 356 |
+
.ui-datepicker-rtl {
|
| 357 |
+
direction: rtl;
|
| 358 |
+
}
|
| 359 |
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
| 360 |
+
right: 2px;
|
| 361 |
+
left: auto;
|
| 362 |
+
}
|
| 363 |
+
.ui-datepicker-rtl .ui-datepicker-next {
|
| 364 |
+
left: 2px;
|
| 365 |
+
right: auto;
|
| 366 |
+
}
|
| 367 |
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
| 368 |
+
right: 1px;
|
| 369 |
+
left: auto;
|
| 370 |
+
}
|
| 371 |
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
| 372 |
+
left: 1px;
|
| 373 |
+
right: auto;
|
| 374 |
+
}
|
| 375 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
| 376 |
+
clear: right;
|
| 377 |
+
}
|
| 378 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
| 379 |
+
float: left;
|
| 380 |
+
}
|
| 381 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
| 382 |
+
.ui-datepicker-rtl .ui-datepicker-group {
|
| 383 |
+
float: right;
|
| 384 |
+
}
|
| 385 |
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
| 386 |
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
| 387 |
+
border-right-width: 0;
|
| 388 |
+
border-left-width: 1px;
|
| 389 |
+
}
|
| 390 |
+
.ui-dialog {
|
| 391 |
+
overflow: hidden;
|
| 392 |
+
position: absolute;
|
| 393 |
+
top: 0;
|
| 394 |
+
left: 0;
|
| 395 |
+
padding: .2em;
|
| 396 |
+
outline: 0;
|
| 397 |
+
}
|
| 398 |
+
.ui-dialog .ui-dialog-titlebar {
|
| 399 |
+
padding: .4em 1em;
|
| 400 |
+
position: relative;
|
| 401 |
+
}
|
| 402 |
+
.ui-dialog .ui-dialog-title {
|
| 403 |
+
float: left;
|
| 404 |
+
margin: .1em 0;
|
| 405 |
+
white-space: nowrap;
|
| 406 |
+
width: 90%;
|
| 407 |
+
overflow: hidden;
|
| 408 |
+
text-overflow: ellipsis;
|
| 409 |
+
}
|
| 410 |
+
.ui-dialog .ui-dialog-titlebar-close {
|
| 411 |
+
position: absolute;
|
| 412 |
+
right: .3em;
|
| 413 |
+
top: 50%;
|
| 414 |
+
width: 20px;
|
| 415 |
+
margin: -10px 0 0 0;
|
| 416 |
+
padding: 1px;
|
| 417 |
+
height: 20px;
|
| 418 |
+
}
|
| 419 |
+
.ui-dialog .ui-dialog-content {
|
| 420 |
+
position: relative;
|
| 421 |
+
border: 0;
|
| 422 |
+
padding: .5em 1em;
|
| 423 |
+
background: none;
|
| 424 |
+
overflow: auto;
|
| 425 |
+
}
|
| 426 |
+
.ui-dialog .ui-dialog-buttonpane {
|
| 427 |
+
text-align: left;
|
| 428 |
+
border-width: 1px 0 0 0;
|
| 429 |
+
background-image: none;
|
| 430 |
+
margin-top: .5em;
|
| 431 |
+
padding: .3em 1em .5em .4em;
|
| 432 |
+
}
|
| 433 |
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
| 434 |
+
float: right;
|
| 435 |
+
}
|
| 436 |
+
.ui-dialog .ui-dialog-buttonpane button {
|
| 437 |
+
margin: .5em .4em .5em 0;
|
| 438 |
+
cursor: pointer;
|
| 439 |
+
}
|
| 440 |
+
.ui-dialog .ui-resizable-se {
|
| 441 |
+
width: 12px;
|
| 442 |
+
height: 12px;
|
| 443 |
+
right: -5px;
|
| 444 |
+
bottom: -5px;
|
| 445 |
+
background-position: 16px 16px;
|
| 446 |
+
}
|
| 447 |
+
.ui-draggable .ui-dialog-titlebar {
|
| 448 |
+
cursor: move;
|
| 449 |
+
}
|
| 450 |
+
.ui-draggable-handle {
|
| 451 |
+
-ms-touch-action: none;
|
| 452 |
+
touch-action: none;
|
| 453 |
+
}
|
| 454 |
+
.ui-menu {
|
| 455 |
+
list-style: none;
|
| 456 |
+
padding: 0;
|
| 457 |
+
margin: 0;
|
| 458 |
+
display: block;
|
| 459 |
+
outline: none;
|
| 460 |
+
}
|
| 461 |
+
.ui-menu .ui-menu {
|
| 462 |
+
position: absolute;
|
| 463 |
+
}
|
| 464 |
+
.ui-menu .ui-menu-item {
|
| 465 |
+
position: relative;
|
| 466 |
+
margin: 0;
|
| 467 |
+
padding: 3px 1em 3px .4em;
|
| 468 |
+
cursor: pointer;
|
| 469 |
+
min-height: 0; /* support: IE7 */
|
| 470 |
+
/* support: IE10, see #8844 */
|
| 471 |
+
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
|
| 472 |
+
}
|
| 473 |
+
.ui-menu .ui-menu-divider {
|
| 474 |
+
margin: 5px 0;
|
| 475 |
+
height: 0;
|
| 476 |
+
font-size: 0;
|
| 477 |
+
line-height: 0;
|
| 478 |
+
border-width: 1px 0 0 0;
|
| 479 |
+
}
|
| 480 |
+
.ui-menu .ui-state-focus,
|
| 481 |
+
.ui-menu .ui-state-active {
|
| 482 |
+
margin: -1px;
|
| 483 |
+
}
|
| 484 |
+
|
| 485 |
+
/* icon support */
|
| 486 |
+
.ui-menu-icons {
|
| 487 |
+
position: relative;
|
| 488 |
+
}
|
| 489 |
+
.ui-menu-icons .ui-menu-item {
|
| 490 |
+
padding-left: 2em;
|
| 491 |
+
}
|
| 492 |
+
|
| 493 |
+
/* left-aligned */
|
| 494 |
+
.ui-menu .ui-icon {
|
| 495 |
+
position: absolute;
|
| 496 |
+
top: 0;
|
| 497 |
+
bottom: 0;
|
| 498 |
+
left: .2em;
|
| 499 |
+
margin: auto 0;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
/* right-aligned */
|
| 503 |
+
.ui-menu .ui-menu-icon {
|
| 504 |
+
left: auto;
|
| 505 |
+
right: 0;
|
| 506 |
+
}
|
| 507 |
+
.ui-progressbar {
|
| 508 |
+
height: 2em;
|
| 509 |
+
text-align: left;
|
| 510 |
+
overflow: hidden;
|
| 511 |
+
}
|
| 512 |
+
.ui-progressbar .ui-progressbar-value {
|
| 513 |
+
margin: -1px;
|
| 514 |
+
height: 100%;
|
| 515 |
+
}
|
| 516 |
+
.ui-progressbar .ui-progressbar-overlay {
|
| 517 |
+
background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
|
| 518 |
+
height: 100%;
|
| 519 |
+
filter: alpha(opacity=25); /* support: IE8 */
|
| 520 |
+
opacity: 0.25;
|
| 521 |
+
}
|
| 522 |
+
.ui-progressbar-indeterminate .ui-progressbar-value {
|
| 523 |
+
background-image: none;
|
| 524 |
+
}
|
| 525 |
+
.ui-resizable {
|
| 526 |
+
position: relative;
|
| 527 |
+
}
|
| 528 |
+
.ui-resizable-handle {
|
| 529 |
+
position: absolute;
|
| 530 |
+
font-size: 0.1px;
|
| 531 |
+
display: block;
|
| 532 |
+
-ms-touch-action: none;
|
| 533 |
+
touch-action: none;
|
| 534 |
+
}
|
| 535 |
+
.ui-resizable-disabled .ui-resizable-handle,
|
| 536 |
+
.ui-resizable-autohide .ui-resizable-handle {
|
| 537 |
+
display: none;
|
| 538 |
+
}
|
| 539 |
+
.ui-resizable-n {
|
| 540 |
+
cursor: n-resize;
|
| 541 |
+
height: 7px;
|
| 542 |
+
width: 100%;
|
| 543 |
+
top: -5px;
|
| 544 |
+
left: 0;
|
| 545 |
+
}
|
| 546 |
+
.ui-resizable-s {
|
| 547 |
+
cursor: s-resize;
|
| 548 |
+
height: 7px;
|
| 549 |
+
width: 100%;
|
| 550 |
+
bottom: -5px;
|
| 551 |
+
left: 0;
|
| 552 |
+
}
|
| 553 |
+
.ui-resizable-e {
|
| 554 |
+
cursor: e-resize;
|
| 555 |
+
width: 7px;
|
| 556 |
+
right: -5px;
|
| 557 |
+
top: 0;
|
| 558 |
+
height: 100%;
|
| 559 |
+
}
|
| 560 |
+
.ui-resizable-w {
|
| 561 |
+
cursor: w-resize;
|
| 562 |
+
width: 7px;
|
| 563 |
+
left: -5px;
|
| 564 |
+
top: 0;
|
| 565 |
+
height: 100%;
|
| 566 |
+
}
|
| 567 |
+
.ui-resizable-se {
|
| 568 |
+
cursor: se-resize;
|
| 569 |
+
width: 12px;
|
| 570 |
+
height: 12px;
|
| 571 |
+
right: 1px;
|
| 572 |
+
bottom: 1px;
|
| 573 |
+
}
|
| 574 |
+
.ui-resizable-sw {
|
| 575 |
+
cursor: sw-resize;
|
| 576 |
+
width: 9px;
|
| 577 |
+
height: 9px;
|
| 578 |
+
left: -5px;
|
| 579 |
+
bottom: -5px;
|
| 580 |
+
}
|
| 581 |
+
.ui-resizable-nw {
|
| 582 |
+
cursor: nw-resize;
|
| 583 |
+
width: 9px;
|
| 584 |
+
height: 9px;
|
| 585 |
+
left: -5px;
|
| 586 |
+
top: -5px;
|
| 587 |
+
}
|
| 588 |
+
.ui-resizable-ne {
|
| 589 |
+
cursor: ne-resize;
|
| 590 |
+
width: 9px;
|
| 591 |
+
height: 9px;
|
| 592 |
+
right: -5px;
|
| 593 |
+
top: -5px;
|
| 594 |
+
}
|
| 595 |
+
.ui-selectable {
|
| 596 |
+
-ms-touch-action: none;
|
| 597 |
+
touch-action: none;
|
| 598 |
+
}
|
| 599 |
+
.ui-selectable-helper {
|
| 600 |
+
position: absolute;
|
| 601 |
+
z-index: 100;
|
| 602 |
+
border: 1px dotted black;
|
| 603 |
+
}
|
| 604 |
+
.ui-selectmenu-menu {
|
| 605 |
+
padding: 0;
|
| 606 |
+
margin: 0;
|
| 607 |
+
position: absolute;
|
| 608 |
+
top: 0;
|
| 609 |
+
left: 0;
|
| 610 |
+
display: none;
|
| 611 |
+
}
|
| 612 |
+
.ui-selectmenu-menu .ui-menu {
|
| 613 |
+
overflow: auto;
|
| 614 |
+
/* Support: IE7 */
|
| 615 |
+
overflow-x: hidden;
|
| 616 |
+
padding-bottom: 1px;
|
| 617 |
+
}
|
| 618 |
+
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
|
| 619 |
+
font-size: 1em;
|
| 620 |
+
font-weight: bold;
|
| 621 |
+
line-height: 1.5;
|
| 622 |
+
padding: 2px 0.4em;
|
| 623 |
+
margin: 0.5em 0 0 0;
|
| 624 |
+
height: auto;
|
| 625 |
+
border: 0;
|
| 626 |
+
}
|
| 627 |
+
.ui-selectmenu-open {
|
| 628 |
+
display: block;
|
| 629 |
+
}
|
| 630 |
+
.ui-selectmenu-button {
|
| 631 |
+
display: inline-block;
|
| 632 |
+
overflow: hidden;
|
| 633 |
+
position: relative;
|
| 634 |
+
text-decoration: none;
|
| 635 |
+
cursor: pointer;
|
| 636 |
+
}
|
| 637 |
+
.ui-selectmenu-button span.ui-icon {
|
| 638 |
+
right: 0.5em;
|
| 639 |
+
left: auto;
|
| 640 |
+
margin-top: -8px;
|
| 641 |
+
position: absolute;
|
| 642 |
+
top: 50%;
|
| 643 |
+
}
|
| 644 |
+
.ui-selectmenu-button span.ui-selectmenu-text {
|
| 645 |
+
text-align: left;
|
| 646 |
+
padding: 0.4em 2.1em 0.4em 1em;
|
| 647 |
+
display: block;
|
| 648 |
+
line-height: 1.4;
|
| 649 |
+
overflow: hidden;
|
| 650 |
+
text-overflow: ellipsis;
|
| 651 |
+
white-space: nowrap;
|
| 652 |
+
}
|
| 653 |
+
.ui-slider {
|
| 654 |
+
position: relative;
|
| 655 |
+
text-align: left;
|
| 656 |
+
}
|
| 657 |
+
.ui-slider .ui-slider-handle {
|
| 658 |
+
position: absolute;
|
| 659 |
+
z-index: 2;
|
| 660 |
+
width: 1.2em;
|
| 661 |
+
height: 1.2em;
|
| 662 |
+
cursor: default;
|
| 663 |
+
-ms-touch-action: none;
|
| 664 |
+
touch-action: none;
|
| 665 |
+
}
|
| 666 |
+
.ui-slider .ui-slider-range {
|
| 667 |
+
position: absolute;
|
| 668 |
+
z-index: 1;
|
| 669 |
+
font-size: .7em;
|
| 670 |
+
display: block;
|
| 671 |
+
border: 0;
|
| 672 |
+
background-position: 0 0;
|
| 673 |
+
}
|
| 674 |
+
|
| 675 |
+
/* support: IE8 - See #6727 */
|
| 676 |
+
.ui-slider.ui-state-disabled .ui-slider-handle,
|
| 677 |
+
.ui-slider.ui-state-disabled .ui-slider-range {
|
| 678 |
+
filter: inherit;
|
| 679 |
+
}
|
| 680 |
+
|
| 681 |
+
.ui-slider-horizontal {
|
| 682 |
+
height: .8em;
|
| 683 |
+
}
|
| 684 |
+
.ui-slider-horizontal .ui-slider-handle {
|
| 685 |
+
top: -.3em;
|
| 686 |
+
margin-left: -.6em;
|
| 687 |
+
}
|
| 688 |
+
.ui-slider-horizontal .ui-slider-range {
|
| 689 |
+
top: 0;
|
| 690 |
+
height: 100%;
|
| 691 |
+
}
|
| 692 |
+
.ui-slider-horizontal .ui-slider-range-min {
|
| 693 |
+
left: 0;
|
| 694 |
+
}
|
| 695 |
+
.ui-slider-horizontal .ui-slider-range-max {
|
| 696 |
+
right: 0;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.ui-slider-vertical {
|
| 700 |
+
width: .8em;
|
| 701 |
+
height: 100px;
|
| 702 |
+
}
|
| 703 |
+
.ui-slider-vertical .ui-slider-handle {
|
| 704 |
+
left: -.3em;
|
| 705 |
+
margin-left: 0;
|
| 706 |
+
margin-bottom: -.6em;
|
| 707 |
+
}
|
| 708 |
+
.ui-slider-vertical .ui-slider-range {
|
| 709 |
+
left: 0;
|
| 710 |
+
width: 100%;
|
| 711 |
+
}
|
| 712 |
+
.ui-slider-vertical .ui-slider-range-min {
|
| 713 |
+
bottom: 0;
|
| 714 |
+
}
|
| 715 |
+
.ui-slider-vertical .ui-slider-range-max {
|
| 716 |
+
top: 0;
|
| 717 |
+
}
|
| 718 |
+
.ui-sortable-handle {
|
| 719 |
+
-ms-touch-action: none;
|
| 720 |
+
touch-action: none;
|
| 721 |
+
}
|
| 722 |
+
.ui-spinner {
|
| 723 |
+
position: relative;
|
| 724 |
+
display: inline-block;
|
| 725 |
+
overflow: hidden;
|
| 726 |
+
padding: 0;
|
| 727 |
+
vertical-align: middle;
|
| 728 |
+
}
|
| 729 |
+
.ui-spinner-input {
|
| 730 |
+
border: none;
|
| 731 |
+
background: none;
|
| 732 |
+
color: inherit;
|
| 733 |
+
padding: 0;
|
| 734 |
+
margin: .2em 0;
|
| 735 |
+
vertical-align: middle;
|
| 736 |
+
margin-left: .4em;
|
| 737 |
+
margin-right: 22px;
|
| 738 |
+
}
|
| 739 |
+
.ui-spinner-button {
|
| 740 |
+
width: 16px;
|
| 741 |
+
height: 50%;
|
| 742 |
+
font-size: .5em;
|
| 743 |
+
padding: 0;
|
| 744 |
+
margin: 0;
|
| 745 |
+
text-align: center;
|
| 746 |
+
position: absolute;
|
| 747 |
+
cursor: default;
|
| 748 |
+
display: block;
|
| 749 |
+
overflow: hidden;
|
| 750 |
+
right: 0;
|
| 751 |
+
}
|
| 752 |
+
/* more specificity required here to override default borders */
|
| 753 |
+
.ui-spinner a.ui-spinner-button {
|
| 754 |
+
border-top: none;
|
| 755 |
+
border-bottom: none;
|
| 756 |
+
border-right: none;
|
| 757 |
+
}
|
| 758 |
+
/* vertically center icon */
|
| 759 |
+
.ui-spinner .ui-icon {
|
| 760 |
+
position: absolute;
|
| 761 |
+
margin-top: -8px;
|
| 762 |
+
top: 50%;
|
| 763 |
+
left: 0;
|
| 764 |
+
}
|
| 765 |
+
.ui-spinner-up {
|
| 766 |
+
top: 0;
|
| 767 |
+
}
|
| 768 |
+
.ui-spinner-down {
|
| 769 |
+
bottom: 0;
|
| 770 |
+
}
|
| 771 |
+
|
| 772 |
+
/* TR overrides */
|
| 773 |
+
.ui-spinner .ui-icon-triangle-1-s {
|
| 774 |
+
/* need to fix icons sprite */
|
| 775 |
+
background-position: -65px -16px;
|
| 776 |
+
}
|
| 777 |
+
.ui-tabs {
|
| 778 |
+
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
| 779 |
+
padding: .2em;
|
| 780 |
+
}
|
| 781 |
+
.ui-tabs .ui-tabs-nav {
|
| 782 |
+
margin: 0;
|
| 783 |
+
padding: .2em .2em 0;
|
| 784 |
+
}
|
| 785 |
+
.ui-tabs .ui-tabs-nav li {
|
| 786 |
+
list-style: none;
|
| 787 |
+
float: left;
|
| 788 |
+
position: relative;
|
| 789 |
+
top: 0;
|
| 790 |
+
margin: 1px .2em 0 0;
|
| 791 |
+
border-bottom-width: 0;
|
| 792 |
+
padding: 0;
|
| 793 |
+
white-space: nowrap;
|
| 794 |
+
}
|
| 795 |
+
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
|
| 796 |
+
float: left;
|
| 797 |
+
padding: .5em 1em;
|
| 798 |
+
text-decoration: none;
|
| 799 |
+
}
|
| 800 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
| 801 |
+
margin-bottom: -1px;
|
| 802 |
+
padding-bottom: 1px;
|
| 803 |
+
}
|
| 804 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
|
| 805 |
+
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
|
| 806 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
|
| 807 |
+
cursor: text;
|
| 808 |
+
}
|
| 809 |
+
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
|
| 810 |
+
cursor: pointer;
|
| 811 |
+
}
|
| 812 |
+
.ui-tabs .ui-tabs-panel {
|
| 813 |
+
display: block;
|
| 814 |
+
border-width: 0;
|
| 815 |
+
padding: 1em 1.4em;
|
| 816 |
+
background: none;
|
| 817 |
+
}
|
| 818 |
+
.ui-tooltip {
|
| 819 |
+
padding: 8px;
|
| 820 |
+
position: absolute;
|
| 821 |
+
z-index: 9999;
|
| 822 |
+
max-width: 300px;
|
| 823 |
+
-webkit-box-shadow: 0 0 5px #aaa;
|
| 824 |
+
box-shadow: 0 0 5px #aaa;
|
| 825 |
+
}
|
| 826 |
+
body .ui-tooltip {
|
| 827 |
+
border-width: 2px;
|
| 828 |
+
}
|
| 829 |
+
|
| 830 |
+
/* Component containers
|
| 831 |
+
----------------------------------*/
|
| 832 |
+
.ui-widget {
|
| 833 |
+
font-family: Verdana,Arial,sans-serif;
|
| 834 |
+
font-size: 1.1em;
|
| 835 |
+
}
|
| 836 |
+
.ui-widget .ui-widget {
|
| 837 |
+
font-size: 1em;
|
| 838 |
+
}
|
| 839 |
+
.ui-widget input,
|
| 840 |
+
.ui-widget select,
|
| 841 |
+
.ui-widget textarea,
|
| 842 |
+
.ui-widget button {
|
| 843 |
+
font-family: Verdana,Arial,sans-serif;
|
| 844 |
+
font-size: 1em;
|
| 845 |
+
}
|
| 846 |
+
.ui-widget-content {
|
| 847 |
+
border: 1px solid #aaaaaa;
|
| 848 |
+
background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
|
| 849 |
+
color: #222222;
|
| 850 |
+
}
|
| 851 |
+
.ui-widget-content a {
|
| 852 |
+
color: #222222;
|
| 853 |
+
}
|
| 854 |
+
.ui-widget-header {
|
| 855 |
+
border: 1px solid #aaaaaa;
|
| 856 |
+
background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
|
| 857 |
+
color: #222222;
|
| 858 |
+
font-weight: bold;
|
| 859 |
+
}
|
| 860 |
+
.ui-widget-header a {
|
| 861 |
+
color: #222222;
|
| 862 |
+
}
|
| 863 |
+
|
| 864 |
+
/* Interaction states
|
| 865 |
+
----------------------------------*/
|
| 866 |
+
.ui-state-default,
|
| 867 |
+
.ui-widget-content .ui-state-default,
|
| 868 |
+
.ui-widget-header .ui-state-default {
|
| 869 |
+
border: 1px solid #d3d3d3;
|
| 870 |
+
background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
|
| 871 |
+
font-weight: normal;
|
| 872 |
+
color: #555555;
|
| 873 |
+
}
|
| 874 |
+
.ui-state-default a,
|
| 875 |
+
.ui-state-default a:link,
|
| 876 |
+
.ui-state-default a:visited {
|
| 877 |
+
color: #555555;
|
| 878 |
+
text-decoration: none;
|
| 879 |
+
}
|
| 880 |
+
.ui-state-hover,
|
| 881 |
+
.ui-widget-content .ui-state-hover,
|
| 882 |
+
.ui-widget-header .ui-state-hover,
|
| 883 |
+
.ui-state-focus,
|
| 884 |
+
.ui-widget-content .ui-state-focus,
|
| 885 |
+
.ui-widget-header .ui-state-focus {
|
| 886 |
+
border: 1px solid #999999;
|
| 887 |
+
background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
|
| 888 |
+
font-weight: normal;
|
| 889 |
+
color: #212121;
|
| 890 |
+
}
|
| 891 |
+
.ui-state-hover a,
|
| 892 |
+
.ui-state-hover a:hover,
|
| 893 |
+
.ui-state-hover a:link,
|
| 894 |
+
.ui-state-hover a:visited,
|
| 895 |
+
.ui-state-focus a,
|
| 896 |
+
.ui-state-focus a:hover,
|
| 897 |
+
.ui-state-focus a:link,
|
| 898 |
+
.ui-state-focus a:visited {
|
| 899 |
+
color: #212121;
|
| 900 |
+
text-decoration: none;
|
| 901 |
+
}
|
| 902 |
+
.ui-state-active,
|
| 903 |
+
.ui-widget-content .ui-state-active,
|
| 904 |
+
.ui-widget-header .ui-state-active {
|
| 905 |
+
border: 1px solid #aaaaaa;
|
| 906 |
+
background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
| 907 |
+
font-weight: normal;
|
| 908 |
+
color: #212121;
|
| 909 |
+
}
|
| 910 |
+
.ui-state-active a,
|
| 911 |
+
.ui-state-active a:link,
|
| 912 |
+
.ui-state-active a:visited {
|
| 913 |
+
color: #212121;
|
| 914 |
+
text-decoration: none;
|
| 915 |
+
}
|
| 916 |
+
|
| 917 |
+
/* Interaction Cues
|
| 918 |
+
----------------------------------*/
|
| 919 |
+
.ui-state-highlight,
|
| 920 |
+
.ui-widget-content .ui-state-highlight,
|
| 921 |
+
.ui-widget-header .ui-state-highlight {
|
| 922 |
+
border: 1px solid #fcefa1;
|
| 923 |
+
background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
|
| 924 |
+
color: #363636;
|
| 925 |
+
}
|
| 926 |
+
.ui-state-highlight a,
|
| 927 |
+
.ui-widget-content .ui-state-highlight a,
|
| 928 |
+
.ui-widget-header .ui-state-highlight a {
|
| 929 |
+
color: #363636;
|
| 930 |
+
}
|
| 931 |
+
.ui-state-error,
|
| 932 |
+
.ui-widget-content .ui-state-error,
|
| 933 |
+
.ui-widget-header .ui-state-error {
|
| 934 |
+
border: 1px solid #cd0a0a;
|
| 935 |
+
background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
| 936 |
+
color: #cd0a0a;
|
| 937 |
+
}
|
| 938 |
+
.ui-state-error a,
|
| 939 |
+
.ui-widget-content .ui-state-error a,
|
| 940 |
+
.ui-widget-header .ui-state-error a {
|
| 941 |
+
color: #cd0a0a;
|
| 942 |
+
}
|
| 943 |
+
.ui-state-error-text,
|
| 944 |
+
.ui-widget-content .ui-state-error-text,
|
| 945 |
+
.ui-widget-header .ui-state-error-text {
|
| 946 |
+
color: #cd0a0a;
|
| 947 |
+
}
|
| 948 |
+
.ui-priority-primary,
|
| 949 |
+
.ui-widget-content .ui-priority-primary,
|
| 950 |
+
.ui-widget-header .ui-priority-primary {
|
| 951 |
+
font-weight: bold;
|
| 952 |
+
}
|
| 953 |
+
.ui-priority-secondary,
|
| 954 |
+
.ui-widget-content .ui-priority-secondary,
|
| 955 |
+
.ui-widget-header .ui-priority-secondary {
|
| 956 |
+
opacity: .7;
|
| 957 |
+
filter:Alpha(Opacity=70); /* support: IE8 */
|
| 958 |
+
font-weight: normal;
|
| 959 |
+
}
|
| 960 |
+
.ui-state-disabled,
|
| 961 |
+
.ui-widget-content .ui-state-disabled,
|
| 962 |
+
.ui-widget-header .ui-state-disabled {
|
| 963 |
+
opacity: .35;
|
| 964 |
+
filter:Alpha(Opacity=35); /* support: IE8 */
|
| 965 |
+
background-image: none;
|
| 966 |
+
}
|
| 967 |
+
.ui-state-disabled .ui-icon {
|
| 968 |
+
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
|
| 969 |
+
}
|
| 970 |
+
|
| 971 |
+
/* Icons
|
| 972 |
+
----------------------------------*/
|
| 973 |
+
|
| 974 |
+
/* states and images */
|
| 975 |
+
.ui-icon {
|
| 976 |
+
width: 16px;
|
| 977 |
+
height: 16px;
|
| 978 |
+
}
|
| 979 |
+
.ui-icon,
|
| 980 |
+
.ui-widget-content .ui-icon {
|
| 981 |
+
background-image: url("images/ui-icons_222222_256x240.png");
|
| 982 |
+
}
|
| 983 |
+
.ui-widget-header .ui-icon {
|
| 984 |
+
background-image: url("images/ui-icons_222222_256x240.png");
|
| 985 |
+
}
|
| 986 |
+
.ui-state-default .ui-icon {
|
| 987 |
+
background-image: url("images/ui-icons_888888_256x240.png");
|
| 988 |
+
}
|
| 989 |
+
.ui-state-hover .ui-icon,
|
| 990 |
+
.ui-state-focus .ui-icon {
|
| 991 |
+
background-image: url("images/ui-icons_454545_256x240.png");
|
| 992 |
+
}
|
| 993 |
+
.ui-state-active .ui-icon {
|
| 994 |
+
background-image: url("images/ui-icons_454545_256x240.png");
|
| 995 |
+
}
|
| 996 |
+
.ui-state-highlight .ui-icon {
|
| 997 |
+
background-image: url("images/ui-icons_2e83ff_256x240.png");
|
| 998 |
+
}
|
| 999 |
+
.ui-state-error .ui-icon,
|
| 1000 |
+
.ui-state-error-text .ui-icon {
|
| 1001 |
+
background-image: url("images/ui-icons_cd0a0a_256x240.png");
|
| 1002 |
+
}
|
| 1003 |
+
|
| 1004 |
+
/* positioning */
|
| 1005 |
+
.ui-icon-blank { background-position: 16px 16px; }
|
| 1006 |
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
| 1007 |
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
| 1008 |
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
| 1009 |
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
| 1010 |
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
| 1011 |
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
| 1012 |
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
| 1013 |
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
| 1014 |
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
| 1015 |
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
| 1016 |
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
| 1017 |
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
| 1018 |
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
| 1019 |
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
| 1020 |
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
| 1021 |
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
| 1022 |
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
| 1023 |
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
| 1024 |
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
| 1025 |
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
| 1026 |
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
| 1027 |
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
| 1028 |
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
| 1029 |
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
| 1030 |
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
| 1031 |
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
| 1032 |
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
| 1033 |
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
| 1034 |
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
| 1035 |
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
| 1036 |
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
| 1037 |
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
| 1038 |
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
| 1039 |
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
| 1040 |
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
| 1041 |
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
| 1042 |
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
| 1043 |
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
| 1044 |
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
| 1045 |
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
| 1046 |
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
| 1047 |
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
| 1048 |
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
| 1049 |
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
| 1050 |
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
| 1051 |
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
| 1052 |
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
| 1053 |
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
| 1054 |
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
| 1055 |
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
| 1056 |
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
| 1057 |
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
| 1058 |
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
| 1059 |
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
| 1060 |
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
| 1061 |
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
| 1062 |
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
| 1063 |
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
| 1064 |
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
| 1065 |
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
| 1066 |
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
| 1067 |
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
| 1068 |
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
| 1069 |
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
| 1070 |
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
| 1071 |
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
| 1072 |
+
.ui-icon-extlink { background-position: -32px -80px; }
|
| 1073 |
+
.ui-icon-newwin { background-position: -48px -80px; }
|
| 1074 |
+
.ui-icon-refresh { background-position: -64px -80px; }
|
| 1075 |
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
| 1076 |
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
| 1077 |
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
| 1078 |
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
| 1079 |
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
| 1080 |
+
.ui-icon-document { background-position: -32px -96px; }
|
| 1081 |
+
.ui-icon-document-b { background-position: -48px -96px; }
|
| 1082 |
+
.ui-icon-note { background-position: -64px -96px; }
|
| 1083 |
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
| 1084 |
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
| 1085 |
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
| 1086 |
+
.ui-icon-comment { background-position: -128px -96px; }
|
| 1087 |
+
.ui-icon-person { background-position: -144px -96px; }
|
| 1088 |
+
.ui-icon-print { background-position: -160px -96px; }
|
| 1089 |
+
.ui-icon-trash { background-position: -176px -96px; }
|
| 1090 |
+
.ui-icon-locked { background-position: -192px -96px; }
|
| 1091 |
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
| 1092 |
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
| 1093 |
+
.ui-icon-tag { background-position: -240px -96px; }
|
| 1094 |
+
.ui-icon-home { background-position: 0 -112px; }
|
| 1095 |
+
.ui-icon-flag { background-position: -16px -112px; }
|
| 1096 |
+
.ui-icon-calendar { background-position: -32px -112px; }
|
| 1097 |
+
.ui-icon-cart { background-position: -48px -112px; }
|
| 1098 |
+
.ui-icon-pencil { background-position: -64px -112px; }
|
| 1099 |
+
.ui-icon-clock { background-position: -80px -112px; }
|
| 1100 |
+
.ui-icon-disk { background-position: -96px -112px; }
|
| 1101 |
+
.ui-icon-calculator { background-position: -112px -112px; }
|
| 1102 |
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
| 1103 |
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
| 1104 |
+
.ui-icon-search { background-position: -160px -112px; }
|
| 1105 |
+
.ui-icon-wrench { background-position: -176px -112px; }
|
| 1106 |
+
.ui-icon-gear { background-position: -192px -112px; }
|
| 1107 |
+
.ui-icon-heart { background-position: -208px -112px; }
|
| 1108 |
+
.ui-icon-star { background-position: -224px -112px; }
|
| 1109 |
+
.ui-icon-link { background-position: -240px -112px; }
|
| 1110 |
+
.ui-icon-cancel { background-position: 0 -128px; }
|
| 1111 |
+
.ui-icon-plus { background-position: -16px -128px; }
|
| 1112 |
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
| 1113 |
+
.ui-icon-minus { background-position: -48px -128px; }
|
| 1114 |
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
| 1115 |
+
.ui-icon-close { background-position: -80px -128px; }
|
| 1116 |
+
.ui-icon-closethick { background-position: -96px -128px; }
|
| 1117 |
+
.ui-icon-key { background-position: -112px -128px; }
|
| 1118 |
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
| 1119 |
+
.ui-icon-scissors { background-position: -144px -128px; }
|
| 1120 |
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
| 1121 |
+
.ui-icon-copy { background-position: -176px -128px; }
|
| 1122 |
+
.ui-icon-contact { background-position: -192px -128px; }
|
| 1123 |
+
.ui-icon-image { background-position: -208px -128px; }
|
| 1124 |
+
.ui-icon-video { background-position: -224px -128px; }
|
| 1125 |
+
.ui-icon-script { background-position: -240px -128px; }
|
| 1126 |
+
.ui-icon-alert { background-position: 0 -144px; }
|
| 1127 |
+
.ui-icon-info { background-position: -16px -144px; }
|
| 1128 |
+
.ui-icon-notice { background-position: -32px -144px; }
|
| 1129 |
+
.ui-icon-help { background-position: -48px -144px; }
|
| 1130 |
+
.ui-icon-check { background-position: -64px -144px; }
|
| 1131 |
+
.ui-icon-bullet { background-position: -80px -144px; }
|
| 1132 |
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
| 1133 |
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
| 1134 |
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
| 1135 |
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
| 1136 |
+
.ui-icon-play { background-position: 0 -160px; }
|
| 1137 |
+
.ui-icon-pause { background-position: -16px -160px; }
|
| 1138 |
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
| 1139 |
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
| 1140 |
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
| 1141 |
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
| 1142 |
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
| 1143 |
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
| 1144 |
+
.ui-icon-stop { background-position: -96px -160px; }
|
| 1145 |
+
.ui-icon-eject { background-position: -112px -160px; }
|
| 1146 |
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
| 1147 |
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
| 1148 |
+
.ui-icon-power { background-position: 0 -176px; }
|
| 1149 |
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
| 1150 |
+
.ui-icon-signal { background-position: -32px -176px; }
|
| 1151 |
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
| 1152 |
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
| 1153 |
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
| 1154 |
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
| 1155 |
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
| 1156 |
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
| 1157 |
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
| 1158 |
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
| 1159 |
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
| 1160 |
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
| 1161 |
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
| 1162 |
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
| 1163 |
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
| 1164 |
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
| 1165 |
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
| 1166 |
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
| 1167 |
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
| 1168 |
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
| 1169 |
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
| 1170 |
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
| 1171 |
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
| 1172 |
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
| 1173 |
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
| 1174 |
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
| 1175 |
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
| 1176 |
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
| 1177 |
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
| 1178 |
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
| 1179 |
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
| 1180 |
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
| 1181 |
+
|
| 1182 |
+
|
| 1183 |
+
/* Misc visuals
|
| 1184 |
+
----------------------------------*/
|
| 1185 |
+
|
| 1186 |
+
/* Corner radius */
|
| 1187 |
+
.ui-corner-all,
|
| 1188 |
+
.ui-corner-top,
|
| 1189 |
+
.ui-corner-left,
|
| 1190 |
+
.ui-corner-tl {
|
| 1191 |
+
border-top-left-radius: 4px;
|
| 1192 |
+
}
|
| 1193 |
+
.ui-corner-all,
|
| 1194 |
+
.ui-corner-top,
|
| 1195 |
+
.ui-corner-right,
|
| 1196 |
+
.ui-corner-tr {
|
| 1197 |
+
border-top-right-radius: 4px;
|
| 1198 |
+
}
|
| 1199 |
+
.ui-corner-all,
|
| 1200 |
+
.ui-corner-bottom,
|
| 1201 |
+
.ui-corner-left,
|
| 1202 |
+
.ui-corner-bl {
|
| 1203 |
+
border-bottom-left-radius: 4px;
|
| 1204 |
+
}
|
| 1205 |
+
.ui-corner-all,
|
| 1206 |
+
.ui-corner-bottom,
|
| 1207 |
+
.ui-corner-right,
|
| 1208 |
+
.ui-corner-br {
|
| 1209 |
+
border-bottom-right-radius: 4px;
|
| 1210 |
+
}
|
| 1211 |
+
|
| 1212 |
+
/* Overlays */
|
| 1213 |
+
.ui-widget-overlay {
|
| 1214 |
+
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
| 1215 |
+
opacity: .3;
|
| 1216 |
+
filter: Alpha(Opacity=30); /* support: IE8 */
|
| 1217 |
+
}
|
| 1218 |
+
.ui-widget-shadow {
|
| 1219 |
+
margin: -8px 0 0 -8px;
|
| 1220 |
+
padding: 8px;
|
| 1221 |
+
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
| 1222 |
+
opacity: .3;
|
| 1223 |
+
filter: Alpha(Opacity=30); /* support: IE8 */
|
| 1224 |
+
border-radius: 8px;
|
| 1225 |
+
}
|
jquery-ui.min.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*! jQuery UI - v1.11.4 - 2015-09-15
|
| 2 |
+
* http://jqueryui.com
|
| 3 |
+
* Includes: core.css, datepicker.css, progressbar.css, theme.css
|
| 4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Segoe%20UI%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=333333&bgTextureHeader=gloss_wave&bgImgOpacityHeader=25&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=inset_soft&bgImgOpacityContent=25&borderColorContent=666666&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=555555&bgTextureDefault=glass&bgImgOpacityDefault=20&borderColorDefault=666666&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=0078a3&bgTextureHover=glass&bgImgOpacityHover=40&borderColorHover=59b4d4&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=f58400&bgTextureActive=inset_soft&bgImgOpacityActive=30&borderColorActive=ffaf0f&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=glass&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=flat&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=flat&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
|
| 5 |
+
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
|
| 6 |
+
|
| 7 |
+
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-widget{font-family:Segoe UI,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Segoe UI,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #666;background:#000 url("images/ui-bg_inset-soft_25_000000_1x100.png") 50% bottom repeat-x;color:#fff}.ui-widget-content a{color:#fff}.ui-widget-header{border:1px solid #333;background:#333 url("images/ui-bg_gloss-wave_25_333333_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #666;background:#555 url("images/ui-bg_glass_20_555555_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eee}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#eee;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #59b4d4;background:#0078a3 url("images/ui-bg_glass_40_0078a3_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#fff}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#fff;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #ffaf0f;background:#f58400 url("images/ui-bg_inset-soft_30_f58400_1x100.png") 50% 50% repeat-x;font-weight:bold;color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #ccc;background:#eee url("images/ui-bg_highlight-soft_80_eeeeee_1x100.png") 50% top repeat-x;color:#2e7db2}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#2e7db2}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #ffb73d;background:#ffc73d url("images/ui-bg_glass_40_ffc73d_1x400.png") 50% 50% repeat-x;color:#111}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#111}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#111}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_cccccc_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_cccccc_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_4b8e0b_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_a83300_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:6px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:6px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:6px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:6px}.ui-widget-overlay{background:#5c5c5c url("images/ui-bg_flat_50_5c5c5c_40x100.png") 50% 50% repeat-x;opacity:.8;filter:Alpha(Opacity=80)}.ui-widget-shadow{margin:-7px 0 0 -7px;padding:7px;background:#ccc url("images/ui-bg_flat_30_cccccc_40x100.png") 50% 50% repeat-x;opacity:.6;filter:Alpha(Opacity=60);border-radius:8px}
|
readme.txt
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
Contributors: turcuciprian
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MU4RJNNF74QKY
|
| 4 |
Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
|
| 5 |
-
Requires at least:
|
| 6 |
-
Tested up to: 4.
|
| 7 |
-
Stable tag: 1.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -12,9 +12,6 @@ Description: A plugin that makes regenerating thumbnails even easier than before
|
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
| 15 |
-
Built with : http://admin-builder.com
|
| 16 |
-
|
| 17 |
-
|
| 18 |
A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 19 |
If you install a new theme, it might have different image sizes it wants to use. those image sizes are cropped and resized into thumbnails only when you upload new images. So what happens with your old images?
|
| 20 |
the ones you already uploaded? They need to be regenerated, this is what this plugin does. It takes each image and generates the thumbnails for each and every one of them.
|
|
@@ -26,7 +23,6 @@ Features:
|
|
| 26 |
* The period is last day, last week, last month or all
|
| 27 |
* Clean simple interface where you have a progress bar showing you the percentage of images regenerated
|
| 28 |
* You get to see the total number of images affected by your period, as well as the images afected so far when processing
|
| 29 |
-
* Regenerate thubnails on the fly
|
| 30 |
|
| 31 |
== Installation ==
|
| 32 |
|
|
@@ -50,7 +46,9 @@ The script stops, it does not run in the background
|
|
| 50 |
== Screenshots ==
|
| 51 |
|
| 52 |
1. The plugin page where it all happens
|
| 53 |
-
|
|
|
|
|
|
|
| 54 |
|
| 55 |
== Changelog ==
|
| 56 |
|
|
@@ -94,20 +92,24 @@ The script stops, it does not run in the background
|
|
| 94 |
* Added new style
|
| 95 |
* Added datepickers
|
| 96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
= 1.0 =
|
| 98 |
-
|
| 99 |
|
| 100 |
= 1.0.1 =
|
| 101 |
-
|
| 102 |
|
| 103 |
= 1.0.2 =
|
| 104 |
-
|
| 105 |
|
| 106 |
= 1.0.3 =
|
| 107 |
-
|
| 108 |
|
| 109 |
= 1.1 =
|
| 110 |
-
|
| 111 |
|
| 112 |
=1.1.2=
|
| 113 |
Important bugfixes
|
|
@@ -115,32 +117,14 @@ Important bugfixes
|
|
| 115 |
=1.1.3=
|
| 116 |
Important bugfixes
|
| 117 |
|
| 118 |
-
=1.
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
=1.1.5=
|
| 122 |
-
admin-builder.php turned to admin_builder.php on admin builder verification check
|
| 123 |
-
|
| 124 |
-
=1.1.6=
|
| 125 |
-
Admin builder export functionality update
|
| 126 |
-
|
| 127 |
-
=1.1.7=
|
| 128 |
-
Admin builder export functionality update (again) Fixed a issue in the notice admin message
|
| 129 |
-
|
| 130 |
-
=1.1.8=
|
| 131 |
-
Admin builder export file update
|
| 132 |
-
|
| 133 |
-
=1.1.9=
|
| 134 |
-
Admin builder export file update
|
| 135 |
-
|
| 136 |
-
= 1.2 =
|
| 137 |
-
Removed admin_builder dependency and included the plugin inside the Scroll To Top core, so you are no longer required to install an extra plugin.
|
| 138 |
|
| 139 |
-
= 1.2.
|
| 140 |
-
|
| 141 |
|
| 142 |
-
= 1.
|
| 143 |
-
|
| 144 |
|
| 145 |
== Upgrade Notice ==
|
| 146 |
|
|
@@ -174,6 +158,10 @@ No issuse with this version that require attention. Small update change. It's ba
|
|
| 174 |
= 0.8.2.6 =
|
| 175 |
This version changes the style and adds a bit of functionality to the general settings (a date start-end option to choose from)
|
| 176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 177 |
= 1.0 =
|
| 178 |
This version changes the style and adds a bit of functionality to the general settings (a date start-end option to choose from)
|
| 179 |
|
|
@@ -215,3 +203,15 @@ nothing effected in db
|
|
| 215 |
|
| 216 |
= 1.2.3 =
|
| 217 |
Added functionality
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
Contributors: turcuciprian
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MU4RJNNF74QKY
|
| 4 |
Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
|
| 5 |
+
Requires at least: 4.0
|
| 6 |
+
Tested up to: 4.7.2
|
| 7 |
+
Stable tag: 1.3.3
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
|
|
|
|
|
|
|
|
|
| 15 |
A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 16 |
If you install a new theme, it might have different image sizes it wants to use. those image sizes are cropped and resized into thumbnails only when you upload new images. So what happens with your old images?
|
| 17 |
the ones you already uploaded? They need to be regenerated, this is what this plugin does. It takes each image and generates the thumbnails for each and every one of them.
|
| 23 |
* The period is last day, last week, last month or all
|
| 24 |
* Clean simple interface where you have a progress bar showing you the percentage of images regenerated
|
| 25 |
* You get to see the total number of images affected by your period, as well as the images afected so far when processing
|
|
|
|
| 26 |
|
| 27 |
== Installation ==
|
| 28 |
|
| 46 |
== Screenshots ==
|
| 47 |
|
| 48 |
1. The plugin page where it all happens
|
| 49 |
+
2. View of the dropdown options
|
| 50 |
+
3. Where you find everything
|
| 51 |
+
4. From - To (between dates) Option
|
| 52 |
|
| 53 |
== Changelog ==
|
| 54 |
|
| 92 |
* Added new style
|
| 93 |
* Added datepickers
|
| 94 |
|
| 95 |
+
= 0.8.2.7 =
|
| 96 |
+
* Fixed a wp_debug notice bug
|
| 97 |
+
* Fixed a js issue
|
| 98 |
+
|
| 99 |
= 1.0 =
|
| 100 |
+
This version changes the style and adds a bit of functionality to the general settings (a date start-end option to choose from)
|
| 101 |
|
| 102 |
= 1.0.1 =
|
| 103 |
+
nothing that affect the previous data is changed. Update is save
|
| 104 |
|
| 105 |
= 1.0.2 =
|
| 106 |
+
nothing that affect the previous data is changed. Update is save
|
| 107 |
|
| 108 |
= 1.0.3 =
|
| 109 |
+
nothing that affect the previous data is changed. Update is save
|
| 110 |
|
| 111 |
= 1.1 =
|
| 112 |
+
Database field is saved someplace else now. It needs to be configured again. Basically just go into settings, click to activate and click save.
|
| 113 |
|
| 114 |
=1.1.2=
|
| 115 |
Important bugfixes
|
| 117 |
=1.1.3=
|
| 118 |
Important bugfixes
|
| 119 |
|
| 120 |
+
= 1.3.2 =
|
| 121 |
+
Reverted back to manual regeneration version. No more on the fly stuff
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
|
| 123 |
+
= 1.3.2.2 =
|
| 124 |
+
Removed donate button
|
| 125 |
|
| 126 |
+
= 1.3.3 =
|
| 127 |
+
Requests are being done trough REST API's now
|
| 128 |
|
| 129 |
== Upgrade Notice ==
|
| 130 |
|
| 158 |
= 0.8.2.6 =
|
| 159 |
This version changes the style and adds a bit of functionality to the general settings (a date start-end option to choose from)
|
| 160 |
|
| 161 |
+
= 0.8.2.7 =
|
| 162 |
+
No issuse with this version that require attention. Small update change. It's basically a feature, so unless you want it, the older version works great.
|
| 163 |
+
fixes some js issues and ajax issues. it's recommended to update
|
| 164 |
+
|
| 165 |
= 1.0 =
|
| 166 |
This version changes the style and adds a bit of functionality to the general settings (a date start-end option to choose from)
|
| 167 |
|
| 203 |
|
| 204 |
= 1.2.3 =
|
| 205 |
Added functionality
|
| 206 |
+
|
| 207 |
+
= 1.3 =
|
| 208 |
+
Added functionality
|
| 209 |
+
|
| 210 |
+
= 1.3.2 =
|
| 211 |
+
Database value from the previous version, irrelevant.
|
| 212 |
+
|
| 213 |
+
= 1.3.2.2 =
|
| 214 |
+
Does not impact functionality
|
| 215 |
+
|
| 216 |
+
= 1.3.3 =
|
| 217 |
+
Requests are being done trough REST API's now
|
regenerate-thumbnails-advanced.php
CHANGED
|
@@ -3,201 +3,123 @@
|
|
| 3 |
Plugin Name: reGenerate Thumbnails - advanced
|
| 4 |
Plugin URI: http://turcuciprian.com
|
| 5 |
Description: A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 6 |
-
Version: 1.
|
| 7 |
Author: turcuciprian
|
| 8 |
-
Author URI: http://
|
| 9 |
License: GPLv2 or later
|
| 10 |
-
Text Domain:
|
| 11 |
*/
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
add_action('admin_enqueue_scripts', 'enqueue_admin');
|
| 30 |
-
|
| 31 |
-
function enqueue_admin($hook)
|
| 32 |
-
{
|
| 33 |
-
if (isset($_GET['page']) && isset($hook)) {
|
| 34 |
-
if ($_GET['page'] !== 'regenerate_thumbnails_advanced' && $hook != 'options-general.php ') {
|
| 35 |
-
return;
|
| 36 |
-
}
|
| 37 |
}
|
| 38 |
-
wp_enqueue_style('rta', plugin_dir_url(__FILE__).'style.css');
|
| 39 |
-
}
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
add_action('init', 'rtaInit');
|
| 44 |
-
function rtaInit()
|
| 45 |
-
{
|
| 46 |
-
global $abGen;
|
| 47 |
-
$imageSizes = $abGen->getField('abOption_cPage_regenerateThumbnailsAdvanced','tab1','imageSizes');
|
| 48 |
-
foreach ($imageSizes as $key) {
|
| 49 |
-
$width = (isset($key['width']))?$key['width']:100;
|
| 50 |
-
$height = (isset($key['height']))?$key['height']:100;
|
| 51 |
-
$name = (isset($key['name']))?$key['name']:100;
|
| 52 |
-
add_image_size( $name, $width, $height, true );
|
| 53 |
-
}
|
| 54 |
-
|
| 55 |
-
global $abGen;
|
| 56 |
-
if (!method_exists($abGen, 'getField')) {
|
| 57 |
-
return true;
|
| 58 |
}
|
| 59 |
-
$rotf = $abGen->getField('abOption_cPage_regenerateThumbnailsAdvanced', 'tab1', 'rtaOTF');
|
| 60 |
-
if (!function_exists('gambit_otf_regen_thumbs_media_downsize') && $rotf == 'on') {
|
| 61 |
-
add_filter('image_downsize', 'gambit_otf_regen_thumbs_media_downsize', 10, 3);
|
| 62 |
-
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
}
|
| 65 |
-
}
|
| 66 |
-
/**
|
| 67 |
-
* The downsizer. This only does something if the existing image size doesn't exist yet.
|
| 68 |
-
*
|
| 69 |
-
* @param $out boolean false
|
| 70 |
-
* @param $id int Attachment ID
|
| 71 |
-
* @param $size mixed The size name, or an array containing the width & height
|
| 72 |
-
*
|
| 73 |
-
* @return mixed False if the custom downsize failed, or an array of the image if successful
|
| 74 |
-
*/
|
| 75 |
-
function gambit_otf_regen_thumbs_media_downsize($out, $id, $size)
|
| 76 |
-
{
|
| 77 |
-
|
| 78 |
-
// Gather all the different image sizes of WP (thumbnail, medium, large) and,
|
| 79 |
-
// all the theme/plugin-introduced sizes.
|
| 80 |
-
global $_gambit_otf_regen_thumbs_all_image_sizes;
|
| 81 |
-
if (!isset($_gambit_otf_regen_thumbs_all_image_sizes)) {
|
| 82 |
-
global $_wp_additional_image_sizes;
|
| 83 |
|
| 84 |
-
|
| 85 |
-
$
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
if (in_array($sizeName, array('thumbnail', 'medium', 'large'))) {
|
| 89 |
-
$_gambit_otf_regen_thumbs_all_image_sizes[ $sizeName ]['width'] = get_option($sizeName.'_size_w');
|
| 90 |
-
$_gambit_otf_regen_thumbs_all_image_sizes[ $sizeName ]['height'] = get_option($sizeName.'_size_h');
|
| 91 |
-
$_gambit_otf_regen_thumbs_all_image_sizes[ $sizeName ]['crop'] = (bool) get_option($sizeName.'_crop');
|
| 92 |
-
} elseif (isset($_wp_additional_image_sizes[ $sizeName ])) {
|
| 93 |
-
$_gambit_otf_regen_thumbs_all_image_sizes[ $sizeName ] = $_wp_additional_image_sizes[ $sizeName ];
|
| 94 |
}
|
| 95 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
}
|
| 97 |
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
}
|
| 108 |
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
// If WP doesn't know about the image size name, then we can't really do any resizing of our own
|
| 113 |
-
if (empty($allSizes[ $size ])) {
|
| 114 |
-
return false;
|
| 115 |
-
}
|
| 116 |
-
|
| 117 |
-
// If the size has already been previously created, use it
|
| 118 |
-
if (!empty($imagedata['sizes'][ $size ]) && !empty($allSizes[ $size ])) {
|
| 119 |
-
|
| 120 |
-
// But only if the size remained the same
|
| 121 |
-
if ($allSizes[ $size ]['width'] == $imagedata['sizes'][ $size ]['width']
|
| 122 |
-
&& $allSizes[ $size ]['height'] == $imagedata['sizes'][ $size ]['height']) {
|
| 123 |
-
return false;
|
| 124 |
-
}
|
| 125 |
-
|
| 126 |
-
// Or if the size is different and we found out before that the size really was different
|
| 127 |
-
if (!empty($imagedata['sizes'][ $size ][ 'width_query' ])
|
| 128 |
-
&& !empty($imagedata['sizes'][ $size ]['height_query'])) {
|
| 129 |
-
if ($imagedata['sizes'][ $size ]['width_query'] == $allSizes[ $size ]['width']
|
| 130 |
-
&& $imagedata['sizes'][ $size ]['height_query'] == $allSizes[ $size ]['height']) {
|
| 131 |
-
return false;
|
| 132 |
-
}
|
| 133 |
-
}
|
| 134 |
-
}
|
| 135 |
-
|
| 136 |
-
// Resize the image
|
| 137 |
-
$resized = image_make_intermediate_size(
|
| 138 |
-
get_attached_file($id),
|
| 139 |
-
$allSizes[ $size ]['width'],
|
| 140 |
-
$allSizes[ $size ]['height'],
|
| 141 |
-
$allSizes[ $size ]['crop']
|
| 142 |
-
);
|
| 143 |
-
|
| 144 |
-
// Resize somehow failed
|
| 145 |
-
if (!$resized) {
|
| 146 |
-
return false;
|
| 147 |
-
}
|
| 148 |
-
|
| 149 |
-
// Save the new size in WP
|
| 150 |
-
$imagedata['sizes'][ $size ] = $resized;
|
| 151 |
-
|
| 152 |
-
// Save some additional info so that we'll know next time whether we've resized this before
|
| 153 |
-
$imagedata['sizes'][ $size ]['width_query'] = $allSizes[ $size ]['width'];
|
| 154 |
-
$imagedata['sizes'][ $size ]['height_query'] = $allSizes[ $size ]['height'];
|
| 155 |
-
|
| 156 |
-
wp_update_attachment_metadata($id, $imagedata);
|
| 157 |
-
|
| 158 |
-
// Serve the resized image
|
| 159 |
-
$att_url = wp_get_attachment_url($id);
|
| 160 |
-
|
| 161 |
-
return array(dirname($att_url).'/'.$resized['file'], $resized['width'], $resized['height'], true);
|
| 162 |
-
|
| 163 |
-
// If the size given is a custom array size
|
| 164 |
-
} elseif (is_array($size)) {
|
| 165 |
-
$imagePath = get_attached_file($id);
|
| 166 |
-
|
| 167 |
-
// This would be the path of our resized image if the dimensions existed
|
| 168 |
-
$imageExt = pathinfo($imagePath, PATHINFO_EXTENSION);
|
| 169 |
-
$imagePath = preg_replace('/^(.*)\.'.$imageExt.'$/', sprintf('$1-%sx%s.%s', $size[0], $size[1], $imageExt), $imagePath);
|
| 170 |
-
|
| 171 |
-
$att_url = wp_get_attachment_url($id);
|
| 172 |
-
|
| 173 |
-
// If it already exists, serve it
|
| 174 |
-
if (file_exists($imagePath)) {
|
| 175 |
-
return array(dirname($att_url).'/'.basename($imagePath), $size[0], $size[1], true);
|
| 176 |
-
}
|
| 177 |
-
|
| 178 |
-
// If not, resize the image...
|
| 179 |
-
$resized = image_make_intermediate_size(
|
| 180 |
-
get_attached_file($id),
|
| 181 |
-
$size[0],
|
| 182 |
-
$size[1],
|
| 183 |
-
true
|
| 184 |
);
|
| 185 |
-
|
| 186 |
-
// Get attachment meta so we can add new size
|
| 187 |
-
$imagedata = wp_get_attachment_metadata($id);
|
| 188 |
-
|
| 189 |
-
// Save the new size in WP so that it can also perform actions on it
|
| 190 |
-
$imagedata['sizes'][ $size[0].'x'.$size[1] ] = $resized;
|
| 191 |
-
wp_update_attachment_metadata($id, $imagedata);
|
| 192 |
-
|
| 193 |
-
// Resize somehow failed
|
| 194 |
-
if (!$resized) {
|
| 195 |
-
return false;
|
| 196 |
-
}
|
| 197 |
-
|
| 198 |
-
// Then serve it
|
| 199 |
-
return array(dirname($att_url).'/'.$resized['file'], $resized['width'], $resized['height'], true);
|
| 200 |
}
|
| 201 |
|
| 202 |
-
return false;
|
| 203 |
}
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
Plugin Name: reGenerate Thumbnails - advanced
|
| 4 |
Plugin URI: http://turcuciprian.com
|
| 5 |
Description: A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 6 |
+
Version: 1.3.3
|
| 7 |
Author: turcuciprian
|
| 8 |
+
Author URI: http://turcuciprian.com
|
| 9 |
License: GPLv2 or later
|
| 10 |
+
Text Domain: rta
|
| 11 |
*/
|
| 12 |
|
| 13 |
+
//Global variables for arguments
|
| 14 |
+
require_once("rest.php");
|
| 15 |
+
class cc {
|
| 16 |
+
|
| 17 |
+
// create basic page in the admin panel, with menu settings too
|
| 18 |
+
public function start() {
|
| 19 |
+
//create admin menu page and content
|
| 20 |
+
add_action('admin_menu', array($this, 'create_menu'));
|
| 21 |
+
add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'add_settings_link'));
|
| 22 |
+
add_action('admin_enqueue_scripts', array($this, 'enqueue_admin'));
|
| 23 |
+
//ajax callback for button click
|
| 24 |
+
add_action('wp_ajax_rta_ajax', array($this, 'ajax_callback'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
}
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
public function ajax_callback() {
|
| 28 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
+
// Admin menu calback
|
| 32 |
+
public function create_menu() {
|
| 33 |
+
global $cc_args;
|
| 34 |
+
$args = $cc_args;
|
| 35 |
+
// Add a new submenu under Tools:
|
| 36 |
+
add_options_page(__('reGenerate Thumbnails Advanced', 'rta_id'), __('Regenerate Thumbnails', 'rta_id'), 'administrator', 'regenerate_thumbnails_advanced', array($this, 'create_page_callback'));
|
| 37 |
+
return true;
|
| 38 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
+
function enqueue_admin($hook) {
|
| 41 |
+
if (isset($_GET['page']) && isset($hook)) {
|
| 42 |
+
if ($_GET['page'] !== 'regenerate_thumbnails_advanced' && $hook != 'options-general.php ') {
|
| 43 |
+
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
}
|
| 46 |
+
wp_enqueue_script('jquery-ui-progressbar');
|
| 47 |
+
wp_enqueue_script('jquery-ui-datepicker');
|
| 48 |
+
wp_enqueue_style('rta-jquery-ui', plugin_dir_url(__FILE__) . 'jquery-ui.min.css');
|
| 49 |
+
wp_enqueue_style('rta', plugin_dir_url(__FILE__) . 'style.css');
|
| 50 |
+
wp_enqueue_script('rta', plugin_dir_url(__FILE__) . 'script.js');
|
| 51 |
+
//
|
| 52 |
+
wp_add_inline_script( 'jquery-migrate', 'var rtaRestURL = \''.site_url().'/wp-json/rta/regenerate\';' );
|
| 53 |
}
|
| 54 |
|
| 55 |
+
// Callback for the admin_init hook - this is where the page is created.... text, form fields and all
|
| 56 |
+
public function create_page_callback() {
|
| 57 |
+
$total = 1;
|
| 58 |
+
$offset = 0;
|
| 59 |
+
?>
|
| 60 |
+
<!--GTA wrap START -->
|
| 61 |
+
<div id="rta">
|
| 62 |
+
<div id="no-js">s
|
| 63 |
+
<h1>Javascript is not enabled or it has a error!</h1>
|
| 64 |
+
<p>If there is a error in the page (most likely caused by another plugin or even the theme, the regenerate thumbnails advanced plugin will not work properly. Please fix this issue and come back here. YOU WILL NOT SEE THIS WARNING IF EVERYTHING IS WORKING FINE</p>
|
| 65 |
+
</div>
|
| 66 |
+
<div id="js-works" class="hidden">
|
| 67 |
+
<h2>reGenerate Thumbnails Advanced</h2>
|
| 68 |
+
<!--Progress bar-->
|
| 69 |
+
<div id="progressbar">
|
| 70 |
+
<div class="progress-label">0%</div>
|
| 71 |
+
</div>
|
| 72 |
+
<!--Information section-->
|
| 73 |
+
<div class="info">
|
| 74 |
+
Total number of images: <span class="total">0</span><br/>
|
| 75 |
+
Images processed: <span class="processed">0</span><br/>
|
| 76 |
+
<!--Could not process: <span class="errors">0</span> Images<br/>-->
|
| 77 |
+
</div>
|
| 78 |
+
<!--Dropdown-->
|
| 79 |
+
<h3>Select a period</h3>
|
| 80 |
+
<select name="period" id="rta_period">
|
| 81 |
+
<!--get all the images in the database-->
|
| 82 |
+
<option value="0">All</option>
|
| 83 |
+
<option value="1">Past Day</option>
|
| 84 |
+
<option value="2">Past Week</option>
|
| 85 |
+
<option value="3">Past Month</option>
|
| 86 |
+
<option value="4">Between Dates</option>
|
| 87 |
+
</select>
|
| 88 |
+
<div class="fromTo hidden">
|
| 89 |
+
<p><span>Start Date(including):<br/><input type="text" class="datepicker start" readonly /></span></p>
|
| 90 |
+
<p><span>End Date(including):<br/><input type="text" class="datepicker end" readonly /></span></p>
|
| 91 |
+
</div>
|
| 92 |
+
<p class="submit">
|
| 93 |
+
<button class="button button-primary RTA">Regenerate Thumbnails</button>
|
| 94 |
+
<div class="wrap">
|
| 95 |
+
<h3>Progress</h3>
|
| 96 |
+
<div class="logstatus ui-widget-content">
|
| 97 |
+
Nothing processed yet
|
| 98 |
+
</div>
|
| 99 |
+
</div><!--where the errors show -->
|
| 100 |
+
<div class="wrap">
|
| 101 |
+
<h3> Errors</h3>
|
| 102 |
+
<div class="errors ui-widget-content">
|
| 103 |
+
No errors to display yet
|
| 104 |
+
</div><!-- where the errors show -->
|
| 105 |
+
</p>
|
| 106 |
+
</div>
|
| 107 |
+
</div>
|
| 108 |
+
</div>
|
| 109 |
+
<!-- Js Works End -->
|
| 110 |
+
<!--GTA wrap END -->
|
| 111 |
+
<?php
|
| 112 |
}
|
| 113 |
|
| 114 |
+
public function add_settings_link($links) {
|
| 115 |
+
$mylinks = array(
|
| 116 |
+
'<a href="' . admin_url('options-general.php?page=regenerate_thumbnails_advanced') . '">Settings</a>',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
);
|
| 118 |
+
return array_merge($links, $mylinks);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
}
|
| 120 |
|
|
|
|
| 121 |
}
|
| 122 |
+
|
| 123 |
+
/* var @cc cc */
|
| 124 |
+
$cc = new cc();
|
| 125 |
+
$cc->start();
|
rest.php
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
$rtaRESTObj = new rtaREST();
|
| 4 |
+
class rtaREST
|
| 5 |
+
{
|
| 6 |
+
public function __construct()
|
| 7 |
+
{
|
| 8 |
+
add_action('rest_api_init', array($this, 'routesInit'));
|
| 9 |
+
}
|
| 10 |
+
public function routesInit($generalArr)
|
| 11 |
+
{
|
| 12 |
+
register_rest_route('rta', '/regenerate', array('methods' => 'POST', 'callback' => array($this, 'rtaProcess'), 'args' => array()));
|
| 13 |
+
}
|
| 14 |
+
public function rtaProcess()
|
| 15 |
+
{
|
| 16 |
+
if (isset($_POST['type'])) {
|
| 17 |
+
$type = $_POST['type'];
|
| 18 |
+
}
|
| 19 |
+
$logstatus = '';
|
| 20 |
+
$offset = 0;
|
| 21 |
+
switch ($type) {
|
| 22 |
+
case 'general':
|
| 23 |
+
$args = array(
|
| 24 |
+
'post_type' => 'attachment',
|
| 25 |
+
'posts_per_page' => -1,
|
| 26 |
+
'post_status' => 'any',
|
| 27 |
+
'offset' => 0,
|
| 28 |
+
);
|
| 29 |
+
|
| 30 |
+
if (isset($_POST['period'])) {
|
| 31 |
+
$period = $_POST['period'];
|
| 32 |
+
|
| 33 |
+
switch ($period) {
|
| 34 |
+
case '0':
|
| 35 |
+
break;
|
| 36 |
+
case '1':
|
| 37 |
+
$date = '-1 day';
|
| 38 |
+
break;
|
| 39 |
+
case '2':
|
| 40 |
+
$date = '-1 week';
|
| 41 |
+
break;
|
| 42 |
+
case '3':
|
| 43 |
+
$date = '-1 month';
|
| 44 |
+
break;
|
| 45 |
+
case '4':
|
| 46 |
+
$date = $_POST['fromTo'];
|
| 47 |
+
break;
|
| 48 |
+
}
|
| 49 |
+
}
|
| 50 |
+
if (isset($date) && !empty($date)) {
|
| 51 |
+
$fromTo = explode('-', $date);
|
| 52 |
+
$startDate = date('m/d/Y', strtotime($fromTo[0].' -1 day'));
|
| 53 |
+
$endDate = date('m/d/Y', strtotime($fromTo[1].' +1 day'));
|
| 54 |
+
|
| 55 |
+
if (!empty($startDate) && empty($endDate)) {
|
| 56 |
+
$args['date_query'] = array('after' => $startDate);
|
| 57 |
+
} elseif (!empty($endDate) && empty($startDate)) {
|
| 58 |
+
$args['date_query'] = array('before' => $endDate);
|
| 59 |
+
} elseif (!empty($startDate) && !empty($endDate)) {
|
| 60 |
+
$args['date_query'] = array('after' => $startDate, 'before' => $endDate);
|
| 61 |
+
}
|
| 62 |
+
}
|
| 63 |
+
$the_query = new WP_Query($args);
|
| 64 |
+
$post_count = 0;
|
| 65 |
+
if ($the_query->have_posts()) {
|
| 66 |
+
$post_count = $the_query->post_count;
|
| 67 |
+
}
|
| 68 |
+
wp_reset_query();
|
| 69 |
+
wp_reset_postdata();
|
| 70 |
+
$logstatus .= '<pre>'.print_r($the_query, true).'</pre>';
|
| 71 |
+
if (isset($_POST['type'])) {
|
| 72 |
+
$typeV = $_POST['type'];
|
| 73 |
+
}
|
| 74 |
+
if (!isset($date) || empty($date)) {
|
| 75 |
+
$date = '';
|
| 76 |
+
}
|
| 77 |
+
$return_arr = array('pCount' => $post_count, 'fromTo' => $date, 'type' => $typeV, 'period' => $period);
|
| 78 |
+
// return the total number of results
|
| 79 |
+
|
| 80 |
+
return $return_arr;
|
| 81 |
+
break;
|
| 82 |
+
case 'submit':
|
| 83 |
+
|
| 84 |
+
$logstatus = '';
|
| 85 |
+
$error = array();
|
| 86 |
+
if (isset($_POST['offset'])) {
|
| 87 |
+
$offset = $_POST['offset'];
|
| 88 |
+
}
|
| 89 |
+
if (isset($_POST['period'])) {
|
| 90 |
+
$period = $_POST['period'];
|
| 91 |
+
|
| 92 |
+
$args = array(
|
| 93 |
+
'post_type' => 'attachment',
|
| 94 |
+
'post_status' => 'any',
|
| 95 |
+
'posts_per_page' => 1,
|
| 96 |
+
'offset' => $offset,
|
| 97 |
+
'orderby' => 'ID',
|
| 98 |
+
'order' => 'DESC',
|
| 99 |
+
);
|
| 100 |
+
|
| 101 |
+
switch ($period) {
|
| 102 |
+
case '0':
|
| 103 |
+
break;
|
| 104 |
+
case '1':
|
| 105 |
+
$date = '-1 day';
|
| 106 |
+
|
| 107 |
+
break;
|
| 108 |
+
case '2':
|
| 109 |
+
$date = '-1 week';
|
| 110 |
+
break;
|
| 111 |
+
case '3':
|
| 112 |
+
$date = '-1 month';
|
| 113 |
+
break;
|
| 114 |
+
case '4':
|
| 115 |
+
|
| 116 |
+
$date = $_POST['fromTo'];
|
| 117 |
+
break;
|
| 118 |
+
}
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
$args = array(
|
| 122 |
+
'post_type' => 'attachment',
|
| 123 |
+
'post_status' => 'any',
|
| 124 |
+
'posts_per_page' => 1,
|
| 125 |
+
'offset' => $offset,
|
| 126 |
+
);
|
| 127 |
+
|
| 128 |
+
if ($period != 0 && isset($date)) {
|
| 129 |
+
if (!empty($date)) {
|
| 130 |
+
$fromTo = explode('-', $date);
|
| 131 |
+
$startDate = date('m/d/Y', strtotime($fromTo[0]));
|
| 132 |
+
$endDate = date('m/d/Y', strtotime($fromTo[1].' +1 day'));
|
| 133 |
+
|
| 134 |
+
if (!empty($startDate) && empty($endDate)) {
|
| 135 |
+
$args['date_query'] = array('after' => $startDate);
|
| 136 |
+
} elseif (!empty($endDate) && empty($startDate)) {
|
| 137 |
+
$args['date_query'] = array('before' => $endDate);
|
| 138 |
+
} elseif (!empty($startDate) && !empty($endDate)) {
|
| 139 |
+
$args['date_query'] = array('after' => $startDate, 'before' => $endDate);
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
// $args = array_merge($args, $period_arr);
|
| 143 |
+
}
|
| 144 |
+
|
| 145 |
+
|
| 146 |
+
$the_query = new WP_Query($args);
|
| 147 |
+
if ($the_query->have_posts()) {
|
| 148 |
+
|
| 149 |
+
while ($the_query->have_posts()) {
|
| 150 |
+
$the_query->the_post();
|
| 151 |
+
$image_id = $the_query->post->ID;
|
| 152 |
+
$is_image = true;
|
| 153 |
+
$fullsizepath = get_attached_file($image_id);
|
| 154 |
+
|
| 155 |
+
//is image:
|
| 156 |
+
if (!is_array(getimagesize($fullsizepath))) {
|
| 157 |
+
|
| 158 |
+
$is_image = false;
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
if ($is_image) {
|
| 162 |
+
if (false === $fullsizepath || !file_exists($fullsizepath)) {
|
| 163 |
+
$error[] = '<code>'.esc_html($fullsizepath).'</code>';
|
| 164 |
+
}
|
| 165 |
+
@set_time_limit(900);
|
| 166 |
+
include( ABSPATH . 'wp-admin/includes/image.php' );
|
| 167 |
+
$metadata = wp_generate_attachment_metadata($image_id, $fullsizepath);
|
| 168 |
+
//get the attachment name
|
| 169 |
+
$filename_only = basename(get_attached_file($image_id));
|
| 170 |
+
if (is_wp_error($metadata)) {
|
| 171 |
+
$error[] = sprintf('%s Image ID:%d', $metadata->get_error_message(), $image_id);
|
| 172 |
+
}
|
| 173 |
+
if (empty($metadata)) {
|
| 174 |
+
//$this->die_json_error_msg($image_id, __('Unknown failure reason.', 'regenerate-thumbnails'));
|
| 175 |
+
$error[] = sprintf('Unknown failure reason. regenerate-thumbnails %d', $image_id);
|
| 176 |
+
} else {
|
| 177 |
+
wp_update_attachment_metadata($image_id, $metadata);
|
| 178 |
+
}
|
| 179 |
+
$logstatus = '<br/>'.$filename_only.' - <b>Processed</b>';
|
| 180 |
+
} else {
|
| 181 |
+
$filename_only = basename(get_attached_file($image_id));
|
| 182 |
+
|
| 183 |
+
$error[] = sprintf('Attachment (<b>%s</b> - ID:%d) is not an image. Skipping', $filename_only, $image_id);
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
}
|
| 187 |
+
|
| 188 |
+
} else {
|
| 189 |
+
$error[] = 'No pictures uploaded';
|
| 190 |
+
}
|
| 191 |
+
if (!extension_loaded('gd') && !function_exists('gd_info')) {
|
| 192 |
+
$error[] = '<b>PHP GD library is not installed</b> on your web server. Please install in order to have the ability to resize and crop images';
|
| 193 |
+
}
|
| 194 |
+
//increment offset
|
| 195 |
+
$result = $offset + 1;
|
| 196 |
+
$finalResult = array('offset' => ($offset + 1), 'error' => $error, 'logstatus' => $logstatus, 'startTime' => $_POST['startTime'], 'fromTo' => $_POST['fromTo'], 'type' => $_POST['type'], 'period' => $period);
|
| 197 |
+
|
| 198 |
+
break;
|
| 199 |
+
}
|
| 200 |
+
/* Restore original Post Data */
|
| 201 |
+
return $finalResult;
|
| 202 |
+
}
|
| 203 |
+
}
|
screenshot-1.png
CHANGED
|
Binary file
|
screenshot-2.png
ADDED
|
Binary file
|
screenshot-3.png
ADDED
|
Binary file
|
screenshot-4.png
ADDED
|
Binary file
|
script.js
ADDED
|
@@ -0,0 +1,214 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
jQuery(document).ready(function($) {
|
| 2 |
+
//no js error
|
| 3 |
+
$('#no-js').addClass('hidden');
|
| 4 |
+
$('#js-works').removeClass('hidden');
|
| 5 |
+
//the main script
|
| 6 |
+
var err_arr = [];
|
| 7 |
+
var errors_obj = $('#rta .errors');
|
| 8 |
+
var pbar = $("#rta #progressbar");
|
| 9 |
+
|
| 10 |
+
// if the progressbar id exists
|
| 11 |
+
if (pbar[0]) {
|
| 12 |
+
// set the initial value to 0
|
| 13 |
+
pbar.progressbar({
|
| 14 |
+
value: 0
|
| 15 |
+
});
|
| 16 |
+
}
|
| 17 |
+
var rta_butt = $('.button.RTA');
|
| 18 |
+
|
| 19 |
+
var period = $('#rta_period');
|
| 20 |
+
var fromTo = $('.fromTo');
|
| 21 |
+
if (period[0] && fromTo[0]) {
|
| 22 |
+
var datepickerInputs = $('.datepicker');
|
| 23 |
+
if (datepickerInputs[0]) {
|
| 24 |
+
datepickerInputs.datepicker({
|
| 25 |
+
onSelect: function(valTo) { //min/max dates set
|
| 26 |
+
var dateStart = $('.datepicker.start');
|
| 27 |
+
var dateEnd = $('.datepicker.end');
|
| 28 |
+
if ($(this).hasClass('start')) {
|
| 29 |
+
dateEnd.datepicker("change", {
|
| 30 |
+
minDate: valTo
|
| 31 |
+
});
|
| 32 |
+
} else {
|
| 33 |
+
dateStart.datepicker("change", {
|
| 34 |
+
maxDate: valTo
|
| 35 |
+
});
|
| 36 |
+
}
|
| 37 |
+
}
|
| 38 |
+
});
|
| 39 |
+
}
|
| 40 |
+
period.change(function(value) {
|
| 41 |
+
//if the date from-to option is selected
|
| 42 |
+
if (parseInt($(this).val()) === 4) {
|
| 43 |
+
fromTo.removeClass('hidden'); //show the fields
|
| 44 |
+
} else {
|
| 45 |
+
fromTo.addClass('hidden'); //Hide fields / keep the fields hidden
|
| 46 |
+
}
|
| 47 |
+
});
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
if (rta_butt[0]) {
|
| 51 |
+
var logstatus = $('#rta .logstatus');
|
| 52 |
+
var errstatus = $('#rta .errors');
|
| 53 |
+
|
| 54 |
+
//
|
| 55 |
+
//LOOP REQUEST ... ajax request to call when the button is pressed
|
| 56 |
+
//
|
| 57 |
+
var submit_ajax_call = function() {
|
| 58 |
+
logstatus.html('Processing...');
|
| 59 |
+
errstatus.html('Processing...');
|
| 60 |
+
err_arr = [];
|
| 61 |
+
var period = $('#rta_period');
|
| 62 |
+
var startTime = new Date().getTime();
|
| 63 |
+
|
| 64 |
+
var dateStart = $('.datepicker.start');
|
| 65 |
+
var dateEnd = $('.datepicker.end');
|
| 66 |
+
var fromTo = '';
|
| 67 |
+
if (dateStart.val() !== '' || dateEnd.val() !== '') {
|
| 68 |
+
fromTo = dateStart.val() + '-' + dateEnd.val();
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
// First Time Request
|
| 72 |
+
loop_ajax_request('general', 0, -1, period.val(), startTime, fromTo);
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
};
|
| 76 |
+
rta_butt.click(submit_ajax_call);
|
| 77 |
+
|
| 78 |
+
//
|
| 79 |
+
//
|
| 80 |
+
// Main ajax call
|
| 81 |
+
//
|
| 82 |
+
//
|
| 83 |
+
var loop_ajax_request = function(type, offset, tCount, period, startTime, fromTo) {
|
| 84 |
+
//tha ajax data
|
| 85 |
+
var data = {
|
| 86 |
+
'type': type,
|
| 87 |
+
'startTime': startTime,
|
| 88 |
+
'period': period,
|
| 89 |
+
'offset': offset,
|
| 90 |
+
'fromTo': fromTo
|
| 91 |
+
};
|
| 92 |
+
// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
|
| 93 |
+
$.post(rtaRestURL, data, function(response) {
|
| 94 |
+
//var err_arr = new Array();
|
| 95 |
+
//json response
|
| 96 |
+
var json = response;
|
| 97 |
+
|
| 98 |
+
var startTime = json.startTime;
|
| 99 |
+
var offset = 0;
|
| 100 |
+
var tCount = 0;
|
| 101 |
+
|
| 102 |
+
var rta_total = $('#rta .info .total');
|
| 103 |
+
var type = json.type;
|
| 104 |
+
switch (type) {
|
| 105 |
+
case 'general':
|
| 106 |
+
var period = $('#rta_period');
|
| 107 |
+
rta_total = $('#rta .info .total');
|
| 108 |
+
var rta_processed = $('#rta .info .processed');
|
| 109 |
+
if (rta_total[0]) {
|
| 110 |
+
json = response;
|
| 111 |
+
rta_total.html(json.pCount);
|
| 112 |
+
rta_processed.html("0");
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
if (rta_total[0]) {
|
| 116 |
+
tCount = rta_total.html();
|
| 117 |
+
}
|
| 118 |
+
startTime = new Date().getTime();
|
| 119 |
+
fromTo = json.fromTo;
|
| 120 |
+
loop_ajax_request('submit', offset, tCount, json.period, startTime, fromTo);
|
| 121 |
+
|
| 122 |
+
break;
|
| 123 |
+
case 'submit':
|
| 124 |
+
if (rta_total[0]) {
|
| 125 |
+
tCount = rta_total.html();
|
| 126 |
+
}
|
| 127 |
+
var processed = $('#rta .info .processed');
|
| 128 |
+
|
| 129 |
+
var progressbar_percentage = $('#progressbar .progress-label');
|
| 130 |
+
if (processed[0] && rta_total.html() !== 0) {
|
| 131 |
+
processed.html(json.offset);
|
| 132 |
+
}
|
| 133 |
+
tCount = parseInt(tCount);
|
| 134 |
+
response = parseInt(json.offset);
|
| 135 |
+
if (tCount >= response) {
|
| 136 |
+
offset = response;
|
| 137 |
+
var lPercentage = offset / tCount * 100;
|
| 138 |
+
if (pbar[0]) {
|
| 139 |
+
if (progressbar_percentage[0]) {}
|
| 140 |
+
// set the initial value to 0
|
| 141 |
+
pbar.progressbar({
|
| 142 |
+
value: lPercentage
|
| 143 |
+
});
|
| 144 |
+
lPercentage = Math.floor(lPercentage) + '%';
|
| 145 |
+
progressbar_percentage.html(lPercentage);
|
| 146 |
+
}
|
| 147 |
+
var processTime = new Date().getTime() - startTime;
|
| 148 |
+
processTime = processTime / 1000;
|
| 149 |
+
//Add to log
|
| 150 |
+
var logstatus = $('#rta .logstatus');
|
| 151 |
+
if (json.logstatus !== null && logstatus[0]) {
|
| 152 |
+
logstatus.append(json.logstatus + ' - in ' + processTime + ' seconds');
|
| 153 |
+
}
|
| 154 |
+
//call function again
|
| 155 |
+
if (tCount > response) {
|
| 156 |
+
//append unique errors
|
| 157 |
+
unique_arr_append(json.error);
|
| 158 |
+
//make a new request to the ajax call
|
| 159 |
+
startTime = new Date().getTime();
|
| 160 |
+
fromTo = json.fromTo;
|
| 161 |
+
loop_ajax_request(type, offset, tCount, json.period, startTime, fromTo);
|
| 162 |
+
} else {
|
| 163 |
+
console.log('Processing Completed!');
|
| 164 |
+
var errStatus = $('#rta .errors');
|
| 165 |
+
logstatus = $('#rta .logstatus');
|
| 166 |
+
logstatus.append('<br/>Completed !');
|
| 167 |
+
if (errStatus.html() == "Processing...") {
|
| 168 |
+
errStatus.html('No Errors.');
|
| 169 |
+
}
|
| 170 |
+
//the loop ended show errors and messages
|
| 171 |
+
$.each(err_arr, function(index, value) {
|
| 172 |
+
var final_val = '<div class="ui-state-error">' + value + '</div>';
|
| 173 |
+
errors_obj.html(errors_obj.html() + final_val);
|
| 174 |
+
});
|
| 175 |
+
|
| 176 |
+
}
|
| 177 |
+
} else {
|
| 178 |
+
unique_arr_append(json.error);
|
| 179 |
+
//the loop ended show errors and messages
|
| 180 |
+
$.each(err_arr, function(index, value) {
|
| 181 |
+
var final_val = '<div class="ui-state-error">' + value + '</div>';
|
| 182 |
+
errors_obj.html(errors_obj.html() + final_val);
|
| 183 |
+
});
|
| 184 |
+
}
|
| 185 |
+
break;
|
| 186 |
+
}
|
| 187 |
+
|
| 188 |
+
});
|
| 189 |
+
};
|
| 190 |
+
// Append only unique array values
|
| 191 |
+
var unique_arr_append = function(val) {
|
| 192 |
+
var unique = true;
|
| 193 |
+
var i = 0;
|
| 194 |
+
var y = 0;
|
| 195 |
+
while (val[i]) {
|
| 196 |
+
unique = true;
|
| 197 |
+
y = 0;
|
| 198 |
+
while (err_arr[y]) {
|
| 199 |
+
if (err_arr[y] == val[i]) {
|
| 200 |
+
// console.log(err_arr[i]);
|
| 201 |
+
unique = false;
|
| 202 |
+
break;
|
| 203 |
+
}
|
| 204 |
+
y++;
|
| 205 |
+
}
|
| 206 |
+
if (unique) {
|
| 207 |
+
err_arr.push(val[i]);
|
| 208 |
+
}
|
| 209 |
+
i++;
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
};
|
| 213 |
+
}
|
| 214 |
+
});
|
style.css
CHANGED
|
@@ -1,59 +1,72 @@
|
|
| 1 |
-
/*Progress bar style*/
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
position:
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
#
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
}
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
#
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*Progress bar style*/
|
| 2 |
+
|
| 3 |
+
#rta .ui-progressbar {
|
| 4 |
+
position: relative;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
body #rta .ui-progressbar .ui-progressbar-value.ui-widget-header {
|
| 8 |
+
background: #34e749;
|
| 9 |
+
background-color: #34e749;
|
| 10 |
+
position: relative;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
#rta .ui-progressbar .progress-label {
|
| 14 |
+
position: absolute;
|
| 15 |
+
left: 50%;
|
| 16 |
+
top: 4px;
|
| 17 |
+
font-weight: bold;
|
| 18 |
+
text-shadow: 1px 1px 0 #fff;
|
| 19 |
+
z-index: 10;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
/*information section*/
|
| 24 |
+
|
| 25 |
+
#rta .info {
|
| 26 |
+
padding: 20px 0;
|
| 27 |
+
line-height: 24px;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
#rta .info span {
|
| 31 |
+
font-weight: bold;
|
| 32 |
+
font-size: 18px;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
/*Errors style*/
|
| 37 |
+
|
| 38 |
+
#rta .errors, #rta .logstatus {
|
| 39 |
+
float: left;
|
| 40 |
+
width: 96%;
|
| 41 |
+
padding: 10px;
|
| 42 |
+
margin: 0px 1% 0 0;
|
| 43 |
+
text-align: left;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
#rta .errors div {
|
| 47 |
+
margin: 10px;
|
| 48 |
+
padding: 5px 0 5px 10px;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
#rta .errors div b {
|
| 52 |
+
font-size: 16px;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
#rta .errors div.ui-state-error {
|
| 56 |
+
background: #cd0a0a;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
#rta .hidden {
|
| 60 |
+
display: none;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
#rta #no-js h1 {
|
| 64 |
+
color: red;
|
| 65 |
+
text-align: center;
|
| 66 |
+
margin: 140px 0 100px 0;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
#rta .wrap {
|
| 70 |
+
float: left;
|
| 71 |
+
width: 46%;
|
| 72 |
+
}
|
