Version Description
Release Date: December 9th, 2014
Enhancements: * Replaced jQuery Chosen library with latest version to enable optgroup search. * Shows a warning when configuring a manual UA-code that this will not work together with the dashboards functionality.
Bugfixes: * Fixes a 'headers already sent' warning. * Fixes a bug where nothing was shown on the dashboards for setups with a manual UA-code. It now shows you a message that you need to authenticate with Google Analytics if you wish to make use of the dashboards feature.
Download this release
Release Info
Developer | joostdevalk |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 5.2.1 |
Comparing to | |
See all releases |
Code changes from version 5.2 to 5.2.1
- admin/dashboards/class-admin-dashboards-collector.php +0 -10
- admin/pages/dashboard.php +53 -34
- admin/pages/settings.php +4 -1
- assets/css/yoast_ga_styles.css +4 -0
- assets/css/yoast_ga_styles.min.css +1 -1
- assets/dependencies/chosen/chosen-sprite.png +0 -0
- assets/dependencies/chosen/chosen-sprite@2x.png +0 -0
- assets/dependencies/chosen/chosen.css +246 -268
- assets/dependencies/chosen/chosen.jquery.min.js +2 -10
- assets/dependencies/chosen/chosen.min.css +3 -1
- assets/dependencies/chosen/img/chosen-sprite.png +0 -0
- assets/dependencies/chosen/img/chosen-sprite@2x.png +0 -0
- googleanalytics.php +2 -2
- readme.txt +13 -1
admin/dashboards/class-admin-dashboards-collector.php
CHANGED
@@ -75,7 +75,6 @@ if ( ! class_exists( 'Yoast_GA_Dashboards_Collector' ) ) {
|
|
75 |
* Fetch the data from Google Analytics and store it
|
76 |
*/
|
77 |
public function aggregate_data() {
|
78 |
-
$this->close_connection();
|
79 |
$access_tokens = $this->options->get_access_token();
|
80 |
|
81 |
if ( $access_tokens != false && is_array( $access_tokens ) ) {
|
@@ -418,15 +417,6 @@ if ( ! class_exists( 'Yoast_GA_Dashboards_Collector' ) ) {
|
|
418 |
}
|
419 |
}
|
420 |
|
421 |
-
/**
|
422 |
-
* Close the HTTP socket, to continue with the api calls to Google Analytics
|
423 |
-
*/
|
424 |
-
private function close_connection() {
|
425 |
-
ob_end_flush();
|
426 |
-
header( 'Connection: close' );
|
427 |
-
flush();
|
428 |
-
}
|
429 |
-
|
430 |
}
|
431 |
|
432 |
}
|
75 |
* Fetch the data from Google Analytics and store it
|
76 |
*/
|
77 |
public function aggregate_data() {
|
|
|
78 |
$access_tokens = $this->options->get_access_token();
|
79 |
|
80 |
if ( $access_tokens != false && is_array( $access_tokens ) ) {
|
417 |
}
|
418 |
}
|
419 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
}
|
421 |
|
422 |
}
|
admin/pages/dashboard.php
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
<?php
|
2 |
global $yoast_ga_admin;
|
3 |
|
|
|
|
|
|
|
|
|
4 |
echo $yoast_ga_admin->content_head();
|
5 |
?>
|
6 |
<h2 id="yoast_ga_title"><?php echo __( 'Yoast Google Analytics: ', 'google-analytics-for-wordpress' ) . __( 'Dashboard', 'google-analytics-for-wordpress' ); ?></h2>
|
@@ -24,51 +28,66 @@ echo $yoast_ga_admin->content_head();
|
|
24 |
});
|
25 |
</script>
|
26 |
|
27 |
-
<div class="tabwrapper">
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
|
33 |
-
|
|
|
34 |
} else {
|
35 |
echo sprintf(
|
36 |
-
__( 'You have not yet finished setting up Google Analytics for Wordpress by Yoast. Please %sadd your Analytics profile here%s to enable tracking.','google-analytics-for-wordpress'),
|
37 |
-
'<a href=" ' .admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
38 |
'</a>'
|
39 |
);
|
40 |
}
|
41 |
?>
|
42 |
</div>
|
43 |
-
</div>
|
44 |
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
<label class="ga-form ga-form-checkbox-label ga-form-label-left"><?php echo __( 'Select a dimension', 'google-analytics-for-wordpress' ); ?></label>
|
51 |
-
</div>
|
52 |
-
<select data-rel='toggle_dimensions' id="toggle_dimensions" style="width: 350px"></select>
|
53 |
-
|
54 |
-
<?php
|
55 |
-
Yoast_GA_Dashboards_Display::get_instance()->display( 'dimensions' );
|
56 |
-
} else {
|
57 |
-
echo sprintf(
|
58 |
-
__( 'You have not yet finished setting up Google Analytics for Wordpress by Yoast. Please %sadd your Analytics profile here%s to enable tracking.','google-analytics-for-wordpress'),
|
59 |
-
'<a href=" ' .admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
60 |
-
'</a>'
|
61 |
-
);
|
62 |
-
}
|
63 |
-
?>
|
64 |
-
</div>
|
65 |
-
|
66 |
-
<div id="customdimensions" class="wpseotab gatab">
|
67 |
-
<?php
|
68 |
-
do_action('yst_ga_custom_dimension_add-dashboards-tab');
|
69 |
-
?>
|
70 |
</div>
|
71 |
-
</div>
|
72 |
|
73 |
|
74 |
<?php
|
1 |
<?php
|
2 |
global $yoast_ga_admin;
|
3 |
|
4 |
+
$options_class = Yoast_GA_Options::instance();
|
5 |
+
$options = $options_class->get_options();
|
6 |
+
$tracking_code = $options_class->get_tracking_code();
|
7 |
+
|
8 |
echo $yoast_ga_admin->content_head();
|
9 |
?>
|
10 |
<h2 id="yoast_ga_title"><?php echo __( 'Yoast Google Analytics: ', 'google-analytics-for-wordpress' ) . __( 'Dashboard', 'google-analytics-for-wordpress' ); ?></h2>
|
28 |
});
|
29 |
</script>
|
30 |
|
31 |
+
<div class="tabwrapper">
|
32 |
+
<div id="general" class="wpseotab gatab active">
|
33 |
+
<div class="yoast-graphs">
|
34 |
+
<?php
|
35 |
+
if ( $tracking_code !== '' ) {
|
36 |
+
if ( empty( $options['analytics_profile'] ) ) {
|
37 |
+
echo sprintf(
|
38 |
+
__( 'We need you to authenticate with Google Analytics to use this functionality. If you set your UA-code manually, this won\'t work. You can %sauthenticate your Google Analytics profile here%s to enable dashboards.', 'google-analytics-for-wordpress' ),
|
39 |
+
'<a href=" ' . admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
40 |
+
'</a>'
|
41 |
+
);
|
42 |
+
} else {
|
43 |
+
Yoast_GA_Dashboards_Display::get_instance()->display( 'general' );
|
44 |
+
}
|
45 |
+
} else {
|
46 |
+
echo sprintf(
|
47 |
+
__( 'You have not yet finished setting up Google Analytics for Wordpress by Yoast. Please %sadd your Analytics profile here%s to enable tracking.', 'google-analytics-for-wordpress' ),
|
48 |
+
'<a href=" ' . admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
49 |
+
'</a>'
|
50 |
+
);
|
51 |
+
}
|
52 |
+
?>
|
53 |
+
</div>
|
54 |
+
</div>
|
55 |
+
|
56 |
+
<div id="dimensions" class="wpseotab gatab">
|
57 |
<?php
|
58 |
+
if ( $tracking_code !== '' ) {
|
59 |
+
if ( empty( $options['analytics_profile'] ) ) {
|
60 |
+
echo sprintf(
|
61 |
+
__( 'We need you to authenticate with Google Analytics to use this functionality. If you set your UA-code manually, this won\'t work. You can %sauthenticate your Google Analytics profile here%s to enable dashboards.', 'google-analytics-for-wordpress' ),
|
62 |
+
'<a href=" ' . admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
63 |
+
'</a>'
|
64 |
+
);
|
65 |
+
} else {
|
66 |
+
?>
|
67 |
+
<div class="ga-form ga-form-input">
|
68 |
+
<label class="ga-form ga-form-checkbox-label ga-form-label-left"><?php echo __( 'Select a dimension', 'google-analytics-for-wordpress' ); ?></label>
|
69 |
+
</div>
|
70 |
+
<select data-rel='toggle_dimensions' id="toggle_dimensions" style="width: 350px"></select>
|
71 |
|
72 |
+
<?php
|
73 |
+
Yoast_GA_Dashboards_Display::get_instance()->display( 'dimensions' );
|
74 |
+
}
|
75 |
} else {
|
76 |
echo sprintf(
|
77 |
+
__( 'You have not yet finished setting up Google Analytics for Wordpress by Yoast. Please %sadd your Analytics profile here%s to enable tracking.', 'google-analytics-for-wordpress' ),
|
78 |
+
'<a href=" ' . admin_url( 'admin.php?page=yst_ga_settings#top#general' ) . '">',
|
79 |
'</a>'
|
80 |
);
|
81 |
}
|
82 |
?>
|
83 |
</div>
|
|
|
84 |
|
85 |
+
<div id="customdimensions" class="wpseotab gatab">
|
86 |
+
<?php
|
87 |
+
do_action( 'yst_ga_custom_dimension_add-dashboards-tab' );
|
88 |
+
?>
|
89 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
</div>
|
|
|
91 |
|
92 |
|
93 |
<?php
|
admin/pages/settings.php
CHANGED
@@ -60,6 +60,7 @@ echo $yoast_ga_admin->create_form( 'settings' );
|
|
60 |
echo '</label>';
|
61 |
echo '<div id="enter_ua">';
|
62 |
echo $yoast_ga_admin->input( 'text', null, 'manual_ua_code_field' );
|
|
|
63 |
echo '</div>';
|
64 |
echo '<div class="clear"></div></div>';
|
65 |
?>
|
@@ -123,7 +124,9 @@ echo $yoast_ga_admin->content_footer();
|
|
123 |
<script type="text/javascript">
|
124 |
jQuery(document).ready(
|
125 |
function () {
|
126 |
-
jQuery('#yoast-ga-form-select-settings-analytics_profile').chosen(
|
|
|
|
|
127 |
jQuery('#yoast-ga-form-select-settings-ignore_users').chosen({placeholder_text_multiple: '<?php echo __( 'Select the users to ignore', 'google-analytics-for-wordpress' ); ?>'});
|
128 |
}
|
129 |
);
|
60 |
echo '</label>';
|
61 |
echo '<div id="enter_ua">';
|
62 |
echo $yoast_ga_admin->input( 'text', null, 'manual_ua_code_field' );
|
63 |
+
echo '<p><strong>' . __('Warning: If you use a manual UA code, you won\'t be able to use the dashboards.', 'google-analytics-for-wordpress') . '</strong></p>';
|
64 |
echo '</div>';
|
65 |
echo '<div class="clear"></div></div>';
|
66 |
?>
|
124 |
<script type="text/javascript">
|
125 |
jQuery(document).ready(
|
126 |
function () {
|
127 |
+
jQuery('#yoast-ga-form-select-settings-analytics_profile').chosen({
|
128 |
+
group_search : true
|
129 |
+
});
|
130 |
jQuery('#yoast-ga-form-select-settings-ignore_users').chosen({placeholder_text_multiple: '<?php echo __( 'Select the users to ignore', 'google-analytics-for-wordpress' ); ?>'});
|
131 |
}
|
132 |
);
|
assets/css/yoast_ga_styles.css
CHANGED
@@ -107,6 +107,10 @@ p.ga-topdescription {
|
|
107 |
width: 325px;
|
108 |
}
|
109 |
|
|
|
|
|
|
|
|
|
110 |
#enter_ua {
|
111 |
display: none;
|
112 |
margin-top: 10px;
|
107 |
width: 325px;
|
108 |
}
|
109 |
|
110 |
+
.ga-form .chosen-search input[type="text"] {
|
111 |
+
width: 100% !important;
|
112 |
+
}
|
113 |
+
|
114 |
#enter_ua {
|
115 |
display: none;
|
116 |
margin-top: 10px;
|
assets/css/yoast_ga_styles.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
h2#yoast_ga_title{padding:9px 15px 4px 0;font-size:23px;font-weight:400;line-height:29px}.nav-tab-wrapper{margin-bottom:20px}.gatab{display:none}.gatab.active{display:block;padding:.5em .9em;border:1px solid #ddd;border-radius:0 3px 3px;background-color:#fff}.tabwrapper .gatab{padding:0;border:none;background:0 0}.tabwrapper .gatab h2{padding:9px 15px 4px 0;font-size:23px;font-weight:400}.ga-form-submit{margin-top:20px}.ga-form-label-left{float:left;width:250px;margin:0 0 0 5px;font-size:14px;font-weight:700;cursor:default}.ga-form-input{margin-top:10px}#yoast-ga-wrapper{display:table;width:auto;max-width:1150px}.yoast-ga-content{display:table-cell;min-width:850px;height:500px;margin:0;padding:0;vertical-align:top}.yoast-ga-banners{display:table-cell;width:261px;height:500px;margin:0;padding:20px;vertical-align:top}.ga-form-input{display:table;margin-bottom:20px}.ga-form-table{display:table-cell}.ga-form-description{display:block;float:right;max-width:325px;color:#999}p.ga-topdescription{max-width:600px}#ga-promote{max-width:600px;padding-left:10px;border:1px solid #ccc;background-color:#fff}#yoast-ga-form-settings input[type=text]{width:325px}#enter_ua{display:none;margin-top:10px;padding-top:10px}#yoast-ga-form-text-settings-ga_general-manual_ua_code_field{margin-top:-30px}select.ga-multiple{width:300px;height:150px!important}.wpseotab .extension{float:left;box-sizing:border-box;width:350px;height:230px;margin:10px 20px 10px 0;border:1px solid #ccc}.wpseotab .extension p{margin:0;padding:10px}.wpseotab .extension h3{box-sizing:border-box;height:110px;margin:0;padding:20px 10px 0 120px;border-bottom:1px solid #ccc;background:left 10px/130px 100px no-repeat #fff}.wpseotab .extension button.installed{border-color:#00a000;background-color:#00a000;cursor:default}.wpseotab .extension .button-primary.activate-link{border-color:#f06000;background-color:#f18500}.extension a{text-decoration:none}.ecommerce h3{background-image:url(../img/eComm_130x100.png)!important}.ga_premium h3{background-image:url(../img/ga-premium-banner.png)!important}#ga-debug-info h3{height:30px;margin-top:10px;padding-left:16px;font-size:14px}.yoast_help{margin:2px 5px 0}
|
1 |
+
h2#yoast_ga_title{padding:9px 15px 4px 0;font-size:23px;font-weight:400;line-height:29px}.nav-tab-wrapper{margin-bottom:20px}.gatab{display:none}.gatab.active{display:block;padding:.5em .9em;border:1px solid #ddd;border-radius:0 3px 3px;background-color:#fff}.tabwrapper .gatab{padding:0;border:none;background:0 0}.tabwrapper .gatab h2{padding:9px 15px 4px 0;font-size:23px;font-weight:400}.ga-form-submit{margin-top:20px}.ga-form-label-left{float:left;width:250px;margin:0 0 0 5px;font-size:14px;font-weight:700;cursor:default}.ga-form-input{margin-top:10px}#yoast-ga-wrapper{display:table;width:auto;max-width:1150px}.yoast-ga-content{display:table-cell;min-width:850px;height:500px;margin:0;padding:0;vertical-align:top}.yoast-ga-banners{display:table-cell;width:261px;height:500px;margin:0;padding:20px;vertical-align:top}.ga-form-input{display:table;margin-bottom:20px}.ga-form-table{display:table-cell}.ga-form-description{display:block;float:right;max-width:325px;color:#999}p.ga-topdescription{max-width:600px}#ga-promote{max-width:600px;padding-left:10px;border:1px solid #ccc;background-color:#fff}#yoast-ga-form-settings input[type=text]{width:325px}.ga-form .chosen-search input[type=text]{width:100%!important}#enter_ua{display:none;margin-top:10px;padding-top:10px}#yoast-ga-form-text-settings-ga_general-manual_ua_code_field{margin-top:-30px}select.ga-multiple{width:300px;height:150px!important}.wpseotab .extension{float:left;box-sizing:border-box;width:350px;height:230px;margin:10px 20px 10px 0;border:1px solid #ccc}.wpseotab .extension p{margin:0;padding:10px}.wpseotab .extension h3{box-sizing:border-box;height:110px;margin:0;padding:20px 10px 0 120px;border-bottom:1px solid #ccc;background:left 10px/130px 100px no-repeat #fff}.wpseotab .extension button.installed{border-color:#00a000;background-color:#00a000;cursor:default}.wpseotab .extension .button-primary.activate-link{border-color:#f06000;background-color:#f18500}.extension a{text-decoration:none}.ecommerce h3{background-image:url(../img/eComm_130x100.png)!important}.ga_premium h3{background-image:url(../img/ga-premium-banner.png)!important}#ga-debug-info h3{height:30px;margin-top:10px;padding-left:16px;font-size:14px}.yoast_help{margin:2px 5px 0}
|
assets/dependencies/chosen/chosen-sprite.png
ADDED
Binary file
|
assets/dependencies/chosen/chosen-sprite@2x.png
ADDED
Binary file
|
assets/dependencies/chosen/chosen.css
CHANGED
@@ -1,459 +1,437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/* @group Base */
|
2 |
-
.
|
3 |
-
display: inline-block;
|
4 |
-
zoom: 1;
|
5 |
position: relative;
|
|
|
|
|
6 |
font-size: 13px;
|
7 |
-
|
8 |
*display: inline;
|
|
|
|
|
|
|
9 |
}
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
12 |
position: absolute;
|
|
|
|
|
13 |
z-index: 1010;
|
14 |
-
|
15 |
-
left: 0;
|
16 |
border: 1px solid #aaa;
|
17 |
border-top: 0;
|
18 |
background: #fff;
|
19 |
-
box-shadow: 0 4px 5px rgba(0,0,0,0.15);
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
/* @end */
|
23 |
-
|
24 |
/* @group Single Chosen */
|
25 |
-
.
|
|
|
26 |
display: block;
|
27 |
overflow: hidden;
|
28 |
-
position: relative;
|
29 |
-
height: 23px;
|
30 |
padding: 0 0 0 8px;
|
|
|
31 |
border: 1px solid #aaa;
|
32 |
border-radius: 5px;
|
33 |
-
color: #444;
|
34 |
background-color: #fff;
|
35 |
-
background
|
|
|
|
|
|
|
|
|
36 |
background-clip: padding-box;
|
37 |
-
box-shadow: 0 0 3px
|
38 |
-
|
39 |
-
white-space: nowrap;
|
40 |
text-decoration: none;
|
41 |
-
|
42 |
-
|
43 |
}
|
44 |
-
|
45 |
-
.chzn-container-single .chzn-default {
|
46 |
color: #999;
|
47 |
}
|
48 |
-
|
49 |
-
.chzn-container-single .chzn-single span {
|
50 |
display: block;
|
51 |
overflow: hidden;
|
52 |
margin-right: 26px;
|
53 |
-
white-space: nowrap;
|
54 |
text-overflow: ellipsis;
|
55 |
-
-
|
56 |
-
|
57 |
-
-o-text-overflow: ellipsis;
|
58 |
}
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
62 |
position: absolute;
|
63 |
top: 6px;
|
64 |
right: 26px;
|
|
|
65 |
width: 12px;
|
66 |
height: 12px;
|
67 |
-
background: url(
|
68 |
font-size: 1px;
|
69 |
}
|
70 |
-
|
71 |
-
.chzn-container-single .chzn-single abbr:hover {
|
72 |
background-position: -42px -10px;
|
73 |
}
|
74 |
-
|
75 |
-
.chzn-container-single.chzn-disabled .chzn-single abbr:hover {
|
76 |
background-position: -42px -10px;
|
77 |
}
|
78 |
-
|
79 |
-
.chzn-container-single .chzn-single div {
|
80 |
-
display: block;
|
81 |
position: absolute;
|
82 |
top: 0;
|
83 |
right: 0;
|
|
|
84 |
width: 18px;
|
85 |
height: 100%;
|
86 |
}
|
87 |
-
|
88 |
-
.chzn-container-single .chzn-single div b {
|
89 |
display: block;
|
90 |
width: 100%;
|
91 |
height: 100%;
|
92 |
-
background: url(
|
93 |
}
|
94 |
-
|
95 |
-
.chzn-container-single .chzn-search {
|
96 |
position: relative;
|
97 |
z-index: 1010;
|
98 |
margin: 0;
|
99 |
padding: 3px 4px;
|
100 |
white-space: nowrap;
|
101 |
}
|
102 |
-
|
103 |
-
.chzn-container-single .chzn-search input {
|
104 |
margin: 1px 0;
|
105 |
padding: 4px 20px 4px 5px;
|
106 |
-
|
|
|
107 |
outline: 0;
|
108 |
-
|
109 |
-
background: url(
|
110 |
-
|
111 |
font-size: 1em;
|
|
|
|
|
|
|
112 |
}
|
113 |
-
|
114 |
-
|
115 |
border-radius: 0 0 4px 4px;
|
116 |
background-clip: padding-box;
|
117 |
}
|
|
|
|
|
|
|
|
|
118 |
|
119 |
/* @end */
|
120 |
-
|
121 |
-
.
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
}
|
125 |
|
|
|
126 |
/* @group Multi Chosen */
|
127 |
-
.
|
128 |
-
overflow: hidden;
|
129 |
position: relative;
|
|
|
|
|
|
|
|
|
130 |
height: auto !important;
|
131 |
height: 1%;
|
132 |
-
margin: 0;
|
133 |
-
padding: 0;
|
134 |
border: 1px solid #aaa;
|
135 |
background-color: #fff;
|
136 |
-
background-image:
|
|
|
|
|
|
|
|
|
137 |
cursor: text;
|
138 |
}
|
139 |
-
|
140 |
-
.chzn-container-multi .chzn-choices li {
|
141 |
float: left;
|
142 |
list-style: none;
|
143 |
}
|
144 |
-
|
145 |
-
.chzn-container-multi .chzn-choices .search-field {
|
146 |
margin: 0;
|
147 |
padding: 0;
|
148 |
white-space: nowrap;
|
149 |
}
|
150 |
-
|
151 |
-
.chzn-container-multi .chzn-choices .search-field input {
|
152 |
-
height: 15px;
|
153 |
margin: 1px 0;
|
154 |
-
padding:
|
155 |
-
|
156 |
outline: 0;
|
157 |
-
|
158 |
background: transparent !important;
|
159 |
box-shadow: none;
|
160 |
-
font-family: sans-serif;
|
161 |
-
font-size: 100%;
|
162 |
-
}
|
163 |
-
|
164 |
-
.chzn-container-multi .chzn-choices .search-field .default {
|
165 |
color: #999;
|
|
|
|
|
|
|
|
|
166 |
}
|
167 |
-
|
168 |
-
.chzn-container-multi .chzn-choices .search-choice {
|
169 |
position: relative;
|
170 |
-
margin: 3px
|
171 |
padding: 3px 20px 3px 5px;
|
172 |
border: 1px solid #aaa;
|
|
|
173 |
border-radius: 3px;
|
174 |
-
color: #
|
175 |
-
background-
|
176 |
-
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #
|
|
|
|
|
|
|
|
|
|
|
177 |
background-clip: padding-box;
|
178 |
-
box-shadow: 0 0 2px
|
|
|
179 |
line-height: 13px;
|
180 |
cursor: default;
|
181 |
-
|
182 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
|
183 |
}
|
184 |
-
|
185 |
-
|
186 |
-
padding-right: 5px;
|
187 |
-
border: 1px solid #ccc;
|
188 |
-
color: #666;
|
189 |
-
background-color: #e4e4e4;
|
190 |
-
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
191 |
-
|
192 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
|
193 |
}
|
194 |
-
|
195 |
-
.chzn-container-multi .chzn-choices .search-choice-focus {
|
196 |
-
background: #d4d4d4;
|
197 |
-
}
|
198 |
-
|
199 |
-
.chzn-container-multi .chzn-choices .search-choice .search-choice-close {
|
200 |
-
display: block;
|
201 |
position: absolute;
|
202 |
top: 4px;
|
203 |
right: 3px;
|
|
|
204 |
width: 12px;
|
205 |
height: 12px;
|
206 |
-
background: url(
|
207 |
font-size: 1px;
|
208 |
}
|
209 |
-
|
210 |
-
.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
|
211 |
background-position: -42px -10px;
|
212 |
}
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
/* @group Results */
|
221 |
-
.chzn-container .chzn-results {
|
222 |
-
overflow-x: hidden;
|
223 |
-
overflow-y: auto;
|
224 |
-
position: relative;
|
225 |
-
max-height: 240px;
|
226 |
-
margin: 0 4px 4px 0;
|
227 |
-
padding: 0 0 0 4px;
|
228 |
-
|
229 |
-
-webkit-overflow-scrolling: touch;
|
230 |
}
|
231 |
-
|
232 |
-
|
233 |
-
margin: -1px 0 0;
|
234 |
-
padding: 0;
|
235 |
}
|
236 |
-
|
237 |
-
.chzn-container .chzn-results li {
|
238 |
-
display: none;
|
239 |
margin: 0;
|
240 |
-
padding:
|
241 |
-
line-height: 15px;
|
242 |
-
list-style: none;
|
243 |
-
}
|
244 |
-
|
245 |
-
.chzn-container .chzn-results .active-result {
|
246 |
-
display: list-item;
|
247 |
-
cursor: pointer;
|
248 |
-
}
|
249 |
-
|
250 |
-
.chzn-container .chzn-results .highlighted {
|
251 |
-
color: #fff;
|
252 |
-
background-color: #3875d7;
|
253 |
-
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
|
254 |
-
|
255 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0 );
|
256 |
-
}
|
257 |
-
|
258 |
-
.chzn-container .chzn-results li em {
|
259 |
-
background: #feffde;
|
260 |
-
font-style: normal;
|
261 |
-
}
|
262 |
-
|
263 |
-
.chzn-container .chzn-results .highlighted em {
|
264 |
-
background: transparent;
|
265 |
}
|
266 |
-
|
267 |
-
.chzn-container .chzn-results .no-results {
|
268 |
display: list-item;
|
269 |
-
|
270 |
-
}
|
271 |
-
|
272 |
-
.chzn-container .chzn-results .group-result {
|
273 |
-
color: #999;
|
274 |
-
font-weight: bold;
|
275 |
cursor: default;
|
276 |
}
|
277 |
|
278 |
-
.chzn-container .chzn-results .group-option {
|
279 |
-
padding-left: 15px;
|
280 |
-
}
|
281 |
-
|
282 |
-
.chzn-container-multi .chzn-drop .result-selected {
|
283 |
-
display: none;
|
284 |
-
}
|
285 |
-
|
286 |
-
.chzn-container .chzn-results-scroll {
|
287 |
-
position: absolute;
|
288 |
-
z-index: 1;
|
289 |
-
width: 321px;
|
290 |
-
/* This should by dynamic with js */
|
291 |
-
margin: 0 4px;
|
292 |
-
background: white;
|
293 |
-
text-align: center;
|
294 |
-
}
|
295 |
-
|
296 |
-
.chzn-container .chzn-results-scroll span {
|
297 |
-
display: inline-block;
|
298 |
-
width: 9px;
|
299 |
-
height: 17px;
|
300 |
-
text-indent: -5000px;
|
301 |
-
}
|
302 |
-
|
303 |
-
.chzn-container .chzn-results-scroll-down {
|
304 |
-
bottom: 0;
|
305 |
-
}
|
306 |
-
|
307 |
-
.chzn-container .chzn-results-scroll-down span {
|
308 |
-
background: url("img/chosen-sprite.png") no-repeat -4px -3px;
|
309 |
-
}
|
310 |
-
|
311 |
-
.chzn-container .chzn-results-scroll-up span {
|
312 |
-
background: url("img/chosen-sprite.png") no-repeat -22px -3px;
|
313 |
-
}
|
314 |
-
|
315 |
/* @end */
|
316 |
-
|
317 |
/* @group Active */
|
318 |
-
.
|
319 |
border: 1px solid #5897fb;
|
320 |
-
box-shadow: 0 0 5px rgba(0,0,0,0.3);
|
321 |
}
|
322 |
-
|
323 |
-
.chzn-container-active .chzn-single-with-drop {
|
324 |
border: 1px solid #aaa;
|
|
|
325 |
border-bottom-right-radius: 0;
|
|
|
326 |
border-bottom-left-radius: 0;
|
327 |
-
background-
|
328 |
-
background-image: linear-gradient(#
|
|
|
|
|
|
|
329 |
box-shadow: 0 1px 0 #fff inset;
|
330 |
-
|
331 |
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
|
332 |
}
|
333 |
-
|
334 |
-
.chzn-container-active .chzn-single-with-drop div {
|
335 |
border-left: none;
|
336 |
background: transparent;
|
337 |
}
|
338 |
-
|
339 |
-
.chzn-container-active .chzn-single-with-drop div b {
|
340 |
background-position: -18px 2px;
|
341 |
}
|
342 |
-
|
343 |
-
.chzn-container-active .chzn-choices {
|
344 |
border: 1px solid #5897fb;
|
345 |
-
box-shadow: 0 0 5px rgba(0,0,0,0.3);
|
346 |
}
|
347 |
-
|
348 |
-
|
349 |
-
color: #111 !important;
|
350 |
}
|
351 |
|
352 |
/* @end */
|
353 |
-
|
354 |
/* @group Disabled Support */
|
355 |
-
.
|
356 |
opacity: 0.5 !important;
|
357 |
cursor: default;
|
358 |
}
|
359 |
-
|
360 |
-
.chzn-disabled .chzn-single {
|
361 |
cursor: default;
|
362 |
}
|
363 |
-
|
364 |
-
.chzn-disabled .chzn-choices .search-choice .search-choice-close {
|
365 |
cursor: default;
|
366 |
}
|
367 |
|
|
|
368 |
/* @group Right to Left */
|
369 |
-
.
|
370 |
text-align: right;
|
371 |
}
|
372 |
-
|
373 |
-
.chzn-rtl .chzn-single {
|
374 |
overflow: visible;
|
375 |
padding: 0 8px 0 0;
|
376 |
}
|
377 |
-
|
378 |
-
.chzn-rtl .chzn-single span {
|
379 |
margin-right: 0;
|
380 |
margin-left: 26px;
|
381 |
-
|
382 |
direction: rtl;
|
383 |
}
|
384 |
-
|
385 |
-
|
|
|
|
|
386 |
right: auto;
|
387 |
left: 3px;
|
388 |
}
|
389 |
-
|
390 |
-
.chzn-rtl .chzn-single abbr {
|
391 |
right: auto;
|
392 |
left: 26px;
|
393 |
}
|
394 |
-
|
395 |
-
.chzn-rtl .chzn-choices .search-field input {
|
396 |
-
direction: rtl;
|
397 |
-
}
|
398 |
-
|
399 |
-
.chzn-rtl .chzn-choices li {
|
400 |
float: right;
|
401 |
}
|
402 |
-
|
403 |
-
|
|
|
|
|
404 |
margin: 3px 5px 3px 0;
|
405 |
padding: 3px 5px 3px 19px;
|
406 |
}
|
407 |
-
|
408 |
-
.chzn-rtl .chzn-choices .search-choice .search-choice-close {
|
409 |
right: auto;
|
410 |
left: 4px;
|
411 |
}
|
412 |
-
|
413 |
-
.
|
|
|
|
|
|
|
414 |
margin: 0 0 4px 4px;
|
415 |
padding: 0 4px 0 0;
|
416 |
}
|
417 |
-
|
418 |
-
.chzn-rtl .chzn-results .group-option {
|
419 |
padding-right: 15px;
|
420 |
padding-left: 0;
|
421 |
}
|
422 |
-
|
423 |
-
.chzn-rtl.chzn-container-active .chzn-single-with-drop div {
|
424 |
border-right: none;
|
425 |
}
|
426 |
-
|
427 |
-
.chzn-rtl .chzn-search input {
|
428 |
padding: 4px 5px 4px 20px;
|
429 |
-
background:
|
430 |
-
background: url(
|
431 |
direction: rtl;
|
432 |
}
|
433 |
-
|
434 |
-
.chzn-container-single.chzn-rtl .chzn-single div b {
|
435 |
background-position: 6px 2px;
|
436 |
}
|
437 |
-
|
438 |
-
.chzn-container-single.chzn-rtl .chzn-single-with-drop div b {
|
439 |
background-position: -12px 2px;
|
440 |
}
|
441 |
|
442 |
/* @end */
|
443 |
-
|
444 |
/* @group Retina compatibility */
|
445 |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
|
446 |
-
.
|
447 |
-
.
|
448 |
-
.
|
449 |
-
.
|
450 |
-
.
|
451 |
-
.
|
452 |
-
.
|
453 |
-
background-image: url(
|
454 |
-
background-repeat: no-repeat !important;
|
455 |
background-size: 52px 37px !important;
|
|
|
456 |
}
|
457 |
}
|
458 |
-
|
459 |
-
/* @end */
|
1 |
+
/*!
|
2 |
+
Chosen, a Select Box Enhancer for jQuery and Prototype
|
3 |
+
by Patrick Filler for Harvest, http://getharvest.com
|
4 |
+
|
5 |
+
Version 1.2.0
|
6 |
+
Full source at https://github.com/harvesthq/chosen
|
7 |
+
Copyright (c) 2011-2014 Harvest http://getharvest.com
|
8 |
+
|
9 |
+
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
|
10 |
+
This file is generated by `grunt build`, do not edit it by hand.
|
11 |
+
*/
|
12 |
+
|
13 |
/* @group Base */
|
14 |
+
.chosen-container {
|
|
|
|
|
15 |
position: relative;
|
16 |
+
display: inline-block;
|
17 |
+
vertical-align: middle;
|
18 |
font-size: 13px;
|
19 |
+
zoom: 1;
|
20 |
*display: inline;
|
21 |
+
-webkit-user-select: none;
|
22 |
+
-moz-user-select: none;
|
23 |
+
user-select: none;
|
24 |
}
|
25 |
+
.chosen-container * {
|
26 |
+
-webkit-box-sizing: border-box;
|
27 |
+
-moz-box-sizing: border-box;
|
28 |
+
box-sizing: border-box;
|
29 |
+
}
|
30 |
+
.chosen-container .chosen-drop {
|
31 |
position: absolute;
|
32 |
+
top: 100%;
|
33 |
+
left: -9999px;
|
34 |
z-index: 1010;
|
35 |
+
width: 100%;
|
|
|
36 |
border: 1px solid #aaa;
|
37 |
border-top: 0;
|
38 |
background: #fff;
|
39 |
+
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
40 |
+
}
|
41 |
+
.chosen-container.chosen-with-drop .chosen-drop {
|
42 |
+
left: 0;
|
43 |
+
}
|
44 |
+
.chosen-container a {
|
45 |
+
cursor: pointer;
|
46 |
}
|
47 |
|
48 |
/* @end */
|
|
|
49 |
/* @group Single Chosen */
|
50 |
+
.chosen-container-single .chosen-single {
|
51 |
+
position: relative;
|
52 |
display: block;
|
53 |
overflow: hidden;
|
|
|
|
|
54 |
padding: 0 0 0 8px;
|
55 |
+
height: 25px;
|
56 |
border: 1px solid #aaa;
|
57 |
border-radius: 5px;
|
|
|
58 |
background-color: #fff;
|
59 |
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
|
60 |
+
background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
61 |
+
background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
62 |
+
background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
63 |
+
background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
64 |
background-clip: padding-box;
|
65 |
+
box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
|
66 |
+
color: #444;
|
|
|
67 |
text-decoration: none;
|
68 |
+
white-space: nowrap;
|
69 |
+
line-height: 24px;
|
70 |
}
|
71 |
+
.chosen-container-single .chosen-default {
|
|
|
72 |
color: #999;
|
73 |
}
|
74 |
+
.chosen-container-single .chosen-single span {
|
|
|
75 |
display: block;
|
76 |
overflow: hidden;
|
77 |
margin-right: 26px;
|
|
|
78 |
text-overflow: ellipsis;
|
79 |
+
white-space: nowrap;
|
|
|
|
|
80 |
}
|
81 |
+
.chosen-container-single .chosen-single-with-deselect span {
|
82 |
+
margin-right: 38px;
|
83 |
+
}
|
84 |
+
.chosen-container-single .chosen-single abbr {
|
85 |
position: absolute;
|
86 |
top: 6px;
|
87 |
right: 26px;
|
88 |
+
display: block;
|
89 |
width: 12px;
|
90 |
height: 12px;
|
91 |
+
background: url('chosen-sprite.png') -42px 1px no-repeat;
|
92 |
font-size: 1px;
|
93 |
}
|
94 |
+
.chosen-container-single .chosen-single abbr:hover {
|
|
|
95 |
background-position: -42px -10px;
|
96 |
}
|
97 |
+
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
|
|
|
98 |
background-position: -42px -10px;
|
99 |
}
|
100 |
+
.chosen-container-single .chosen-single div {
|
|
|
|
|
101 |
position: absolute;
|
102 |
top: 0;
|
103 |
right: 0;
|
104 |
+
display: block;
|
105 |
width: 18px;
|
106 |
height: 100%;
|
107 |
}
|
108 |
+
.chosen-container-single .chosen-single div b {
|
|
|
109 |
display: block;
|
110 |
width: 100%;
|
111 |
height: 100%;
|
112 |
+
background: url('chosen-sprite.png') no-repeat 0px 2px;
|
113 |
}
|
114 |
+
.chosen-container-single .chosen-search {
|
|
|
115 |
position: relative;
|
116 |
z-index: 1010;
|
117 |
margin: 0;
|
118 |
padding: 3px 4px;
|
119 |
white-space: nowrap;
|
120 |
}
|
121 |
+
.chosen-container-single .chosen-search input[type="text"] {
|
|
|
122 |
margin: 1px 0;
|
123 |
padding: 4px 20px 4px 5px;
|
124 |
+
width: 100%;
|
125 |
+
height: auto;
|
126 |
outline: 0;
|
127 |
+
border: 1px solid #aaa;
|
128 |
+
background: white url('chosen-sprite.png') no-repeat 100% -20px;
|
129 |
+
background: url('chosen-sprite.png') no-repeat 100% -20px;
|
130 |
font-size: 1em;
|
131 |
+
font-family: sans-serif;
|
132 |
+
line-height: normal;
|
133 |
+
border-radius: 0;
|
134 |
}
|
135 |
+
.chosen-container-single .chosen-drop {
|
136 |
+
margin-top: -1px;
|
137 |
border-radius: 0 0 4px 4px;
|
138 |
background-clip: padding-box;
|
139 |
}
|
140 |
+
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
|
141 |
+
position: absolute;
|
142 |
+
left: -9999px;
|
143 |
+
}
|
144 |
|
145 |
/* @end */
|
146 |
+
/* @group Results */
|
147 |
+
.chosen-container .chosen-results {
|
148 |
+
color: #444;
|
149 |
+
position: relative;
|
150 |
+
overflow-x: hidden;
|
151 |
+
overflow-y: auto;
|
152 |
+
margin: 0 4px 4px 0;
|
153 |
+
padding: 0 0 0 4px;
|
154 |
+
max-height: 240px;
|
155 |
+
-webkit-overflow-scrolling: touch;
|
156 |
+
}
|
157 |
+
.chosen-container .chosen-results li {
|
158 |
+
display: none;
|
159 |
+
margin: 0;
|
160 |
+
padding: 5px 6px;
|
161 |
+
list-style: none;
|
162 |
+
line-height: 15px;
|
163 |
+
word-wrap: break-word;
|
164 |
+
-webkit-touch-callout: none;
|
165 |
+
}
|
166 |
+
.chosen-container .chosen-results li.active-result {
|
167 |
+
display: list-item;
|
168 |
+
cursor: pointer;
|
169 |
+
}
|
170 |
+
.chosen-container .chosen-results li.disabled-result {
|
171 |
+
display: list-item;
|
172 |
+
color: #ccc;
|
173 |
+
cursor: default;
|
174 |
+
}
|
175 |
+
.chosen-container .chosen-results li.highlighted {
|
176 |
+
background-color: #3875d7;
|
177 |
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
|
178 |
+
background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
179 |
+
background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
180 |
+
background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
181 |
+
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
|
182 |
+
color: #fff;
|
183 |
+
}
|
184 |
+
.chosen-container .chosen-results li.no-results {
|
185 |
+
color: #777;
|
186 |
+
display: list-item;
|
187 |
+
background: #f4f4f4;
|
188 |
+
}
|
189 |
+
.chosen-container .chosen-results li.group-result {
|
190 |
+
display: list-item;
|
191 |
+
font-weight: bold;
|
192 |
+
cursor: default;
|
193 |
+
}
|
194 |
+
.chosen-container .chosen-results li.group-option {
|
195 |
+
padding-left: 15px;
|
196 |
+
}
|
197 |
+
.chosen-container .chosen-results li em {
|
198 |
+
font-style: normal;
|
199 |
+
text-decoration: underline;
|
200 |
}
|
201 |
|
202 |
+
/* @end */
|
203 |
/* @group Multi Chosen */
|
204 |
+
.chosen-container-multi .chosen-choices {
|
|
|
205 |
position: relative;
|
206 |
+
overflow: hidden;
|
207 |
+
margin: 0;
|
208 |
+
padding: 0 5px;
|
209 |
+
width: 100%;
|
210 |
height: auto !important;
|
211 |
height: 1%;
|
|
|
|
|
212 |
border: 1px solid #aaa;
|
213 |
background-color: #fff;
|
214 |
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
|
215 |
+
background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
216 |
+
background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
217 |
+
background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
218 |
+
background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
|
219 |
cursor: text;
|
220 |
}
|
221 |
+
.chosen-container-multi .chosen-choices li {
|
|
|
222 |
float: left;
|
223 |
list-style: none;
|
224 |
}
|
225 |
+
.chosen-container-multi .chosen-choices li.search-field {
|
|
|
226 |
margin: 0;
|
227 |
padding: 0;
|
228 |
white-space: nowrap;
|
229 |
}
|
230 |
+
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
|
|
|
|
|
231 |
margin: 1px 0;
|
232 |
+
padding: 0;
|
233 |
+
height: 25px;
|
234 |
outline: 0;
|
235 |
+
border: 0 !important;
|
236 |
background: transparent !important;
|
237 |
box-shadow: none;
|
|
|
|
|
|
|
|
|
|
|
238 |
color: #999;
|
239 |
+
font-size: 100%;
|
240 |
+
font-family: sans-serif;
|
241 |
+
line-height: normal;
|
242 |
+
border-radius: 0;
|
243 |
}
|
244 |
+
.chosen-container-multi .chosen-choices li.search-choice {
|
|
|
245 |
position: relative;
|
246 |
+
margin: 3px 5px 3px 0;
|
247 |
padding: 3px 20px 3px 5px;
|
248 |
border: 1px solid #aaa;
|
249 |
+
max-width: 100%;
|
250 |
border-radius: 3px;
|
251 |
+
background-color: #eeeeee;
|
252 |
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
253 |
+
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
254 |
+
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
255 |
+
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
256 |
+
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
257 |
+
background-size: 100% 19px;
|
258 |
+
background-repeat: repeat-x;
|
259 |
background-clip: padding-box;
|
260 |
+
box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
|
261 |
+
color: #333;
|
262 |
line-height: 13px;
|
263 |
cursor: default;
|
|
|
|
|
264 |
}
|
265 |
+
.chosen-container-multi .chosen-choices li.search-choice span {
|
266 |
+
word-wrap: break-word;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
}
|
268 |
+
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
position: absolute;
|
270 |
top: 4px;
|
271 |
right: 3px;
|
272 |
+
display: block;
|
273 |
width: 12px;
|
274 |
height: 12px;
|
275 |
+
background: url('chosen-sprite.png') -42px 1px no-repeat;
|
276 |
font-size: 1px;
|
277 |
}
|
278 |
+
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
|
|
|
279 |
background-position: -42px -10px;
|
280 |
}
|
281 |
+
.chosen-container-multi .chosen-choices li.search-choice-disabled {
|
282 |
+
padding-right: 5px;
|
283 |
+
border: 1px solid #ccc;
|
284 |
+
background-color: #e4e4e4;
|
285 |
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
286 |
+
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
287 |
+
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
288 |
+
background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
289 |
+
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
290 |
+
color: #666;
|
291 |
}
|
292 |
+
.chosen-container-multi .chosen-choices li.search-choice-focus {
|
293 |
+
background: #d4d4d4;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
}
|
295 |
+
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
|
296 |
+
background-position: -42px -10px;
|
|
|
|
|
297 |
}
|
298 |
+
.chosen-container-multi .chosen-results {
|
|
|
|
|
299 |
margin: 0;
|
300 |
+
padding: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
}
|
302 |
+
.chosen-container-multi .chosen-drop .result-selected {
|
|
|
303 |
display: list-item;
|
304 |
+
color: #ccc;
|
|
|
|
|
|
|
|
|
|
|
305 |
cursor: default;
|
306 |
}
|
307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
/* @end */
|
|
|
309 |
/* @group Active */
|
310 |
+
.chosen-container-active .chosen-single {
|
311 |
border: 1px solid #5897fb;
|
312 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
313 |
}
|
314 |
+
.chosen-container-active.chosen-with-drop .chosen-single {
|
|
|
315 |
border: 1px solid #aaa;
|
316 |
+
-moz-border-radius-bottomright: 0;
|
317 |
border-bottom-right-radius: 0;
|
318 |
+
-moz-border-radius-bottomleft: 0;
|
319 |
border-bottom-left-radius: 0;
|
320 |
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
|
321 |
+
background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
322 |
+
background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
323 |
+
background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
324 |
+
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
|
325 |
box-shadow: 0 1px 0 #fff inset;
|
|
|
|
|
326 |
}
|
327 |
+
.chosen-container-active.chosen-with-drop .chosen-single div {
|
|
|
328 |
border-left: none;
|
329 |
background: transparent;
|
330 |
}
|
331 |
+
.chosen-container-active.chosen-with-drop .chosen-single div b {
|
|
|
332 |
background-position: -18px 2px;
|
333 |
}
|
334 |
+
.chosen-container-active .chosen-choices {
|
|
|
335 |
border: 1px solid #5897fb;
|
336 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
337 |
}
|
338 |
+
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
|
339 |
+
color: #222 !important;
|
|
|
340 |
}
|
341 |
|
342 |
/* @end */
|
|
|
343 |
/* @group Disabled Support */
|
344 |
+
.chosen-disabled {
|
345 |
opacity: 0.5 !important;
|
346 |
cursor: default;
|
347 |
}
|
348 |
+
.chosen-disabled .chosen-single {
|
|
|
349 |
cursor: default;
|
350 |
}
|
351 |
+
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
|
|
|
352 |
cursor: default;
|
353 |
}
|
354 |
|
355 |
+
/* @end */
|
356 |
/* @group Right to Left */
|
357 |
+
.chosen-rtl {
|
358 |
text-align: right;
|
359 |
}
|
360 |
+
.chosen-rtl .chosen-single {
|
|
|
361 |
overflow: visible;
|
362 |
padding: 0 8px 0 0;
|
363 |
}
|
364 |
+
.chosen-rtl .chosen-single span {
|
|
|
365 |
margin-right: 0;
|
366 |
margin-left: 26px;
|
|
|
367 |
direction: rtl;
|
368 |
}
|
369 |
+
.chosen-rtl .chosen-single-with-deselect span {
|
370 |
+
margin-left: 38px;
|
371 |
+
}
|
372 |
+
.chosen-rtl .chosen-single div {
|
373 |
right: auto;
|
374 |
left: 3px;
|
375 |
}
|
376 |
+
.chosen-rtl .chosen-single abbr {
|
|
|
377 |
right: auto;
|
378 |
left: 26px;
|
379 |
}
|
380 |
+
.chosen-rtl .chosen-choices li {
|
|
|
|
|
|
|
|
|
|
|
381 |
float: right;
|
382 |
}
|
383 |
+
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
|
384 |
+
direction: rtl;
|
385 |
+
}
|
386 |
+
.chosen-rtl .chosen-choices li.search-choice {
|
387 |
margin: 3px 5px 3px 0;
|
388 |
padding: 3px 5px 3px 19px;
|
389 |
}
|
390 |
+
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
|
|
|
391 |
right: auto;
|
392 |
left: 4px;
|
393 |
}
|
394 |
+
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
|
395 |
+
.chosen-rtl .chosen-drop {
|
396 |
+
left: 9999px;
|
397 |
+
}
|
398 |
+
.chosen-rtl.chosen-container-single .chosen-results {
|
399 |
margin: 0 0 4px 4px;
|
400 |
padding: 0 4px 0 0;
|
401 |
}
|
402 |
+
.chosen-rtl .chosen-results li.group-option {
|
|
|
403 |
padding-right: 15px;
|
404 |
padding-left: 0;
|
405 |
}
|
406 |
+
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
|
|
|
407 |
border-right: none;
|
408 |
}
|
409 |
+
.chosen-rtl .chosen-search input[type="text"] {
|
|
|
410 |
padding: 4px 5px 4px 20px;
|
411 |
+
background: white url('chosen-sprite.png') no-repeat -30px -20px;
|
412 |
+
background: url('chosen-sprite.png') no-repeat -30px -20px;
|
413 |
direction: rtl;
|
414 |
}
|
415 |
+
.chosen-rtl.chosen-container-single .chosen-single div b {
|
|
|
416 |
background-position: 6px 2px;
|
417 |
}
|
418 |
+
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
|
|
|
419 |
background-position: -12px 2px;
|
420 |
}
|
421 |
|
422 |
/* @end */
|
|
|
423 |
/* @group Retina compatibility */
|
424 |
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
|
425 |
+
.chosen-rtl .chosen-search input[type="text"],
|
426 |
+
.chosen-container-single .chosen-single abbr,
|
427 |
+
.chosen-container-single .chosen-single div b,
|
428 |
+
.chosen-container-single .chosen-search input[type="text"],
|
429 |
+
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
|
430 |
+
.chosen-container .chosen-results-scroll-down span,
|
431 |
+
.chosen-container .chosen-results-scroll-up span {
|
432 |
+
background-image: url('chosen-sprite@2x.png') !important;
|
|
|
433 |
background-size: 52px 37px !important;
|
434 |
+
background-repeat: no-repeat !important;
|
435 |
}
|
436 |
}
|
437 |
+
/* @end */
|
|
assets/dependencies/chosen/chosen.jquery.min.js
CHANGED
@@ -1,10 +1,2 @@
|
|
1 |
-
|
2 |
-
// by Patrick Filler for Harvest, http://getharvest.com
|
3 |
-
//
|
4 |
-
// Version 0.9.11
|
5 |
-
// Full source at https://github.com/harvesthq/chosen
|
6 |
-
// Copyright (c) 2011 Harvest http://getharvest.com
|
7 |
-
|
8 |
-
// MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
|
9 |
-
// This file is generated by `cake build`, do not edit it by hand.
|
10 |
-
(function(){var e;e=function(){function e(){this.options_index=0,this.parsed=[]}return e.prototype.add_node=function(e){return e.nodeName.toUpperCase()==="OPTGROUP"?this.add_group(e):this.add_option(e)},e.prototype.add_group=function(e){var t,n,r,i,s,o;t=this.parsed.length,this.parsed.push({array_index:t,group:!0,label:e.label,children:0,disabled:e.disabled}),s=e.childNodes,o=[];for(r=0,i=s.length;r<i;r++)n=s[r],o.push(this.add_option(n,t,e.disabled));return o},e.prototype.add_option=function(e,t,n){if(e.nodeName.toUpperCase()==="OPTION")return e.text!==""?(t!=null&&(this.parsed[t].children+=1),this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,value:e.value,text:e.text,html:e.innerHTML,selected:e.selected,disabled:n===!0?n:e.disabled,group_array_index:t,classes:e.className,style:e.style.cssText})):this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,empty:!0}),this.options_index+=1},e}(),e.select_to_array=function(t){var n,r,i,s,o;r=new e,o=t.childNodes;for(i=0,s=o.length;i<s;i++)n=o[i],r.add_node(n);return r.parsed},this.SelectParser=e}).call(this),function(){var e,t;t=this,e=function(){function e(e,t){this.form_field=e,this.options=t!=null?t:{},this.is_multiple=this.form_field.multiple,this.set_default_text(),this.set_default_values(),this.setup(),this.set_up_html(),this.register_observers(),this.finish_setup()}return e.prototype.set_default_values=function(){var e=this;return this.click_test_action=function(t){return e.test_active_click(t)},this.activate_action=function(t){return e.activate_field(t)},this.active_field=!1,this.mouse_on_container=!1,this.results_showing=!1,this.result_highlighted=null,this.result_single_selected=null,this.allow_single_deselect=this.options.allow_single_deselect!=null&&this.form_field.options[0]!=null&&this.form_field.options[0].text===""?this.options.allow_single_deselect:!1,this.disable_search_threshold=this.options.disable_search_threshold||0,this.disable_search=this.options.disable_search||!1,this.enable_split_word_search=this.options.enable_split_word_search!=null?this.options.enable_split_word_search:!0,this.search_contains=this.options.search_contains||!1,this.choices=0,this.single_backstroke_delete=this.options.single_backstroke_delete||!1,this.max_selected_options=this.options.max_selected_options||Infinity,this.inherit_select_classes=this.options.inherit_select_classes||!1},e.prototype.set_default_text=function(){return this.form_field.getAttribute("data-placeholder")?this.default_text=this.form_field.getAttribute("data-placeholder"):this.is_multiple?this.default_text=this.options.placeholder_text_multiple||this.options.placeholder_text||"Select Some Options":this.default_text=this.options.placeholder_text_single||this.options.placeholder_text||"Select an Option",this.results_none_found=this.form_field.getAttribute("data-no_results_text")||this.options.no_results_text||"No results match"},e.prototype.mouse_enter=function(){return this.mouse_on_container=!0},e.prototype.mouse_leave=function(){return this.mouse_on_container=!1},e.prototype.input_focus=function(e){var t=this;if(this.is_multiple){if(!this.active_field)return setTimeout(function(){return t.container_mousedown()},50)}else if(!this.active_field)return this.activate_field()},e.prototype.input_blur=function(e){var t=this;if(!this.mouse_on_container)return this.active_field=!1,setTimeout(function(){return t.blur_test()},100)},e.prototype.result_add_option=function(e){var t,n;return e.disabled?"":(e.dom_id=this.container_id+"_o_"+e.array_index,t=e.selected&&this.is_multiple?[]:["active-result"],e.selected&&t.push("result-selected"),e.group_array_index!=null&&t.push("group-option"),e.classes!==""&&t.push(e.classes),n=e.style.cssText!==""?' style="'+e.style+'"':"",'<li id="'+e.dom_id+'" class="'+t.join(" ")+'"'+n+">"+e.html+"</li>")},e.prototype.results_update_field=function(){return this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.result_single_selected=null,this.results_build()},e.prototype.results_toggle=function(){return this.results_showing?this.results_hide():this.results_show()},e.prototype.results_search=function(e){return this.results_showing?this.winnow_results():this.results_show()},e.prototype.keyup_checker=function(e){var t,n;t=(n=e.which)!=null?n:e.keyCode,this.search_field_scale();switch(t){case 8:if(this.is_multiple&&this.backstroke_length<1&&this.choices>0)return this.keydown_backstroke();if(!this.pending_backstroke)return this.result_clear_highlight(),this.results_search();break;case 13:e.preventDefault();if(this.results_showing)return this.result_select(e);break;case 27:return this.results_showing&&this.results_hide(),!0;case 9:case 38:case 40:case 16:case 91:case 17:break;default:return this.results_search()}},e.prototype.generate_field_id=function(){var e;return e=this.generate_random_id(),this.form_field.id=e,e},e.prototype.generate_random_char=function(){var e,t,n;return e="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",n=Math.floor(Math.random()*e.length),t=e.substring(n,n+1)},e}(),t.AbstractChosen=e}.call(this),function(){var e,t,n,r,i={}.hasOwnProperty,s=function(e,t){function r(){this.constructor=e}for(var n in t)i.call(t,n)&&(e[n]=t[n]);return r.prototype=t.prototype,e.prototype=new r,e.__super__=t.prototype,e};r=this,e=jQuery,e.fn.extend({chosen:function(n){var r,i,s;return s=navigator.userAgent.toLowerCase(),i=/(msie) ([\w.]+)/.exec(s)||[],r={name:i[1]||"",version:i[2]||"0"},r.name==="msie"&&(r.version==="6.0"||r.version==="7.0"&&document.documentMode===7)?this:this.each(function(r){var i;i=e(this);if(!i.hasClass("chzn-done"))return i.data("chosen",new t(this,n))})}}),t=function(t){function i(){return i.__super__.constructor.apply(this,arguments)}return s(i,t),i.prototype.setup=function(){return this.form_field_jq=e(this.form_field),this.current_value=this.form_field_jq.val(),this.is_rtl=this.form_field_jq.hasClass("chzn-rtl")},i.prototype.finish_setup=function(){return this.form_field_jq.addClass("chzn-done")},i.prototype.set_up_html=function(){var t,r,i,s,o,u;return this.container_id=this.form_field.id.length?this.form_field.id.replace(/[^\w]/g,"_"):this.generate_field_id(),this.container_id+="_chzn",t=["chzn-container"],t.push("chzn-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&t.push(this.form_field.className),this.is_rtl&&t.push("chzn-rtl"),this.f_width=this.form_field_jq.outerWidth(),i={id:this.container_id,"class":t.join(" "),style:"width: "+this.f_width+"px;",title:this.form_field.title},r=e("<div />",i),this.is_multiple?r.html('<ul class="chzn-choices"><li class="search-field"><input type="text" value="'+this.default_text+'" class="default" autocomplete="off" style="width:25px;" /></li></ul><div class="chzn-drop" style="left:-9000px;"><ul class="chzn-results"></ul></div>'):r.html('<a href="javascript:void(0)" class="chzn-single chzn-default" tabindex="-1"><span>'+this.default_text+'</span><div><b></b></div></a><div class="chzn-drop" style="left:-9000px;"><div class="chzn-search"><input type="text" autocomplete="off" /></div><ul class="chzn-results"></ul></div>'),this.form_field_jq.hide().after(r),this.container=e("#"+this.container_id),this.dropdown=this.container.find("div.chzn-drop").first(),s=this.container.height(),o=this.f_width-n(this.dropdown),this.dropdown.css({width:o+"px",top:s+"px"}),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chzn-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chzn-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chzn-search").first(),this.selected_item=this.container.find(".chzn-single").first(),u=o-n(this.search_container)-n(this.search_field),this.search_field.css({width:u+"px"})),this.results_build(),this.set_tab_index(),this.form_field_jq.trigger("liszt:ready",{chosen:this})},i.prototype.register_observers=function(){var e=this;return this.container.mousedown(function(t){return e.container_mousedown(t)}),this.container.mouseup(function(t){return e.container_mouseup(t)}),this.container.mouseenter(function(t){return e.mouse_enter(t)}),this.container.mouseleave(function(t){return e.mouse_leave(t)}),this.search_results.mouseup(function(t){return e.search_results_mouseup(t)}),this.search_results.mouseover(function(t){return e.search_results_mouseover(t)}),this.search_results.mouseout(function(t){return e.search_results_mouseout(t)}),this.form_field_jq.bind("liszt:updated",function(t){return e.results_update_field(t)}),this.form_field_jq.bind("liszt:activate",function(t){return e.activate_field(t)}),this.form_field_jq.bind("liszt:open",function(t){return e.container_mousedown(t)}),this.search_field.blur(function(t){return e.input_blur(t)}),this.search_field.keyup(function(t){return e.keyup_checker(t)}),this.search_field.keydown(function(t){return e.keydown_checker(t)}),this.search_field.focus(function(t){return e.input_focus(t)}),this.is_multiple?this.search_choices.click(function(t){return e.choices_click(t)}):this.container.click(function(e){return e.preventDefault()})},i.prototype.search_field_disabled=function(){this.is_disabled=this.form_field_jq[0].disabled;if(this.is_disabled)return this.container.addClass("chzn-disabled"),this.search_field[0].disabled=!0,this.is_multiple||this.selected_item.unbind("focus",this.activate_action),this.close_field();this.container.removeClass("chzn-disabled"),this.search_field[0].disabled=!1;if(!this.is_multiple)return this.selected_item.bind("focus",this.activate_action)},i.prototype.container_mousedown=function(t){var n;if(!this.is_disabled)return n=t!=null?e(t.target).hasClass("search-choice-close"):!1,t&&t.type==="mousedown"&&!this.results_showing&&t.preventDefault(),!this.pending_destroy_click&&!n?(this.active_field?!this.is_multiple&&t&&(e(t.target)[0]===this.selected_item[0]||e(t.target).parents("a.chzn-single").length)&&(t.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),e(document).click(this.click_test_action),this.results_show()),this.activate_field()):this.pending_destroy_click=!1},i.prototype.container_mouseup=function(e){if(e.target.nodeName==="ABBR"&&!this.is_disabled)return this.results_reset(e)},i.prototype.blur_test=function(e){if(!this.active_field&&this.container.hasClass("chzn-container-active"))return this.close_field()},i.prototype.close_field=function(){return e(document).unbind("click",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chzn-container-active"),this.winnow_results_clear(),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale()},i.prototype.activate_field=function(){return this.container.addClass("chzn-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},i.prototype.test_active_click=function(t){return e(t.target).parents("#"+this.container_id).length?this.active_field=!0:this.close_field()},i.prototype.results_build=function(){var e,t,n,i,s;this.parsing=!0,this.results_data=r.SelectParser.select_to_array(this.form_field),this.is_multiple&&this.choices>0?(this.search_choices.find("li.search-choice").remove(),this.choices=0):this.is_multiple||(this.selected_item.addClass("chzn-default").find("span").text(this.default_text),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?this.container.addClass("chzn-container-single-nosearch"):this.container.removeClass("chzn-container-single-nosearch")),e="",s=this.results_data;for(n=0,i=s.length;n<i;n++)t=s[n],t.group?e+=this.result_add_group(t):t.empty||(e+=this.result_add_option(t),t.selected&&this.is_multiple?this.choice_build(t):t.selected&&!this.is_multiple&&(this.selected_item.removeClass("chzn-default").find("span").text(t.text),this.allow_single_deselect&&this.single_deselect_control_build()));return this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.search_results.html(e),this.parsing=!1},i.prototype.result_add_group=function(t){return t.disabled?"":(t.dom_id=this.container_id+"_g_"+t.array_index,'<li id="'+t.dom_id+'" class="group-result">'+e("<div />").text(t.label).html()+"</li>")},i.prototype.result_do_highlight=function(e){var t,n,r,i,s;if(e.length){this.result_clear_highlight(),this.result_highlight=e,this.result_highlight.addClass("highlighted"),r=parseInt(this.search_results.css("maxHeight"),10),s=this.search_results.scrollTop(),i=r+s,n=this.result_highlight.position().top+this.search_results.scrollTop(),t=n+this.result_highlight.outerHeight();if(t>=i)return this.search_results.scrollTop(t-r>0?t-r:0);if(n<s)return this.search_results.scrollTop(n)}},i.prototype.result_clear_highlight=function(){return this.result_highlight&&this.result_highlight.removeClass("highlighted"),this.result_highlight=null},i.prototype.results_show=function(){var e;if(!this.is_multiple)this.selected_item.addClass("chzn-single-with-drop"),this.result_single_selected&&this.result_do_highlight(this.result_single_selected);else if(this.max_selected_options<=this.choices)return this.form_field_jq.trigger("liszt:maxselected",{chosen:this}),!1;return e=this.is_multiple?this.container.height():this.container.height()-1,this.form_field_jq.trigger("liszt:showing_dropdown",{chosen:this}),this.dropdown.css({top:e+"px",left:0}),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.search_field.val()),this.winnow_results()},i.prototype.results_hide=function(){return this.is_multiple||this.selected_item.removeClass("chzn-single-with-drop"),this.result_clear_highlight(),this.form_field_jq.trigger("liszt:hiding_dropdown",{chosen:this}),this.dropdown.css({left:"-9000px"}),this.results_showing=!1},i.prototype.set_tab_index=function(e){var t;if(this.form_field_jq.attr("tabindex"))return t=this.form_field_jq.attr("tabindex"),this.form_field_jq.attr("tabindex",-1),this.search_field.attr("tabindex",t)},i.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},i.prototype.search_results_mouseup=function(t){var n;n=e(t.target).hasClass("active-result")?e(t.target):e(t.target).parents(".active-result").first();if(n.length)return this.result_highlight=n,this.result_select(t),this.search_field.focus()},i.prototype.search_results_mouseover=function(t){var n;n=e(t.target).hasClass("active-result")?e(t.target):e(t.target).parents(".active-result").first();if(n)return this.result_do_highlight(n)},i.prototype.search_results_mouseout=function(t){if(e(t.target).hasClass("active-result"))return this.result_clear_highlight()},i.prototype.choices_click=function(t){t.preventDefault();if(this.active_field&&!e(t.target).hasClass("search-choice")&&!this.results_showing)return this.results_show()},i.prototype.choice_build=function(t){var n,r,i,s=this;return this.is_multiple&&this.max_selected_options<=this.choices?(this.form_field_jq.trigger("liszt:maxselected",{chosen:this}),!1):(n=this.container_id+"_c_"+t.array_index,this.choices+=1,t.disabled?r='<li class="search-choice search-choice-disabled" id="'+n+'"><span>'+t.html+"</span></li>":r='<li class="search-choice" id="'+n+'"><span>'+t.html+'</span><a href="javascript:void(0)" class="search-choice-close" rel="'+t.array_index+'"></a></li>',this.search_container.before(r),i=e("#"+n).find("a").first(),i.click(function(e){return s.choice_destroy_link_click(e)}))},i.prototype.choice_destroy_link_click=function(t){return t.preventDefault(),this.is_disabled?t.stopPropagation:(this.pending_destroy_click=!0,this.choice_destroy(e(t.target)))},i.prototype.choice_destroy=function(e){if(this.result_deselect(e.attr("rel")))return this.choices-=1,this.show_search_field_default(),this.is_multiple&&this.choices>0&&this.search_field.val().length<1&&this.results_hide(),e.parents("li").first().remove(),this.search_field_scale()},i.prototype.results_reset=function(){this.form_field.options[0].selected=!0,this.selected_item.find("span").text(this.default_text),this.is_multiple||this.selected_item.addClass("chzn-default"),this.show_search_field_default(),this.results_reset_cleanup(),this.form_field_jq.trigger("change");if(this.active_field)return this.results_hide()},i.prototype.results_reset_cleanup=function(){return this.current_value=this.form_field_jq.val(),this.selected_item.find("abbr").remove()},i.prototype.result_select=function(e){var t,n,r,i;if(this.result_highlight)return t=this.result_highlight,n=t.attr("id"),this.result_clear_highlight(),this.is_multiple?this.result_deactivate(t):(this.search_results.find(".result-selected").removeClass("result-selected"),this.result_single_selected=t,this.selected_item.removeClass("chzn-default")),t.addClass("result-selected"),i=n.substr(n.lastIndexOf("_")+1),r=this.results_data[i],r.selected=!0,this.form_field.options[r.options_index].selected=!0,this.is_multiple?this.choice_build(r):(this.selected_item.find("span").first().text(r.text),this.allow_single_deselect&&this.single_deselect_control_build()),(!e.metaKey&&!e.ctrlKey||!this.is_multiple)&&this.results_hide(),this.search_field.val(""),(this.is_multiple||this.form_field_jq.val()!==this.current_value)&&this.form_field_jq.trigger("change",{selected:this.form_field.options[r.options_index].value}),this.current_value=this.form_field_jq.val(),this.search_field_scale()},i.prototype.result_activate=function(e){return e.addClass("active-result")},i.prototype.result_deactivate=function(e){return e.removeClass("active-result")},i.prototype.result_deselect=function(t){var n,r;return r=this.results_data[t],this.form_field.options[r.options_index].disabled?!1:(r.selected=!1,this.form_field.options[r.options_index].selected=!1,n=e("#"+this.container_id+"_o_"+t),n.removeClass("result-selected").addClass("active-result").show(),this.result_clear_highlight(),this.winnow_results(),this.form_field_jq.trigger("change",{deselected:this.form_field.options[r.options_index].value}),this.search_field_scale(),!0)},i.prototype.single_deselect_control_build=function(){if(this.allow_single_deselect&&this.selected_item.find("abbr").length<1)return this.selected_item.find("span").first().after('<abbr class="search-choice-close"></abbr>')},i.prototype.winnow_results=function(){var t,n,r,i,s,o,u,a,f,l,c,h,p,d,v,m,g,y;this.no_results_clear(),f=0,l=this.search_field.val()===this.default_text?"":e("<div/>").text(e.trim(this.search_field.val())).html(),o=this.search_contains?"":"^",s=new RegExp(o+l.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"i"),p=new RegExp(l.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"i"),y=this.results_data;for(d=0,m=y.length;d<m;d++){n=y[d];if(!n.disabled&&!n.empty)if(n.group)e("#"+n.dom_id).css("display","none");else if(!this.is_multiple||!n.selected){t=!1,a=n.dom_id,u=e("#"+a);if(s.test(n.html))t=!0,f+=1;else if(this.enable_split_word_search&&(n.html.indexOf(" ")>=0||n.html.indexOf("[")===0)){i=n.html.replace(/\[|\]/g,"").split(" ");if(i.length)for(v=0,g=i.length;v<g;v++)r=i[v],s.test(r)&&(t=!0,f+=1)}t?(l.length?(c=n.html.search(p),h=n.html.substr(0,c+l.length)+"</em>"+n.html.substr(c+l.length),h=h.substr(0,c)+"<em>"+h.substr(c)):h=n.html,u.html(h),this.result_activate(u),n.group_array_index!=null&&e("#"+this.results_data[n.group_array_index].dom_id).css("display","list-item")):(this.result_highlight&&a===this.result_highlight.attr("id")&&this.result_clear_highlight(),this.result_deactivate(u))}}return f<1&&l.length?this.no_results(l):this.winnow_results_set_highlight()},i.prototype.winnow_results_clear=function(){var t,n,r,i,s;this.search_field.val(""),n=this.search_results.find("li"),s=[];for(r=0,i=n.length;r<i;r++)t=n[r],t=e(t),t.hasClass("group-result")?s.push(t.css("display","auto")):!this.is_multiple||!t.hasClass("result-selected")?s.push(this.result_activate(t)):s.push(void 0);return s},i.prototype.winnow_results_set_highlight=function(){var e,t;if(!this.result_highlight){t=this.is_multiple?[]:this.search_results.find(".result-selected.active-result"),e=t.length?t.first():this.search_results.find(".active-result").first();if(e!=null)return this.result_do_highlight(e)}},i.prototype.no_results=function(t){var n;return n=e('<li class="no-results">'+this.results_none_found+' "<span></span>"</li>'),n.find("span").first().html(t),this.search_results.append(n)},i.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},i.prototype.keydown_arrow=function(){var t,n;this.result_highlight?this.results_showing&&(n=this.result_highlight.nextAll("li.active-result").first(),n&&this.result_do_highlight(n)):(t=this.search_results.find("li.active-result").first(),t&&this.result_do_highlight(e(t)));if(!this.results_showing)return this.results_show()},i.prototype.keyup_arrow=function(){var e;if(!this.results_showing&&!this.is_multiple)return this.results_show();if(this.result_highlight)return e=this.result_highlight.prevAll("li.active-result"),e.length?this.result_do_highlight(e.first()):(this.choices>0&&this.results_hide(),this.result_clear_highlight())},i.prototype.keydown_backstroke=function(){var e;if(this.pending_backstroke)return this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke();e=this.search_container.siblings("li.search-choice").last();if(e.length&&!e.hasClass("search-choice-disabled"))return this.pending_backstroke=e,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")},i.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},i.prototype.keydown_checker=function(e){var t,n;t=(n=e.which)!=null?n:e.keyCode,this.search_field_scale(),t!==8&&this.pending_backstroke&&this.clear_backstroke();switch(t){case 8:this.backstroke_length=this.search_field.val().length;break;case 9:this.results_showing&&!this.is_multiple&&this.result_select(e),this.mouse_on_container=!1;break;case 13:e.preventDefault();break;case 38:e.preventDefault(),this.keyup_arrow();break;case 40:this.keydown_arrow()}},i.prototype.search_field_scale=function(){var t,n,r,i,s,o,u,a,f;if(this.is_multiple){r=0,u=0,s="position:absolute; left: -1000px; top: -1000px; display:none;",o=["font-size","font-style","font-weight","font-family","line-height","text-transform","letter-spacing"];for(a=0,f=o.length;a<f;a++)i=o[a],s+=i+":"+this.search_field.css(i)+";";return n=e("<div />",{style:s}),n.text(this.search_field.val()),e("body").append(n),u=n.width()+25,n.remove(),u>this.f_width-10&&(u=this.f_width-10),this.search_field.css({width:u+"px"}),t=this.container.height(),this.dropdown.css({top:t+"px"})}},i.prototype.generate_random_id=function(){var t;t="sel"+this.generate_random_char()+this.generate_random_char()+this.generate_random_char();while(e("#"+t).length>0)t+=this.generate_random_char();return t},i}(AbstractChosen),r.Chosen=t,n=function(e){var t;return t=e.outerWidth()-e.width()},r.get_side_border_padding=n}.call(this);
|
1 |
+
/* Chosen v1.2.0 | (c) 2011-2014 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
|
2 |
+
!function(){var a,AbstractChosen,Chosen,SelectParser,b,c={}.hasOwnProperty,d=function(a,b){function d(){this.constructor=a}for(var e in b)c.call(b,e)&&(a[e]=b[e]);return d.prototype=b.prototype,a.prototype=new d,a.__super__=b.prototype,a};SelectParser=function(){function SelectParser(){this.options_index=0,this.parsed=[]}return SelectParser.prototype.add_node=function(a){return"OPTGROUP"===a.nodeName.toUpperCase()?this.add_group(a):this.add_option(a)},SelectParser.prototype.add_group=function(a){var b,c,d,e,f,g;for(b=this.parsed.length,this.parsed.push({array_index:b,group:!0,label:this.escapeExpression(a.label),children:0,disabled:a.disabled}),f=a.childNodes,g=[],d=0,e=f.length;e>d;d++)c=f[d],g.push(this.add_option(c,b,a.disabled));return g},SelectParser.prototype.add_option=function(a,b,c){return"OPTION"===a.nodeName.toUpperCase()?(""!==a.text?(null!=b&&(this.parsed[b].children+=1),this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,value:a.value,text:a.text,html:a.innerHTML,selected:a.selected,disabled:c===!0?c:a.disabled,group_array_index:b,classes:a.className,style:a.style.cssText})):this.parsed.push({array_index:this.parsed.length,options_index:this.options_index,empty:!0}),this.options_index+=1):void 0},SelectParser.prototype.escapeExpression=function(a){var b,c;return null==a||a===!1?"":/[\&\<\>\"\'\`]/.test(a)?(b={"<":"<",">":">",'"':""","'":"'","`":"`"},c=/&(?!\w+;)|[\<\>\"\'\`]/g,a.replace(c,function(a){return b[a]||"&"})):a},SelectParser}(),SelectParser.select_to_array=function(a){var b,c,d,e,f;for(c=new SelectParser,f=a.childNodes,d=0,e=f.length;e>d;d++)b=f[d],c.add_node(b);return c.parsed},AbstractChosen=function(){function AbstractChosen(a,b){this.form_field=a,this.options=null!=b?b:{},AbstractChosen.browser_is_supported()&&(this.is_multiple=this.form_field.multiple,this.set_default_text(),this.set_default_values(),this.setup(),this.set_up_html(),this.register_observers())}return AbstractChosen.prototype.set_default_values=function(){var a=this;return this.click_test_action=function(b){return a.test_active_click(b)},this.activate_action=function(b){return a.activate_field(b)},this.active_field=!1,this.mouse_on_container=!1,this.results_showing=!1,this.result_highlighted=null,this.allow_single_deselect=null!=this.options.allow_single_deselect&&null!=this.form_field.options[0]&&""===this.form_field.options[0].text?this.options.allow_single_deselect:!1,this.disable_search_threshold=this.options.disable_search_threshold||0,this.disable_search=this.options.disable_search||!1,this.enable_split_word_search=null!=this.options.enable_split_word_search?this.options.enable_split_word_search:!0,this.group_search=null!=this.options.group_search?this.options.group_search:!0,this.search_contains=this.options.search_contains||!1,this.single_backstroke_delete=null!=this.options.single_backstroke_delete?this.options.single_backstroke_delete:!0,this.max_selected_options=this.options.max_selected_options||1/0,this.inherit_select_classes=this.options.inherit_select_classes||!1,this.display_selected_options=null!=this.options.display_selected_options?this.options.display_selected_options:!0,this.display_disabled_options=null!=this.options.display_disabled_options?this.options.display_disabled_options:!0},AbstractChosen.prototype.set_default_text=function(){return this.default_text=this.form_field.getAttribute("data-placeholder")?this.form_field.getAttribute("data-placeholder"):this.is_multiple?this.options.placeholder_text_multiple||this.options.placeholder_text||AbstractChosen.default_multiple_text:this.options.placeholder_text_single||this.options.placeholder_text||AbstractChosen.default_single_text,this.results_none_found=this.form_field.getAttribute("data-no_results_text")||this.options.no_results_text||AbstractChosen.default_no_result_text},AbstractChosen.prototype.mouse_enter=function(){return this.mouse_on_container=!0},AbstractChosen.prototype.mouse_leave=function(){return this.mouse_on_container=!1},AbstractChosen.prototype.input_focus=function(){var a=this;if(this.is_multiple){if(!this.active_field)return setTimeout(function(){return a.container_mousedown()},50)}else if(!this.active_field)return this.activate_field()},AbstractChosen.prototype.input_blur=function(){var a=this;return this.mouse_on_container?void 0:(this.active_field=!1,setTimeout(function(){return a.blur_test()},100))},AbstractChosen.prototype.results_option_build=function(a){var b,c,d,e,f;for(b="",f=this.results_data,d=0,e=f.length;e>d;d++)c=f[d],b+=c.group?this.result_add_group(c):this.result_add_option(c),(null!=a?a.first:void 0)&&(c.selected&&this.is_multiple?this.choice_build(c):c.selected&&!this.is_multiple&&this.single_set_selected_text(c.text));return b},AbstractChosen.prototype.result_add_option=function(a){var b,c;return a.search_match?this.include_option_in_results(a)?(b=[],a.disabled||a.selected&&this.is_multiple||b.push("active-result"),!a.disabled||a.selected&&this.is_multiple||b.push("disabled-result"),a.selected&&b.push("result-selected"),null!=a.group_array_index&&b.push("group-option"),""!==a.classes&&b.push(a.classes),c=document.createElement("li"),c.className=b.join(" "),c.style.cssText=a.style,c.setAttribute("data-option-array-index",a.array_index),c.innerHTML=a.search_text,this.outerHTML(c)):"":""},AbstractChosen.prototype.result_add_group=function(a){var b;return a.search_match||a.group_match?a.active_options>0?(b=document.createElement("li"),b.className="group-result",b.innerHTML=a.search_text,this.outerHTML(b)):"":""},AbstractChosen.prototype.results_update_field=function(){return this.set_default_text(),this.is_multiple||this.results_reset_cleanup(),this.result_clear_highlight(),this.results_build(),this.results_showing?this.winnow_results():void 0},AbstractChosen.prototype.reset_single_select_options=function(){var a,b,c,d,e;for(d=this.results_data,e=[],b=0,c=d.length;c>b;b++)a=d[b],a.selected?e.push(a.selected=!1):e.push(void 0);return e},AbstractChosen.prototype.results_toggle=function(){return this.results_showing?this.results_hide():this.results_show()},AbstractChosen.prototype.results_search=function(){return this.results_showing?this.winnow_results():this.results_show()},AbstractChosen.prototype.winnow_results=function(){var a,b,c,d,e,f,g,h,i,j,k,l;for(this.no_results_clear(),d=0,f=this.get_search_text(),a=f.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),i=new RegExp(a,"i"),c=this.get_search_regex(a),l=this.results_data,j=0,k=l.length;k>j;j++)b=l[j],b.search_match=!1,e=null,this.include_option_in_results(b)&&(b.group&&(b.group_match=!1,b.active_options=0),null!=b.group_array_index&&this.results_data[b.group_array_index]&&(e=this.results_data[b.group_array_index],0===e.active_options&&e.search_match&&(d+=1),e.active_options+=1),(!b.group||this.group_search)&&(b.search_text=b.group?b.label:b.text,b.search_match=this.search_string_match(b.search_text,c),b.search_match&&!b.group&&(d+=1),b.search_match?(f.length&&(g=b.search_text.search(i),h=b.search_text.substr(0,g+f.length)+"</em>"+b.search_text.substr(g+f.length),b.search_text=h.substr(0,g)+"<em>"+h.substr(g)),null!=e&&(e.group_match=!0)):null!=b.group_array_index&&this.results_data[b.group_array_index].search_match&&(b.search_match=!0)));return this.result_clear_highlight(),1>d&&f.length?(this.update_results_content(""),this.no_results(f)):(this.update_results_content(this.results_option_build()),this.winnow_results_set_highlight())},AbstractChosen.prototype.get_search_regex=function(a){var b;return b=this.search_contains?"":"^",new RegExp(b+a,"i")},AbstractChosen.prototype.search_string_match=function(a,b){var c,d,e,f;if(b.test(a))return!0;if(this.enable_split_word_search&&(a.indexOf(" ")>=0||0===a.indexOf("["))&&(d=a.replace(/\[|\]/g,"").split(" "),d.length))for(e=0,f=d.length;f>e;e++)if(c=d[e],b.test(c))return!0},AbstractChosen.prototype.choices_count=function(){var a,b,c,d;if(null!=this.selected_option_count)return this.selected_option_count;for(this.selected_option_count=0,d=this.form_field.options,b=0,c=d.length;c>b;b++)a=d[b],a.selected&&(this.selected_option_count+=1);return this.selected_option_count},AbstractChosen.prototype.choices_click=function(a){return a.preventDefault(),this.results_showing||this.is_disabled?void 0:this.results_show()},AbstractChosen.prototype.keyup_checker=function(a){var b,c;switch(b=null!=(c=a.which)?c:a.keyCode,this.search_field_scale(),b){case 8:if(this.is_multiple&&this.backstroke_length<1&&this.choices_count()>0)return this.keydown_backstroke();if(!this.pending_backstroke)return this.result_clear_highlight(),this.results_search();break;case 13:if(a.preventDefault(),this.results_showing)return this.result_select(a);break;case 27:return this.results_showing&&this.results_hide(),!0;case 9:case 38:case 40:case 16:case 91:case 17:break;default:return this.results_search()}},AbstractChosen.prototype.clipboard_event_checker=function(){var a=this;return setTimeout(function(){return a.results_search()},50)},AbstractChosen.prototype.container_width=function(){return null!=this.options.width?this.options.width:""+this.form_field.offsetWidth+"px"},AbstractChosen.prototype.include_option_in_results=function(a){return this.is_multiple&&!this.display_selected_options&&a.selected?!1:!this.display_disabled_options&&a.disabled?!1:a.empty?!1:!0},AbstractChosen.prototype.search_results_touchstart=function(a){return this.touch_started=!0,this.search_results_mouseover(a)},AbstractChosen.prototype.search_results_touchmove=function(a){return this.touch_started=!1,this.search_results_mouseout(a)},AbstractChosen.prototype.search_results_touchend=function(a){return this.touch_started?this.search_results_mouseup(a):void 0},AbstractChosen.prototype.outerHTML=function(a){var b;return a.outerHTML?a.outerHTML:(b=document.createElement("div"),b.appendChild(a),b.innerHTML)},AbstractChosen.browser_is_supported=function(){return"Microsoft Internet Explorer"===window.navigator.appName?document.documentMode>=8:/iP(od|hone)/i.test(window.navigator.userAgent)?!1:/Android/i.test(window.navigator.userAgent)&&/Mobile/i.test(window.navigator.userAgent)?!1:!0},AbstractChosen.default_multiple_text="Select Some Options",AbstractChosen.default_single_text="Select an Option",AbstractChosen.default_no_result_text="No results match",AbstractChosen}(),a=jQuery,a.fn.extend({chosen:function(b){return AbstractChosen.browser_is_supported()?this.each(function(){var c,d;c=a(this),d=c.data("chosen"),"destroy"===b&&d instanceof Chosen?d.destroy():d instanceof Chosen||c.data("chosen",new Chosen(this,b))}):this}}),Chosen=function(c){function Chosen(){return b=Chosen.__super__.constructor.apply(this,arguments)}return d(Chosen,c),Chosen.prototype.setup=function(){return this.form_field_jq=a(this.form_field),this.current_selectedIndex=this.form_field.selectedIndex,this.is_rtl=this.form_field_jq.hasClass("chosen-rtl")},Chosen.prototype.set_up_html=function(){var b,c;return b=["chosen-container"],b.push("chosen-container-"+(this.is_multiple?"multi":"single")),this.inherit_select_classes&&this.form_field.className&&b.push(this.form_field.className),this.is_rtl&&b.push("chosen-rtl"),c={"class":b.join(" "),style:"width: "+this.container_width()+";",title:this.form_field.title},this.form_field.id.length&&(c.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"),this.container=a("<div />",c),this.is_multiple?this.container.html('<ul class="chosen-choices"><li class="search-field"><input type="text" value="'+this.default_text+'" class="default" autocomplete="off" style="width:25px;" /></li></ul><div class="chosen-drop"><ul class="chosen-results"></ul></div>'):this.container.html('<a class="chosen-single chosen-default" tabindex="-1"><span>'+this.default_text+'</span><div><b></b></div></a><div class="chosen-drop"><div class="chosen-search"><input type="text" autocomplete="off" /></div><ul class="chosen-results"></ul></div>'),this.form_field_jq.hide().after(this.container),this.dropdown=this.container.find("div.chosen-drop").first(),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chosen-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chosen-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chosen-search").first(),this.selected_item=this.container.find(".chosen-single").first()),this.results_build(),this.set_tab_index(),this.set_label_behavior(),this.form_field_jq.trigger("chosen:ready",{chosen:this})},Chosen.prototype.register_observers=function(){var a=this;return this.container.bind("touchstart.chosen",function(b){a.container_mousedown(b)}),this.container.bind("touchend.chosen",function(b){a.container_mouseup(b)}),this.container.bind("mousedown.chosen",function(b){a.container_mousedown(b)}),this.container.bind("mouseup.chosen",function(b){a.container_mouseup(b)}),this.container.bind("mouseenter.chosen",function(b){a.mouse_enter(b)}),this.container.bind("mouseleave.chosen",function(b){a.mouse_leave(b)}),this.search_results.bind("mouseup.chosen",function(b){a.search_results_mouseup(b)}),this.search_results.bind("mouseover.chosen",function(b){a.search_results_mouseover(b)}),this.search_results.bind("mouseout.chosen",function(b){a.search_results_mouseout(b)}),this.search_results.bind("mousewheel.chosen DOMMouseScroll.chosen",function(b){a.search_results_mousewheel(b)}),this.search_results.bind("touchstart.chosen",function(b){a.search_results_touchstart(b)}),this.search_results.bind("touchmove.chosen",function(b){a.search_results_touchmove(b)}),this.search_results.bind("touchend.chosen",function(b){a.search_results_touchend(b)}),this.form_field_jq.bind("chosen:updated.chosen",function(b){a.results_update_field(b)}),this.form_field_jq.bind("chosen:activate.chosen",function(b){a.activate_field(b)}),this.form_field_jq.bind("chosen:open.chosen",function(b){a.container_mousedown(b)}),this.form_field_jq.bind("chosen:close.chosen",function(b){a.input_blur(b)}),this.search_field.bind("blur.chosen",function(b){a.input_blur(b)}),this.search_field.bind("keyup.chosen",function(b){a.keyup_checker(b)}),this.search_field.bind("keydown.chosen",function(b){a.keydown_checker(b)}),this.search_field.bind("focus.chosen",function(b){a.input_focus(b)}),this.search_field.bind("cut.chosen",function(b){a.clipboard_event_checker(b)}),this.search_field.bind("paste.chosen",function(b){a.clipboard_event_checker(b)}),this.is_multiple?this.search_choices.bind("click.chosen",function(b){a.choices_click(b)}):this.container.bind("click.chosen",function(a){a.preventDefault()})},Chosen.prototype.destroy=function(){return a(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action),this.search_field[0].tabIndex&&(this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex),this.container.remove(),this.form_field_jq.removeData("chosen"),this.form_field_jq.show()},Chosen.prototype.search_field_disabled=function(){return this.is_disabled=this.form_field_jq[0].disabled,this.is_disabled?(this.container.addClass("chosen-disabled"),this.search_field[0].disabled=!0,this.is_multiple||this.selected_item.unbind("focus.chosen",this.activate_action),this.close_field()):(this.container.removeClass("chosen-disabled"),this.search_field[0].disabled=!1,this.is_multiple?void 0:this.selected_item.bind("focus.chosen",this.activate_action))},Chosen.prototype.container_mousedown=function(b){return this.is_disabled||(b&&"mousedown"===b.type&&!this.results_showing&&b.preventDefault(),null!=b&&a(b.target).hasClass("search-choice-close"))?void 0:(this.active_field?this.is_multiple||!b||a(b.target)[0]!==this.selected_item[0]&&!a(b.target).parents("a.chosen-single").length||(b.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),a(this.container[0].ownerDocument).bind("click.chosen",this.click_test_action),this.results_show()),this.activate_field())},Chosen.prototype.container_mouseup=function(a){return"ABBR"!==a.target.nodeName||this.is_disabled?void 0:this.results_reset(a)},Chosen.prototype.search_results_mousewheel=function(a){var b;return a.originalEvent&&(b=a.originalEvent.deltaY||-a.originalEvent.wheelDelta||a.originalEvent.detail),null!=b?(a.preventDefault(),"DOMMouseScroll"===a.type&&(b=40*b),this.search_results.scrollTop(b+this.search_results.scrollTop())):void 0},Chosen.prototype.blur_test=function(){return!this.active_field&&this.container.hasClass("chosen-container-active")?this.close_field():void 0},Chosen.prototype.close_field=function(){return a(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chosen-container-active"),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale()},Chosen.prototype.activate_field=function(){return this.container.addClass("chosen-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},Chosen.prototype.test_active_click=function(b){var c;return c=a(b.target).closest(".chosen-container"),c.length&&this.container[0]===c[0]?this.active_field=!0:this.close_field()},Chosen.prototype.results_build=function(){return this.parsing=!0,this.selected_option_count=null,this.results_data=SelectParser.select_to_array(this.form_field),this.is_multiple?this.search_choices.find("li.search-choice").remove():this.is_multiple||(this.single_set_selected_text(),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?(this.search_field[0].readOnly=!0,this.container.addClass("chosen-container-single-nosearch")):(this.search_field[0].readOnly=!1,this.container.removeClass("chosen-container-single-nosearch"))),this.update_results_content(this.results_option_build({first:!0})),this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.parsing=!1},Chosen.prototype.result_do_highlight=function(a){var b,c,d,e,f;if(a.length){if(this.result_clear_highlight(),this.result_highlight=a,this.result_highlight.addClass("highlighted"),d=parseInt(this.search_results.css("maxHeight"),10),f=this.search_results.scrollTop(),e=d+f,c=this.result_highlight.position().top+this.search_results.scrollTop(),b=c+this.result_highlight.outerHeight(),b>=e)return this.search_results.scrollTop(b-d>0?b-d:0);if(f>c)return this.search_results.scrollTop(c)}},Chosen.prototype.result_clear_highlight=function(){return this.result_highlight&&this.result_highlight.removeClass("highlighted"),this.result_highlight=null},Chosen.prototype.results_show=function(){return this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.container.addClass("chosen-with-drop"),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.search_field.val()),this.winnow_results(),this.form_field_jq.trigger("chosen:showing_dropdown",{chosen:this}))},Chosen.prototype.update_results_content=function(a){return this.search_results.html(a)},Chosen.prototype.results_hide=function(){return this.results_showing&&(this.result_clear_highlight(),this.container.removeClass("chosen-with-drop"),this.form_field_jq.trigger("chosen:hiding_dropdown",{chosen:this})),this.results_showing=!1},Chosen.prototype.set_tab_index=function(){var a;return this.form_field.tabIndex?(a=this.form_field.tabIndex,this.form_field.tabIndex=-1,this.search_field[0].tabIndex=a):void 0},Chosen.prototype.set_label_behavior=function(){var b=this;return this.form_field_label=this.form_field_jq.parents("label"),!this.form_field_label.length&&this.form_field.id.length&&(this.form_field_label=a("label[for='"+this.form_field.id+"']")),this.form_field_label.length>0?this.form_field_label.bind("click.chosen",function(a){return b.is_multiple?b.container_mousedown(a):b.activate_field()}):void 0},Chosen.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices_count()<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},Chosen.prototype.search_results_mouseup=function(b){var c;return c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first(),c.length?(this.result_highlight=c,this.result_select(b),this.search_field.focus()):void 0},Chosen.prototype.search_results_mouseover=function(b){var c;return c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first(),c?this.result_do_highlight(c):void 0},Chosen.prototype.search_results_mouseout=function(b){return a(b.target).hasClass("active-result")?this.result_clear_highlight():void 0},Chosen.prototype.choice_build=function(b){var c,d,e=this;return c=a("<li />",{"class":"search-choice"}).html("<span>"+b.html+"</span>"),b.disabled?c.addClass("search-choice-disabled"):(d=a("<a />",{"class":"search-choice-close","data-option-array-index":b.array_index}),d.bind("click.chosen",function(a){return e.choice_destroy_link_click(a)}),c.append(d)),this.search_container.before(c)},Chosen.prototype.choice_destroy_link_click=function(b){return b.preventDefault(),b.stopPropagation(),this.is_disabled?void 0:this.choice_destroy(a(b.target))},Chosen.prototype.choice_destroy=function(a){return this.result_deselect(a[0].getAttribute("data-option-array-index"))?(this.show_search_field_default(),this.is_multiple&&this.choices_count()>0&&this.search_field.val().length<1&&this.results_hide(),a.parents("li").first().remove(),this.search_field_scale()):void 0},Chosen.prototype.results_reset=function(){return this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.form_field_jq.trigger("change"),this.active_field?this.results_hide():void 0},Chosen.prototype.results_reset_cleanup=function(){return this.current_selectedIndex=this.form_field.selectedIndex,this.selected_item.find("abbr").remove()},Chosen.prototype.result_select=function(a){var b,c;return this.result_highlight?(b=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?b.removeClass("active-result"):this.reset_single_select_options(),c=this.results_data[b[0].getAttribute("data-option-array-index")],c.selected=!0,this.form_field.options[c.options_index].selected=!0,this.selected_option_count=null,this.is_multiple?this.choice_build(c):this.single_set_selected_text(c.text),(a.metaKey||a.ctrlKey)&&this.is_multiple||this.results_hide(),this.search_field.val(""),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.form_field_jq.trigger("change",{selected:this.form_field.options[c.options_index].value}),this.current_selectedIndex=this.form_field.selectedIndex,this.search_field_scale())):void 0},Chosen.prototype.single_set_selected_text=function(a){return null==a&&(a=this.default_text),a===this.default_text?this.selected_item.addClass("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClass("chosen-default")),this.selected_item.find("span").text(a)},Chosen.prototype.result_deselect=function(a){var b;return b=this.results_data[a],this.form_field.options[b.options_index].disabled?!1:(b.selected=!1,this.form_field.options[b.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.form_field_jq.trigger("change",{deselected:this.form_field.options[b.options_index].value}),this.search_field_scale(),!0)},Chosen.prototype.single_deselect_control_build=function(){return this.allow_single_deselect?(this.selected_item.find("abbr").length||this.selected_item.find("span").first().after('<abbr class="search-choice-close"></abbr>'),this.selected_item.addClass("chosen-single-with-deselect")):void 0},Chosen.prototype.get_search_text=function(){return this.search_field.val()===this.default_text?"":a("<div/>").text(a.trim(this.search_field.val())).html()},Chosen.prototype.winnow_results_set_highlight=function(){var a,b;return b=this.is_multiple?[]:this.search_results.find(".result-selected.active-result"),a=b.length?b.first():this.search_results.find(".active-result").first(),null!=a?this.result_do_highlight(a):void 0},Chosen.prototype.no_results=function(b){var c;return c=a('<li class="no-results">'+this.results_none_found+' "<span></span>"</li>'),c.find("span").first().html(b),this.search_results.append(c),this.form_field_jq.trigger("chosen:no_results",{chosen:this})},Chosen.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},Chosen.prototype.keydown_arrow=function(){var a;return this.results_showing&&this.result_highlight?(a=this.result_highlight.nextAll("li.active-result").first())?this.result_do_highlight(a):void 0:this.results_show()},Chosen.prototype.keyup_arrow=function(){var a;return this.results_showing||this.is_multiple?this.result_highlight?(a=this.result_highlight.prevAll("li.active-result"),a.length?this.result_do_highlight(a.first()):(this.choices_count()>0&&this.results_hide(),this.result_clear_highlight())):void 0:this.results_show()},Chosen.prototype.keydown_backstroke=function(){var a;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke()):(a=this.search_container.siblings("li.search-choice").last(),a.length&&!a.hasClass("search-choice-disabled")?(this.pending_backstroke=a,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")):void 0)},Chosen.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},Chosen.prototype.keydown_checker=function(a){var b,c;switch(b=null!=(c=a.which)?c:a.keyCode,this.search_field_scale(),8!==b&&this.pending_backstroke&&this.clear_backstroke(),b){case 8:this.backstroke_length=this.search_field.val().length;break;case 9:this.results_showing&&!this.is_multiple&&this.result_select(a),this.mouse_on_container=!1;break;case 13:this.results_showing&&a.preventDefault();break;case 32:this.disable_search&&a.preventDefault();break;case 38:a.preventDefault(),this.keyup_arrow();break;case 40:a.preventDefault(),this.keydown_arrow()}},Chosen.prototype.search_field_scale=function(){var b,c,d,e,f,g,h,i,j;if(this.is_multiple){for(d=0,h=0,f="position:absolute; left: -1000px; top: -1000px; display:none;",g=["font-size","font-style","font-weight","font-family","line-height","text-transform","letter-spacing"],i=0,j=g.length;j>i;i++)e=g[i],f+=e+":"+this.search_field.css(e)+";";return b=a("<div />",{style:f}),b.text(this.search_field.val()),a("body").append(b),h=b.width()+25,b.remove(),c=this.container.outerWidth(),h>c-10&&(h=c-10),this.search_field.css({width:h+"px"})}},Chosen}(AbstractChosen)}.call(this);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dependencies/chosen/chosen.min.css
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
|
|
|
|
1 |
+
/* Chosen v1.2.0 | (c) 2011-2014 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
|
2 |
+
|
3 |
+
.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;zoom:1;*display:inline;-webkit-user-select:none;-moz-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;left:-9999px;z-index:1010;width:100%;border:1px solid #aaa;border-top:0;background:#fff;box-shadow:0 4px 5px rgba(0,0,0,.15)}.chosen-container.chosen-with-drop .chosen-drop{left:0}.chosen-container a{cursor:pointer}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));background:-webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:-o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background:linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;background:url(chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;background:url(chosen-sprite.png) no-repeat 0 2px}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;background:#fff url(chosen-sprite.png) no-repeat 100% -20px;background:url(chosen-sprite.png) no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px}.chosen-container .chosen-results{color:#444;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:-webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-moz-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:-o-linear-gradient(#3875d7 20%,#2a62bc 90%);background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto!important;height:1%;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(#eee 1%,#fff 15%);background-image:-moz-linear-gradient(#eee 1%,#fff 15%);background-image:-o-linear-gradient(#eee 1%,#fff 15%);background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:0;height:25px;outline:0;border:0!important;background:transparent!important;box-shadow:none;color:#999;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(chosen-sprite.png) -42px 1px no-repeat;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));background-image:-webkit-linear-gradient(#eee 20%,#fff 80%);background-image:-moz-linear-gradient(#eee 20%,#fff 80%);background-image:-o-linear-gradient(#eee 20%,#fff 80%);background-image:linear-gradient(#eee 20%,#fff 80%);box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:0;background:transparent}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single-nosearch .chosen-search,.chosen-rtl .chosen-drop{left:9999px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:0}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;background:#fff url(chosen-sprite.png) no-repeat -30px -20px;background:url(chosen-sprite.png) no-repeat -30px -20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-resolution:144dpi){.chosen-rtl .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-container-single .chosen-search input[type=text],.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span{background-image:url(chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}
|
assets/dependencies/chosen/img/chosen-sprite.png
DELETED
Binary file
|
assets/dependencies/chosen/img/chosen-sprite@2x.png
DELETED
Binary file
|
googleanalytics.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Analytics by Yoast
|
|
4 |
Plugin URI: https://yoast.com/wordpress/plugins/google-analytics/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wpgaplugin&utm_content=v504
|
5 |
Description: This plugin makes it simple to add Google Analytics to your WordPress blog, adding lots of features, eg. error page, search result and automatic clickout and download tracking.
|
6 |
Author: Team Yoast
|
7 |
-
Version: 5.2
|
8 |
Requires at least: 3.8
|
9 |
Author URI: https://yoast.com/
|
10 |
License: GPL v3
|
@@ -30,7 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
30 |
|
31 |
// This plugin was originally based on Rich Boakes' Analytics plugin: http://boakes.org/analytics, but has since been rewritten and refactored multiple times.
|
32 |
|
33 |
-
define( 'GAWP_VERSION', '5.2' );
|
34 |
|
35 |
define( 'GAWP_FILE', __FILE__ );
|
36 |
|
4 |
Plugin URI: https://yoast.com/wordpress/plugins/google-analytics/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wpgaplugin&utm_content=v504
|
5 |
Description: This plugin makes it simple to add Google Analytics to your WordPress blog, adding lots of features, eg. error page, search result and automatic clickout and download tracking.
|
6 |
Author: Team Yoast
|
7 |
+
Version: 5.2.1
|
8 |
Requires at least: 3.8
|
9 |
Author URI: https://yoast.com/
|
10 |
License: GPL v3
|
30 |
|
31 |
// This plugin was originally based on Rich Boakes' Analytics plugin: http://boakes.org/analytics, but has since been rewritten and refactored multiple times.
|
32 |
|
33 |
+
define( 'GAWP_VERSION', '5.2.1' );
|
34 |
|
35 |
define( 'GAWP_FILE', __FILE__ );
|
36 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://yoast.com/donate/
|
|
4 |
Tags: analytics, google analytics, statistics, tracking, stats, google, yoast
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 5.2
|
8 |
|
9 |
Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.
|
10 |
|
@@ -49,6 +49,18 @@ This section describes how to install the plugin and get it working.
|
|
49 |
|
50 |
== Changelog ==
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
= 5.2 =
|
53 |
|
54 |
Release Date: December 9th, 2014
|
4 |
Tags: analytics, google analytics, statistics, tracking, stats, google, yoast
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 5.2.1
|
8 |
|
9 |
Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.
|
10 |
|
49 |
|
50 |
== Changelog ==
|
51 |
|
52 |
+
= 5.2.1 =
|
53 |
+
|
54 |
+
Release Date: December 9th, 2014
|
55 |
+
|
56 |
+
Enhancements:
|
57 |
+
* Replaced jQuery Chosen library with latest version to enable optgroup search.
|
58 |
+
* Shows a warning when configuring a manual UA-code that this will not work together with the dashboards functionality.
|
59 |
+
|
60 |
+
Bugfixes:
|
61 |
+
* Fixes a 'headers already sent' warning.
|
62 |
+
* Fixes a bug where nothing was shown on the dashboards for setups with a manual UA-code. It now shows you a message that you need to authenticate with Google Analytics if you wish to make use of the dashboards feature.
|
63 |
+
|
64 |
= 5.2 =
|
65 |
|
66 |
Release Date: December 9th, 2014
|