Version Description
Download this release
Release Info
Developer | takayukister |
Plugin | Contact Form 7 |
Version | 3.5 |
Comparing to | |
See all releases |
Code changes from version 3.4.2 to 3.5
- admin/admin.php +1 -0
- admin/edit-contact-form.php +1 -0
- admin/includes/meta-boxes.php +2 -2
- includes/classes.php +33 -9
- includes/controller.php +23 -1
- includes/css/styles.css +4 -0
- includes/functions.php +22 -0
- includes/js/jquery-ui/themes/smoothness/images/animated-overlay.gif +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png +0 -0
- includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- includes/js/jquery-ui/themes/smoothness/jquery-ui.css +1177 -0
- includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css +5 -0
- includes/js/jquery-ui/themes/smoothness/jquery.ui.theme.css +406 -0
- includes/js/jquery.form.js +12 -4
- includes/js/jquery.form.min.js +2 -2
- includes/js/scripts.js +82 -33
- languages/wpcf7-de_DE.mo +0 -0
- languages/wpcf7-fi.mo +0 -0
- languages/wpcf7-tr_TR.mo +0 -0
- languages/wpcf7.pot +115 -115
- modules/captcha.php +3 -3
- modules/file.php +2 -2
- modules/select.php +3 -0
- readme.txt +13 -28
- wp-contact-form-7.php +2 -2
admin/admin.php
CHANGED
@@ -46,6 +46,7 @@ function wpcf7_load_contact_form_admin() {
|
|
46 |
}
|
47 |
|
48 |
$contact_form->title = trim( $_POST['wpcf7-title'] );
|
|
|
49 |
|
50 |
$form = trim( $_POST['wpcf7-form'] );
|
51 |
|
46 |
}
|
47 |
|
48 |
$contact_form->title = trim( $_POST['wpcf7-title'] );
|
49 |
+
$contact_form->locale = trim( $_POST['wpcf7-locale'] );
|
50 |
|
51 |
$form = trim( $_POST['wpcf7-form'] );
|
52 |
|
admin/edit-contact-form.php
CHANGED
@@ -34,6 +34,7 @@ if ( $post ) :
|
|
34 |
wp_nonce_field( 'wpcf7-save-contact-form_' . $post_id ); ?>
|
35 |
<input type="hidden" id="post_ID" name="post_ID" value="<?php echo (int) $post_id; ?>" />
|
36 |
<input type="hidden" id="wpcf7-id" name="wpcf7-id" value="<?php echo (int) get_post_meta( $post->id, '_old_cf7_unit_id', true ); ?>" />
|
|
|
37 |
<input type="hidden" id="hiddenaction" name="action" value="save" />
|
38 |
|
39 |
<div id="poststuff" class="metabox-holder">
|
34 |
wp_nonce_field( 'wpcf7-save-contact-form_' . $post_id ); ?>
|
35 |
<input type="hidden" id="post_ID" name="post_ID" value="<?php echo (int) $post_id; ?>" />
|
36 |
<input type="hidden" id="wpcf7-id" name="wpcf7-id" value="<?php echo (int) get_post_meta( $post->id, '_old_cf7_unit_id', true ); ?>" />
|
37 |
+
<input type="hidden" id="wpcf7-locale" name="wpcf7-locale" value="<?php echo esc_attr( $post->locale ); ?>" />
|
38 |
<input type="hidden" id="hiddenaction" name="action" value="save" />
|
39 |
|
40 |
<div id="poststuff" class="metabox-holder">
|
admin/includes/meta-boxes.php
CHANGED
@@ -64,7 +64,7 @@ function wpcf7_mail_meta_box( $post, $box ) {
|
|
64 |
|
65 |
<div class="mail-field">
|
66 |
<label for="<?php echo $id; ?>-attachments"><?php echo esc_html( __( 'File attachments:', 'wpcf7' ) ); ?></label><br />
|
67 |
-
<
|
68 |
</div>
|
69 |
|
70 |
<div class="pseudo-hr"></div>
|
@@ -78,7 +78,7 @@ function wpcf7_mail_meta_box( $post, $box ) {
|
|
78 |
<div class="half-right">
|
79 |
<div class="mail-field">
|
80 |
<label for="<?php echo $id; ?>-body"><?php echo esc_html( __( 'Message body:', 'wpcf7' ) ); ?></label><br />
|
81 |
-
<textarea id="<?php echo $id; ?>-body" name="<?php echo $id; ?>-body" cols="100" rows="
|
82 |
</div>
|
83 |
</div>
|
84 |
|
64 |
|
65 |
<div class="mail-field">
|
66 |
<label for="<?php echo $id; ?>-attachments"><?php echo esc_html( __( 'File attachments:', 'wpcf7' ) ); ?></label><br />
|
67 |
+
<textarea id="<?php echo $id; ?>-attachments" name="<?php echo $id; ?>-attachments" cols="100" rows="2"><?php echo esc_textarea( $mail['attachments'] ); ?></textarea>
|
68 |
</div>
|
69 |
|
70 |
<div class="pseudo-hr"></div>
|
78 |
<div class="half-right">
|
79 |
<div class="mail-field">
|
80 |
<label for="<?php echo $id; ?>-body"><?php echo esc_html( __( 'Message body:', 'wpcf7' ) ); ?></label><br />
|
81 |
+
<textarea id="<?php echo $id; ?>-body" name="<?php echo $id; ?>-body" cols="100" rows="20"><?php echo esc_textarea( $mail['body'] ); ?></textarea>
|
82 |
</div>
|
83 |
</div>
|
84 |
|
includes/classes.php
CHANGED
@@ -70,6 +70,7 @@ class WPCF7_ContactForm {
|
|
70 |
$this->initial = false;
|
71 |
$this->id = $post->ID;
|
72 |
$this->title = $post->post_title;
|
|
|
73 |
|
74 |
$props = $this->get_properties();
|
75 |
|
@@ -180,6 +181,7 @@ class WPCF7_ContactForm {
|
|
180 |
$hidden_fields = array(
|
181 |
'_wpcf7' => $this->id,
|
182 |
'_wpcf7_version' => WPCF7_VERSION,
|
|
|
183 |
'_wpcf7_unit_tag' => $this->unit_tag );
|
184 |
|
185 |
if ( WPCF7_VERIFY_NONCE )
|
@@ -531,14 +533,7 @@ class WPCF7_ContactForm {
|
|
531 |
$body = $this->replace_mail_tags( $mail_template['body'] );
|
532 |
}
|
533 |
|
534 |
-
$attachments =
|
535 |
-
|
536 |
-
foreach ( (array) $this->uploaded_files as $name => $path ) {
|
537 |
-
if ( false === strpos( $mail_template['attachments'], "[${name}]" ) || empty( $path ) )
|
538 |
-
continue;
|
539 |
-
|
540 |
-
$attachments[] = $path;
|
541 |
-
}
|
542 |
|
543 |
$components = compact(
|
544 |
'subject', 'sender', 'body', 'recipient', 'additional_headers', 'attachments' );
|
@@ -601,6 +596,8 @@ class WPCF7_ContactForm {
|
|
601 |
else
|
602 |
$submitted = $this->posted_data[$tagname];
|
603 |
|
|
|
|
|
604 |
if ( is_array( $submitted ) )
|
605 |
$replaced = join( ', ', $submitted );
|
606 |
else
|
@@ -625,6 +622,29 @@ class WPCF7_ContactForm {
|
|
625 |
return $tag;
|
626 |
}
|
627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
/* Message */
|
629 |
|
630 |
function message( $status ) {
|
@@ -711,6 +731,9 @@ class WPCF7_ContactForm {
|
|
711 |
foreach ( $props as $prop => $value )
|
712 |
update_post_meta( $post_id, '_' . $prop, wpcf7_normalize_newline_deep( $value ) );
|
713 |
|
|
|
|
|
|
|
714 |
if ( $this->initial ) {
|
715 |
$this->initial = false;
|
716 |
$this->id = $post_id;
|
@@ -729,6 +752,7 @@ class WPCF7_ContactForm {
|
|
729 |
$new = new WPCF7_ContactForm();
|
730 |
$new->initial = true;
|
731 |
$new->title = $this->title . '_copy';
|
|
|
732 |
|
733 |
$props = $this->get_properties();
|
734 |
|
@@ -806,8 +830,8 @@ function wpcf7_get_contact_form_default_pack( $args = '' ) {
|
|
806 |
|
807 |
$contact_form = new WPCF7_ContactForm();
|
808 |
$contact_form->initial = true;
|
809 |
-
|
810 |
$contact_form->title = ( $title ? $title : __( 'Untitled', 'wpcf7' ) );
|
|
|
811 |
|
812 |
$props = $contact_form->get_properties();
|
813 |
|
70 |
$this->initial = false;
|
71 |
$this->id = $post->ID;
|
72 |
$this->title = $post->post_title;
|
73 |
+
$this->locale = get_post_meta( $post->ID, '_locale', true );
|
74 |
|
75 |
$props = $this->get_properties();
|
76 |
|
181 |
$hidden_fields = array(
|
182 |
'_wpcf7' => $this->id,
|
183 |
'_wpcf7_version' => WPCF7_VERSION,
|
184 |
+
'_wpcf7_locale' => $this->locale,
|
185 |
'_wpcf7_unit_tag' => $this->unit_tag );
|
186 |
|
187 |
if ( WPCF7_VERIFY_NONCE )
|
533 |
$body = $this->replace_mail_tags( $mail_template['body'] );
|
534 |
}
|
535 |
|
536 |
+
$attachments = $this->mail_attachments( $mail_template['attachments'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
|
538 |
$components = compact(
|
539 |
'subject', 'sender', 'body', 'recipient', 'additional_headers', 'attachments' );
|
596 |
else
|
597 |
$submitted = $this->posted_data[$tagname];
|
598 |
|
599 |
+
$submitted = trim( $submitted );
|
600 |
+
|
601 |
if ( is_array( $submitted ) )
|
602 |
$replaced = join( ', ', $submitted );
|
603 |
else
|
622 |
return $tag;
|
623 |
}
|
624 |
|
625 |
+
function mail_attachments( $template ) {
|
626 |
+
$attachments = array();
|
627 |
+
|
628 |
+
foreach ( (array) $this->uploaded_files as $name => $path ) {
|
629 |
+
if ( false !== strpos( $template, "[${name}]" ) && ! empty( $path ) )
|
630 |
+
$attachments[] = $path;
|
631 |
+
}
|
632 |
+
|
633 |
+
foreach ( explode( "\n", $template ) as $line ) {
|
634 |
+
$line = trim( $line );
|
635 |
+
|
636 |
+
if ( '[' == substr( $line, 0, 1 ) )
|
637 |
+
continue;
|
638 |
+
|
639 |
+
$path = path_join( WP_CONTENT_DIR, $line );
|
640 |
+
|
641 |
+
if ( @is_readable( $path ) && @is_file( $path ) )
|
642 |
+
$attachments[] = $path;
|
643 |
+
}
|
644 |
+
|
645 |
+
return $attachments;
|
646 |
+
}
|
647 |
+
|
648 |
/* Message */
|
649 |
|
650 |
function message( $status ) {
|
731 |
foreach ( $props as $prop => $value )
|
732 |
update_post_meta( $post_id, '_' . $prop, wpcf7_normalize_newline_deep( $value ) );
|
733 |
|
734 |
+
if ( ! empty( $this->locale ) )
|
735 |
+
update_post_meta( $post_id, '_locale', $this->locale );
|
736 |
+
|
737 |
if ( $this->initial ) {
|
738 |
$this->initial = false;
|
739 |
$this->id = $post_id;
|
752 |
$new = new WPCF7_ContactForm();
|
753 |
$new->initial = true;
|
754 |
$new->title = $this->title . '_copy';
|
755 |
+
$new->locale = $this->locale;
|
756 |
|
757 |
$props = $this->get_properties();
|
758 |
|
830 |
|
831 |
$contact_form = new WPCF7_ContactForm();
|
832 |
$contact_form->initial = true;
|
|
|
833 |
$contact_form->title = ( $title ? $title : __( 'Untitled', 'wpcf7' ) );
|
834 |
+
$contact_form->locale = ( $locale ? $locale : get_locale() );
|
835 |
|
836 |
$props = $contact_form->get_properties();
|
837 |
|
includes/controller.php
CHANGED
@@ -228,7 +228,7 @@ function wpcf7_enqueue_scripts() {
|
|
228 |
wp_deregister_script( 'jquery-form' );
|
229 |
wp_register_script( 'jquery-form',
|
230 |
wpcf7_plugin_url( 'includes/js/jquery.form.min.js' ),
|
231 |
-
array( 'jquery' ), '3.
|
232 |
|
233 |
$in_footer = true;
|
234 |
if ( 'header' === WPCF7_LOAD_JS )
|
@@ -245,6 +245,9 @@ function wpcf7_enqueue_scripts() {
|
|
245 |
if ( defined( 'WP_CACHE' ) && WP_CACHE )
|
246 |
$_wpcf7['cached'] = 1;
|
247 |
|
|
|
|
|
|
|
248 |
wp_localize_script( 'contact-form-7', '_wpcf7', $_wpcf7 );
|
249 |
|
250 |
do_action( 'wpcf7_enqueue_scripts' );
|
@@ -275,4 +278,23 @@ function wpcf7_style_is() {
|
|
275 |
return wp_style_is( 'contact-form-7' );
|
276 |
}
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
?>
|
228 |
wp_deregister_script( 'jquery-form' );
|
229 |
wp_register_script( 'jquery-form',
|
230 |
wpcf7_plugin_url( 'includes/js/jquery.form.min.js' ),
|
231 |
+
array( 'jquery' ), '3.39.0-2013.07.31', true );
|
232 |
|
233 |
$in_footer = true;
|
234 |
if ( 'header' === WPCF7_LOAD_JS )
|
245 |
if ( defined( 'WP_CACHE' ) && WP_CACHE )
|
246 |
$_wpcf7['cached'] = 1;
|
247 |
|
248 |
+
if ( wpcf7_support_html5_fallback() )
|
249 |
+
$_wpcf7['jqueryUi'] = 1;
|
250 |
+
|
251 |
wp_localize_script( 'contact-form-7', '_wpcf7', $_wpcf7 );
|
252 |
|
253 |
do_action( 'wpcf7_enqueue_scripts' );
|
278 |
return wp_style_is( 'contact-form-7' );
|
279 |
}
|
280 |
|
281 |
+
/* HTML5 Fallback */
|
282 |
+
|
283 |
+
add_action( 'wp_enqueue_scripts', 'wpcf7_html5_fallback', 11 );
|
284 |
+
|
285 |
+
function wpcf7_html5_fallback() {
|
286 |
+
if ( ! wpcf7_support_html5_fallback() )
|
287 |
+
return;
|
288 |
+
|
289 |
+
if ( WPCF7_LOAD_JS ) {
|
290 |
+
wp_enqueue_script( 'jquery-ui-datepicker' );
|
291 |
+
wp_enqueue_script( 'jquery-ui-spinner' );
|
292 |
+
}
|
293 |
+
|
294 |
+
if ( WPCF7_LOAD_CSS ) {
|
295 |
+
wp_enqueue_style( 'jquery-ui-smoothness',
|
296 |
+
wpcf7_plugin_url( 'includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css' ), array(), '1.10.3', 'screen' );
|
297 |
+
}
|
298 |
+
}
|
299 |
+
|
300 |
?>
|
includes/css/styles.css
CHANGED
@@ -60,6 +60,10 @@ div.wpcf7 img.ajax-loader {
|
|
60 |
margin-left: 4px;
|
61 |
}
|
62 |
|
|
|
|
|
|
|
|
|
63 |
div.wpcf7 .placeheld {
|
64 |
color: #888;
|
65 |
}
|
60 |
margin-left: 4px;
|
61 |
}
|
62 |
|
63 |
+
div.wpcf7 div.ajax-error {
|
64 |
+
display: none;
|
65 |
+
}
|
66 |
+
|
67 |
div.wpcf7 .placeheld {
|
68 |
color: #888;
|
69 |
}
|
includes/functions.php
CHANGED
@@ -144,6 +144,21 @@ function wpcf7_upload_dir( $type = false ) {
|
|
144 |
return $uploads;
|
145 |
}
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
function wpcf7_l10n() {
|
148 |
$l10n = array(
|
149 |
'af' => __( 'Afrikaans', 'wpcf7' ),
|
@@ -221,6 +236,9 @@ function wpcf7_is_rtl() {
|
|
221 |
function wpcf7_ajax_loader() {
|
222 |
$url = wpcf7_plugin_url( 'images/ajax-loader.gif' );
|
223 |
|
|
|
|
|
|
|
224 |
return apply_filters( 'wpcf7_ajax_loader', $url );
|
225 |
}
|
226 |
|
@@ -272,6 +290,10 @@ function wpcf7_support_html5() {
|
|
272 |
return (bool) apply_filters( 'wpcf7_support_html5', true );
|
273 |
}
|
274 |
|
|
|
|
|
|
|
|
|
275 |
function wpcf7_format_atts( $atts ) {
|
276 |
$html = '';
|
277 |
|
144 |
return $uploads;
|
145 |
}
|
146 |
|
147 |
+
if ( ! function_exists( 'wp_is_writable' ) ) {
|
148 |
+
/*
|
149 |
+
* wp_is_writable exists in WordPress 3.6+
|
150 |
+
* http://core.trac.wordpress.org/browser/tags/3.6/wp-includes/functions.php#L1437
|
151 |
+
* We will be able to remove this function definition
|
152 |
+
* after moving required WordPress version up to 3.6.
|
153 |
+
*/
|
154 |
+
function wp_is_writable( $path ) {
|
155 |
+
if ( 'WIN' === strtoupper( substr( PHP_OS, 0, 3 ) ) )
|
156 |
+
return win_is_writable( $path );
|
157 |
+
else
|
158 |
+
return @is_writable( $path );
|
159 |
+
}
|
160 |
+
}
|
161 |
+
|
162 |
function wpcf7_l10n() {
|
163 |
$l10n = array(
|
164 |
'af' => __( 'Afrikaans', 'wpcf7' ),
|
236 |
function wpcf7_ajax_loader() {
|
237 |
$url = wpcf7_plugin_url( 'images/ajax-loader.gif' );
|
238 |
|
239 |
+
if ( is_ssl() && 'http:' == substr( $url, 0, 5 ) )
|
240 |
+
$url = 'https:' . substr( $url, 5 );
|
241 |
+
|
242 |
return apply_filters( 'wpcf7_ajax_loader', $url );
|
243 |
}
|
244 |
|
290 |
return (bool) apply_filters( 'wpcf7_support_html5', true );
|
291 |
}
|
292 |
|
293 |
+
function wpcf7_support_html5_fallback() {
|
294 |
+
return (bool) apply_filters( 'wpcf7_support_html5_fallback', false );
|
295 |
+
}
|
296 |
+
|
297 |
function wpcf7_format_atts( $atts ) {
|
298 |
$html = '';
|
299 |
|
includes/js/jquery-ui/themes/smoothness/images/animated-overlay.gif
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
ADDED
Binary file
|
includes/js/jquery-ui/themes/smoothness/jquery-ui.css
ADDED
@@ -0,0 +1,1177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! jQuery UI - v1.10.3 - 2013-05-03
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.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 2013 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);
|
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-top: 2px;
|
94 |
+
padding: .5em .5em .5em .7em;
|
95 |
+
min-height: 0; /* support: IE7 */
|
96 |
+
}
|
97 |
+
.ui-accordion .ui-accordion-icons {
|
98 |
+
padding-left: 2.2em;
|
99 |
+
}
|
100 |
+
.ui-accordion .ui-accordion-noicons {
|
101 |
+
padding-left: .7em;
|
102 |
+
}
|
103 |
+
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
104 |
+
padding-left: 2.2em;
|
105 |
+
}
|
106 |
+
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
107 |
+
position: absolute;
|
108 |
+
left: .5em;
|
109 |
+
top: 50%;
|
110 |
+
margin-top: -8px;
|
111 |
+
}
|
112 |
+
.ui-accordion .ui-accordion-content {
|
113 |
+
padding: 1em 2.2em;
|
114 |
+
border-top: 0;
|
115 |
+
overflow: auto;
|
116 |
+
}
|
117 |
+
.ui-autocomplete {
|
118 |
+
position: absolute;
|
119 |
+
top: 0;
|
120 |
+
left: 0;
|
121 |
+
cursor: default;
|
122 |
+
}
|
123 |
+
.ui-button {
|
124 |
+
display: inline-block;
|
125 |
+
position: relative;
|
126 |
+
padding: 0;
|
127 |
+
line-height: normal;
|
128 |
+
margin-right: .1em;
|
129 |
+
cursor: pointer;
|
130 |
+
vertical-align: middle;
|
131 |
+
text-align: center;
|
132 |
+
overflow: visible; /* removes extra width in IE */
|
133 |
+
}
|
134 |
+
.ui-button,
|
135 |
+
.ui-button:link,
|
136 |
+
.ui-button:visited,
|
137 |
+
.ui-button:hover,
|
138 |
+
.ui-button:active {
|
139 |
+
text-decoration: none;
|
140 |
+
}
|
141 |
+
/* to make room for the icon, a width needs to be set here */
|
142 |
+
.ui-button-icon-only {
|
143 |
+
width: 2.2em;
|
144 |
+
}
|
145 |
+
/* button elements seem to need a little more width */
|
146 |
+
button.ui-button-icon-only {
|
147 |
+
width: 2.4em;
|
148 |
+
}
|
149 |
+
.ui-button-icons-only {
|
150 |
+
width: 3.4em;
|
151 |
+
}
|
152 |
+
button.ui-button-icons-only {
|
153 |
+
width: 3.7em;
|
154 |
+
}
|
155 |
+
|
156 |
+
/* button text element */
|
157 |
+
.ui-button .ui-button-text {
|
158 |
+
display: block;
|
159 |
+
line-height: normal;
|
160 |
+
}
|
161 |
+
.ui-button-text-only .ui-button-text {
|
162 |
+
padding: .4em 1em;
|
163 |
+
}
|
164 |
+
.ui-button-icon-only .ui-button-text,
|
165 |
+
.ui-button-icons-only .ui-button-text {
|
166 |
+
padding: .4em;
|
167 |
+
text-indent: -9999999px;
|
168 |
+
}
|
169 |
+
.ui-button-text-icon-primary .ui-button-text,
|
170 |
+
.ui-button-text-icons .ui-button-text {
|
171 |
+
padding: .4em 1em .4em 2.1em;
|
172 |
+
}
|
173 |
+
.ui-button-text-icon-secondary .ui-button-text,
|
174 |
+
.ui-button-text-icons .ui-button-text {
|
175 |
+
padding: .4em 2.1em .4em 1em;
|
176 |
+
}
|
177 |
+
.ui-button-text-icons .ui-button-text {
|
178 |
+
padding-left: 2.1em;
|
179 |
+
padding-right: 2.1em;
|
180 |
+
}
|
181 |
+
/* no icon support for input elements, provide padding by default */
|
182 |
+
input.ui-button {
|
183 |
+
padding: .4em 1em;
|
184 |
+
}
|
185 |
+
|
186 |
+
/* button icon element(s) */
|
187 |
+
.ui-button-icon-only .ui-icon,
|
188 |
+
.ui-button-text-icon-primary .ui-icon,
|
189 |
+
.ui-button-text-icon-secondary .ui-icon,
|
190 |
+
.ui-button-text-icons .ui-icon,
|
191 |
+
.ui-button-icons-only .ui-icon {
|
192 |
+
position: absolute;
|
193 |
+
top: 50%;
|
194 |
+
margin-top: -8px;
|
195 |
+
}
|
196 |
+
.ui-button-icon-only .ui-icon {
|
197 |
+
left: 50%;
|
198 |
+
margin-left: -8px;
|
199 |
+
}
|
200 |
+
.ui-button-text-icon-primary .ui-button-icon-primary,
|
201 |
+
.ui-button-text-icons .ui-button-icon-primary,
|
202 |
+
.ui-button-icons-only .ui-button-icon-primary {
|
203 |
+
left: .5em;
|
204 |
+
}
|
205 |
+
.ui-button-text-icon-secondary .ui-button-icon-secondary,
|
206 |
+
.ui-button-text-icons .ui-button-icon-secondary,
|
207 |
+
.ui-button-icons-only .ui-button-icon-secondary {
|
208 |
+
right: .5em;
|
209 |
+
}
|
210 |
+
|
211 |
+
/* button sets */
|
212 |
+
.ui-buttonset {
|
213 |
+
margin-right: 7px;
|
214 |
+
}
|
215 |
+
.ui-buttonset .ui-button {
|
216 |
+
margin-left: 0;
|
217 |
+
margin-right: -.3em;
|
218 |
+
}
|
219 |
+
|
220 |
+
/* workarounds */
|
221 |
+
/* reset extra padding in Firefox, see h5bp.com/l */
|
222 |
+
input.ui-button::-moz-focus-inner,
|
223 |
+
button.ui-button::-moz-focus-inner {
|
224 |
+
border: 0;
|
225 |
+
padding: 0;
|
226 |
+
}
|
227 |
+
.ui-datepicker {
|
228 |
+
width: 17em;
|
229 |
+
padding: .2em .2em 0;
|
230 |
+
display: none;
|
231 |
+
}
|
232 |
+
.ui-datepicker .ui-datepicker-header {
|
233 |
+
position: relative;
|
234 |
+
padding: .2em 0;
|
235 |
+
}
|
236 |
+
.ui-datepicker .ui-datepicker-prev,
|
237 |
+
.ui-datepicker .ui-datepicker-next {
|
238 |
+
position: absolute;
|
239 |
+
top: 2px;
|
240 |
+
width: 1.8em;
|
241 |
+
height: 1.8em;
|
242 |
+
}
|
243 |
+
.ui-datepicker .ui-datepicker-prev-hover,
|
244 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
245 |
+
top: 1px;
|
246 |
+
}
|
247 |
+
.ui-datepicker .ui-datepicker-prev {
|
248 |
+
left: 2px;
|
249 |
+
}
|
250 |
+
.ui-datepicker .ui-datepicker-next {
|
251 |
+
right: 2px;
|
252 |
+
}
|
253 |
+
.ui-datepicker .ui-datepicker-prev-hover {
|
254 |
+
left: 1px;
|
255 |
+
}
|
256 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
257 |
+
right: 1px;
|
258 |
+
}
|
259 |
+
.ui-datepicker .ui-datepicker-prev span,
|
260 |
+
.ui-datepicker .ui-datepicker-next span {
|
261 |
+
display: block;
|
262 |
+
position: absolute;
|
263 |
+
left: 50%;
|
264 |
+
margin-left: -8px;
|
265 |
+
top: 50%;
|
266 |
+
margin-top: -8px;
|
267 |
+
}
|
268 |
+
.ui-datepicker .ui-datepicker-title {
|
269 |
+
margin: 0 2.3em;
|
270 |
+
line-height: 1.8em;
|
271 |
+
text-align: center;
|
272 |
+
}
|
273 |
+
.ui-datepicker .ui-datepicker-title select {
|
274 |
+
font-size: 1em;
|
275 |
+
margin: 1px 0;
|
276 |
+
}
|
277 |
+
.ui-datepicker select.ui-datepicker-month-year {
|
278 |
+
width: 100%;
|
279 |
+
}
|
280 |
+
.ui-datepicker select.ui-datepicker-month,
|
281 |
+
.ui-datepicker select.ui-datepicker-year {
|
282 |
+
width: 49%;
|
283 |
+
}
|
284 |
+
.ui-datepicker table {
|
285 |
+
width: 100%;
|
286 |
+
font-size: .9em;
|
287 |
+
border-collapse: collapse;
|
288 |
+
margin: 0 0 .4em;
|
289 |
+
}
|
290 |
+
.ui-datepicker th {
|
291 |
+
padding: .7em .3em;
|
292 |
+
text-align: center;
|
293 |
+
font-weight: bold;
|
294 |
+
border: 0;
|
295 |
+
}
|
296 |
+
.ui-datepicker td {
|
297 |
+
border: 0;
|
298 |
+
padding: 1px;
|
299 |
+
}
|
300 |
+
.ui-datepicker td span,
|
301 |
+
.ui-datepicker td a {
|
302 |
+
display: block;
|
303 |
+
padding: .2em;
|
304 |
+
text-align: right;
|
305 |
+
text-decoration: none;
|
306 |
+
}
|
307 |
+
.ui-datepicker .ui-datepicker-buttonpane {
|
308 |
+
background-image: none;
|
309 |
+
margin: .7em 0 0 0;
|
310 |
+
padding: 0 .2em;
|
311 |
+
border-left: 0;
|
312 |
+
border-right: 0;
|
313 |
+
border-bottom: 0;
|
314 |
+
}
|
315 |
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
316 |
+
float: right;
|
317 |
+
margin: .5em .2em .4em;
|
318 |
+
cursor: pointer;
|
319 |
+
padding: .2em .6em .3em .6em;
|
320 |
+
width: auto;
|
321 |
+
overflow: visible;
|
322 |
+
}
|
323 |
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
324 |
+
float: left;
|
325 |
+
}
|
326 |
+
|
327 |
+
/* with multiple calendars */
|
328 |
+
.ui-datepicker.ui-datepicker-multi {
|
329 |
+
width: auto;
|
330 |
+
}
|
331 |
+
.ui-datepicker-multi .ui-datepicker-group {
|
332 |
+
float: left;
|
333 |
+
}
|
334 |
+
.ui-datepicker-multi .ui-datepicker-group table {
|
335 |
+
width: 95%;
|
336 |
+
margin: 0 auto .4em;
|
337 |
+
}
|
338 |
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
339 |
+
width: 50%;
|
340 |
+
}
|
341 |
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
342 |
+
width: 33.3%;
|
343 |
+
}
|
344 |
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
345 |
+
width: 25%;
|
346 |
+
}
|
347 |
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
348 |
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
349 |
+
border-left-width: 0;
|
350 |
+
}
|
351 |
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
352 |
+
clear: left;
|
353 |
+
}
|
354 |
+
.ui-datepicker-row-break {
|
355 |
+
clear: both;
|
356 |
+
width: 100%;
|
357 |
+
font-size: 0;
|
358 |
+
}
|
359 |
+
|
360 |
+
/* RTL support */
|
361 |
+
.ui-datepicker-rtl {
|
362 |
+
direction: rtl;
|
363 |
+
}
|
364 |
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
365 |
+
right: 2px;
|
366 |
+
left: auto;
|
367 |
+
}
|
368 |
+
.ui-datepicker-rtl .ui-datepicker-next {
|
369 |
+
left: 2px;
|
370 |
+
right: auto;
|
371 |
+
}
|
372 |
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
373 |
+
right: 1px;
|
374 |
+
left: auto;
|
375 |
+
}
|
376 |
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
377 |
+
left: 1px;
|
378 |
+
right: auto;
|
379 |
+
}
|
380 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
381 |
+
clear: right;
|
382 |
+
}
|
383 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
384 |
+
float: left;
|
385 |
+
}
|
386 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
387 |
+
.ui-datepicker-rtl .ui-datepicker-group {
|
388 |
+
float: right;
|
389 |
+
}
|
390 |
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
391 |
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
392 |
+
border-right-width: 0;
|
393 |
+
border-left-width: 1px;
|
394 |
+
}
|
395 |
+
.ui-dialog {
|
396 |
+
position: absolute;
|
397 |
+
top: 0;
|
398 |
+
left: 0;
|
399 |
+
padding: .2em;
|
400 |
+
outline: 0;
|
401 |
+
}
|
402 |
+
.ui-dialog .ui-dialog-titlebar {
|
403 |
+
padding: .4em 1em;
|
404 |
+
position: relative;
|
405 |
+
}
|
406 |
+
.ui-dialog .ui-dialog-title {
|
407 |
+
float: left;
|
408 |
+
margin: .1em 0;
|
409 |
+
white-space: nowrap;
|
410 |
+
width: 90%;
|
411 |
+
overflow: hidden;
|
412 |
+
text-overflow: ellipsis;
|
413 |
+
}
|
414 |
+
.ui-dialog .ui-dialog-titlebar-close {
|
415 |
+
position: absolute;
|
416 |
+
right: .3em;
|
417 |
+
top: 50%;
|
418 |
+
width: 21px;
|
419 |
+
margin: -10px 0 0 0;
|
420 |
+
padding: 1px;
|
421 |
+
height: 20px;
|
422 |
+
}
|
423 |
+
.ui-dialog .ui-dialog-content {
|
424 |
+
position: relative;
|
425 |
+
border: 0;
|
426 |
+
padding: .5em 1em;
|
427 |
+
background: none;
|
428 |
+
overflow: auto;
|
429 |
+
}
|
430 |
+
.ui-dialog .ui-dialog-buttonpane {
|
431 |
+
text-align: left;
|
432 |
+
border-width: 1px 0 0 0;
|
433 |
+
background-image: none;
|
434 |
+
margin-top: .5em;
|
435 |
+
padding: .3em 1em .5em .4em;
|
436 |
+
}
|
437 |
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
438 |
+
float: right;
|
439 |
+
}
|
440 |
+
.ui-dialog .ui-dialog-buttonpane button {
|
441 |
+
margin: .5em .4em .5em 0;
|
442 |
+
cursor: pointer;
|
443 |
+
}
|
444 |
+
.ui-dialog .ui-resizable-se {
|
445 |
+
width: 12px;
|
446 |
+
height: 12px;
|
447 |
+
right: -5px;
|
448 |
+
bottom: -5px;
|
449 |
+
background-position: 16px 16px;
|
450 |
+
}
|
451 |
+
.ui-draggable .ui-dialog-titlebar {
|
452 |
+
cursor: move;
|
453 |
+
}
|
454 |
+
.ui-menu {
|
455 |
+
list-style: none;
|
456 |
+
padding: 2px;
|
457 |
+
margin: 0;
|
458 |
+
display: block;
|
459 |
+
outline: none;
|
460 |
+
}
|
461 |
+
.ui-menu .ui-menu {
|
462 |
+
margin-top: -3px;
|
463 |
+
position: absolute;
|
464 |
+
}
|
465 |
+
.ui-menu .ui-menu-item {
|
466 |
+
margin: 0;
|
467 |
+
padding: 0;
|
468 |
+
width: 100%;
|
469 |
+
/* support: IE10, see #8844 */
|
470 |
+
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
471 |
+
}
|
472 |
+
.ui-menu .ui-menu-divider {
|
473 |
+
margin: 5px -2px 5px -2px;
|
474 |
+
height: 0;
|
475 |
+
font-size: 0;
|
476 |
+
line-height: 0;
|
477 |
+
border-width: 1px 0 0 0;
|
478 |
+
}
|
479 |
+
.ui-menu .ui-menu-item a {
|
480 |
+
text-decoration: none;
|
481 |
+
display: block;
|
482 |
+
padding: 2px .4em;
|
483 |
+
line-height: 1.5;
|
484 |
+
min-height: 0; /* support: IE7 */
|
485 |
+
font-weight: normal;
|
486 |
+
}
|
487 |
+
.ui-menu .ui-menu-item a.ui-state-focus,
|
488 |
+
.ui-menu .ui-menu-item a.ui-state-active {
|
489 |
+
font-weight: normal;
|
490 |
+
margin: -1px;
|
491 |
+
}
|
492 |
+
|
493 |
+
.ui-menu .ui-state-disabled {
|
494 |
+
font-weight: normal;
|
495 |
+
margin: .4em 0 .2em;
|
496 |
+
line-height: 1.5;
|
497 |
+
}
|
498 |
+
.ui-menu .ui-state-disabled a {
|
499 |
+
cursor: default;
|
500 |
+
}
|
501 |
+
|
502 |
+
/* icon support */
|
503 |
+
.ui-menu-icons {
|
504 |
+
position: relative;
|
505 |
+
}
|
506 |
+
.ui-menu-icons .ui-menu-item a {
|
507 |
+
position: relative;
|
508 |
+
padding-left: 2em;
|
509 |
+
}
|
510 |
+
|
511 |
+
/* left-aligned */
|
512 |
+
.ui-menu .ui-icon {
|
513 |
+
position: absolute;
|
514 |
+
top: .2em;
|
515 |
+
left: .2em;
|
516 |
+
}
|
517 |
+
|
518 |
+
/* right-aligned */
|
519 |
+
.ui-menu .ui-menu-icon {
|
520 |
+
position: static;
|
521 |
+
float: right;
|
522 |
+
}
|
523 |
+
.ui-progressbar {
|
524 |
+
height: 2em;
|
525 |
+
text-align: left;
|
526 |
+
overflow: hidden;
|
527 |
+
}
|
528 |
+
.ui-progressbar .ui-progressbar-value {
|
529 |
+
margin: -1px;
|
530 |
+
height: 100%;
|
531 |
+
}
|
532 |
+
.ui-progressbar .ui-progressbar-overlay {
|
533 |
+
background: url("images/animated-overlay.gif");
|
534 |
+
height: 100%;
|
535 |
+
filter: alpha(opacity=25);
|
536 |
+
opacity: 0.25;
|
537 |
+
}
|
538 |
+
.ui-progressbar-indeterminate .ui-progressbar-value {
|
539 |
+
background-image: none;
|
540 |
+
}
|
541 |
+
.ui-resizable {
|
542 |
+
position: relative;
|
543 |
+
}
|
544 |
+
.ui-resizable-handle {
|
545 |
+
position: absolute;
|
546 |
+
font-size: 0.1px;
|
547 |
+
display: block;
|
548 |
+
}
|
549 |
+
.ui-resizable-disabled .ui-resizable-handle,
|
550 |
+
.ui-resizable-autohide .ui-resizable-handle {
|
551 |
+
display: none;
|
552 |
+
}
|
553 |
+
.ui-resizable-n {
|
554 |
+
cursor: n-resize;
|
555 |
+
height: 7px;
|
556 |
+
width: 100%;
|
557 |
+
top: -5px;
|
558 |
+
left: 0;
|
559 |
+
}
|
560 |
+
.ui-resizable-s {
|
561 |
+
cursor: s-resize;
|
562 |
+
height: 7px;
|
563 |
+
width: 100%;
|
564 |
+
bottom: -5px;
|
565 |
+
left: 0;
|
566 |
+
}
|
567 |
+
.ui-resizable-e {
|
568 |
+
cursor: e-resize;
|
569 |
+
width: 7px;
|
570 |
+
right: -5px;
|
571 |
+
top: 0;
|
572 |
+
height: 100%;
|
573 |
+
}
|
574 |
+
.ui-resizable-w {
|
575 |
+
cursor: w-resize;
|
576 |
+
width: 7px;
|
577 |
+
left: -5px;
|
578 |
+
top: 0;
|
579 |
+
height: 100%;
|
580 |
+
}
|
581 |
+
.ui-resizable-se {
|
582 |
+
cursor: se-resize;
|
583 |
+
width: 12px;
|
584 |
+
height: 12px;
|
585 |
+
right: 1px;
|
586 |
+
bottom: 1px;
|
587 |
+
}
|
588 |
+
.ui-resizable-sw {
|
589 |
+
cursor: sw-resize;
|
590 |
+
width: 9px;
|
591 |
+
height: 9px;
|
592 |
+
left: -5px;
|
593 |
+
bottom: -5px;
|
594 |
+
}
|
595 |
+
.ui-resizable-nw {
|
596 |
+
cursor: nw-resize;
|
597 |
+
width: 9px;
|
598 |
+
height: 9px;
|
599 |
+
left: -5px;
|
600 |
+
top: -5px;
|
601 |
+
}
|
602 |
+
.ui-resizable-ne {
|
603 |
+
cursor: ne-resize;
|
604 |
+
width: 9px;
|
605 |
+
height: 9px;
|
606 |
+
right: -5px;
|
607 |
+
top: -5px;
|
608 |
+
}
|
609 |
+
.ui-selectable-helper {
|
610 |
+
position: absolute;
|
611 |
+
z-index: 100;
|
612 |
+
border: 1px dotted black;
|
613 |
+
}
|
614 |
+
.ui-slider {
|
615 |
+
position: relative;
|
616 |
+
text-align: left;
|
617 |
+
}
|
618 |
+
.ui-slider .ui-slider-handle {
|
619 |
+
position: absolute;
|
620 |
+
z-index: 2;
|
621 |
+
width: 1.2em;
|
622 |
+
height: 1.2em;
|
623 |
+
cursor: default;
|
624 |
+
}
|
625 |
+
.ui-slider .ui-slider-range {
|
626 |
+
position: absolute;
|
627 |
+
z-index: 1;
|
628 |
+
font-size: .7em;
|
629 |
+
display: block;
|
630 |
+
border: 0;
|
631 |
+
background-position: 0 0;
|
632 |
+
}
|
633 |
+
|
634 |
+
/* For IE8 - See #6727 */
|
635 |
+
.ui-slider.ui-state-disabled .ui-slider-handle,
|
636 |
+
.ui-slider.ui-state-disabled .ui-slider-range {
|
637 |
+
filter: inherit;
|
638 |
+
}
|
639 |
+
|
640 |
+
.ui-slider-horizontal {
|
641 |
+
height: .8em;
|
642 |
+
}
|
643 |
+
.ui-slider-horizontal .ui-slider-handle {
|
644 |
+
top: -.3em;
|
645 |
+
margin-left: -.6em;
|
646 |
+
}
|
647 |
+
.ui-slider-horizontal .ui-slider-range {
|
648 |
+
top: 0;
|
649 |
+
height: 100%;
|
650 |
+
}
|
651 |
+
.ui-slider-horizontal .ui-slider-range-min {
|
652 |
+
left: 0;
|
653 |
+
}
|
654 |
+
.ui-slider-horizontal .ui-slider-range-max {
|
655 |
+
right: 0;
|
656 |
+
}
|
657 |
+
|
658 |
+
.ui-slider-vertical {
|
659 |
+
width: .8em;
|
660 |
+
height: 100px;
|
661 |
+
}
|
662 |
+
.ui-slider-vertical .ui-slider-handle {
|
663 |
+
left: -.3em;
|
664 |
+
margin-left: 0;
|
665 |
+
margin-bottom: -.6em;
|
666 |
+
}
|
667 |
+
.ui-slider-vertical .ui-slider-range {
|
668 |
+
left: 0;
|
669 |
+
width: 100%;
|
670 |
+
}
|
671 |
+
.ui-slider-vertical .ui-slider-range-min {
|
672 |
+
bottom: 0;
|
673 |
+
}
|
674 |
+
.ui-slider-vertical .ui-slider-range-max {
|
675 |
+
top: 0;
|
676 |
+
}
|
677 |
+
.ui-spinner {
|
678 |
+
position: relative;
|
679 |
+
display: inline-block;
|
680 |
+
overflow: hidden;
|
681 |
+
padding: 0;
|
682 |
+
vertical-align: middle;
|
683 |
+
}
|
684 |
+
.ui-spinner-input {
|
685 |
+
border: none;
|
686 |
+
background: none;
|
687 |
+
color: inherit;
|
688 |
+
padding: 0;
|
689 |
+
margin: .2em 0;
|
690 |
+
vertical-align: middle;
|
691 |
+
margin-left: .4em;
|
692 |
+
margin-right: 22px;
|
693 |
+
}
|
694 |
+
.ui-spinner-button {
|
695 |
+
width: 16px;
|
696 |
+
height: 50%;
|
697 |
+
font-size: .5em;
|
698 |
+
padding: 0;
|
699 |
+
margin: 0;
|
700 |
+
text-align: center;
|
701 |
+
position: absolute;
|
702 |
+
cursor: default;
|
703 |
+
display: block;
|
704 |
+
overflow: hidden;
|
705 |
+
right: 0;
|
706 |
+
}
|
707 |
+
/* more specificity required here to overide default borders */
|
708 |
+
.ui-spinner a.ui-spinner-button {
|
709 |
+
border-top: none;
|
710 |
+
border-bottom: none;
|
711 |
+
border-right: none;
|
712 |
+
}
|
713 |
+
/* vertical centre icon */
|
714 |
+
.ui-spinner .ui-icon {
|
715 |
+
position: absolute;
|
716 |
+
margin-top: -8px;
|
717 |
+
top: 50%;
|
718 |
+
left: 0;
|
719 |
+
}
|
720 |
+
.ui-spinner-up {
|
721 |
+
top: 0;
|
722 |
+
}
|
723 |
+
.ui-spinner-down {
|
724 |
+
bottom: 0;
|
725 |
+
}
|
726 |
+
|
727 |
+
/* TR overrides */
|
728 |
+
.ui-spinner .ui-icon-triangle-1-s {
|
729 |
+
/* need to fix icons sprite */
|
730 |
+
background-position: -65px -16px;
|
731 |
+
}
|
732 |
+
.ui-tabs {
|
733 |
+
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
734 |
+
padding: .2em;
|
735 |
+
}
|
736 |
+
.ui-tabs .ui-tabs-nav {
|
737 |
+
margin: 0;
|
738 |
+
padding: .2em .2em 0;
|
739 |
+
}
|
740 |
+
.ui-tabs .ui-tabs-nav li {
|
741 |
+
list-style: none;
|
742 |
+
float: left;
|
743 |
+
position: relative;
|
744 |
+
top: 0;
|
745 |
+
margin: 1px .2em 0 0;
|
746 |
+
border-bottom-width: 0;
|
747 |
+
padding: 0;
|
748 |
+
white-space: nowrap;
|
749 |
+
}
|
750 |
+
.ui-tabs .ui-tabs-nav li a {
|
751 |
+
float: left;
|
752 |
+
padding: .5em 1em;
|
753 |
+
text-decoration: none;
|
754 |
+
}
|
755 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
756 |
+
margin-bottom: -1px;
|
757 |
+
padding-bottom: 1px;
|
758 |
+
}
|
759 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
760 |
+
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
761 |
+
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
762 |
+
cursor: text;
|
763 |
+
}
|
764 |
+
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
765 |
+
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
766 |
+
cursor: pointer;
|
767 |
+
}
|
768 |
+
.ui-tabs .ui-tabs-panel {
|
769 |
+
display: block;
|
770 |
+
border-width: 0;
|
771 |
+
padding: 1em 1.4em;
|
772 |
+
background: none;
|
773 |
+
}
|
774 |
+
.ui-tooltip {
|
775 |
+
padding: 8px;
|
776 |
+
position: absolute;
|
777 |
+
z-index: 9999;
|
778 |
+
max-width: 300px;
|
779 |
+
-webkit-box-shadow: 0 0 5px #aaa;
|
780 |
+
box-shadow: 0 0 5px #aaa;
|
781 |
+
}
|
782 |
+
body .ui-tooltip {
|
783 |
+
border-width: 2px;
|
784 |
+
}
|
785 |
+
|
786 |
+
/* Component containers
|
787 |
+
----------------------------------*/
|
788 |
+
.ui-widget {
|
789 |
+
font-family: Verdana,Arial,sans-serif;
|
790 |
+
font-size: 1.1em;
|
791 |
+
}
|
792 |
+
.ui-widget .ui-widget {
|
793 |
+
font-size: 1em;
|
794 |
+
}
|
795 |
+
.ui-widget input,
|
796 |
+
.ui-widget select,
|
797 |
+
.ui-widget textarea,
|
798 |
+
.ui-widget button {
|
799 |
+
font-family: Verdana,Arial,sans-serif;
|
800 |
+
font-size: 1em;
|
801 |
+
}
|
802 |
+
.ui-widget-content {
|
803 |
+
border: 1px solid #aaaaaa;
|
804 |
+
background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
|
805 |
+
color: #222222;
|
806 |
+
}
|
807 |
+
.ui-widget-content a {
|
808 |
+
color: #222222;
|
809 |
+
}
|
810 |
+
.ui-widget-header {
|
811 |
+
border: 1px solid #aaaaaa;
|
812 |
+
background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
|
813 |
+
color: #222222;
|
814 |
+
font-weight: bold;
|
815 |
+
}
|
816 |
+
.ui-widget-header a {
|
817 |
+
color: #222222;
|
818 |
+
}
|
819 |
+
|
820 |
+
/* Interaction states
|
821 |
+
----------------------------------*/
|
822 |
+
.ui-state-default,
|
823 |
+
.ui-widget-content .ui-state-default,
|
824 |
+
.ui-widget-header .ui-state-default {
|
825 |
+
border: 1px solid #d3d3d3;
|
826 |
+
background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
|
827 |
+
font-weight: normal;
|
828 |
+
color: #555555;
|
829 |
+
}
|
830 |
+
.ui-state-default a,
|
831 |
+
.ui-state-default a:link,
|
832 |
+
.ui-state-default a:visited {
|
833 |
+
color: #555555;
|
834 |
+
text-decoration: none;
|
835 |
+
}
|
836 |
+
.ui-state-hover,
|
837 |
+
.ui-widget-content .ui-state-hover,
|
838 |
+
.ui-widget-header .ui-state-hover,
|
839 |
+
.ui-state-focus,
|
840 |
+
.ui-widget-content .ui-state-focus,
|
841 |
+
.ui-widget-header .ui-state-focus {
|
842 |
+
border: 1px solid #999999;
|
843 |
+
background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
|
844 |
+
font-weight: normal;
|
845 |
+
color: #212121;
|
846 |
+
}
|
847 |
+
.ui-state-hover a,
|
848 |
+
.ui-state-hover a:hover,
|
849 |
+
.ui-state-hover a:link,
|
850 |
+
.ui-state-hover a:visited {
|
851 |
+
color: #212121;
|
852 |
+
text-decoration: none;
|
853 |
+
}
|
854 |
+
.ui-state-active,
|
855 |
+
.ui-widget-content .ui-state-active,
|
856 |
+
.ui-widget-header .ui-state-active {
|
857 |
+
border: 1px solid #aaaaaa;
|
858 |
+
background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
|
859 |
+
font-weight: normal;
|
860 |
+
color: #212121;
|
861 |
+
}
|
862 |
+
.ui-state-active a,
|
863 |
+
.ui-state-active a:link,
|
864 |
+
.ui-state-active a:visited {
|
865 |
+
color: #212121;
|
866 |
+
text-decoration: none;
|
867 |
+
}
|
868 |
+
|
869 |
+
/* Interaction Cues
|
870 |
+
----------------------------------*/
|
871 |
+
.ui-state-highlight,
|
872 |
+
.ui-widget-content .ui-state-highlight,
|
873 |
+
.ui-widget-header .ui-state-highlight {
|
874 |
+
border: 1px solid #fcefa1;
|
875 |
+
background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
|
876 |
+
color: #363636;
|
877 |
+
}
|
878 |
+
.ui-state-highlight a,
|
879 |
+
.ui-widget-content .ui-state-highlight a,
|
880 |
+
.ui-widget-header .ui-state-highlight a {
|
881 |
+
color: #363636;
|
882 |
+
}
|
883 |
+
.ui-state-error,
|
884 |
+
.ui-widget-content .ui-state-error,
|
885 |
+
.ui-widget-header .ui-state-error {
|
886 |
+
border: 1px solid #cd0a0a;
|
887 |
+
background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
|
888 |
+
color: #cd0a0a;
|
889 |
+
}
|
890 |
+
.ui-state-error a,
|
891 |
+
.ui-widget-content .ui-state-error a,
|
892 |
+
.ui-widget-header .ui-state-error a {
|
893 |
+
color: #cd0a0a;
|
894 |
+
}
|
895 |
+
.ui-state-error-text,
|
896 |
+
.ui-widget-content .ui-state-error-text,
|
897 |
+
.ui-widget-header .ui-state-error-text {
|
898 |
+
color: #cd0a0a;
|
899 |
+
}
|
900 |
+
.ui-priority-primary,
|
901 |
+
.ui-widget-content .ui-priority-primary,
|
902 |
+
.ui-widget-header .ui-priority-primary {
|
903 |
+
font-weight: bold;
|
904 |
+
}
|
905 |
+
.ui-priority-secondary,
|
906 |
+
.ui-widget-content .ui-priority-secondary,
|
907 |
+
.ui-widget-header .ui-priority-secondary {
|
908 |
+
opacity: .7;
|
909 |
+
filter:Alpha(Opacity=70);
|
910 |
+
font-weight: normal;
|
911 |
+
}
|
912 |
+
.ui-state-disabled,
|
913 |
+
.ui-widget-content .ui-state-disabled,
|
914 |
+
.ui-widget-header .ui-state-disabled {
|
915 |
+
opacity: .35;
|
916 |
+
filter:Alpha(Opacity=35);
|
917 |
+
background-image: none;
|
918 |
+
}
|
919 |
+
.ui-state-disabled .ui-icon {
|
920 |
+
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
921 |
+
}
|
922 |
+
|
923 |
+
/* Icons
|
924 |
+
----------------------------------*/
|
925 |
+
|
926 |
+
/* states and images */
|
927 |
+
.ui-icon {
|
928 |
+
width: 16px;
|
929 |
+
height: 16px;
|
930 |
+
}
|
931 |
+
.ui-icon,
|
932 |
+
.ui-widget-content .ui-icon {
|
933 |
+
background-image: url(images/ui-icons_222222_256x240.png);
|
934 |
+
}
|
935 |
+
.ui-widget-header .ui-icon {
|
936 |
+
background-image: url(images/ui-icons_222222_256x240.png);
|
937 |
+
}
|
938 |
+
.ui-state-default .ui-icon {
|
939 |
+
background-image: url(images/ui-icons_888888_256x240.png);
|
940 |
+
}
|
941 |
+
.ui-state-hover .ui-icon,
|
942 |
+
.ui-state-focus .ui-icon {
|
943 |
+
background-image: url(images/ui-icons_454545_256x240.png);
|
944 |
+
}
|
945 |
+
.ui-state-active .ui-icon {
|
946 |
+
background-image: url(images/ui-icons_454545_256x240.png);
|
947 |
+
}
|
948 |
+
.ui-state-highlight .ui-icon {
|
949 |
+
background-image: url(images/ui-icons_2e83ff_256x240.png);
|
950 |
+
}
|
951 |
+
.ui-state-error .ui-icon,
|
952 |
+
.ui-state-error-text .ui-icon {
|
953 |
+
background-image: url(images/ui-icons_cd0a0a_256x240.png);
|
954 |
+
}
|
955 |
+
|
956 |
+
/* positioning */
|
957 |
+
.ui-icon-blank { background-position: 16px 16px; }
|
958 |
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
959 |
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
960 |
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
961 |
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
962 |
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
963 |
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
964 |
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
965 |
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
966 |
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
967 |
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
968 |
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
969 |
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
970 |
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
971 |
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
972 |
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
973 |
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
974 |
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
975 |
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
976 |
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
977 |
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
978 |
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
979 |
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
980 |
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
981 |
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
982 |
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
983 |
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
984 |
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
985 |
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
986 |
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
987 |
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
988 |
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
989 |
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
990 |
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
991 |
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
992 |
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
993 |
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
994 |
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
995 |
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
996 |
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
997 |
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
998 |
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
999 |
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
1000 |
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
1001 |
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
1002 |
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
1003 |
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
1004 |
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
1005 |
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
1006 |
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
1007 |
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
1008 |
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
1009 |
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
1010 |
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
1011 |
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
1012 |
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
1013 |
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
1014 |
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
1015 |
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
1016 |
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
1017 |
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
1018 |
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
1019 |
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
1020 |
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
1021 |
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
1022 |
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
1023 |
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
1024 |
+
.ui-icon-extlink { background-position: -32px -80px; }
|
1025 |
+
.ui-icon-newwin { background-position: -48px -80px; }
|
1026 |
+
.ui-icon-refresh { background-position: -64px -80px; }
|
1027 |
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
1028 |
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
1029 |
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
1030 |
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
1031 |
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
1032 |
+
.ui-icon-document { background-position: -32px -96px; }
|
1033 |
+
.ui-icon-document-b { background-position: -48px -96px; }
|
1034 |
+
.ui-icon-note { background-position: -64px -96px; }
|
1035 |
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
1036 |
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
1037 |
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
1038 |
+
.ui-icon-comment { background-position: -128px -96px; }
|
1039 |
+
.ui-icon-person { background-position: -144px -96px; }
|
1040 |
+
.ui-icon-print { background-position: -160px -96px; }
|
1041 |
+
.ui-icon-trash { background-position: -176px -96px; }
|
1042 |
+
.ui-icon-locked { background-position: -192px -96px; }
|
1043 |
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
1044 |
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
1045 |
+
.ui-icon-tag { background-position: -240px -96px; }
|
1046 |
+
.ui-icon-home { background-position: 0 -112px; }
|
1047 |
+
.ui-icon-flag { background-position: -16px -112px; }
|
1048 |
+
.ui-icon-calendar { background-position: -32px -112px; }
|
1049 |
+
.ui-icon-cart { background-position: -48px -112px; }
|
1050 |
+
.ui-icon-pencil { background-position: -64px -112px; }
|
1051 |
+
.ui-icon-clock { background-position: -80px -112px; }
|
1052 |
+
.ui-icon-disk { background-position: -96px -112px; }
|
1053 |
+
.ui-icon-calculator { background-position: -112px -112px; }
|
1054 |
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
1055 |
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
1056 |
+
.ui-icon-search { background-position: -160px -112px; }
|
1057 |
+
.ui-icon-wrench { background-position: -176px -112px; }
|
1058 |
+
.ui-icon-gear { background-position: -192px -112px; }
|
1059 |
+
.ui-icon-heart { background-position: -208px -112px; }
|
1060 |
+
.ui-icon-star { background-position: -224px -112px; }
|
1061 |
+
.ui-icon-link { background-position: -240px -112px; }
|
1062 |
+
.ui-icon-cancel { background-position: 0 -128px; }
|
1063 |
+
.ui-icon-plus { background-position: -16px -128px; }
|
1064 |
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
1065 |
+
.ui-icon-minus { background-position: -48px -128px; }
|
1066 |
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
1067 |
+
.ui-icon-close { background-position: -80px -128px; }
|
1068 |
+
.ui-icon-closethick { background-position: -96px -128px; }
|
1069 |
+
.ui-icon-key { background-position: -112px -128px; }
|
1070 |
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
1071 |
+
.ui-icon-scissors { background-position: -144px -128px; }
|
1072 |
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
1073 |
+
.ui-icon-copy { background-position: -176px -128px; }
|
1074 |
+
.ui-icon-contact { background-position: -192px -128px; }
|
1075 |
+
.ui-icon-image { background-position: -208px -128px; }
|
1076 |
+
.ui-icon-video { background-position: -224px -128px; }
|
1077 |
+
.ui-icon-script { background-position: -240px -128px; }
|
1078 |
+
.ui-icon-alert { background-position: 0 -144px; }
|
1079 |
+
.ui-icon-info { background-position: -16px -144px; }
|
1080 |
+
.ui-icon-notice { background-position: -32px -144px; }
|
1081 |
+
.ui-icon-help { background-position: -48px -144px; }
|
1082 |
+
.ui-icon-check { background-position: -64px -144px; }
|
1083 |
+
.ui-icon-bullet { background-position: -80px -144px; }
|
1084 |
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
1085 |
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
1086 |
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
1087 |
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
1088 |
+
.ui-icon-play { background-position: 0 -160px; }
|
1089 |
+
.ui-icon-pause { background-position: -16px -160px; }
|
1090 |
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
1091 |
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
1092 |
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
1093 |
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
1094 |
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
1095 |
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
1096 |
+
.ui-icon-stop { background-position: -96px -160px; }
|
1097 |
+
.ui-icon-eject { background-position: -112px -160px; }
|
1098 |
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
1099 |
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
1100 |
+
.ui-icon-power { background-position: 0 -176px; }
|
1101 |
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
1102 |
+
.ui-icon-signal { background-position: -32px -176px; }
|
1103 |
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
1104 |
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
1105 |
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
1106 |
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
1107 |
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
1108 |
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
1109 |
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
1110 |
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
1111 |
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
1112 |
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
1113 |
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
1114 |
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
1115 |
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
1116 |
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
1117 |
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
1118 |
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
1119 |
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
1120 |
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
1121 |
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
1122 |
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
1123 |
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
1124 |
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
1125 |
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
1126 |
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
1127 |
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
1128 |
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
1129 |
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
1130 |
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
1131 |
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
1132 |
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
1133 |
+
|
1134 |
+
|
1135 |
+
/* Misc visuals
|
1136 |
+
----------------------------------*/
|
1137 |
+
|
1138 |
+
/* Corner radius */
|
1139 |
+
.ui-corner-all,
|
1140 |
+
.ui-corner-top,
|
1141 |
+
.ui-corner-left,
|
1142 |
+
.ui-corner-tl {
|
1143 |
+
border-top-left-radius: 4px;
|
1144 |
+
}
|
1145 |
+
.ui-corner-all,
|
1146 |
+
.ui-corner-top,
|
1147 |
+
.ui-corner-right,
|
1148 |
+
.ui-corner-tr {
|
1149 |
+
border-top-right-radius: 4px;
|
1150 |
+
}
|
1151 |
+
.ui-corner-all,
|
1152 |
+
.ui-corner-bottom,
|
1153 |
+
.ui-corner-left,
|
1154 |
+
.ui-corner-bl {
|
1155 |
+
border-bottom-left-radius: 4px;
|
1156 |
+
}
|
1157 |
+
.ui-corner-all,
|
1158 |
+
.ui-corner-bottom,
|
1159 |
+
.ui-corner-right,
|
1160 |
+
.ui-corner-br {
|
1161 |
+
border-bottom-right-radius: 4px;
|
1162 |
+
}
|
1163 |
+
|
1164 |
+
/* Overlays */
|
1165 |
+
.ui-widget-overlay {
|
1166 |
+
background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
1167 |
+
opacity: .3;
|
1168 |
+
filter: Alpha(Opacity=30);
|
1169 |
+
}
|
1170 |
+
.ui-widget-shadow {
|
1171 |
+
margin: -8px 0 0 -8px;
|
1172 |
+
padding: 8px;
|
1173 |
+
background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
1174 |
+
opacity: .3;
|
1175 |
+
filter: Alpha(Opacity=30);
|
1176 |
+
border-radius: 8px;
|
1177 |
+
}
|
includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! jQuery UI - v1.10.3 - 2013-05-03
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.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 2013 jQuery Foundation and other contributors Licensed MIT */.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-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.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-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.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:700;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;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;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-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}.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(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Verdana,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:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;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 #999;background:#dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.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_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.ui-state-default .ui-icon{background-image:url(images/ui-icons_888888_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(images/ui-icons_454545_256x240.png)}.ui-state-active .ui-icon{background-image:url(images/ui-icons_454545_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_2e83ff_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cd0a0a_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:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
|
includes/js/jquery-ui/themes/smoothness/jquery.ui.theme.css
ADDED
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* jQuery UI CSS Framework 1.10.3
|
3 |
+
* http://jqueryui.com
|
4 |
+
*
|
5 |
+
* Copyright 2013 jQuery Foundation and other contributors
|
6 |
+
* Released under the MIT license.
|
7 |
+
* http://jquery.org/license
|
8 |
+
*
|
9 |
+
* http://docs.jquery.com/UI/Theming/API
|
10 |
+
*
|
11 |
+
* 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
|
12 |
+
*/
|
13 |
+
|
14 |
+
|
15 |
+
/* Component containers
|
16 |
+
----------------------------------*/
|
17 |
+
.ui-widget {
|
18 |
+
font-family: Verdana,Arial,sans-serif;
|
19 |
+
font-size: 1.1em;
|
20 |
+
}
|
21 |
+
.ui-widget .ui-widget {
|
22 |
+
font-size: 1em;
|
23 |
+
}
|
24 |
+
.ui-widget input,
|
25 |
+
.ui-widget select,
|
26 |
+
.ui-widget textarea,
|
27 |
+
.ui-widget button {
|
28 |
+
font-family: Verdana,Arial,sans-serif;
|
29 |
+
font-size: 1em;
|
30 |
+
}
|
31 |
+
.ui-widget-content {
|
32 |
+
border: 1px solid #aaaaaa;
|
33 |
+
background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
|
34 |
+
color: #222222;
|
35 |
+
}
|
36 |
+
.ui-widget-content a {
|
37 |
+
color: #222222;
|
38 |
+
}
|
39 |
+
.ui-widget-header {
|
40 |
+
border: 1px solid #aaaaaa;
|
41 |
+
background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
|
42 |
+
color: #222222;
|
43 |
+
font-weight: bold;
|
44 |
+
}
|
45 |
+
.ui-widget-header a {
|
46 |
+
color: #222222;
|
47 |
+
}
|
48 |
+
|
49 |
+
/* Interaction states
|
50 |
+
----------------------------------*/
|
51 |
+
.ui-state-default,
|
52 |
+
.ui-widget-content .ui-state-default,
|
53 |
+
.ui-widget-header .ui-state-default {
|
54 |
+
border: 1px solid #d3d3d3;
|
55 |
+
background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
|
56 |
+
font-weight: normal;
|
57 |
+
color: #555555;
|
58 |
+
}
|
59 |
+
.ui-state-default a,
|
60 |
+
.ui-state-default a:link,
|
61 |
+
.ui-state-default a:visited {
|
62 |
+
color: #555555;
|
63 |
+
text-decoration: none;
|
64 |
+
}
|
65 |
+
.ui-state-hover,
|
66 |
+
.ui-widget-content .ui-state-hover,
|
67 |
+
.ui-widget-header .ui-state-hover,
|
68 |
+
.ui-state-focus,
|
69 |
+
.ui-widget-content .ui-state-focus,
|
70 |
+
.ui-widget-header .ui-state-focus {
|
71 |
+
border: 1px solid #999999;
|
72 |
+
background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
|
73 |
+
font-weight: normal;
|
74 |
+
color: #212121;
|
75 |
+
}
|
76 |
+
.ui-state-hover a,
|
77 |
+
.ui-state-hover a:hover,
|
78 |
+
.ui-state-hover a:link,
|
79 |
+
.ui-state-hover a:visited {
|
80 |
+
color: #212121;
|
81 |
+
text-decoration: none;
|
82 |
+
}
|
83 |
+
.ui-state-active,
|
84 |
+
.ui-widget-content .ui-state-active,
|
85 |
+
.ui-widget-header .ui-state-active {
|
86 |
+
border: 1px solid #aaaaaa;
|
87 |
+
background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
|
88 |
+
font-weight: normal;
|
89 |
+
color: #212121;
|
90 |
+
}
|
91 |
+
.ui-state-active a,
|
92 |
+
.ui-state-active a:link,
|
93 |
+
.ui-state-active a:visited {
|
94 |
+
color: #212121;
|
95 |
+
text-decoration: none;
|
96 |
+
}
|
97 |
+
|
98 |
+
/* Interaction Cues
|
99 |
+
----------------------------------*/
|
100 |
+
.ui-state-highlight,
|
101 |
+
.ui-widget-content .ui-state-highlight,
|
102 |
+
.ui-widget-header .ui-state-highlight {
|
103 |
+
border: 1px solid #fcefa1;
|
104 |
+
background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
|
105 |
+
color: #363636;
|
106 |
+
}
|
107 |
+
.ui-state-highlight a,
|
108 |
+
.ui-widget-content .ui-state-highlight a,
|
109 |
+
.ui-widget-header .ui-state-highlight a {
|
110 |
+
color: #363636;
|
111 |
+
}
|
112 |
+
.ui-state-error,
|
113 |
+
.ui-widget-content .ui-state-error,
|
114 |
+
.ui-widget-header .ui-state-error {
|
115 |
+
border: 1px solid #cd0a0a;
|
116 |
+
background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
|
117 |
+
color: #cd0a0a;
|
118 |
+
}
|
119 |
+
.ui-state-error a,
|
120 |
+
.ui-widget-content .ui-state-error a,
|
121 |
+
.ui-widget-header .ui-state-error a {
|
122 |
+
color: #cd0a0a;
|
123 |
+
}
|
124 |
+
.ui-state-error-text,
|
125 |
+
.ui-widget-content .ui-state-error-text,
|
126 |
+
.ui-widget-header .ui-state-error-text {
|
127 |
+
color: #cd0a0a;
|
128 |
+
}
|
129 |
+
.ui-priority-primary,
|
130 |
+
.ui-widget-content .ui-priority-primary,
|
131 |
+
.ui-widget-header .ui-priority-primary {
|
132 |
+
font-weight: bold;
|
133 |
+
}
|
134 |
+
.ui-priority-secondary,
|
135 |
+
.ui-widget-content .ui-priority-secondary,
|
136 |
+
.ui-widget-header .ui-priority-secondary {
|
137 |
+
opacity: .7;
|
138 |
+
filter:Alpha(Opacity=70);
|
139 |
+
font-weight: normal;
|
140 |
+
}
|
141 |
+
.ui-state-disabled,
|
142 |
+
.ui-widget-content .ui-state-disabled,
|
143 |
+
.ui-widget-header .ui-state-disabled {
|
144 |
+
opacity: .35;
|
145 |
+
filter:Alpha(Opacity=35);
|
146 |
+
background-image: none;
|
147 |
+
}
|
148 |
+
.ui-state-disabled .ui-icon {
|
149 |
+
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
150 |
+
}
|
151 |
+
|
152 |
+
/* Icons
|
153 |
+
----------------------------------*/
|
154 |
+
|
155 |
+
/* states and images */
|
156 |
+
.ui-icon {
|
157 |
+
width: 16px;
|
158 |
+
height: 16px;
|
159 |
+
}
|
160 |
+
.ui-icon,
|
161 |
+
.ui-widget-content .ui-icon {
|
162 |
+
background-image: url(images/ui-icons_222222_256x240.png);
|
163 |
+
}
|
164 |
+
.ui-widget-header .ui-icon {
|
165 |
+
background-image: url(images/ui-icons_222222_256x240.png);
|
166 |
+
}
|
167 |
+
.ui-state-default .ui-icon {
|
168 |
+
background-image: url(images/ui-icons_888888_256x240.png);
|
169 |
+
}
|
170 |
+
.ui-state-hover .ui-icon,
|
171 |
+
.ui-state-focus .ui-icon {
|
172 |
+
background-image: url(images/ui-icons_454545_256x240.png);
|
173 |
+
}
|
174 |
+
.ui-state-active .ui-icon {
|
175 |
+
background-image: url(images/ui-icons_454545_256x240.png);
|
176 |
+
}
|
177 |
+
.ui-state-highlight .ui-icon {
|
178 |
+
background-image: url(images/ui-icons_2e83ff_256x240.png);
|
179 |
+
}
|
180 |
+
.ui-state-error .ui-icon,
|
181 |
+
.ui-state-error-text .ui-icon {
|
182 |
+
background-image: url(images/ui-icons_cd0a0a_256x240.png);
|
183 |
+
}
|
184 |
+
|
185 |
+
/* positioning */
|
186 |
+
.ui-icon-blank { background-position: 16px 16px; }
|
187 |
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
188 |
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
189 |
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
190 |
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
191 |
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
192 |
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
193 |
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
194 |
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
195 |
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
196 |
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
197 |
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
198 |
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
199 |
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
200 |
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
201 |
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
202 |
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
203 |
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
204 |
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
205 |
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
206 |
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
207 |
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
208 |
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
209 |
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
210 |
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
211 |
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
212 |
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
213 |
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
214 |
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
215 |
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
216 |
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
217 |
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
218 |
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
219 |
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
220 |
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
221 |
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
222 |
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
223 |
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
224 |
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
225 |
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
226 |
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
227 |
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
228 |
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
229 |
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
230 |
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
231 |
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
232 |
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
233 |
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
234 |
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
235 |
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
236 |
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
237 |
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
238 |
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
239 |
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
240 |
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
241 |
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
242 |
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
243 |
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
244 |
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
245 |
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
246 |
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
247 |
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
248 |
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
249 |
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
250 |
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
251 |
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
252 |
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
253 |
+
.ui-icon-extlink { background-position: -32px -80px; }
|
254 |
+
.ui-icon-newwin { background-position: -48px -80px; }
|
255 |
+
.ui-icon-refresh { background-position: -64px -80px; }
|
256 |
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
257 |
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
258 |
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
259 |
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
260 |
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
261 |
+
.ui-icon-document { background-position: -32px -96px; }
|
262 |
+
.ui-icon-document-b { background-position: -48px -96px; }
|
263 |
+
.ui-icon-note { background-position: -64px -96px; }
|
264 |
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
265 |
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
266 |
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
267 |
+
.ui-icon-comment { background-position: -128px -96px; }
|
268 |
+
.ui-icon-person { background-position: -144px -96px; }
|
269 |
+
.ui-icon-print { background-position: -160px -96px; }
|
270 |
+
.ui-icon-trash { background-position: -176px -96px; }
|
271 |
+
.ui-icon-locked { background-position: -192px -96px; }
|
272 |
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
273 |
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
274 |
+
.ui-icon-tag { background-position: -240px -96px; }
|
275 |
+
.ui-icon-home { background-position: 0 -112px; }
|
276 |
+
.ui-icon-flag { background-position: -16px -112px; }
|
277 |
+
.ui-icon-calendar { background-position: -32px -112px; }
|
278 |
+
.ui-icon-cart { background-position: -48px -112px; }
|
279 |
+
.ui-icon-pencil { background-position: -64px -112px; }
|
280 |
+
.ui-icon-clock { background-position: -80px -112px; }
|
281 |
+
.ui-icon-disk { background-position: -96px -112px; }
|
282 |
+
.ui-icon-calculator { background-position: -112px -112px; }
|
283 |
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
284 |
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
285 |
+
.ui-icon-search { background-position: -160px -112px; }
|
286 |
+
.ui-icon-wrench { background-position: -176px -112px; }
|
287 |
+
.ui-icon-gear { background-position: -192px -112px; }
|
288 |
+
.ui-icon-heart { background-position: -208px -112px; }
|
289 |
+
.ui-icon-star { background-position: -224px -112px; }
|
290 |
+
.ui-icon-link { background-position: -240px -112px; }
|
291 |
+
.ui-icon-cancel { background-position: 0 -128px; }
|
292 |
+
.ui-icon-plus { background-position: -16px -128px; }
|
293 |
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
294 |
+
.ui-icon-minus { background-position: -48px -128px; }
|
295 |
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
296 |
+
.ui-icon-close { background-position: -80px -128px; }
|
297 |
+
.ui-icon-closethick { background-position: -96px -128px; }
|
298 |
+
.ui-icon-key { background-position: -112px -128px; }
|
299 |
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
300 |
+
.ui-icon-scissors { background-position: -144px -128px; }
|
301 |
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
302 |
+
.ui-icon-copy { background-position: -176px -128px; }
|
303 |
+
.ui-icon-contact { background-position: -192px -128px; }
|
304 |
+
.ui-icon-image { background-position: -208px -128px; }
|
305 |
+
.ui-icon-video { background-position: -224px -128px; }
|
306 |
+
.ui-icon-script { background-position: -240px -128px; }
|
307 |
+
.ui-icon-alert { background-position: 0 -144px; }
|
308 |
+
.ui-icon-info { background-position: -16px -144px; }
|
309 |
+
.ui-icon-notice { background-position: -32px -144px; }
|
310 |
+
.ui-icon-help { background-position: -48px -144px; }
|
311 |
+
.ui-icon-check { background-position: -64px -144px; }
|
312 |
+
.ui-icon-bullet { background-position: -80px -144px; }
|
313 |
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
314 |
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
315 |
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
316 |
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
317 |
+
.ui-icon-play { background-position: 0 -160px; }
|
318 |
+
.ui-icon-pause { background-position: -16px -160px; }
|
319 |
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
320 |
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
321 |
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
322 |
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
323 |
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
324 |
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
325 |
+
.ui-icon-stop { background-position: -96px -160px; }
|
326 |
+
.ui-icon-eject { background-position: -112px -160px; }
|
327 |
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
328 |
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
329 |
+
.ui-icon-power { background-position: 0 -176px; }
|
330 |
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
331 |
+
.ui-icon-signal { background-position: -32px -176px; }
|
332 |
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
333 |
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
334 |
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
335 |
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
336 |
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
337 |
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
338 |
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
339 |
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
340 |
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
341 |
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
342 |
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
343 |
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
344 |
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
345 |
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
346 |
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
347 |
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
348 |
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
349 |
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
350 |
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
351 |
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
352 |
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
353 |
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
354 |
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
355 |
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
356 |
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
357 |
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
358 |
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
359 |
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
360 |
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
361 |
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
362 |
+
|
363 |
+
|
364 |
+
/* Misc visuals
|
365 |
+
----------------------------------*/
|
366 |
+
|
367 |
+
/* Corner radius */
|
368 |
+
.ui-corner-all,
|
369 |
+
.ui-corner-top,
|
370 |
+
.ui-corner-left,
|
371 |
+
.ui-corner-tl {
|
372 |
+
border-top-left-radius: 4px;
|
373 |
+
}
|
374 |
+
.ui-corner-all,
|
375 |
+
.ui-corner-top,
|
376 |
+
.ui-corner-right,
|
377 |
+
.ui-corner-tr {
|
378 |
+
border-top-right-radius: 4px;
|
379 |
+
}
|
380 |
+
.ui-corner-all,
|
381 |
+
.ui-corner-bottom,
|
382 |
+
.ui-corner-left,
|
383 |
+
.ui-corner-bl {
|
384 |
+
border-bottom-left-radius: 4px;
|
385 |
+
}
|
386 |
+
.ui-corner-all,
|
387 |
+
.ui-corner-bottom,
|
388 |
+
.ui-corner-right,
|
389 |
+
.ui-corner-br {
|
390 |
+
border-bottom-right-radius: 4px;
|
391 |
+
}
|
392 |
+
|
393 |
+
/* Overlays */
|
394 |
+
.ui-widget-overlay {
|
395 |
+
background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
396 |
+
opacity: .3;
|
397 |
+
filter: Alpha(Opacity=30);
|
398 |
+
}
|
399 |
+
.ui-widget-shadow {
|
400 |
+
margin: -8px 0 0 -8px;
|
401 |
+
padding: 8px;
|
402 |
+
background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
403 |
+
opacity: .3;
|
404 |
+
filter: Alpha(Opacity=30);
|
405 |
+
border-radius: 8px;
|
406 |
+
}
|
includes/js/jquery.form.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
/*!
|
2 |
* jQuery Form Plugin
|
3 |
-
* version: 3.
|
4 |
* @requires jQuery v1.5 or later
|
5 |
* Copyright (c) 2013 M. Alsup
|
6 |
* Examples and documentation at: http://malsup.com/jquery/form/
|
@@ -89,6 +89,9 @@ $.fn.ajaxSubmit = function(options) {
|
|
89 |
if (typeof options == 'function') {
|
90 |
options = { success: options };
|
91 |
}
|
|
|
|
|
|
|
92 |
|
93 |
method = options.type || this.attr2('method');
|
94 |
action = options.url || this.attr2('action');
|
@@ -103,7 +106,7 @@ $.fn.ajaxSubmit = function(options) {
|
|
103 |
options = $.extend(true, {
|
104 |
url: url,
|
105 |
success: $.ajaxSettings.success,
|
106 |
-
type: method ||
|
107 |
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
|
108 |
}, options);
|
109 |
|
@@ -206,7 +209,7 @@ $.fn.ajaxSubmit = function(options) {
|
|
206 |
|
207 |
// [value] (issue #113), also see comment:
|
208 |
// https://github.com/malsup/form/commit/588306aedba1de01388032d5f42a60159eea9228#commitcomment-2180219
|
209 |
-
var fileInputs = $('input[type=file]:enabled[value
|
210 |
|
211 |
var hasFileInputs = fileInputs.length > 0;
|
212 |
var mp = 'multipart/form-data';
|
@@ -323,6 +326,11 @@ $.fn.ajaxSubmit = function(options) {
|
|
323 |
var form = $form[0], el, i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle;
|
324 |
var deferred = $.Deferred();
|
325 |
|
|
|
|
|
|
|
|
|
|
|
326 |
if (a) {
|
327 |
// ensure that every serialized input is still enabled
|
328 |
for (i=0; i < elements.length; i++) {
|
@@ -1187,4 +1195,4 @@ function log() {
|
|
1187 |
}
|
1188 |
}
|
1189 |
|
1190 |
-
})(jQuery);
|
1 |
/*!
|
2 |
* jQuery Form Plugin
|
3 |
+
* version: 3.39.0-2013.07.31
|
4 |
* @requires jQuery v1.5 or later
|
5 |
* Copyright (c) 2013 M. Alsup
|
6 |
* Examples and documentation at: http://malsup.com/jquery/form/
|
89 |
if (typeof options == 'function') {
|
90 |
options = { success: options };
|
91 |
}
|
92 |
+
else if ( options === undefined ) {
|
93 |
+
options = {};
|
94 |
+
}
|
95 |
|
96 |
method = options.type || this.attr2('method');
|
97 |
action = options.url || this.attr2('action');
|
106 |
options = $.extend(true, {
|
107 |
url: url,
|
108 |
success: $.ajaxSettings.success,
|
109 |
+
type: method || $.ajaxSettings.type,
|
110 |
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
|
111 |
}, options);
|
112 |
|
209 |
|
210 |
// [value] (issue #113), also see comment:
|
211 |
// https://github.com/malsup/form/commit/588306aedba1de01388032d5f42a60159eea9228#commitcomment-2180219
|
212 |
+
var fileInputs = $('input[type=file]:enabled:not([value=""])', this);
|
213 |
|
214 |
var hasFileInputs = fileInputs.length > 0;
|
215 |
var mp = 'multipart/form-data';
|
326 |
var form = $form[0], el, i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle;
|
327 |
var deferred = $.Deferred();
|
328 |
|
329 |
+
// #341
|
330 |
+
deferred.abort = function(status) {
|
331 |
+
xhr.abort(status);
|
332 |
+
};
|
333 |
+
|
334 |
if (a) {
|
335 |
// ensure that every serialized input is still enabled
|
336 |
for (i=0; i < elements.length; i++) {
|
1195 |
}
|
1196 |
}
|
1197 |
|
1198 |
+
})( (typeof(jQuery) != 'undefined') ? jQuery : window.Zepto );
|
includes/js/jquery.form.min.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/*
|
2 |
-
* jQuery Form Plugin;
|
3 |
* http://jquery.malsup.com/form/
|
4 |
* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL
|
5 |
* https://github.com/malsup/form#copyright-and-license
|
6 |
*/
|
7 |
-
;(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(this).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("<input type='file'/>").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;a.length>i;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;o.length>i;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(100*(a/n))),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var l=s.beforeSend;return s.beforeSend=function(e,t){t.data=n,l&&l.call(this,e,t)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(D),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action");w.setAttribute("target",d),u||w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(k)},m.timeout));var o=[];try{if(m.extraData)for(var l in m.extraData)m.extraData.hasOwnProperty(l)&&(e.isPlainObject(m.extraData[l])&&m.extraData[l].hasOwnProperty("name")&&m.extraData[l].hasOwnProperty("value")?o.push(e('<input type="hidden" name="'+m.extraData[l].name+'">').val(m.extraData[l].value).appendTo(w)[0]):o.push(e('<input type="hidden" name="'+l+'">').val(m.extraData[l]).appendTo(w)[0]));m.iframeTarget||(v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1)),setTimeout(t,15);try{w.submit()}catch(c){var p=document.createElement("form").submit;p.apply(w)}}finally{w.setAttribute("action",i),r?w.setAttribute("target",r):f.removeAttr("target"),e(o).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=D),t===k&&x)return x.abort("timeout"),S.reject(x,"timeout"),void 0;if(t==D&&x)return x.abort("server abort"),S.reject(x,"error","server abort"),void 0;if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),setTimeout(s,250),void 0;var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var l=(m.dataType||"").toLowerCase(),c=/(json|script|text)/.test(l);if(c||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(c){var d=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];d?x.responseText=d.textContent?d.textContent:d.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==l&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{L=_(x,l,m)}catch(b){i="parsererror",x.error=r=b||i}}catch(b){a("error caught: ",b),i="error",x.error=r=b||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&300>x.status||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,L,"success",x),S.resolve(x.responseText,"success",x),p&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),p&&e.event.trigger("ajaxError",[x,m,r])),p&&e.event.trigger("ajaxComplete",[x,m]),p&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget||v.remove(),x.responseXML=null},100)}}}var l,c,m,p,d,v,g,x,b,y,T,j,w=f[0],S=e.Deferred();if(r)for(c=0;h.length>c;c++)l=e(h[c]),i?l.prop("disabled",!1):l.removeAttr("disabled");if(m=e.extend(!0,{},e.ajaxSettings,t),m.context=m.context||m,d="jqFormIO"+(new Date).getTime(),m.iframeTarget?(v=e(m.iframeTarget),y=v.attr2("name"),y?d=y:v.attr2("name",d)):(v=e('<iframe name="'+d+'" src="'+m.iframeSrc+'" />'),v.css({position:"absolute",top:"-1000px",left:"-1000px"})),g=v[0],x={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(t){var r="timeout"===t?"timeout":"aborted";a("aborting upload... "+r),this.aborted=1;try{g.contentWindow.document.execCommand&&g.contentWindow.document.execCommand("Stop")}catch(n){}v.attr("src",m.iframeSrc),x.error=r,m.error&&m.error.call(m.context,x,r,t),p&&e.event.trigger("ajaxError",[x,m,r]),m.complete&&m.complete.call(m.context,x,r)}},p=m.global,p&&0===e.active++&&e.event.trigger("ajaxStart"),p&&e.event.trigger("ajaxSend",[x,m]),m.beforeSend&&m.beforeSend.call(m.context,x,m)===!1)return m.global&&e.active--,S.reject(),S;if(x.aborted)return S.reject(),S;b=w.clk,b&&(y=b.name,y&&!b.disabled&&(m.extraData=m.extraData||{},m.extraData[y]=b.value,"image"==b.type&&(m.extraData[y+".x"]=w.clk_x,m.extraData[y+".y"]=w.clk_y)));var k=1,D=2,A=e("meta[name=csrf-token]").attr("content"),E=e("meta[name=csrf-param]").attr("content");E&&A&&(m.extraData=m.extraData||{},m.extraData[E]=A),m.forceSync?o():setTimeout(o,10);var L,M,F,O=50,X=e.parseXML||function(e,t){return window.ActiveXObject?(t=new ActiveXObject("Microsoft.XMLDOM"),t.async="false",t.loadXML(e)):t=(new DOMParser).parseFromString(e,"text/xml"),t&&t.documentElement&&"parsererror"!=t.documentElement.nodeName?t:null},C=e.parseJSON||function(e){return window.eval("("+e+")")},_=function(t,r,a){var n=t.getResponseHeader("content-type")||"",i="xml"===r||!r&&n.indexOf("xml")>=0,o=i?t.responseXML:t.responseText;return i&&"parsererror"===o.documentElement.nodeName&&e.error&&e.error("parsererror"),a&&a.dataFilter&&(o=a.dataFilter(o,r)),"string"==typeof o&&("json"===r||!r&&n.indexOf("json")>=0?o=C(o):("script"===r||!r&&n.indexOf("javascript")>=0)&&e.globalEval(o)),o};return S}if(!this.length)return a("ajaxSubmit: skipping submit process - no element selected"),this;var u,l,c,f=this;"function"==typeof t&&(t={success:t}),u=t.type||this.attr2("method"),l=t.url||this.attr2("action"),c="string"==typeof l?e.trim(l):"",c=c||window.location.href||"",c&&(c=(c.match(/^([^#]+)/)||[])[1]),t=e.extend(!0,{url:c,success:e.ajaxSettings.success,type:u||"GET",iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},t);var m={};if(this.trigger("form-pre-serialize",[this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-pre-serialize trigger"),this;if(t.beforeSerialize&&t.beforeSerialize(this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSerialize callback"),this;var p=t.traditional;void 0===p&&(p=e.ajaxSettings.traditional);var d,h=[],v=this.formToArray(t.semantic,h);if(t.data&&(t.extraData=t.data,d=e.param(t.data,p)),t.beforeSubmit&&t.beforeSubmit(v,this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSubmit callback"),this;if(this.trigger("form-submit-validate",[v,this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-submit-validate trigger"),this;var g=e.param(v,p);d&&(g=g?g+"&"+d:d),"GET"==t.type.toUpperCase()?(t.url+=(t.url.indexOf("?")>=0?"&":"?")+g,t.data=null):t.data=g;var x=[];if(t.resetForm&&x.push(function(){f.resetForm()}),t.clearForm&&x.push(function(){f.clearForm(t.includeHidden)}),!t.dataType&&t.target){var b=t.success||function(){};x.push(function(r){var a=t.replaceTarget?"replaceWith":"html";e(t.target)[a](r).each(b,arguments)})}else t.success&&x.push(t.success);if(t.success=function(e,r,a){for(var n=t.context||this,i=0,o=x.length;o>i;i++)x[i].apply(n,[e,r,a||f,f])},t.error){var y=t.error;t.error=function(e,r,a){var n=t.context||this;y.apply(n,[e,r,a,f])}}if(t.complete){var T=t.complete;t.complete=function(e,r){var a=t.context||this;T.apply(a,[e,r,f])}}var j=e('input[type=file]:enabled[value!=""]',this),w=j.length>0,S="multipart/form-data",k=f.attr("enctype")==S||f.attr("encoding")==S,D=n.fileapi&&n.formdata;a("fileAPI :"+D);var A,E=(w||k)&&!D;t.iframe!==!1&&(t.iframe||E)?t.closeKeepAlive?e.get(t.closeKeepAlive,function(){A=s(v)}):A=s(v):A=(w||k)&&D?o(v):e.ajax(t),f.removeData("jqxhr").data("jqxhr",A);for(var L=0;h.length>L;L++)h[L]=null;return this.trigger("form-submit-notify",[this,t]),this},e.fn.ajaxForm=function(n){if(n=n||{},n.delegation=n.delegation&&e.isFunction(e.fn.on),!n.delegation&&0===this.length){var i={s:this.selector,c:this.context};return!e.isReady&&i.s?(a("DOM not ready, queuing ajaxForm"),e(function(){e(i.s,i.c).ajaxForm(n)}),this):(a("terminating; zero elements found by selector"+(e.isReady?"":" (DOM not ready)")),this)}return n.delegation?(e(document).off("submit.form-plugin",this.selector,t).off("click.form-plugin",this.selector,r).on("submit.form-plugin",this.selector,n,t).on("click.form-plugin",this.selector,n,r),this):this.ajaxFormUnbind().bind("submit.form-plugin",n,t).bind("click.form-plugin",n,r)},e.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")},e.fn.formToArray=function(t,r){var a=[];if(0===this.length)return a;var i=this[0],o=t?i.getElementsByTagName("*"):i.elements;if(!o)return a;var s,u,l,c,f,m,p;for(s=0,m=o.length;m>s;s++)if(f=o[s],l=f.name,l&&!f.disabled)if(t&&i.clk&&"image"==f.type)i.clk==f&&(a.push({name:l,value:e(f).val(),type:f.type}),a.push({name:l+".x",value:i.clk_x},{name:l+".y",value:i.clk_y}));else if(c=e.fieldValue(f,!0),c&&c.constructor==Array)for(r&&r.push(f),u=0,p=c.length;p>u;u++)a.push({name:l,value:c[u]});else if(n.fileapi&&"file"==f.type){r&&r.push(f);var d=f.files;if(d.length)for(u=0;d.length>u;u++)a.push({name:l,value:d[u],type:f.type});else a.push({name:l,value:"",type:f.type})}else null!==c&&c!==void 0&&(r&&r.push(f),a.push({name:l,value:c,type:f.type,required:f.required}));if(!t&&i.clk){var h=e(i.clk),v=h[0];l=v.name,l&&!v.disabled&&"image"==v.type&&(a.push({name:l,value:h.val()}),a.push({name:l+".x",value:i.clk_x},{name:l+".y",value:i.clk_y}))}return a},e.fn.formSerialize=function(t){return e.param(this.formToArray(t))},e.fn.fieldSerialize=function(t){var r=[];return this.each(function(){var a=this.name;if(a){var n=e.fieldValue(this,t);if(n&&n.constructor==Array)for(var i=0,o=n.length;o>i;i++)r.push({name:a,value:n[i]});else null!==n&&n!==void 0&&r.push({name:this.name,value:n})}}),e.param(r)},e.fn.fieldValue=function(t){for(var r=[],a=0,n=this.length;n>a;a++){var i=this[a],o=e.fieldValue(i,t);null===o||void 0===o||o.constructor==Array&&!o.length||(o.constructor==Array?e.merge(r,o):r.push(o))}return r},e.fieldValue=function(t,r){var a=t.name,n=t.type,i=t.tagName.toLowerCase();if(void 0===r&&(r=!0),r&&(!a||t.disabled||"reset"==n||"button"==n||("checkbox"==n||"radio"==n)&&!t.checked||("submit"==n||"image"==n)&&t.form&&t.form.clk!=t||"select"==i&&-1==t.selectedIndex))return null;if("select"==i){var o=t.selectedIndex;if(0>o)return null;for(var s=[],u=t.options,l="select-one"==n,c=l?o+1:u.length,f=l?o:0;c>f;f++){var m=u[f];if(m.selected){var p=m.value;if(p||(p=m.attributes&&m.attributes.value&&!m.attributes.value.specified?m.text:m.value),l)return p;s.push(p)}}return s}return e(t).val()},e.fn.clearForm=function(t){return this.each(function(){e("input,select,textarea",this).clearFields(t)})},e.fn.clearFields=e.fn.clearInputs=function(t){var r=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var a=this.type,n=this.tagName.toLowerCase();r.test(a)||"textarea"==n?this.value="":"checkbox"==a||"radio"==a?this.checked=!1:"select"==n?this.selectedIndex=-1:"file"==a?/MSIE/.test(navigator.userAgent)?e(this).replaceWith(e(this).clone(!0)):e(this).val(""):t&&(t===!0&&/hidden/.test(a)||"string"==typeof t&&e(this).is(t))&&(this.value="")})},e.fn.resetForm=function(){return this.each(function(){("function"==typeof this.reset||"object"==typeof this.reset&&!this.reset.nodeType)&&this.reset()})},e.fn.enable=function(e){return void 0===e&&(e=!0),this.each(function(){this.disabled=!e})},e.fn.selected=function(t){return void 0===t&&(t=!0),this.each(function(){var r=this.type;if("checkbox"==r||"radio"==r)this.checked=t;else if("option"==this.tagName.toLowerCase()){var a=e(this).parent("select");t&&a[0]&&"select-one"==a[0].type&&a.find("option").selected(!1),this.selected=t}})},e.fn.ajaxSubmit.debug=!1})(jQuery);
|
1 |
/*
|
2 |
+
* jQuery Form Plugin; v20130731
|
3 |
* http://jquery.malsup.com/form/
|
4 |
* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL
|
5 |
* https://github.com/malsup/form#copyright-and-license
|
6 |
*/
|
7 |
+
;(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(this).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("<input type='file'/>").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;a.length>i;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;o.length>i;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(100*(a/n))),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var l=s.beforeSend;return s.beforeSend=function(e,t){t.data=n,l&&l.call(this,e,t)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(D),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action");w.setAttribute("target",d),u||w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(k)},m.timeout));var o=[];try{if(m.extraData)for(var l in m.extraData)m.extraData.hasOwnProperty(l)&&(e.isPlainObject(m.extraData[l])&&m.extraData[l].hasOwnProperty("name")&&m.extraData[l].hasOwnProperty("value")?o.push(e('<input type="hidden" name="'+m.extraData[l].name+'">').val(m.extraData[l].value).appendTo(w)[0]):o.push(e('<input type="hidden" name="'+l+'">').val(m.extraData[l]).appendTo(w)[0]));m.iframeTarget||(v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1)),setTimeout(t,15);try{w.submit()}catch(c){var p=document.createElement("form").submit;p.apply(w)}}finally{w.setAttribute("action",i),r?w.setAttribute("target",r):f.removeAttr("target"),e(o).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=D),t===k&&x)return x.abort("timeout"),S.reject(x,"timeout"),void 0;if(t==D&&x)return x.abort("server abort"),S.reject(x,"error","server abort"),void 0;if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),setTimeout(s,250),void 0;var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var l=(m.dataType||"").toLowerCase(),c=/(json|script|text)/.test(l);if(c||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(c){var d=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];d?x.responseText=d.textContent?d.textContent:d.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==l&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{E=_(x,l,m)}catch(b){i="parsererror",x.error=r=b||i}}catch(b){a("error caught: ",b),i="error",x.error=r=b||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&300>x.status||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,E,"success",x),S.resolve(x.responseText,"success",x),p&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),p&&e.event.trigger("ajaxError",[x,m,r])),p&&e.event.trigger("ajaxComplete",[x,m]),p&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget||v.remove(),x.responseXML=null},100)}}}var l,c,m,p,d,v,g,x,b,y,T,j,w=f[0],S=e.Deferred();if(S.abort=function(e){x.abort(e)},r)for(c=0;h.length>c;c++)l=e(h[c]),i?l.prop("disabled",!1):l.removeAttr("disabled");if(m=e.extend(!0,{},e.ajaxSettings,t),m.context=m.context||m,d="jqFormIO"+(new Date).getTime(),m.iframeTarget?(v=e(m.iframeTarget),y=v.attr2("name"),y?d=y:v.attr2("name",d)):(v=e('<iframe name="'+d+'" src="'+m.iframeSrc+'" />'),v.css({position:"absolute",top:"-1000px",left:"-1000px"})),g=v[0],x={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(t){var r="timeout"===t?"timeout":"aborted";a("aborting upload... "+r),this.aborted=1;try{g.contentWindow.document.execCommand&&g.contentWindow.document.execCommand("Stop")}catch(n){}v.attr("src",m.iframeSrc),x.error=r,m.error&&m.error.call(m.context,x,r,t),p&&e.event.trigger("ajaxError",[x,m,r]),m.complete&&m.complete.call(m.context,x,r)}},p=m.global,p&&0===e.active++&&e.event.trigger("ajaxStart"),p&&e.event.trigger("ajaxSend",[x,m]),m.beforeSend&&m.beforeSend.call(m.context,x,m)===!1)return m.global&&e.active--,S.reject(),S;if(x.aborted)return S.reject(),S;b=w.clk,b&&(y=b.name,y&&!b.disabled&&(m.extraData=m.extraData||{},m.extraData[y]=b.value,"image"==b.type&&(m.extraData[y+".x"]=w.clk_x,m.extraData[y+".y"]=w.clk_y)));var k=1,D=2,A=e("meta[name=csrf-token]").attr("content"),L=e("meta[name=csrf-param]").attr("content");L&&A&&(m.extraData=m.extraData||{},m.extraData[L]=A),m.forceSync?o():setTimeout(o,10);var E,M,F,O=50,X=e.parseXML||function(e,t){return window.ActiveXObject?(t=new ActiveXObject("Microsoft.XMLDOM"),t.async="false",t.loadXML(e)):t=(new DOMParser).parseFromString(e,"text/xml"),t&&t.documentElement&&"parsererror"!=t.documentElement.nodeName?t:null},C=e.parseJSON||function(e){return window.eval("("+e+")")},_=function(t,r,a){var n=t.getResponseHeader("content-type")||"",i="xml"===r||!r&&n.indexOf("xml")>=0,o=i?t.responseXML:t.responseText;return i&&"parsererror"===o.documentElement.nodeName&&e.error&&e.error("parsererror"),a&&a.dataFilter&&(o=a.dataFilter(o,r)),"string"==typeof o&&("json"===r||!r&&n.indexOf("json")>=0?o=C(o):("script"===r||!r&&n.indexOf("javascript")>=0)&&e.globalEval(o)),o};return S}if(!this.length)return a("ajaxSubmit: skipping submit process - no element selected"),this;var u,l,c,f=this;"function"==typeof t?t={success:t}:void 0===t&&(t={}),u=t.type||this.attr2("method"),l=t.url||this.attr2("action"),c="string"==typeof l?e.trim(l):"",c=c||window.location.href||"",c&&(c=(c.match(/^([^#]+)/)||[])[1]),t=e.extend(!0,{url:c,success:e.ajaxSettings.success,type:u||e.ajaxSettings.type,iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},t);var m={};if(this.trigger("form-pre-serialize",[this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-pre-serialize trigger"),this;if(t.beforeSerialize&&t.beforeSerialize(this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSerialize callback"),this;var p=t.traditional;void 0===p&&(p=e.ajaxSettings.traditional);var d,h=[],v=this.formToArray(t.semantic,h);if(t.data&&(t.extraData=t.data,d=e.param(t.data,p)),t.beforeSubmit&&t.beforeSubmit(v,this,t)===!1)return a("ajaxSubmit: submit aborted via beforeSubmit callback"),this;if(this.trigger("form-submit-validate",[v,this,t,m]),m.veto)return a("ajaxSubmit: submit vetoed via form-submit-validate trigger"),this;var g=e.param(v,p);d&&(g=g?g+"&"+d:d),"GET"==t.type.toUpperCase()?(t.url+=(t.url.indexOf("?")>=0?"&":"?")+g,t.data=null):t.data=g;var x=[];if(t.resetForm&&x.push(function(){f.resetForm()}),t.clearForm&&x.push(function(){f.clearForm(t.includeHidden)}),!t.dataType&&t.target){var b=t.success||function(){};x.push(function(r){var a=t.replaceTarget?"replaceWith":"html";e(t.target)[a](r).each(b,arguments)})}else t.success&&x.push(t.success);if(t.success=function(e,r,a){for(var n=t.context||this,i=0,o=x.length;o>i;i++)x[i].apply(n,[e,r,a||f,f])},t.error){var y=t.error;t.error=function(e,r,a){var n=t.context||this;y.apply(n,[e,r,a,f])}}if(t.complete){var T=t.complete;t.complete=function(e,r){var a=t.context||this;T.apply(a,[e,r,f])}}var j=e('input[type=file]:enabled:not([value=""])',this),w=j.length>0,S="multipart/form-data",k=f.attr("enctype")==S||f.attr("encoding")==S,D=n.fileapi&&n.formdata;a("fileAPI :"+D);var A,L=(w||k)&&!D;t.iframe!==!1&&(t.iframe||L)?t.closeKeepAlive?e.get(t.closeKeepAlive,function(){A=s(v)}):A=s(v):A=(w||k)&&D?o(v):e.ajax(t),f.removeData("jqxhr").data("jqxhr",A);for(var E=0;h.length>E;E++)h[E]=null;return this.trigger("form-submit-notify",[this,t]),this},e.fn.ajaxForm=function(n){if(n=n||{},n.delegation=n.delegation&&e.isFunction(e.fn.on),!n.delegation&&0===this.length){var i={s:this.selector,c:this.context};return!e.isReady&&i.s?(a("DOM not ready, queuing ajaxForm"),e(function(){e(i.s,i.c).ajaxForm(n)}),this):(a("terminating; zero elements found by selector"+(e.isReady?"":" (DOM not ready)")),this)}return n.delegation?(e(document).off("submit.form-plugin",this.selector,t).off("click.form-plugin",this.selector,r).on("submit.form-plugin",this.selector,n,t).on("click.form-plugin",this.selector,n,r),this):this.ajaxFormUnbind().bind("submit.form-plugin",n,t).bind("click.form-plugin",n,r)},e.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")},e.fn.formToArray=function(t,r){var a=[];if(0===this.length)return a;var i=this[0],o=t?i.getElementsByTagName("*"):i.elements;if(!o)return a;var s,u,l,c,f,m,p;for(s=0,m=o.length;m>s;s++)if(f=o[s],l=f.name,l&&!f.disabled)if(t&&i.clk&&"image"==f.type)i.clk==f&&(a.push({name:l,value:e(f).val(),type:f.type}),a.push({name:l+".x",value:i.clk_x},{name:l+".y",value:i.clk_y}));else if(c=e.fieldValue(f,!0),c&&c.constructor==Array)for(r&&r.push(f),u=0,p=c.length;p>u;u++)a.push({name:l,value:c[u]});else if(n.fileapi&&"file"==f.type){r&&r.push(f);var d=f.files;if(d.length)for(u=0;d.length>u;u++)a.push({name:l,value:d[u],type:f.type});else a.push({name:l,value:"",type:f.type})}else null!==c&&c!==void 0&&(r&&r.push(f),a.push({name:l,value:c,type:f.type,required:f.required}));if(!t&&i.clk){var h=e(i.clk),v=h[0];l=v.name,l&&!v.disabled&&"image"==v.type&&(a.push({name:l,value:h.val()}),a.push({name:l+".x",value:i.clk_x},{name:l+".y",value:i.clk_y}))}return a},e.fn.formSerialize=function(t){return e.param(this.formToArray(t))},e.fn.fieldSerialize=function(t){var r=[];return this.each(function(){var a=this.name;if(a){var n=e.fieldValue(this,t);if(n&&n.constructor==Array)for(var i=0,o=n.length;o>i;i++)r.push({name:a,value:n[i]});else null!==n&&n!==void 0&&r.push({name:this.name,value:n})}}),e.param(r)},e.fn.fieldValue=function(t){for(var r=[],a=0,n=this.length;n>a;a++){var i=this[a],o=e.fieldValue(i,t);null===o||void 0===o||o.constructor==Array&&!o.length||(o.constructor==Array?e.merge(r,o):r.push(o))}return r},e.fieldValue=function(t,r){var a=t.name,n=t.type,i=t.tagName.toLowerCase();if(void 0===r&&(r=!0),r&&(!a||t.disabled||"reset"==n||"button"==n||("checkbox"==n||"radio"==n)&&!t.checked||("submit"==n||"image"==n)&&t.form&&t.form.clk!=t||"select"==i&&-1==t.selectedIndex))return null;if("select"==i){var o=t.selectedIndex;if(0>o)return null;for(var s=[],u=t.options,l="select-one"==n,c=l?o+1:u.length,f=l?o:0;c>f;f++){var m=u[f];if(m.selected){var p=m.value;if(p||(p=m.attributes&&m.attributes.value&&!m.attributes.value.specified?m.text:m.value),l)return p;s.push(p)}}return s}return e(t).val()},e.fn.clearForm=function(t){return this.each(function(){e("input,select,textarea",this).clearFields(t)})},e.fn.clearFields=e.fn.clearInputs=function(t){var r=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var a=this.type,n=this.tagName.toLowerCase();r.test(a)||"textarea"==n?this.value="":"checkbox"==a||"radio"==a?this.checked=!1:"select"==n?this.selectedIndex=-1:"file"==a?/MSIE/.test(navigator.userAgent)?e(this).replaceWith(e(this).clone(!0)):e(this).val(""):t&&(t===!0&&/hidden/.test(a)||"string"==typeof t&&e(this).is(t))&&(this.value="")})},e.fn.resetForm=function(){return this.each(function(){("function"==typeof this.reset||"object"==typeof this.reset&&!this.reset.nodeType)&&this.reset()})},e.fn.enable=function(e){return void 0===e&&(e=!0),this.each(function(){this.disabled=!e})},e.fn.selected=function(t){return void 0===t&&(t=!0),this.each(function(){var r=this.type;if("checkbox"==r||"radio"==r)this.checked=t;else if("option"==this.tagName.toLowerCase()){var a=e(this).parent("select");t&&a[0]&&"select-one"==a[0].type&&a.find("option").selected(!1),this.selected=t}})},e.fn.ajaxSubmit.debug=!1})("undefined"!=typeof jQuery?jQuery:window.Zepto);
|
includes/js/scripts.js
CHANGED
@@ -7,8 +7,7 @@
|
|
7 |
|
8 |
_wpcf7 = $.extend({ cached: 0 }, _wpcf7);
|
9 |
|
10 |
-
_wpcf7.
|
11 |
-
= 'placeholder' in document.createElement('input');
|
12 |
|
13 |
$('div.wpcf7 > form').ajaxForm({
|
14 |
beforeSubmit: function(formData, jqForm, options) {
|
@@ -86,53 +85,87 @@
|
|
86 |
});
|
87 |
|
88 |
$(data.into).wpcf7FillResponseOutput(data.message);
|
|
|
|
|
|
|
|
|
89 |
}
|
90 |
});
|
91 |
|
92 |
-
$('div.wpcf7 > form').
|
93 |
-
if (_wpcf7.cached)
|
94 |
-
$(n).wpcf7OnloadRefill();
|
95 |
|
96 |
-
|
|
|
|
|
97 |
|
98 |
-
|
|
|
|
|
99 |
|
100 |
-
|
101 |
-
|
102 |
-
});
|
103 |
|
104 |
-
|
105 |
-
$(n).find('input:checkbox').click(function() {
|
106 |
-
$(n).find('input:checkbox').not(this).removeAttr('checked');
|
107 |
-
});
|
108 |
-
});
|
109 |
|
110 |
-
|
111 |
-
var input = $(n);
|
112 |
|
113 |
-
|
114 |
-
|
|
|
115 |
|
116 |
-
|
117 |
-
input.addClass('placeheld');
|
118 |
|
119 |
-
|
120 |
-
if ($(this).hasClass('placeheld'))
|
121 |
-
$(this).val('').removeClass('placeheld');
|
122 |
-
});
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
});
|
130 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
});
|
132 |
|
133 |
-
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
$.fn.wpcf7AjaxLoader = function() {
|
138 |
return this.each(function() {
|
@@ -246,4 +279,20 @@
|
|
246 |
});
|
247 |
};
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
})(jQuery);
|
7 |
|
8 |
_wpcf7 = $.extend({ cached: 0 }, _wpcf7);
|
9 |
|
10 |
+
_wpcf7.supportHtml5 = $.wpcf7SupportHtml5();
|
|
|
11 |
|
12 |
$('div.wpcf7 > form').ajaxForm({
|
13 |
beforeSubmit: function(formData, jqForm, options) {
|
85 |
});
|
86 |
|
87 |
$(data.into).wpcf7FillResponseOutput(data.message);
|
88 |
+
},
|
89 |
+
error: function(xhr, status, error, $form) {
|
90 |
+
var e = $('<div class="ajax-error"></div>').text(error.message);
|
91 |
+
$form.after(e);
|
92 |
}
|
93 |
});
|
94 |
|
95 |
+
$('div.wpcf7 > form').wpcf7InitForm();
|
|
|
|
|
96 |
|
97 |
+
} catch (e) {
|
98 |
+
}
|
99 |
+
});
|
100 |
|
101 |
+
$.fn.wpcf7InitForm = function() {
|
102 |
+
return this.each(function(i, n) {
|
103 |
+
var $f = $(n);
|
104 |
|
105 |
+
if (_wpcf7.cached)
|
106 |
+
$f.wpcf7OnloadRefill();
|
|
|
107 |
|
108 |
+
$f.wpcf7ToggleSubmit();
|
|
|
|
|
|
|
|
|
109 |
|
110 |
+
$f.find('.wpcf7-submit').wpcf7AjaxLoader();
|
|
|
111 |
|
112 |
+
$f.find('.wpcf7-acceptance').click(function() {
|
113 |
+
$f.wpcf7ToggleSubmit();
|
114 |
+
});
|
115 |
|
116 |
+
$f.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox();
|
|
|
117 |
|
118 |
+
$f.find('[placeholder]').wpcf7Placeholder();
|
|
|
|
|
|
|
119 |
|
120 |
+
if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) {
|
121 |
+
$f.find('input.wpcf7-date[type="date"]').each(function() {
|
122 |
+
$(this).datepicker({
|
123 |
+
dateFormat: 'yy-mm-dd',
|
124 |
+
minDate: new Date($(this).attr('min')),
|
125 |
+
maxDate: new Date($(this).attr('max'))
|
126 |
+
});
|
127 |
+
});
|
128 |
+
}
|
129 |
+
|
130 |
+
if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) {
|
131 |
+
$f.find('input.wpcf7-number[type="number"]').each(function() {
|
132 |
+
$(this).spinner({
|
133 |
+
min: $(this).attr('min'),
|
134 |
+
max: $(this).attr('max'),
|
135 |
+
step: $(this).attr('step')
|
136 |
});
|
137 |
});
|
138 |
+
}
|
139 |
+
});
|
140 |
+
};
|
141 |
+
|
142 |
+
$.fn.wpcf7ExclusiveCheckbox = function() {
|
143 |
+
return this.find('input:checkbox').click(function() {
|
144 |
+
$(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked');
|
145 |
+
});
|
146 |
+
};
|
147 |
+
|
148 |
+
$.fn.wpcf7Placeholder = function() {
|
149 |
+
if (_wpcf7.supportHtml5.placeholder)
|
150 |
+
return this;
|
151 |
+
|
152 |
+
return this.each(function() {
|
153 |
+
$(this).val($(this).attr('placeholder'));
|
154 |
+
$(this).addClass('placeheld');
|
155 |
+
|
156 |
+
$(this).focus(function() {
|
157 |
+
if ($(this).hasClass('placeheld'))
|
158 |
+
$(this).val('').removeClass('placeheld');
|
159 |
});
|
160 |
|
161 |
+
$(this).blur(function() {
|
162 |
+
if ('' == $(this).val()) {
|
163 |
+
$(this).val($(this).attr('placeholder'));
|
164 |
+
$(this).addClass('placeheld');
|
165 |
+
}
|
166 |
+
});
|
167 |
+
});
|
168 |
+
};
|
169 |
|
170 |
$.fn.wpcf7AjaxLoader = function() {
|
171 |
return this.each(function() {
|
279 |
});
|
280 |
};
|
281 |
|
282 |
+
$.wpcf7SupportHtml5 = function() {
|
283 |
+
var features = {};
|
284 |
+
var input = document.createElement('input');
|
285 |
+
|
286 |
+
features.placeholder = 'placeholder' in input;
|
287 |
+
|
288 |
+
var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date'];
|
289 |
+
|
290 |
+
$.each(inputTypes, function(index, value) {
|
291 |
+
input.setAttribute('type', value);
|
292 |
+
features[value] = input.type !== 'text';
|
293 |
+
});
|
294 |
+
|
295 |
+
return features;
|
296 |
+
};
|
297 |
+
|
298 |
})(jQuery);
|
languages/wpcf7-de_DE.mo
CHANGED
Binary file
|
languages/wpcf7-fi.mo
CHANGED
Binary file
|
languages/wpcf7-tr_TR.mo
CHANGED
Binary file
|
languages/wpcf7.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
|
14 |
"X-Poedit-Basepath: ../..\n"
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
18 |
|
19 |
#: contact-form-7/wp-contact-form-7.php:5
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Contact form %d"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: contact-form-7/admin/admin.php:8 contact-form-7/admin/admin.php:
|
29 |
#: contact-form-7/admin/edit-contact-form.php:12
|
30 |
#: contact-form-7/modules/flamingo.php:14
|
31 |
msgid "Contact Form 7"
|
@@ -44,165 +44,165 @@ msgstr ""
|
|
44 |
msgid "Edit"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: contact-form-7/admin/admin.php:41 contact-form-7/admin/admin.php:
|
48 |
msgid "You are not allowed to edit this item."
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: contact-form-7/admin/admin.php:
|
52 |
msgid "You are not allowed to delete this item."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: contact-form-7/admin/admin.php:
|
56 |
msgid "Error in deleting."
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: contact-form-7/admin/admin.php:
|
60 |
msgid "Contact Forms"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: contact-form-7/admin/admin.php:
|
64 |
msgid "Generate Tag"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: contact-form-7/admin/admin.php:
|
68 |
-
#: contact-form-7/admin/admin.php:
|
69 |
#: contact-form-7/admin/edit-contact-form.php:15
|
70 |
msgid "Add New"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: contact-form-7/admin/admin.php:
|
74 |
#, php-format
|
75 |
msgid "Search results for “%s”"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: contact-form-7/admin/admin.php:
|
79 |
msgid "Search Contact Forms"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: contact-form-7/admin/admin.php:
|
83 |
#, php-format
|
84 |
msgid "Use the default language (%s)"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: contact-form-7/admin/admin.php:
|
88 |
msgid "Or"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: contact-form-7/admin/admin.php:
|
92 |
msgid "(select language)"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: contact-form-7/admin/admin.php:
|
96 |
msgid "Form"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: contact-form-7/admin/admin.php:
|
100 |
msgid "Mail"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: contact-form-7/admin/admin.php:
|
104 |
msgid "Mail (2)"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: contact-form-7/admin/admin.php:
|
108 |
msgid "Use mail (2)"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: contact-form-7/admin/admin.php:
|
112 |
msgid "Messages"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: contact-form-7/admin/admin.php:
|
116 |
msgid "Additional Settings"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: contact-form-7/admin/admin.php:
|
120 |
msgid "Contact form created."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: contact-form-7/admin/admin.php:
|
124 |
msgid "Contact form saved."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: contact-form-7/admin/admin.php:
|
128 |
msgid "Contact form deleted."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: contact-form-7/admin/admin.php:
|
132 |
msgid "Settings"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: contact-form-7/admin/admin.php:
|
136 |
msgid "http://contactform7.com/docs/"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: contact-form-7/admin/admin.php:
|
140 |
msgid "Docs"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: contact-form-7/admin/admin.php:
|
144 |
msgid "http://contactform7.com/faq/"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: contact-form-7/admin/admin.php:
|
148 |
msgid "FAQ"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: contact-form-7/admin/admin.php:
|
152 |
msgid "http://contactform7.com/support/"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: contact-form-7/admin/admin.php:
|
156 |
msgid "Support"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: contact-form-7/admin/admin.php:
|
160 |
msgid "Contact Form 7 needs your support. Please donate today."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: contact-form-7/admin/admin.php:
|
164 |
msgid "Your contribution is needed for making this plugin better."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: contact-form-7/admin/admin.php:
|
168 |
msgid "http://contactform7.com/donate/"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: contact-form-7/admin/admin.php:
|
172 |
msgid "Donate"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: contact-form-7/admin/admin.php:
|
176 |
#, php-format
|
177 |
msgid ""
|
178 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
179 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
183 |
msgid ""
|
184 |
"Copy this code and paste it into your post, page or text widget content."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
188 |
msgid "Old code is also available."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
192 |
msgid "Save"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
196 |
#: contact-form-7/admin/includes/class-contact-forms-list-table.php:112
|
197 |
msgid "Copy"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
201 |
#: contact-form-7/admin/includes/class-contact-forms-list-table.php:83
|
202 |
msgid "Delete"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: contact-form-7/admin/edit-contact-form.php:
|
206 |
msgid ""
|
207 |
"You are about to delete this contact form.\n"
|
208 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -275,7 +275,7 @@ msgstr ""
|
|
275 |
msgid "Contact Form"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: contact-form-7/includes/classes.php:
|
279 |
msgid "Untitled"
|
280 |
msgstr ""
|
281 |
|
@@ -392,243 +392,243 @@ msgstr ""
|
|
392 |
msgid "This e-mail was sent from a contact form on %1$s (%2$s)"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: contact-form-7/includes/functions.php:
|
396 |
msgid "Afrikaans"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: contact-form-7/includes/functions.php:
|
400 |
msgid "Albanian"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: contact-form-7/includes/functions.php:
|
404 |
msgid "Arabic"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: contact-form-7/includes/functions.php:
|
408 |
msgid "Armenian"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: contact-form-7/includes/functions.php:
|
412 |
msgid "Azerbaijani"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: contact-form-7/includes/functions.php:
|
416 |
msgid "Bangla"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: contact-form-7/includes/functions.php:
|
420 |
msgid "Basque"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: contact-form-7/includes/functions.php:
|
424 |
msgid "Belarusian"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: contact-form-7/includes/functions.php:
|
428 |
msgid "Bosnian"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: contact-form-7/includes/functions.php:
|
432 |
msgid "Brazilian Portuguese"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: contact-form-7/includes/functions.php:
|
436 |
msgid "Bulgarian"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: contact-form-7/includes/functions.php:
|
440 |
msgid "Catalan"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: contact-form-7/includes/functions.php:
|
444 |
msgid "Chinese (Simplified)"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: contact-form-7/includes/functions.php:
|
448 |
msgid "Chinese (Traditional)"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: contact-form-7/includes/functions.php:
|
452 |
msgid "Croatian"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: contact-form-7/includes/functions.php:
|
456 |
msgid "Czech"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: contact-form-7/includes/functions.php:
|
460 |
msgid "Danish"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: contact-form-7/includes/functions.php:
|
464 |
msgid "Dutch"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: contact-form-7/includes/functions.php:
|
468 |
msgid "English"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: contact-form-7/includes/functions.php:
|
472 |
msgid "Esperanto"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: contact-form-7/includes/functions.php:
|
476 |
msgid "Estonian"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: contact-form-7/includes/functions.php:
|
480 |
msgid "Finnish"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: contact-form-7/includes/functions.php:
|
484 |
msgid "French"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: contact-form-7/includes/functions.php:
|
488 |
msgid "Galician"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: contact-form-7/includes/functions.php:
|
492 |
msgid "Gujarati"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: contact-form-7/includes/functions.php:
|
496 |
msgid "Georgian"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: contact-form-7/includes/functions.php:
|
500 |
msgid "German"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: contact-form-7/includes/functions.php:
|
504 |
msgid "Greek"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: contact-form-7/includes/functions.php:
|
508 |
msgid "Hebrew"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: contact-form-7/includes/functions.php:
|
512 |
msgid "Hindi"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: contact-form-7/includes/functions.php:
|
516 |
msgid "Hungarian"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: contact-form-7/includes/functions.php:
|
520 |
msgid "Indonesian"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: contact-form-7/includes/functions.php:
|
524 |
msgid "Irish"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: contact-form-7/includes/functions.php:
|
528 |
msgid "Italian"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: contact-form-7/includes/functions.php:
|
532 |
msgid "Japanese"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: contact-form-7/includes/functions.php:
|
536 |
msgid "Korean"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contact-form-7/includes/functions.php:
|
540 |
msgid "Latvian"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: contact-form-7/includes/functions.php:
|
544 |
msgid "Lithuanian"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: contact-form-7/includes/functions.php:
|
548 |
msgid "Macedonian"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: contact-form-7/includes/functions.php:
|
552 |
msgid "Malay"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: contact-form-7/includes/functions.php:
|
556 |
msgid "Malayalam"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: contact-form-7/includes/functions.php:
|
560 |
msgid "Maltese"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: contact-form-7/includes/functions.php:
|
564 |
msgid "Norwegian"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: contact-form-7/includes/functions.php:
|
568 |
msgid "Persian"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: contact-form-7/includes/functions.php:
|
572 |
msgid "Polish"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: contact-form-7/includes/functions.php:
|
576 |
msgid "Portuguese"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: contact-form-7/includes/functions.php:
|
580 |
msgid "Russian"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: contact-form-7/includes/functions.php:
|
584 |
msgid "Romanian"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: contact-form-7/includes/functions.php:
|
588 |
msgid "Serbian"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: contact-form-7/includes/functions.php:
|
592 |
msgid "Sinhala"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: contact-form-7/includes/functions.php:
|
596 |
msgid "Slovak"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: contact-form-7/includes/functions.php:
|
600 |
msgid "Slovene"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: contact-form-7/includes/functions.php:
|
604 |
msgid "Spanish"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: contact-form-7/includes/functions.php:
|
608 |
msgid "Swedish"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: contact-form-7/includes/functions.php:
|
612 |
msgid "Tamil"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: contact-form-7/includes/functions.php:
|
616 |
msgid "Thai"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: contact-form-7/includes/functions.php:
|
620 |
msgid "Tagalog"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: contact-form-7/includes/functions.php:
|
624 |
msgid "Turkish"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: contact-form-7/includes/functions.php:
|
628 |
msgid "Ukrainian"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: contact-form-7/includes/functions.php:
|
632 |
msgid "Vietnamese"
|
633 |
msgstr ""
|
634 |
|
@@ -640,7 +640,7 @@ msgstr ""
|
|
640 |
#: contact-form-7/modules/captcha.php:204
|
641 |
#: contact-form-7/modules/checkbox.php:182 contact-form-7/modules/date.php:159
|
642 |
#: contact-form-7/modules/file.php:238 contact-form-7/modules/number.php:169
|
643 |
-
#: contact-form-7/modules/quiz.php:163 contact-form-7/modules/select.php:
|
644 |
#: contact-form-7/modules/text.php:228 contact-form-7/modules/textarea.php:110
|
645 |
msgid "Name"
|
646 |
msgstr ""
|
@@ -667,8 +667,8 @@ msgstr ""
|
|
667 |
#: contact-form-7/modules/number.php:185 contact-form-7/modules/number.php:190
|
668 |
#: contact-form-7/modules/number.php:195 contact-form-7/modules/quiz.php:168
|
669 |
#: contact-form-7/modules/quiz.php:171 contact-form-7/modules/quiz.php:176
|
670 |
-
#: contact-form-7/modules/quiz.php:179 contact-form-7/modules/select.php:
|
671 |
-
#: contact-form-7/modules/select.php:
|
672 |
#: contact-form-7/modules/submit.php:62 contact-form-7/modules/submit.php:67
|
673 |
#: contact-form-7/modules/text.php:233 contact-form-7/modules/text.php:236
|
674 |
#: contact-form-7/modules/text.php:241 contact-form-7/modules/text.php:244
|
@@ -698,7 +698,7 @@ msgstr ""
|
|
698 |
#: contact-form-7/modules/captcha.php:253
|
699 |
#: contact-form-7/modules/checkbox.php:210 contact-form-7/modules/date.php:193
|
700 |
#: contact-form-7/modules/file.php:259 contact-form-7/modules/number.php:203
|
701 |
-
#: contact-form-7/modules/quiz.php:191 contact-form-7/modules/select.php:
|
702 |
#: contact-form-7/modules/submit.php:74 contact-form-7/modules/text.php:271
|
703 |
#: contact-form-7/modules/textarea.php:144
|
704 |
msgid "Copy this code and paste it into the form left."
|
@@ -790,18 +790,18 @@ msgstr ""
|
|
790 |
|
791 |
#: contact-form-7/modules/checkbox.php:179 contact-form-7/modules/date.php:158
|
792 |
#: contact-form-7/modules/file.php:237 contact-form-7/modules/number.php:168
|
793 |
-
#: contact-form-7/modules/select.php:
|
794 |
#: contact-form-7/modules/textarea.php:109
|
795 |
msgid "Required field?"
|
796 |
msgstr ""
|
797 |
|
798 |
#: contact-form-7/modules/checkbox.php:195
|
799 |
-
#: contact-form-7/modules/select.php:
|
800 |
msgid "Choices"
|
801 |
msgstr ""
|
802 |
|
803 |
#: contact-form-7/modules/checkbox.php:197
|
804 |
-
#: contact-form-7/modules/select.php:
|
805 |
msgid "* One choice per line."
|
806 |
msgstr ""
|
807 |
|
@@ -818,7 +818,7 @@ msgid "Make checkboxes exclusive?"
|
|
818 |
msgstr ""
|
819 |
|
820 |
#: contact-form-7/modules/checkbox.php:212 contact-form-7/modules/date.php:195
|
821 |
-
#: contact-form-7/modules/number.php:205 contact-form-7/modules/select.php:
|
822 |
#: contact-form-7/modules/text.php:273 contact-form-7/modules/textarea.php:146
|
823 |
msgid "And, put this code into the Mail fields below."
|
824 |
msgstr ""
|
@@ -976,15 +976,15 @@ msgstr ""
|
|
976 |
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: contact-form-7/modules/select.php:
|
980 |
msgid "Drop-down menu"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: contact-form-7/modules/select.php:
|
984 |
msgid "Allow multiple selections?"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: contact-form-7/modules/select.php:
|
988 |
msgid "Insert a blank item as the first option?"
|
989 |
msgstr ""
|
990 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-07 15:56+0900\n"
|
6 |
+
"PO-Revision-Date: 2013-08-07 15:56+0900\n"
|
7 |
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
|
14 |
"X-Poedit-Basepath: ../..\n"
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Generator: Poedit 1.5.6\n"
|
17 |
"X-Poedit-SearchPath-0: contact-form-7\n"
|
18 |
|
19 |
#: contact-form-7/wp-contact-form-7.php:5
|
25 |
msgid "Contact form %d"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: contact-form-7/admin/admin.php:8 contact-form-7/admin/admin.php:259
|
29 |
#: contact-form-7/admin/edit-contact-form.php:12
|
30 |
#: contact-form-7/modules/flamingo.php:14
|
31 |
msgid "Contact Form 7"
|
44 |
msgid "Edit"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: contact-form-7/admin/admin.php:41 contact-form-7/admin/admin.php:114
|
48 |
msgid "You are not allowed to edit this item."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: contact-form-7/admin/admin.php:155
|
52 |
msgid "You are not allowed to delete this item."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: contact-form-7/admin/admin.php:158
|
56 |
msgid "Error in deleting."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: contact-form-7/admin/admin.php:197 contact-form-7/includes/classes.php:27
|
60 |
msgid "Contact Forms"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: contact-form-7/admin/admin.php:234
|
64 |
msgid "Generate Tag"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: contact-form-7/admin/admin.php:261 contact-form-7/admin/admin.php:293
|
68 |
+
#: contact-form-7/admin/admin.php:306
|
69 |
#: contact-form-7/admin/edit-contact-form.php:15
|
70 |
msgid "Add New"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: contact-form-7/admin/admin.php:265
|
74 |
#, php-format
|
75 |
msgid "Search results for “%s”"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: contact-form-7/admin/admin.php:274
|
79 |
msgid "Search Contact Forms"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: contact-form-7/admin/admin.php:292
|
83 |
#, php-format
|
84 |
msgid "Use the default language (%s)"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: contact-form-7/admin/admin.php:296
|
88 |
msgid "Or"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: contact-form-7/admin/admin.php:301
|
92 |
msgid "(select language)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: contact-form-7/admin/admin.php:313
|
96 |
msgid "Form"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: contact-form-7/admin/admin.php:316
|
100 |
msgid "Mail"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: contact-form-7/admin/admin.php:319
|
104 |
msgid "Mail (2)"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: contact-form-7/admin/admin.php:324
|
108 |
msgid "Use mail (2)"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: contact-form-7/admin/admin.php:326
|
112 |
msgid "Messages"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: contact-form-7/admin/admin.php:329
|
116 |
msgid "Additional Settings"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: contact-form-7/admin/admin.php:360
|
120 |
msgid "Contact form created."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: contact-form-7/admin/admin.php:362
|
124 |
msgid "Contact form saved."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: contact-form-7/admin/admin.php:364
|
128 |
msgid "Contact form deleted."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: contact-form-7/admin/admin.php:381
|
132 |
msgid "Settings"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: contact-form-7/admin/admin.php:392
|
136 |
msgid "http://contactform7.com/docs/"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: contact-form-7/admin/admin.php:393
|
140 |
msgid "Docs"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: contact-form-7/admin/admin.php:394
|
144 |
msgid "http://contactform7.com/faq/"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: contact-form-7/admin/admin.php:395
|
148 |
msgid "FAQ"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: contact-form-7/admin/admin.php:396
|
152 |
msgid "http://contactform7.com/support/"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: contact-form-7/admin/admin.php:397
|
156 |
msgid "Support"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: contact-form-7/admin/admin.php:428
|
160 |
msgid "Contact Form 7 needs your support. Please donate today."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: contact-form-7/admin/admin.php:429
|
164 |
msgid "Your contribution is needed for making this plugin better."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: contact-form-7/admin/admin.php:435
|
168 |
msgid "http://contactform7.com/donate/"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: contact-form-7/admin/admin.php:435
|
172 |
msgid "Donate"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: contact-form-7/admin/admin.php:455
|
176 |
#, php-format
|
177 |
msgid ""
|
178 |
"<strong>Contact Form 7 %1$s requires WordPress %2$s or higher.</strong> "
|
179 |
"Please <a href=\"%3$s\">update WordPress</a> first."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: contact-form-7/admin/edit-contact-form.php:47
|
183 |
msgid ""
|
184 |
"Copy this code and paste it into your post, page or text widget content."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: contact-form-7/admin/edit-contact-form.php:53
|
188 |
msgid "Old code is also available."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: contact-form-7/admin/edit-contact-form.php:61
|
192 |
msgid "Save"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: contact-form-7/admin/edit-contact-form.php:68
|
196 |
#: contact-form-7/admin/includes/class-contact-forms-list-table.php:112
|
197 |
msgid "Copy"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: contact-form-7/admin/edit-contact-form.php:73
|
201 |
#: contact-form-7/admin/includes/class-contact-forms-list-table.php:83
|
202 |
msgid "Delete"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: contact-form-7/admin/edit-contact-form.php:75
|
206 |
msgid ""
|
207 |
"You are about to delete this contact form.\n"
|
208 |
" 'Cancel' to stop, 'OK' to delete."
|
275 |
msgid "Contact Form"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: contact-form-7/includes/classes.php:833
|
279 |
msgid "Untitled"
|
280 |
msgstr ""
|
281 |
|
392 |
msgid "This e-mail was sent from a contact form on %1$s (%2$s)"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: contact-form-7/includes/functions.php:164
|
396 |
msgid "Afrikaans"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: contact-form-7/includes/functions.php:165
|
400 |
msgid "Albanian"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: contact-form-7/includes/functions.php:166
|
404 |
msgid "Arabic"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: contact-form-7/includes/functions.php:167
|
408 |
msgid "Armenian"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: contact-form-7/includes/functions.php:168
|
412 |
msgid "Azerbaijani"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: contact-form-7/includes/functions.php:169
|
416 |
msgid "Bangla"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: contact-form-7/includes/functions.php:170
|
420 |
msgid "Basque"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: contact-form-7/includes/functions.php:171
|
424 |
msgid "Belarusian"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: contact-form-7/includes/functions.php:172
|
428 |
msgid "Bosnian"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: contact-form-7/includes/functions.php:173
|
432 |
msgid "Brazilian Portuguese"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: contact-form-7/includes/functions.php:174
|
436 |
msgid "Bulgarian"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: contact-form-7/includes/functions.php:175
|
440 |
msgid "Catalan"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: contact-form-7/includes/functions.php:176
|
444 |
msgid "Chinese (Simplified)"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: contact-form-7/includes/functions.php:177
|
448 |
msgid "Chinese (Traditional)"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: contact-form-7/includes/functions.php:178
|
452 |
msgid "Croatian"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: contact-form-7/includes/functions.php:179
|
456 |
msgid "Czech"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: contact-form-7/includes/functions.php:180
|
460 |
msgid "Danish"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: contact-form-7/includes/functions.php:181
|
464 |
msgid "Dutch"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: contact-form-7/includes/functions.php:182
|
468 |
msgid "English"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: contact-form-7/includes/functions.php:183
|
472 |
msgid "Esperanto"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: contact-form-7/includes/functions.php:184
|
476 |
msgid "Estonian"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: contact-form-7/includes/functions.php:185
|
480 |
msgid "Finnish"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: contact-form-7/includes/functions.php:186
|
484 |
msgid "French"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: contact-form-7/includes/functions.php:187
|
488 |
msgid "Galician"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: contact-form-7/includes/functions.php:188
|
492 |
msgid "Gujarati"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: contact-form-7/includes/functions.php:189
|
496 |
msgid "Georgian"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: contact-form-7/includes/functions.php:190
|
500 |
msgid "German"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: contact-form-7/includes/functions.php:191
|
504 |
msgid "Greek"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: contact-form-7/includes/functions.php:192
|
508 |
msgid "Hebrew"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: contact-form-7/includes/functions.php:193
|
512 |
msgid "Hindi"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: contact-form-7/includes/functions.php:194
|
516 |
msgid "Hungarian"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: contact-form-7/includes/functions.php:195
|
520 |
msgid "Indonesian"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: contact-form-7/includes/functions.php:196
|
524 |
msgid "Irish"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: contact-form-7/includes/functions.php:197
|
528 |
msgid "Italian"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: contact-form-7/includes/functions.php:198
|
532 |
msgid "Japanese"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: contact-form-7/includes/functions.php:199
|
536 |
msgid "Korean"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contact-form-7/includes/functions.php:200
|
540 |
msgid "Latvian"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: contact-form-7/includes/functions.php:201
|
544 |
msgid "Lithuanian"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: contact-form-7/includes/functions.php:202
|
548 |
msgid "Macedonian"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: contact-form-7/includes/functions.php:203
|
552 |
msgid "Malay"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: contact-form-7/includes/functions.php:204
|
556 |
msgid "Malayalam"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: contact-form-7/includes/functions.php:205
|
560 |
msgid "Maltese"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: contact-form-7/includes/functions.php:206
|
564 |
msgid "Norwegian"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: contact-form-7/includes/functions.php:207
|
568 |
msgid "Persian"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: contact-form-7/includes/functions.php:208
|
572 |
msgid "Polish"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: contact-form-7/includes/functions.php:209
|
576 |
msgid "Portuguese"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: contact-form-7/includes/functions.php:210
|
580 |
msgid "Russian"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: contact-form-7/includes/functions.php:211
|
584 |
msgid "Romanian"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: contact-form-7/includes/functions.php:212
|
588 |
msgid "Serbian"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: contact-form-7/includes/functions.php:213
|
592 |
msgid "Sinhala"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: contact-form-7/includes/functions.php:214
|
596 |
msgid "Slovak"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: contact-form-7/includes/functions.php:215
|
600 |
msgid "Slovene"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: contact-form-7/includes/functions.php:216
|
604 |
msgid "Spanish"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: contact-form-7/includes/functions.php:217
|
608 |
msgid "Swedish"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: contact-form-7/includes/functions.php:218
|
612 |
msgid "Tamil"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: contact-form-7/includes/functions.php:219
|
616 |
msgid "Thai"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: contact-form-7/includes/functions.php:220
|
620 |
msgid "Tagalog"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: contact-form-7/includes/functions.php:221
|
624 |
msgid "Turkish"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: contact-form-7/includes/functions.php:222
|
628 |
msgid "Ukrainian"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: contact-form-7/includes/functions.php:223
|
632 |
msgid "Vietnamese"
|
633 |
msgstr ""
|
634 |
|
640 |
#: contact-form-7/modules/captcha.php:204
|
641 |
#: contact-form-7/modules/checkbox.php:182 contact-form-7/modules/date.php:159
|
642 |
#: contact-form-7/modules/file.php:238 contact-form-7/modules/number.php:169
|
643 |
+
#: contact-form-7/modules/quiz.php:163 contact-form-7/modules/select.php:150
|
644 |
#: contact-form-7/modules/text.php:228 contact-form-7/modules/textarea.php:110
|
645 |
msgid "Name"
|
646 |
msgstr ""
|
667 |
#: contact-form-7/modules/number.php:185 contact-form-7/modules/number.php:190
|
668 |
#: contact-form-7/modules/number.php:195 contact-form-7/modules/quiz.php:168
|
669 |
#: contact-form-7/modules/quiz.php:171 contact-form-7/modules/quiz.php:176
|
670 |
+
#: contact-form-7/modules/quiz.php:179 contact-form-7/modules/select.php:155
|
671 |
+
#: contact-form-7/modules/select.php:158 contact-form-7/modules/submit.php:59
|
672 |
#: contact-form-7/modules/submit.php:62 contact-form-7/modules/submit.php:67
|
673 |
#: contact-form-7/modules/text.php:233 contact-form-7/modules/text.php:236
|
674 |
#: contact-form-7/modules/text.php:241 contact-form-7/modules/text.php:244
|
698 |
#: contact-form-7/modules/captcha.php:253
|
699 |
#: contact-form-7/modules/checkbox.php:210 contact-form-7/modules/date.php:193
|
700 |
#: contact-form-7/modules/file.php:259 contact-form-7/modules/number.php:203
|
701 |
+
#: contact-form-7/modules/quiz.php:191 contact-form-7/modules/select.php:175
|
702 |
#: contact-form-7/modules/submit.php:74 contact-form-7/modules/text.php:271
|
703 |
#: contact-form-7/modules/textarea.php:144
|
704 |
msgid "Copy this code and paste it into the form left."
|
790 |
|
791 |
#: contact-form-7/modules/checkbox.php:179 contact-form-7/modules/date.php:158
|
792 |
#: contact-form-7/modules/file.php:237 contact-form-7/modules/number.php:168
|
793 |
+
#: contact-form-7/modules/select.php:149 contact-form-7/modules/text.php:227
|
794 |
#: contact-form-7/modules/textarea.php:109
|
795 |
msgid "Required field?"
|
796 |
msgstr ""
|
797 |
|
798 |
#: contact-form-7/modules/checkbox.php:195
|
799 |
+
#: contact-form-7/modules/select.php:163
|
800 |
msgid "Choices"
|
801 |
msgstr ""
|
802 |
|
803 |
#: contact-form-7/modules/checkbox.php:197
|
804 |
+
#: contact-form-7/modules/select.php:165
|
805 |
msgid "* One choice per line."
|
806 |
msgstr ""
|
807 |
|
818 |
msgstr ""
|
819 |
|
820 |
#: contact-form-7/modules/checkbox.php:212 contact-form-7/modules/date.php:195
|
821 |
+
#: contact-form-7/modules/number.php:205 contact-form-7/modules/select.php:177
|
822 |
#: contact-form-7/modules/text.php:273 contact-form-7/modules/textarea.php:146
|
823 |
msgid "And, put this code into the Mail fields below."
|
824 |
msgstr ""
|
976 |
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: contact-form-7/modules/select.php:140
|
980 |
msgid "Drop-down menu"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: contact-form-7/modules/select.php:169
|
984 |
msgid "Allow multiple selections?"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: contact-form-7/modules/select.php:170
|
988 |
msgid "Insert a blank item as the first option?"
|
989 |
msgstr ""
|
990 |
|
modules/captcha.php
CHANGED
@@ -282,7 +282,7 @@ function wpcf7_captcha_display_warning_message() {
|
|
282 |
$uploads_dir = wpcf7_captcha_tmp_dir();
|
283 |
wpcf7_init_captcha();
|
284 |
|
285 |
-
if ( ! is_dir( $uploads_dir ) || !
|
286 |
$message = sprintf( __( 'This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually.', 'wpcf7' ), $uploads_dir );
|
287 |
|
288 |
echo '<div class="error"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
|
@@ -354,7 +354,7 @@ function wpcf7_generate_captcha( $options = null ) {
|
|
354 |
if ( ! wpcf7_init_captcha() )
|
355 |
return false;
|
356 |
|
357 |
-
if ( ! is_dir( $wpcf7_captcha->tmp_dir ) || !
|
358 |
return false;
|
359 |
|
360 |
$img_type = imagetypes();
|
@@ -419,7 +419,7 @@ function wpcf7_cleanup_captcha_files() {
|
|
419 |
|
420 |
$dir = trailingslashit( wpcf7_captcha_tmp_dir() );
|
421 |
|
422 |
-
if ( ! is_dir( $dir ) || ! is_readable( $dir ) || !
|
423 |
return false;
|
424 |
|
425 |
if ( $handle = @opendir( $dir ) ) {
|
282 |
$uploads_dir = wpcf7_captcha_tmp_dir();
|
283 |
wpcf7_init_captcha();
|
284 |
|
285 |
+
if ( ! is_dir( $uploads_dir ) || ! wp_is_writable( $uploads_dir ) ) {
|
286 |
$message = sprintf( __( 'This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually.', 'wpcf7' ), $uploads_dir );
|
287 |
|
288 |
echo '<div class="error"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
|
354 |
if ( ! wpcf7_init_captcha() )
|
355 |
return false;
|
356 |
|
357 |
+
if ( ! is_dir( $wpcf7_captcha->tmp_dir ) || ! wp_is_writable( $wpcf7_captcha->tmp_dir ) )
|
358 |
return false;
|
359 |
|
360 |
$img_type = imagetypes();
|
419 |
|
420 |
$dir = trailingslashit( wpcf7_captcha_tmp_dir() );
|
421 |
|
422 |
+
if ( ! is_dir( $dir ) || ! is_readable( $dir ) || ! wp_is_writable( $dir ) )
|
423 |
return false;
|
424 |
|
425 |
if ( $handle = @opendir( $dir ) ) {
|
modules/file.php
CHANGED
@@ -282,7 +282,7 @@ function wpcf7_file_display_warning_message() {
|
|
282 |
$uploads_dir = wpcf7_upload_tmp_dir();
|
283 |
wpcf7_init_uploads();
|
284 |
|
285 |
-
if ( ! is_dir( $uploads_dir ) || !
|
286 |
$message = sprintf( __( 'This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually.', 'wpcf7' ), $uploads_dir );
|
287 |
|
288 |
echo '<div class="error"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
|
@@ -321,7 +321,7 @@ function wpcf7_cleanup_upload_files() {
|
|
321 |
return false;
|
322 |
if ( ! is_readable( $dir ) )
|
323 |
return false;
|
324 |
-
if ( !
|
325 |
return false;
|
326 |
|
327 |
if ( $handle = @opendir( $dir ) ) {
|
282 |
$uploads_dir = wpcf7_upload_tmp_dir();
|
283 |
wpcf7_init_uploads();
|
284 |
|
285 |
+
if ( ! is_dir( $uploads_dir ) || ! wp_is_writable( $uploads_dir ) ) {
|
286 |
$message = sprintf( __( 'This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually.', 'wpcf7' ), $uploads_dir );
|
287 |
|
288 |
echo '<div class="error"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
|
321 |
return false;
|
322 |
if ( ! is_readable( $dir ) )
|
323 |
return false;
|
324 |
+
if ( ! wp_is_writable( $dir ) )
|
325 |
return false;
|
326 |
|
327 |
if ( $handle = @opendir( $dir ) ) {
|
modules/select.php
CHANGED
@@ -41,6 +41,7 @@ function wpcf7_select_shortcode_handler( $tag ) {
|
|
41 |
|
42 |
$multiple = $tag->has_option( 'multiple' );
|
43 |
$include_blank = $tag->has_option( 'include_blank' );
|
|
|
44 |
|
45 |
$name = $tag->name;
|
46 |
$values = $tag->values;
|
@@ -51,6 +52,8 @@ function wpcf7_select_shortcode_handler( $tag ) {
|
|
51 |
if ( $empty_select || $include_blank ) {
|
52 |
array_unshift( $labels, '---' );
|
53 |
array_unshift( $values, '' );
|
|
|
|
|
54 |
}
|
55 |
|
56 |
$html = '';
|
41 |
|
42 |
$multiple = $tag->has_option( 'multiple' );
|
43 |
$include_blank = $tag->has_option( 'include_blank' );
|
44 |
+
$first_as_label = $tag->has_option( 'first_as_label' );
|
45 |
|
46 |
$name = $tag->name;
|
47 |
$values = $tag->values;
|
52 |
if ( $empty_select || $include_blank ) {
|
53 |
array_unshift( $labels, '---' );
|
54 |
array_unshift( $values, '' );
|
55 |
+
} elseif ( $first_as_label ) {
|
56 |
+
$values[0] = '';
|
57 |
}
|
58 |
|
59 |
$html = '';
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: takayukister
|
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -119,29 +119,14 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
-
= 3.
|
123 |
-
|
124 |
-
*
|
125 |
-
*
|
126 |
-
*
|
127 |
-
*
|
128 |
-
*
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
*
|
133 |
-
* Fixed: Telephone number validation doesn't accept space and parentheses.
|
134 |
-
* Translations for Russian, Slovak, Hungarian, German and Turkish have been updated.
|
135 |
-
|
136 |
-
= 3.4 =
|
137 |
-
|
138 |
-
* Introduced the following form-tags: [url] and [url\*] for URL field, [tel] and [tel\*] for telephone number field, [number], [number\*], [range] and [range\*] for number input field, and [date] and [date\*] for date input field.
|
139 |
-
* Changed the type attribute of email field ([email] and [email\*]) from text to email.
|
140 |
-
* Support the use of the maxlength attribute for textarea ([textarea] and [textarea\*]).
|
141 |
-
* Support the use of HTML5 placeholder attribute (watermark is still supported and works as an alias of placeholder).
|
142 |
-
* Support the use of readonly attribute.
|
143 |
-
* Add the attribute aria-required="true" to each required field.
|
144 |
-
* Introduced WPCF7_Shortcode class and rewrote all shortcode handler functions using it.
|
145 |
-
* The following action and filter hooks have been introduced: wpcf7_mail_failed, wpcf7_support_html5, wpcf7_form_novalidate, wpcf7_is_email, wpcf7_is_url, wpcf7_is_tel, wpcf7_is_number, wpcf7_is_date and wpcf7_map_meta_cap.
|
146 |
-
* The jQuery Form Plugin (jquery.form.js) has been updated to 3.32.0.
|
147 |
-
* The required WordPress version has been changed and now requires WordPress 3.5 or higher.
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 3.6
|
7 |
+
Stable tag: 3.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
119 |
|
120 |
== Changelog ==
|
121 |
|
122 |
+
= 3.5 =
|
123 |
+
|
124 |
+
* Added: Support of local file attachment.
|
125 |
+
* Added: first_as_label option to drop-down menu (select) tag.
|
126 |
+
* Added: Support of jQuery UI fallback for non-HTML5 browsers.
|
127 |
+
* Show error message from jquery.form.js in a hidden element.
|
128 |
+
* Make ajax-loader image have https URL when the page is https.
|
129 |
+
* Use win_is_writable() to avoid file system issues on Windows server.
|
130 |
+
* Save locale information when generating a contact form.
|
131 |
+
* The jQuery Form Plugin (jquery.form.js) has been updated to 3.39.0.
|
132 |
+
* Translations for Finnish, German and Turkish have been updated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-contact-form-7.php
CHANGED
@@ -7,7 +7,7 @@ Author: Takayuki Miyoshi
|
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: wpcf7
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 3.
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2013 Takayuki Miyoshi (email: takayukister at gmail.com)
|
@@ -27,7 +27,7 @@ Version: 3.4.2
|
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
-
define( 'WPCF7_VERSION', '3.
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '3.5' );
|
33 |
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
Text Domain: wpcf7
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 3.5
|
11 |
*/
|
12 |
|
13 |
/* Copyright 2007-2013 Takayuki Miyoshi (email: takayukister at gmail.com)
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
+
define( 'WPCF7_VERSION', '3.5' );
|
31 |
|
32 |
define( 'WPCF7_REQUIRED_WP_VERSION', '3.5' );
|
33 |
|