Version Description
- December 15th, 2018 =
- New: Introduce new Timeline content block (inside of the widget content blocks).
- Tweak: Remove unused jquery masonry script enqueue.
Download this release
Release Info
Developer | eherman24 |
Plugin | Timeline Express |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.4 to 1.8.0
- constants.php +10 -1
- lib/admin/blocks/blocks.js +7 -0
- lib/admin/blocks/timeline/css/timeline-block.css +28 -0
- lib/admin/blocks/timeline/css/timeline-block.min.css +1 -0
- lib/admin/blocks/timeline/js/icons.js +93 -0
- lib/admin/blocks/timeline/js/timeline-block.js +164 -0
- lib/admin/css/min/timeline-express-admin-rtl.min.css +2 -2
- lib/admin/css/min/timeline-express-admin.min.css +2 -2
- lib/admin/js/min/timeline-express-admin.min.js +2 -2
- lib/admin/js/min/timeline-express-blocks.min.js +8 -0
- lib/admin/js/min/timeline-express-tinymce.min.js +2 -2
- lib/admin/js/timeline-express-blocks.js +88 -0
- lib/classes/class-timeline-express-admin.php +3 -1
- lib/classes/class-timeline-express-blocks.php +83 -0
- lib/classes/class-timeline-express-initialize.php +3 -5
- lib/public/css/min/timeline-express-rtl.min.css +2 -2
- lib/public/css/min/timeline-express.min.css +2 -2
- lib/public/js/min/timeline-express.min.js +2 -2
- readme.txt +11 -4
- timeline-express.php +1 -1
constants.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
*/
|
16 |
if ( ! defined( 'TIMELINE_EXPRESS_VERSION_CURRENT' ) ) {
|
17 |
|
18 |
-
define( 'TIMELINE_EXPRESS_VERSION_CURRENT', '1.
|
19 |
|
20 |
}
|
21 |
|
@@ -54,3 +54,12 @@ if ( ! defined( 'TIMELINE_EXPRESS_SITE_URL' ) ) {
|
|
54 |
define( 'TIMELINE_EXPRESS_SITE_URL', 'https://www.wp-timelineexpress.com' );
|
55 |
|
56 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
*/
|
16 |
if ( ! defined( 'TIMELINE_EXPRESS_VERSION_CURRENT' ) ) {
|
17 |
|
18 |
+
define( 'TIMELINE_EXPRESS_VERSION_CURRENT', '1.8.0' );
|
19 |
|
20 |
}
|
21 |
|
54 |
define( 'TIMELINE_EXPRESS_SITE_URL', 'https://www.wp-timelineexpress.com' );
|
55 |
|
56 |
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* Define Timeline Express blocks path
|
60 |
+
*/
|
61 |
+
if ( ! defined( 'TIMELINE_EXPRESS_BLOCKS_PATH' ) ) {
|
62 |
+
|
63 |
+
define( 'TIMELINE_EXPRESS_BLOCKS_PATH', plugin_dir_path( __FILE__ ) . '/lib/admin/blocks/' );
|
64 |
+
|
65 |
+
}
|
lib/admin/blocks/blocks.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* Set Locale
|
3 |
+
*/
|
4 |
+
wp.i18n.setLocaleData( { '': {} }, 'timeline-express' );
|
5 |
+
|
6 |
+
// Import Blocks
|
7 |
+
import './timeline/js/timeline-block.js';
|
lib/admin/blocks/timeline/css/timeline-block.css
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* Timeline Express Block Editor Styles
|
3 |
+
*
|
4 |
+
* @since 1.8.0
|
5 |
+
*/
|
6 |
+
.timeline-block-inspector-controls .components-base-control {
|
7 |
+
display: block;
|
8 |
+
width: 100% !important;
|
9 |
+
}
|
10 |
+
|
11 |
+
.timeline-block-inspector-controls .components-base-control {
|
12 |
+
margin-bottom: 3px !important;
|
13 |
+
}
|
14 |
+
|
15 |
+
.timeline-block-inspector-controls .components-panel__row {
|
16 |
+
margin-top: 10px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.timeline-block-inspector-controls label {
|
20 |
+
font-weight: 600;
|
21 |
+
}
|
22 |
+
|
23 |
+
.wp-block-timeline-express-timeline-block .te-preloader {
|
24 |
+
display: block;
|
25 |
+
padding: 5px 0;
|
26 |
+
margin: 0 auto;
|
27 |
+
max-width: 22px;
|
28 |
+
}
|
lib/admin/blocks/timeline/css/timeline-block.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.timeline-block-inspector-controls .components-base-control{display:block;width:100%!important}.timeline-block-inspector-controls .components-base-control{margin-bottom:3px!important}.timeline-block-inspector-controls .components-panel__row{margin-top:10px}.timeline-block-inspector-controls label{font-weight:600}.wp-block-timeline-express-timeline-block .te-preloader{display:block;padding:5px 0;margin:0 auto;max-width:22px}
|
lib/admin/blocks/timeline/js/icons.js
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const timelineBlockIcons = {};
|
2 |
+
|
3 |
+
timelineBlockIcons.timelineIcon = <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
4 |
+
width="25px" height="25px" viewBox="0 0 25 25" enable-background="new 0 0 25 25">
|
5 |
+
<g>
|
6 |
+
<defs>
|
7 |
+
<rect id="SVGID_1_" x="-27.5" y="-18.5" width="80" height="60"/>
|
8 |
+
</defs>
|
9 |
+
<clipPath id="SVGID_2_">
|
10 |
+
<use href="#SVGID_1_" overflow="visible"/>
|
11 |
+
</clipPath>
|
12 |
+
<g clip-path="url(#SVGID_2_)">
|
13 |
+
<defs>
|
14 |
+
<rect id="SVGID_3_" x="-27.5" y="-18.5" width="80" height="60"/>
|
15 |
+
</defs>
|
16 |
+
<clipPath id="SVGID_4_">
|
17 |
+
<use href="#SVGID_3_" overflow="visible"/>
|
18 |
+
</clipPath>
|
19 |
+
<g clip-path="url(#SVGID_4_)">
|
20 |
+
<path fill="#BF5D00" d="M14.898,21.002c-0.044-0.035-0.102-0.051-0.157-0.039c-0.453,0.088-1.206,0.194-2.226,0.194
|
21 |
+
c-1.019,0-1.772-0.106-2.225-0.194c-0.056-0.012-0.114,0.003-0.158,0.039c-0.044,0.037-0.069,0.091-0.069,0.146v1.032
|
22 |
+
c0,0.095,0.068,0.174,0.161,0.188c0.051,0.008,1.268,0.201,2.292,0.201c1.024,0,2.241-0.193,2.292-0.201
|
23 |
+
c0.093-0.015,0.161-0.094,0.161-0.188v-1.032C14.969,21.093,14.942,21.039,14.898,21.002"/>
|
24 |
+
<g opacity="0.2">
|
25 |
+
<g>
|
26 |
+
<defs>
|
27 |
+
<rect id="SVGID_5_" x="10.063" y="20.902" width="4.905" height="0.77"/>
|
28 |
+
</defs>
|
29 |
+
<clipPath id="SVGID_6_">
|
30 |
+
<use href="#SVGID_5_" overflow="visible"/>
|
31 |
+
</clipPath>
|
32 |
+
<path clip-path="url(#SVGID_6_)" fill="#231F20" d="M14.898,20.945c-0.044-0.036-0.102-0.051-0.157-0.04
|
33 |
+
c-0.453,0.089-1.206,0.195-2.226,0.195c-1.019,0-1.772-0.106-2.225-0.195c-0.056-0.011-0.114,0.004-0.158,0.04
|
34 |
+
c-0.044,0.036-0.069,0.09-0.069,0.146v0.572c0-0.057,0.025-0.111,0.069-0.146c0.044-0.037,0.102-0.053,0.158-0.041
|
35 |
+
c0.453,0.09,1.206,0.195,2.225,0.195c1.02,0,1.772-0.105,2.226-0.195c0.056-0.011,0.113,0.004,0.157,0.041
|
36 |
+
c0.044,0.035,0.07,0.09,0.07,0.146v-0.572C14.969,21.035,14.942,20.981,14.898,20.945"/>
|
37 |
+
</g>
|
38 |
+
</g>
|
39 |
+
<g>
|
40 |
+
<path fill="#E67000" d="M6.082,15.405c0.422-0.942,1.75-2.285,1.806-2.341c0.049-0.05,0.121-0.068,0.188-0.049
|
41 |
+
c0.066,0.019,0.118,0.072,0.133,0.14l1.766,7.641c0.014,0.061-0.002,0.125-0.043,0.17c-0.042,0.047-0.103,0.071-0.164,0.062
|
42 |
+
c0,0-0.09-0.01-0.236-0.01c-0.641,0-2.185,0.186-2.679,1.902c-0.022,0.076-0.088,0.132-0.167,0.138
|
43 |
+
c-0.005,0.001-0.01,0.001-0.016,0.001c-0.073,0-0.14-0.042-0.172-0.108C4.892,19.58,5.653,16.36,6.082,15.405"/>
|
44 |
+
<path fill="#FF7C00" d="M12.516,1.031c-0.934,0-4.765,4.896-4.765,10.666c0,5.594,1.69,9.183,1.707,9.221
|
45 |
+
c0.021,0.046,0.061,0.083,0.11,0.1c0.042,0.015,1.053,0.365,2.948,0.365s2.906-0.351,2.949-0.365
|
46 |
+
c0.048-0.017,0.088-0.054,0.108-0.1c0.018-0.038,1.708-3.626,1.708-9.221C17.281,5.928,13.449,1.031,12.516,1.031"/>
|
47 |
+
<path fill="#BF5D00" d="M15.306,4.306c-1.1-2.006-2.308-3.274-2.79-3.274c-0.482,0-1.689,1.269-2.79,3.274
|
48 |
+
c0.312,0.092,1.227,0.316,2.79,0.316S14.993,4.397,15.306,4.306"/>
|
49 |
+
<path fill="#FFFFFF" d="M12.516,11.571c-0.812,0-1.474-0.661-1.474-1.474c0-0.813,0.662-1.475,1.474-1.475
|
50 |
+
c0.813,0,1.475,0.661,1.475,1.475C13.99,10.91,13.329,11.571,12.516,11.571"/>
|
51 |
+
<path fill="#E66E00" d="M12.516,8.722c0.759,0,1.375,0.615,1.375,1.375c0,0.759-0.616,1.374-1.375,1.374
|
52 |
+
s-1.375-0.615-1.375-1.374C11.141,9.337,11.757,8.722,12.516,8.722 M12.516,8.522c-0.868,0-1.574,0.707-1.574,1.575
|
53 |
+
c0,0.868,0.706,1.574,1.574,1.574s1.574-0.707,1.574-1.574C14.09,9.229,13.384,8.522,12.516,8.522"/>
|
54 |
+
<path fill="#FFFFFF" d="M12.516,15.929c-0.55,0-0.998-0.448-0.998-0.999s0.448-0.999,0.998-0.999
|
55 |
+
c0.551,0,0.999,0.448,0.999,0.999S13.066,15.929,12.516,15.929"/>
|
56 |
+
<path fill="#E66E00" d="M12.516,14.032c0.497,0,0.898,0.402,0.898,0.898c0,0.497-0.401,0.898-0.898,0.898
|
57 |
+
c-0.496,0-0.898-0.402-0.898-0.898C11.617,14.435,12.02,14.032,12.516,14.032 M12.516,13.832c-0.605,0-1.098,0.493-1.098,1.099
|
58 |
+
c0,0.606,0.493,1.099,1.098,1.099c0.605,0,1.1-0.493,1.1-1.099C13.615,14.325,13.121,13.832,12.516,13.832"/>
|
59 |
+
<path fill="#E6E7E8" d="M11.408,10.363c0-0.759,0.616-1.375,1.375-1.375c0.312,0,0.598,0.105,0.828,0.28
|
60 |
+
c-0.251-0.332-0.647-0.546-1.095-0.546c-0.759,0-1.375,0.616-1.375,1.375c0,0.447,0.215,0.844,0.546,1.095
|
61 |
+
C11.513,10.961,11.408,10.675,11.408,10.363"/>
|
62 |
+
<path fill="#E6E7E8" d="M11.884,15.197c0-0.496,0.402-0.898,0.898-0.898c0.18,0,0.347,0.055,0.487,0.145
|
63 |
+
c-0.16-0.247-0.438-0.412-0.754-0.412c-0.496,0-0.898,0.402-0.898,0.898c0,0.316,0.165,0.594,0.412,0.754
|
64 |
+
C11.938,15.544,11.884,15.377,11.884,15.197"/>
|
65 |
+
<path fill="#FF7C00" d="M18.913,15.405c-0.422-0.942-1.75-2.285-1.807-2.341c-0.048-0.05-0.12-0.068-0.187-0.049
|
66 |
+
s-0.118,0.072-0.133,0.14l-1.766,7.641c-0.016,0.061,0.001,0.125,0.042,0.17c0.042,0.047,0.103,0.071,0.165,0.062
|
67 |
+
c0,0,0.09-0.01,0.236-0.01c0.641,0,2.185,0.186,2.68,1.902c0.021,0.076,0.088,0.132,0.167,0.138
|
68 |
+
c0.005,0.001,0.01,0.001,0.016,0.001c0.072,0,0.14-0.042,0.172-0.108C20.103,19.58,19.342,16.36,18.913,15.405"/>
|
69 |
+
<path fill="#FF9633" d="M15.914,5.537c0.647,1.63,0.988,5.093,0.609,7.452c0.356,0.372,1.325,1.425,1.674,2.204
|
70 |
+
c0.414,0.924,1.139,3.959-0.259,7.201c0.081,0.158,0.152,0.334,0.21,0.531c0.021,0.075,0.088,0.13,0.167,0.137
|
71 |
+
c0.005,0,0.011,0,0.017,0c0.072,0,0.14-0.041,0.171-0.107c1.605-3.371,0.844-6.59,0.415-7.546
|
72 |
+
c-0.35-0.779-1.318-1.832-1.674-2.204c0.027-0.483,0.042-0.984,0.042-1.503C17.286,9.43,16.691,7.293,15.914,5.537"/>
|
73 |
+
<g opacity="0.2">
|
74 |
+
<g>
|
75 |
+
<defs>
|
76 |
+
<rect id="SVGID_7_" x="7.751" y="1.031" width="6.281" height="20.162"/>
|
77 |
+
</defs>
|
78 |
+
<clipPath id="SVGID_8_">
|
79 |
+
<use href="#SVGID_7_" overflow="visible"/>
|
80 |
+
</clipPath>
|
81 |
+
<path clip-path="url(#SVGID_8_)" fill="#231F20" d="M8.931,12.877c0-5.769,3.832-10.665,4.765-10.665
|
82 |
+
c0.088,0,0.202,0.044,0.336,0.127c-0.651-0.831-1.225-1.308-1.517-1.308c-0.934,0-4.765,4.896-4.765,10.666
|
83 |
+
c0,5.594,1.69,9.183,1.707,9.221c0.021,0.046,0.061,0.083,0.11,0.1c0.021,0.008,0.262,0.09,0.711,0.176
|
84 |
+
C9.778,19.791,8.931,16.839,8.931,12.877"/>
|
85 |
+
</g>
|
86 |
+
</g>
|
87 |
+
</g>
|
88 |
+
</g>
|
89 |
+
</g>
|
90 |
+
</g>
|
91 |
+
</svg>;
|
92 |
+
|
93 |
+
export default timelineBlockIcons;
|
lib/admin/blocks/timeline/js/timeline-block.js
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import timelineBlockIcons from './icons';
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Internal block libraries
|
5 |
+
*/
|
6 |
+
const { __ } = wp.i18n;
|
7 |
+
|
8 |
+
const {
|
9 |
+
registerBlockType
|
10 |
+
} = wp.blocks;
|
11 |
+
|
12 |
+
const {
|
13 |
+
InspectorControls
|
14 |
+
} = wp.editor;
|
15 |
+
|
16 |
+
const {
|
17 |
+
PanelBody,
|
18 |
+
PanelRow,
|
19 |
+
TextControl,
|
20 |
+
SelectControl
|
21 |
+
} = wp.components;
|
22 |
+
|
23 |
+
console.log( timelineBlock.timeFrame );
|
24 |
+
|
25 |
+
/**
|
26 |
+
* Register block
|
27 |
+
*/
|
28 |
+
export default registerBlockType( 'timeline-express/timeline-block', {
|
29 |
+
title: __( 'Timeline', 'timeline-express' ),
|
30 |
+
description: __( 'Display a beautiful timeline of events on your site.', 'timeline-express' ),
|
31 |
+
category: 'widgets',
|
32 |
+
icon: timelineBlockIcons.timelineIcon,
|
33 |
+
keywords: [
|
34 |
+
__( 'Timeline', 'timeline-express' ),
|
35 |
+
__( 'Express', 'timeline-express' ),
|
36 |
+
__( 'CodeParrots', 'timeline-express' ),
|
37 |
+
],
|
38 |
+
attributes: {
|
39 |
+
announcementLimit: {
|
40 |
+
type: 'string',
|
41 |
+
default: '10',
|
42 |
+
},
|
43 |
+
displayOrder: {
|
44 |
+
type: 'string',
|
45 |
+
default: timelineBlock.displayOrder,
|
46 |
+
},
|
47 |
+
timeFrame: {
|
48 |
+
type: 'string',
|
49 |
+
default: timelineBlock.timeFrame,
|
50 |
+
},
|
51 |
+
},
|
52 |
+
edit: props => {
|
53 |
+
|
54 |
+
const { attributes: { announcementLimit, displayOrder, timeFrame }, className, setAttributes } = props;
|
55 |
+
|
56 |
+
return [
|
57 |
+
|
58 |
+
<InspectorControls key="timeline-block-inspector-controls">
|
59 |
+
<PanelBody
|
60 |
+
title={ __( 'Timeline Express', 'timeline-express' ) }
|
61 |
+
className="timeline-block-inspector-controls"
|
62 |
+
>
|
63 |
+
|
64 |
+
<PanelRow>
|
65 |
+
<TextControl
|
66 |
+
type="number"
|
67 |
+
min="0"
|
68 |
+
id="announcement-limit"
|
69 |
+
label={ sprintf( __( '%s Limit', 'timeline-express' ), timelineBlock.announcementSingular ) }
|
70 |
+
value={ announcementLimit }
|
71 |
+
onChange={ ( announcementLimit ) => props.setAttributes( { announcementLimit } ) }
|
72 |
+
/>
|
73 |
+
</PanelRow>
|
74 |
+
<p className="description">{ __( 'Set the number of announcemnets to display on the timeline. Set to 0 for no limit.', 'timeline-express' ) }</p>
|
75 |
+
|
76 |
+
<PanelRow>
|
77 |
+
<SelectControl
|
78 |
+
id="display-order"
|
79 |
+
label={ __( 'Display Order', 'timeline-express' ) }
|
80 |
+
options={ [
|
81 |
+
{ label: __( 'Ascending', 'timeline-express' ), value: 'ASC' },
|
82 |
+
{ label: __( 'Descending', 'timeline-express' ), value: 'DESC' },
|
83 |
+
] }
|
84 |
+
value={ displayOrder }
|
85 |
+
onChange={ ( displayOrder ) => props.setAttributes( { displayOrder } ) }
|
86 |
+
/>
|
87 |
+
</PanelRow>
|
88 |
+
<p className="description">{ __( 'Set the display order of the announcements.', 'timeline-express' ) }</p>
|
89 |
+
|
90 |
+
<PanelRow>
|
91 |
+
<SelectControl
|
92 |
+
id="time-frame"
|
93 |
+
label={ __( 'Time Frame', 'timeline-express' ) }
|
94 |
+
options={ [
|
95 |
+
{ label: __( 'All (Past + Future)', 'timeline-express' ), value: 'all' },
|
96 |
+
{ label: __( 'Future', 'timeline-express' ), value: 'future' },
|
97 |
+
{ label: __( 'Past', 'timeline-express' ), value: 'past' },
|
98 |
+
] }
|
99 |
+
value={ timeFrame }
|
100 |
+
onChange={ ( timeFrame ) => props.setAttributes( { timeFrame } ) }
|
101 |
+
/>
|
102 |
+
</PanelRow>
|
103 |
+
<p className="description">{ __( 'Set the time frame for the announcements.', 'timeline-express' ) }</p>
|
104 |
+
|
105 |
+
</PanelBody>
|
106 |
+
</InspectorControls>,
|
107 |
+
|
108 |
+
<div
|
109 |
+
className={ className }
|
110 |
+
key={ className }
|
111 |
+
>
|
112 |
+
<div class="timeline-target"><img src={ timelineBlock.preloader } className="te-preloader" />{ renderTimeline( props.attributes ) }</div>
|
113 |
+
</div>
|
114 |
+
|
115 |
+
];
|
116 |
+
},
|
117 |
+
|
118 |
+
save: props => {
|
119 |
+
|
120 |
+
const { attributes: { announcementLimit, displayOrder, timeFrame }, className } = props;
|
121 |
+
|
122 |
+
return (
|
123 |
+
<div
|
124 |
+
className={ className }
|
125 |
+
key={ className }
|
126 |
+
>
|
127 |
+
[timeline-express limit={ announcementLimit } order={ displayOrder } display={ timeFrame }]
|
128 |
+
</div>
|
129 |
+
);
|
130 |
+
|
131 |
+
},
|
132 |
+
} );
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Render the timeline, AJAX handler
|
136 |
+
*
|
137 |
+
* @since NEXT
|
138 |
+
*/
|
139 |
+
function renderTimeline( atts ) {
|
140 |
+
|
141 |
+
$( '.timeline-target' ).html( '<img src="' + timelineBlock.preloader + '" class="te-preloader" />' );
|
142 |
+
|
143 |
+
var data = {
|
144 |
+
'action': 'get_timeline_markup',
|
145 |
+
'announcementLimit': atts.announcementLimit,
|
146 |
+
'displayOrder': atts.displayOrder,
|
147 |
+
'timeFrame': atts.timeFrame,
|
148 |
+
};
|
149 |
+
|
150 |
+
$.post( ajaxurl, data, function( response ) {
|
151 |
+
|
152 |
+
if ( ! response.success ) {
|
153 |
+
|
154 |
+
$( '.timeline-target' ).html( timelineBlock.getTimelineError );
|
155 |
+
|
156 |
+
return;
|
157 |
+
|
158 |
+
}
|
159 |
+
|
160 |
+
$( '.timeline-target' ).html( response.data );
|
161 |
+
|
162 |
+
} );
|
163 |
+
|
164 |
+
}
|
lib/admin/css/min/timeline-express-admin-rtl.min.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
.wp-core-ui .timeline-express-red-button{background-color:#9b2124;background-image:linear-gradient(to bottom,#c5292e,#9b2124);border-color:#9b2124;border-bottom-color:#8d1f21;box-shadow:inset 0 1px 0 rgba(120,200,230,.5);color:#fff;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.1);margin-right:2em;width:150px;text-align:center}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button.hover,.wp-core-ui .timeline-express-red-button:focus,.wp-core-ui .timeline-express-red-button:hover{background-color:#b72629;background-image:linear-gradient(to bottom,#d22e30,#9b2124);border-color:#7f1c1f;box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.3)}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button:focus{border-color:#500f0e;box-shadow:inset 0 1px 0 rgba(120,200,230,.6),1px 1px 2px rgba(0,0,0,.4)}.wp-core-ui .timeline-express-red-button.active,.wp-core-ui .timeline-express-red-button.active:focus,.wp-core-ui .timeline-express-red-button.active:hover,.wp-core-ui .timeline-express-red-button:active{background:#7f1c1f;background-image:linear-gradient(to bottom,#9b2124,#b72629);border-color:#601312 #ae2426 #ae2426 #ae2426;color:rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);text-shadow:0 1px 0 rgba(0,0,0,.1)}.wp-core-ui .timeline-express-red-button-disabled,.wp-core-ui .timeline-express-red-button:disabled,.wp-core-ui .timeline-express-red-button[disabled]{color:#e79496!important;background:#ba292b!important;border-color:#7f1c1f!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}h2.nav-tab-wrapper.te-options{padding-bottom:0!important}h2.nav-tab-wrapper.te-options a.nav-tab:nth-child(1){margin-right:0!important}#advert_metabox .inside{padding:0;margin-top:0}#advert_metabox .inside .cmb2-id-announcement-advertisments{padding:0!important;border:none;background:0 0;margin-bottom:0}#advert_metabox .inside .cmb2-id-announcement-advertisments p{padding:0 10px}#advert_metabox .inside .cmb2-id-announcement-advertisments a.advertisment-link{position:relative;display:block;max-height:278px}div.cmb2-id-announcement-help-docs{padding-top:0!important;padding-bottom:0!important}label[for=announcement_metabox-hide],label[for=help_docs_metabox-hide],label[for=timeline_express_ads-hide]{display:none!important}#timeline-express-icon{background:transparent url(../../images/timeline-express-logo-128.png) no-repeat 0 0;display:block;float:right;padding:0 .5em 0 0;height:90px;width:90px;background-size:contain}.wrap #timeline-express-page-header{margin:0}body.te_announcements_page_timeline-express-settings .wrap .postbox.ui-sortable-handle{border-radius:5px}body.te_announcements_page_timeline-express-settings .te-sidebar.add-ons-active{margin-top:3.3em}body.te_announcements_page_timeline-express-settings .wrap h2.nav-tab-wrapper{border-bottom:none}.settings-header{display:inline-block;width:100%;padding-right:0!important}.timeline-express-settings-header{background:0 0;box-shadow:none;border:none}.wrap .nav-tab-wrapper{padding-top:2.5em}.wrap .account-nav-tab{padding-top:0}.random-length-text{opacity:.5}#timeline_express_review_this_plugin_container .fa-paypal{display:block;width:100%;font-size:16px;padding-top:4px;margin:0 auto!important;color:#253b80}.wrap #timeline_express_review_this_plugin_container{padding:.5em;float:left;margin-top:.75em}#timeline_express_review_this_plugin_container{display:inline-block}#timeline_express_review_this_plugin_container a,#timeline_express_review_this_plugin_container a:hover{color:#333}#timeline_express_review_this_plugin_container .timeline_express_header_logo,#timeline_express_review_this_plugin_container div,#timeline_express_review_this_plugin_container span{float:right;margin:0 .5em;text-align:center}#timeline_express_review_this_plugin_container div.dashicons{margin:0 5px}#timeline_express_review_this_plugin_container div.dashicons-plus-alt{display:block;width:100%;margin:0 auto;color:#a3c3b8}.timeline-express-form{margin-bottom:3em}.timeline-express-settings-description{padding-bottom:2em!important;color:#a7a7a7;font-style:italic;font-size:10px}td.column-announcement_date .dashicons-arrow-right{line-height:2.9;display:inline-block;color:rgba(227,26,26,.68)}.delete-no:after{content:" no, save my announcements from being deleted. I'll need them again!"}.delete-no:hover{cursor:pointer}.delete-yes:after{content:" yes, delete all of the announcement posts. they are dead to me."}.delete-yes:hover{cursor:pointer}#ui-datepicker-div.cmb2-element{z-index:999999!important}.wp-picker-holder{position:absolute;z-index:99999999}#no-events-message_ifr{max-height:100px}.wp-list-table .no-items .colspanchange{text-align:center;height:115px;line-height:8;font-style:italic}.no-image-used-text{line-height:4.7}.wp-list-table .announcement_color_box{display:block;height:15px;width:15px;border:1px solid rgba(128,128,128,.22);padding:.5em;text-align:center;border-radius:50%}.wp-list-table .past_announcement{height:30px}.wp-list-table .edit-announcement-icon{font-size:25px!important;display:block}.wp-list-table .dashicon-past-announcement{font-size:30px!important;text-align:right}.wp-list-table img.attachment-timeline-express-thumbnail.size-timeline-express-thumbnail{max-width:100%;width:100%;height:auto}.dashicons-star-filled{color:#febe12}#timeline_express_reset_plugin_settings .dashicons-dismiss{float:right;margin-top:.5em;padding:.5em .5em 1em 1em;color:#f15353}body.admin_page_timeline-express-welcome .timeline-express-image{background:-moz-linear-gradient(top,rgba(206,220,231,.7) 100%,rgba(89,106,114,.7) 100%);background-image:url( '../images/welcome/background.png' )}body.admin_page_timeline-express-welcome .timeline-screenshot{padding:1.5em;padding-bottom:0}body.admin_page_timeline-express-welcome .font-awesome-background{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Font-Awesome-Cheatsheet.png' );background-size:cover;height:250px;text-align:center;line-height:8}body.admin_page_timeline-express-welcome .intuitive-post-creation{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/intuitive-creation-screen.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .admin-manage-announcements{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Manage-Announcements.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .customize-your-timeline{padding-top:4%;margin-top:1.5em;background-image:url( '../images/welcome/customize-your-timeline.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .slides{height:665px;overflow:hidden;position:relative;width:100%;padding:4% 0 4% 0}body.admin_page_timeline-express-welcome .slides ul{list-style:none;position:relative}body.admin_page_timeline-express-welcome .slides ul li{width:100%;opacity:0;position:absolute;top:0;-webkit-animation-name:anim_slides;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_slides;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}body.admin_page_timeline-express-welcome .slides ul li:nth-child(2),body.admin_page_timeline-express-welcome .slides ul li:nth-child(2) h2.promo-text{-webkit-animation-delay:6s;-moz-animation-delay:6s}body.admin_page_timeline-express-welcome .slides ul li:nth-child(3),body.admin_page_timeline-express-welcome .slides ul li:nth-child(3) h2.promo-text{-webkit-animation-delay:12s;-moz-animation-delay:12s}body.admin_page_timeline-express-welcome .slides ul li img{display:block}body.admin_page_timeline-express-welcome .slides ul li h2.promo-text{background-color:#000;border-radius:10px 10px 10px 10px;box-shadow:0 0 3px #fff inset;color:#fff;font-size:18px;margin:0 auto;padding:10px;position:absolute;top:-35px;width:350px;text-align:center;-webkit-animation-name:anim_titles;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_titles;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}#timeline-express-support-page-wrap{padding:2em}#timeline-express-support-page-wrap hr{margin:1.5em 0}#timeline-express-support-page-header{display:inline-block;width:100%}#timeline-express-support-page-header img.te-logo{max-width:128px;min-width:90px;width:20%;float:right}#timeline-express-support-page-header .support-subhead{display:block;margin:2em 1em 0 0;float:right;width:44%}#timeline-express-support-page-wrap #timeline_express_license_key{width:25%;min-width:400px}.timeline-express-valid-license{color:rgba(144,214,125,.68)}.purchase-support-license{margin-right:-.5em!important}#support-license-form p.description.license-error{color:rgba(225,47,47,.73)}#support-license-form p.description.license-active{color:rgba(46,102,31,.68)}#support-license-form .license-links a{text-decoration:none}.timeline-express-license-buttons{display:block;width:100%;margin-top:2em}.timeline-express-invalid-license-error{color:rgba(225,47,47,.73)}.codeparrots-tracking-notice{background-image:url( '../../images/flying-parrot.png' );background-position:center left;background-repeat:no-repeat;background-size:120px}.codeparrots-tracking-notice p{max-width:90%}#premium-support-contact-form{float:right;width:33%;min-width:300px}#premium-support-contact-form form{width:100%}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form form textarea{resize:vertical}#premium-support-contact-form form input[type=submit],#premium-support-contact-form form label{margin-top:1em;display:block}.license-expiring-soon{font-size:11px;color:#f34b4b;display:block}@media only screen and (max-width:1081px){#timeline_express_license_key{min-width:90%!important;width:90%!important}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form{margin:2em 0 0 0;float:right;width:100%}#timeline-express-support-page-wrap table.widefat.fixed{max-width:100%!important}#timeline-express-support-page-header .support-subhead{width:auto}#timeline-express-support-page-header .te-logo{min-width:140px!important;float:none!important;display:block;margin:0 auto}#timeline-express-support-page-header .support-subhead h1{line-height:1.2}}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-left:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;right:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:initial;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:'';width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;right:0;top:calc((0% - (100% - 1em)) - 8%);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes tada{0%{animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{animation-timing-function:ease-in;transform:scale(1.5)}72%{animation-timing-function:ease-out;transform:scale(1)}81%{animation-timing-function:ease-in;transform:scale(1.24)}89%{animation-timing-function:ease-out;transform:scale(1)}95%{animation-timing-function:ease-in;transform:scale(1.04)}100%{animation-timing-function:ease-out;transform:scale(1)}}@keyframes jelly{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}100%{transform:scale3d(1,1,1)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}100%{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes pulse{0%{box-shadow:0 0 0 0 #bdc3c7}100%{box-shadow:0 0 0 1.5em rgba(189,195,199,0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:calc(1em / 7)}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);right:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);right:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc((0% - (100% - 1em)) - 8%);right:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:'';border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc((0% - (100% - 1em)) - 16%);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em;line-height:0}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;right:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;right:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;right:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover{display:block}.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img,.pretty.p-toggle .state.p-off{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain input:checked~.state label:before,.pretty.p-plain.p-toggle .state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{animation:zoom .2s ease}.pretty.p-smooth.p-default input:checked+.state label:after{animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:'';transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty input:checked~.state.p-primary label:after,.pretty.p-toggle .state.p-primary label:after{background-color:#428bca!important}.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg,.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-primary-o label:before,.pretty.p-toggle .state.p-primary-o label:before{border-color:#428bca}.pretty input:checked~.state.p-primary-o label:after,.pretty.p-toggle .state.p-primary-o label:after{background-color:transparent}.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg,.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty input:checked~.state.p-info label:after,.pretty.p-toggle .state.p-info label:after{background-color:#5bc0de!important}.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg,.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-info-o label:before,.pretty.p-toggle .state.p-info-o label:before{border-color:#5bc0de}.pretty input:checked~.state.p-info-o label:after,.pretty.p-toggle .state.p-info-o label:after{background-color:transparent}.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg,.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty input:checked~.state.p-success label:after,.pretty.p-toggle .state.p-success label:after{background-color:#5cb85c!important}.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg,.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-success-o label:before,.pretty.p-toggle .state.p-success-o label:before{border-color:#5cb85c}.pretty input:checked~.state.p-success-o label:after,.pretty.p-toggle .state.p-success-o label:after{background-color:transparent}.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg,.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty input:checked~.state.p-warning label:after,.pretty.p-toggle .state.p-warning label:after{background-color:#f0ad4e!important}.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg,.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-warning-o label:before,.pretty.p-toggle .state.p-warning-o label:before{border-color:#f0ad4e}.pretty input:checked~.state.p-warning-o label:after,.pretty.p-toggle .state.p-warning-o label:after{background-color:transparent}.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg,.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty input:checked~.state.p-danger label:after,.pretty.p-toggle .state.p-danger label:after{background-color:#d9534f!important}.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg,.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-danger-o label:before,.pretty.p-toggle .state.p-danger-o label:before{border-color:#d9534f}.pretty input:checked~.state.p-danger-o label:after,.pretty.p-toggle .state.p-danger-o label:after{background-color:transparent}.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg,.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc((0% - (100% - 1em)) - 35%)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state label:after,.pretty .state label:before,.pretty .state:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.timeline-express-about-wrap .timeline-express-badge{float:left;border-radius:4px;margin:0 15px 15px 0;max-width:100%}.timeline-express-about-wrap #timeline-express-header{margin-bottom:15px}.timeline-express-about-wrap #timeline-express-header h1{margin-bottom:15px!important}.timeline-express-about-wrap .about-text{margin:0 0 15px;max-width:670px}.timeline-express-about-wrap .feature-section{margin-top:20px}.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{width:50%;box-sizing:border-box}.timeline-express-about-wrap .feature-section-content{float:right;padding-left:50px}.timeline-express-about-wrap .feature-section-content h4{margin:0 0 1em}.timeline-express-about-wrap .feature-section-media{float:left;text-align:left;margin-bottom:20px}.timeline-express-about-wrap img{border:none}.timeline-express-about-wrap .feature-section:not(.under-the-hood) .col{margin-top:0}@media all and (max-width:782px){.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{float:none;padding-left:0;width:100%;text-align:right}.timeline-express-about-wrap .feature-section-media img{float:none;margin:0 0 20px}}.about-wrap .timeline-express-badge{position:absolute;top:0;left:0;color:#999;font-size:14px;text-align:center;margin:5px 0 0;width:150px}.about-wrap .timeline-express-badge .version{display:block;margin:0 auto;margin:5px auto 0 auto}.about-wrap .feature-section p{font-size:15px}.about-wrap .feature-section.two-col .col{vertical-align:top}.about-wrap .feature-section.two-col .col:nth-child(1){width:calc(65% - 4px)}.about-wrap .feature-section.two-col .col:nth-child(2){width:calc(30% - 4px);text-align:center;float:left}.about-wrap .timeline-express-features-button{font-size:14px;height:auto;padding:5px 15px;margin-top:15px}#timeline-express-addons .the-list{display:inline-block}#timeline-express-addons hr{display:block;width:100%;margin:2em 0}#timeline-express-addons .timeline-express-clear:before{content:" ";display:table}#timeline-express-addons .timeline-express-clear:after{clear:both;content:" ";display:table}#timeline-express-addons .intro{margin-bottom:10px}#timeline-express-addons h2.widefat{margin:1.5em 0;margin-bottom:8px}#timeline-express-addons h2.widefat:first-child{margin-top:0}#timeline-express-addons h2.widefat+p{margin-bottom:1rem}#timeline-express-addons a.view-all-addons.button-primary{position:absolute;margin-right:10px}.timeline-express-addons-basic-message{border:1px solid #ddd;padding:20px}.timeline-express-addons-basic-message h5{font-size:16px;font-weight:700;margin:0 0 15px 0}.timeline-express-addons-basic-message p{margin:0}.timeline-express-addons-unlock{margin:35px 0 25px}.timeline-express-addons-unlock h4{font-size:23px;font-weight:400;margin:0 0 6px 0;line-height:29px}.timeline-express-addons-unlock p{margin:0}.timeline-express-addon-item{background-color:#fff;border:1px solid #ddd}.timeline-express-addon-image{float:right;height:92px;width:92px;border:1px solid #ddd;margin:12px 12px 0 0;border-radius:3px}.timeline-express-addon-image img{display:block;margin:0 auto;max-width:100%;border-radius:3px}.timeline-express-addon-item .icons{display:block}.timeline-express-addon-item .icons .badge:first-child{margin-top:.5em}.timeline-express-addon-item .icons .badge{border:1px solid transparent;border-radius:.25rem;padding:2px 5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;display:block;width:100%;margin:3px 0}.timeline-express-addon-item .icons .badge .dashicons{font-size:15px;line-height:20px;opacity:.75}.timeline-express-addon-item .icons .badge.free{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.timeline-express-addon-item .icons .badge.popular{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.timeline-express-addon-text{margin:0 126px 0 12px;padding:13px 0}.timeline-express-addon-text h4{margin:0;font-size:16px;font-weight:700;margin:0 0 8px 0}.timeline-express-addon-text p{margin:0}.timeline-express-addon-action{text-align:center;margin:-3em 0 1em 0}.timeline-express-addon-action a,.timeline-express-addon-action button{font-size:14px;color:#fff;background-color:#0085ba;border:1px solid #006d98;text-decoration:none;width:130px;margin:40px auto 0 auto;display:block;border-radius:5px;padding:10px 0;cursor:pointer}.timeline-express-addon-action a:hover,.timeline-express-addon-action button:hover{background-color:#006d98}.timeline-express-addon-installed-container a:hover{background-color:#0085ba}.timeline-express-addon-status-active .timeline-express-addon-action{background-color:#edfaff}.timeline-express-addon-status-inactive .timeline-express-addon-action{background-color:#f5f6f7}.timeline-express-error{color:#b94a48;background-color:#f2dede;padding:8px}.timeline-express-success{color:#468847;background-color:#dff0d8;padding:8px}.timeline-express-addon-action .button-addon-installed,.timeline-express-addon-action .button-addon-installed:hover,.timeline-express-addon-installed-container{opacity:.5}.timeline-express-addon-action .button-addon-installed[href="#"]:hover{cursor:no-drop}#timeline-express-addons .section{clear:both;padding:0;margin:0}#timeline-express-addons .col{display:block;float:right;margin:1% 1.6% 1% 0}#timeline-express-addons .col:first-child{margin-right:0}#timeline-express-addons .group:after,#timeline-express-addons .group:before{content:"";display:table}#timeline-express-addons .group:after{clear:both}#timeline-express-addons .group{zoom:1}#timeline-express-addons .span_3_of_3{width:100%}#timeline-express-addons .span_2_of_3{width:calc(66.13% - 2px)}#timeline-express-addons .span_1_of_3{width:calc(32.26% - 2px)}@media only screen and (max-width:960px){#timeline-express-addons .col{margin:1% 0 1% 0}#timeline-express-addons .span_1_of_3,#timeline-express-addons .span_2_of_3,#timeline-express-addons .span_3_of_3{width:100%}}
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
.wp-core-ui .timeline-express-red-button{background-color:#9b2124;background-image:linear-gradient(to bottom,#c5292e,#9b2124);border-color:#9b2124;border-bottom-color:#8d1f21;box-shadow:inset 0 1px 0 rgba(120,200,230,.5);color:#fff;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.1);margin-right:2em;width:150px;text-align:center}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button.hover,.wp-core-ui .timeline-express-red-button:focus,.wp-core-ui .timeline-express-red-button:hover{background-color:#b72629;background-image:linear-gradient(to bottom,#d22e30,#9b2124);border-color:#7f1c1f;box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.3)}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button:focus{border-color:#500f0e;box-shadow:inset 0 1px 0 rgba(120,200,230,.6),1px 1px 2px rgba(0,0,0,.4)}.wp-core-ui .timeline-express-red-button.active,.wp-core-ui .timeline-express-red-button.active:focus,.wp-core-ui .timeline-express-red-button.active:hover,.wp-core-ui .timeline-express-red-button:active{background:#7f1c1f;background-image:linear-gradient(to bottom,#9b2124,#b72629);border-color:#601312 #ae2426 #ae2426 #ae2426;color:rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);text-shadow:0 1px 0 rgba(0,0,0,.1)}.wp-core-ui .timeline-express-red-button-disabled,.wp-core-ui .timeline-express-red-button:disabled,.wp-core-ui .timeline-express-red-button[disabled]{color:#e79496!important;background:#ba292b!important;border-color:#7f1c1f!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}h2.nav-tab-wrapper.te-options{padding-bottom:0!important}h2.nav-tab-wrapper.te-options a.nav-tab:nth-child(1){margin-right:0!important}#advert_metabox .inside{padding:0;margin-top:0}#advert_metabox .inside .cmb2-id-announcement-advertisments{padding:0!important;border:none;background:0 0;margin-bottom:0}#advert_metabox .inside .cmb2-id-announcement-advertisments p{padding:0 10px}#advert_metabox .inside .cmb2-id-announcement-advertisments a.advertisment-link{position:relative;display:block;max-height:278px}div.cmb2-id-announcement-help-docs{padding-top:0!important;padding-bottom:0!important}label[for=announcement_metabox-hide],label[for=help_docs_metabox-hide],label[for=timeline_express_ads-hide]{display:none!important}#timeline-express-icon{background:transparent url(../../images/timeline-express-logo-128.png) no-repeat 0 0;display:block;float:right;padding:0 .5em 0 0;height:90px;width:90px;background-size:contain}.wrap #timeline-express-page-header{margin:0}body.te_announcements_page_timeline-express-settings .wrap .postbox.ui-sortable-handle{border-radius:5px}body.te_announcements_page_timeline-express-settings .te-sidebar.add-ons-active{margin-top:3.3em}body.te_announcements_page_timeline-express-settings .wrap h2.nav-tab-wrapper{border-bottom:none}.settings-header{display:inline-block;width:100%;padding-right:0!important}.timeline-express-settings-header{background:0 0;box-shadow:none;border:none}.wrap .nav-tab-wrapper{padding-top:2.5em}.wrap .account-nav-tab{padding-top:0}.random-length-text{opacity:.5}#timeline_express_review_this_plugin_container .fa-paypal{display:block;width:100%;font-size:16px;padding-top:4px;margin:0 auto!important;color:#253b80}.wrap #timeline_express_review_this_plugin_container{padding:.5em;float:left;margin-top:.75em}#timeline_express_review_this_plugin_container{display:inline-block}#timeline_express_review_this_plugin_container a,#timeline_express_review_this_plugin_container a:hover{color:#333}#timeline_express_review_this_plugin_container .timeline_express_header_logo,#timeline_express_review_this_plugin_container div,#timeline_express_review_this_plugin_container span{float:right;margin:0 .5em;text-align:center}#timeline_express_review_this_plugin_container div.dashicons{margin:0 5px}#timeline_express_review_this_plugin_container div.dashicons-plus-alt{display:block;width:100%;margin:0 auto;color:#a3c3b8}.timeline-express-form{margin-bottom:3em}.timeline-express-settings-description{padding-bottom:2em!important;color:#a7a7a7;font-style:italic;font-size:10px}td.column-announcement_date .dashicons-arrow-right{line-height:2.9;display:inline-block;color:rgba(227,26,26,.68)}.delete-no:after{content:" no, save my announcements from being deleted. I'll need them again!"}.delete-no:hover{cursor:pointer}.delete-yes:after{content:" yes, delete all of the announcement posts. they are dead to me."}.delete-yes:hover{cursor:pointer}#ui-datepicker-div.cmb2-element{z-index:999999!important}.wp-picker-holder{position:absolute;z-index:99999999}#no-events-message_ifr{max-height:100px}.wp-list-table .no-items .colspanchange{text-align:center;height:115px;line-height:8;font-style:italic}.no-image-used-text{line-height:4.7}.wp-list-table .announcement_color_box{display:block;height:15px;width:15px;border:1px solid rgba(128,128,128,.22);padding:.5em;text-align:center;border-radius:50%}.wp-list-table .past_announcement{height:30px}.wp-list-table .edit-announcement-icon{font-size:25px!important;display:block}.wp-list-table .dashicon-past-announcement{font-size:30px!important;text-align:right}.wp-list-table img.attachment-timeline-express-thumbnail.size-timeline-express-thumbnail{max-width:100%;width:100%;height:auto}.dashicons-star-filled{color:#febe12}#timeline_express_reset_plugin_settings .dashicons-dismiss{float:right;margin-top:.5em;padding:.5em .5em 1em 1em;color:#f15353}body.admin_page_timeline-express-welcome .timeline-express-image{background:-moz-linear-gradient(top,rgba(206,220,231,.7) 100%,rgba(89,106,114,.7) 100%);background-image:url( '../images/welcome/background.png' )}body.admin_page_timeline-express-welcome .timeline-screenshot{padding:1.5em;padding-bottom:0}body.admin_page_timeline-express-welcome .font-awesome-background{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Font-Awesome-Cheatsheet.png' );background-size:cover;height:250px;text-align:center;line-height:8}body.admin_page_timeline-express-welcome .intuitive-post-creation{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/intuitive-creation-screen.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .admin-manage-announcements{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Manage-Announcements.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .customize-your-timeline{padding-top:4%;margin-top:1.5em;background-image:url( '../images/welcome/customize-your-timeline.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .slides{height:665px;overflow:hidden;position:relative;width:100%;padding:4% 0 4% 0}body.admin_page_timeline-express-welcome .slides ul{list-style:none;position:relative}body.admin_page_timeline-express-welcome .slides ul li{width:100%;opacity:0;position:absolute;top:0;-webkit-animation-name:anim_slides;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_slides;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}body.admin_page_timeline-express-welcome .slides ul li:nth-child(2),body.admin_page_timeline-express-welcome .slides ul li:nth-child(2) h2.promo-text{-webkit-animation-delay:6s;-moz-animation-delay:6s}body.admin_page_timeline-express-welcome .slides ul li:nth-child(3),body.admin_page_timeline-express-welcome .slides ul li:nth-child(3) h2.promo-text{-webkit-animation-delay:12s;-moz-animation-delay:12s}body.admin_page_timeline-express-welcome .slides ul li img{display:block}body.admin_page_timeline-express-welcome .slides ul li h2.promo-text{background-color:#000;border-radius:10px 10px 10px 10px;box-shadow:0 0 3px #fff inset;color:#fff;font-size:18px;margin:0 auto;padding:10px;position:absolute;top:-35px;width:350px;text-align:center;-webkit-animation-name:anim_titles;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_titles;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}#timeline-express-support-page-wrap{padding:2em}#timeline-express-support-page-wrap hr{margin:1.5em 0}#timeline-express-support-page-header{display:inline-block;width:100%}#timeline-express-support-page-header img.te-logo{max-width:128px;min-width:90px;width:20%;float:right}#timeline-express-support-page-header .support-subhead{display:block;margin:2em 1em 0 0;float:right;width:44%}#timeline-express-support-page-wrap #timeline_express_license_key{width:25%;min-width:400px}.timeline-express-valid-license{color:rgba(144,214,125,.68)}.purchase-support-license{margin-right:-.5em!important}#support-license-form p.description.license-error{color:rgba(225,47,47,.73)}#support-license-form p.description.license-active{color:rgba(46,102,31,.68)}#support-license-form .license-links a{text-decoration:none}.timeline-express-license-buttons{display:block;width:100%;margin-top:2em}.timeline-express-invalid-license-error{color:rgba(225,47,47,.73)}.codeparrots-tracking-notice{background-image:url( '../../images/flying-parrot.png' );background-position:center left;background-repeat:no-repeat;background-size:120px}.codeparrots-tracking-notice p{max-width:90%}#premium-support-contact-form{float:right;width:33%;min-width:300px}#premium-support-contact-form form{width:100%}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form form textarea{resize:vertical}#premium-support-contact-form form input[type=submit],#premium-support-contact-form form label{margin-top:1em;display:block}.license-expiring-soon{font-size:11px;color:#f34b4b;display:block}@media only screen and (max-width:1081px){#timeline_express_license_key{min-width:90%!important;width:90%!important}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form{margin:2em 0 0 0;float:right;width:100%}#timeline-express-support-page-wrap table.widefat.fixed{max-width:100%!important}#timeline-express-support-page-header .support-subhead{width:auto}#timeline-express-support-page-header .te-logo{min-width:140px!important;float:none!important;display:block;margin:0 auto}#timeline-express-support-page-header .support-subhead h1{line-height:1.2}}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-left:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;right:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:initial;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:'';width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;right:0;top:calc((0% - (100% - 1em)) - 8%);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes tada{0%{animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{animation-timing-function:ease-in;transform:scale(1.5)}72%{animation-timing-function:ease-out;transform:scale(1)}81%{animation-timing-function:ease-in;transform:scale(1.24)}89%{animation-timing-function:ease-out;transform:scale(1)}95%{animation-timing-function:ease-in;transform:scale(1.04)}100%{animation-timing-function:ease-out;transform:scale(1)}}@keyframes jelly{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}100%{transform:scale3d(1,1,1)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}100%{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes pulse{0%{box-shadow:0 0 0 0 #bdc3c7}100%{box-shadow:0 0 0 1.5em rgba(189,195,199,0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:calc(1em / 7)}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);right:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);right:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc((0% - (100% - 1em)) - 8%);right:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:'';border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc((0% - (100% - 1em)) - 16%);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em;line-height:0}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;right:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;right:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;right:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover{display:block}.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img,.pretty.p-toggle .state.p-off{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain input:checked~.state label:before,.pretty.p-plain.p-toggle .state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{animation:zoom .2s ease}.pretty.p-smooth.p-default input:checked+.state label:after{animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:'';transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty input:checked~.state.p-primary label:after,.pretty.p-toggle .state.p-primary label:after{background-color:#428bca!important}.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg,.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-primary-o label:before,.pretty.p-toggle .state.p-primary-o label:before{border-color:#428bca}.pretty input:checked~.state.p-primary-o label:after,.pretty.p-toggle .state.p-primary-o label:after{background-color:transparent}.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg,.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty input:checked~.state.p-info label:after,.pretty.p-toggle .state.p-info label:after{background-color:#5bc0de!important}.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg,.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-info-o label:before,.pretty.p-toggle .state.p-info-o label:before{border-color:#5bc0de}.pretty input:checked~.state.p-info-o label:after,.pretty.p-toggle .state.p-info-o label:after{background-color:transparent}.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg,.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty input:checked~.state.p-success label:after,.pretty.p-toggle .state.p-success label:after{background-color:#5cb85c!important}.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg,.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-success-o label:before,.pretty.p-toggle .state.p-success-o label:before{border-color:#5cb85c}.pretty input:checked~.state.p-success-o label:after,.pretty.p-toggle .state.p-success-o label:after{background-color:transparent}.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg,.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty input:checked~.state.p-warning label:after,.pretty.p-toggle .state.p-warning label:after{background-color:#f0ad4e!important}.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg,.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-warning-o label:before,.pretty.p-toggle .state.p-warning-o label:before{border-color:#f0ad4e}.pretty input:checked~.state.p-warning-o label:after,.pretty.p-toggle .state.p-warning-o label:after{background-color:transparent}.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg,.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty input:checked~.state.p-danger label:after,.pretty.p-toggle .state.p-danger label:after{background-color:#d9534f!important}.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg,.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-danger-o label:before,.pretty.p-toggle .state.p-danger-o label:before{border-color:#d9534f}.pretty input:checked~.state.p-danger-o label:after,.pretty.p-toggle .state.p-danger-o label:after{background-color:transparent}.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg,.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc((0% - (100% - 1em)) - 35%)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state label:after,.pretty .state label:before,.pretty .state:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.timeline-express-about-wrap .timeline-express-badge{float:left;border-radius:4px;margin:0 15px 15px 0;max-width:100%}.timeline-express-about-wrap #timeline-express-header{margin-bottom:15px}.timeline-express-about-wrap #timeline-express-header h1{margin-bottom:15px!important}.timeline-express-about-wrap .about-text{margin:0 0 15px;max-width:670px}.timeline-express-about-wrap .feature-section{margin-top:20px}.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{width:50%;box-sizing:border-box}.timeline-express-about-wrap .feature-section-content{float:right;padding-left:50px}.timeline-express-about-wrap .feature-section-content h4{margin:0 0 1em}.timeline-express-about-wrap .feature-section-media{float:left;text-align:left;margin-bottom:20px}.timeline-express-about-wrap img{border:none}.timeline-express-about-wrap .feature-section:not(.under-the-hood) .col{margin-top:0}@media all and (max-width:782px){.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{float:none;padding-left:0;width:100%;text-align:right}.timeline-express-about-wrap .feature-section-media img{float:none;margin:0 0 20px}}.about-wrap .timeline-express-badge{position:absolute;top:0;left:0;color:#999;font-size:14px;text-align:center;margin:5px 0 0;width:150px}.about-wrap .timeline-express-badge .version{display:block;margin:0 auto;margin:5px auto 0 auto}.about-wrap .feature-section p{font-size:15px}.about-wrap .feature-section.two-col .col{vertical-align:top}.about-wrap .feature-section.two-col .col:nth-child(1){width:calc(65% - 4px)}.about-wrap .feature-section.two-col .col:nth-child(2){width:calc(30% - 4px);text-align:center;float:left}.about-wrap .timeline-express-features-button{font-size:14px;height:auto;padding:5px 15px;margin-top:15px}#timeline-express-addons .the-list{display:inline-block}#timeline-express-addons hr{display:block;width:100%;margin:2em 0}#timeline-express-addons .timeline-express-clear:before{content:" ";display:table}#timeline-express-addons .timeline-express-clear:after{clear:both;content:" ";display:table}#timeline-express-addons .intro{margin-bottom:10px}#timeline-express-addons h2.widefat{margin:1.5em 0;margin-bottom:8px}#timeline-express-addons h2.widefat:first-child{margin-top:0}#timeline-express-addons h2.widefat+p{margin-bottom:1rem}#timeline-express-addons a.view-all-addons.button-primary{position:absolute;margin-right:10px}.timeline-express-addons-basic-message{border:1px solid #ddd;padding:20px}.timeline-express-addons-basic-message h5{font-size:16px;font-weight:700;margin:0 0 15px 0}.timeline-express-addons-basic-message p{margin:0}.timeline-express-addons-unlock{margin:35px 0 25px}.timeline-express-addons-unlock h4{font-size:23px;font-weight:400;margin:0 0 6px 0;line-height:29px}.timeline-express-addons-unlock p{margin:0}.timeline-express-addon-item{background-color:#fff;border:1px solid #ddd}.timeline-express-addon-image{float:right;height:92px;width:92px;border:1px solid #ddd;margin:12px 12px 0 0;border-radius:3px}.timeline-express-addon-image img{display:block;margin:0 auto;max-width:100%;border-radius:3px}.timeline-express-addon-item .icons{display:block}.timeline-express-addon-item .icons .badge:first-child{margin-top:.5em}.timeline-express-addon-item .icons .badge{border:1px solid transparent;border-radius:.25rem;padding:2px 5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;display:block;width:100%;margin:3px 0}.timeline-express-addon-item .icons .badge .dashicons{font-size:15px;line-height:20px;opacity:.75}.timeline-express-addon-item .icons .badge.free{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.timeline-express-addon-item .icons .badge.popular{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.timeline-express-addon-text{margin:0 126px 0 12px;padding:13px 0}.timeline-express-addon-text h4{margin:0;font-size:16px;font-weight:700;margin:0 0 8px 0}.timeline-express-addon-text p{margin:0}.timeline-express-addon-action{text-align:center;margin:-3em 0 1em 0}.timeline-express-addon-action a,.timeline-express-addon-action button{font-size:14px;color:#fff;background-color:#0085ba;border:1px solid #006d98;text-decoration:none;width:130px;margin:40px auto 0 auto;display:block;border-radius:5px;padding:10px 0;cursor:pointer}.timeline-express-addon-action a:hover,.timeline-express-addon-action button:hover{background-color:#006d98}.timeline-express-addon-installed-container a:hover{background-color:#0085ba}.timeline-express-addon-status-active .timeline-express-addon-action{background-color:#edfaff}.timeline-express-addon-status-inactive .timeline-express-addon-action{background-color:#f5f6f7}.timeline-express-error{color:#b94a48;background-color:#f2dede;padding:8px}.timeline-express-success{color:#468847;background-color:#dff0d8;padding:8px}.timeline-express-addon-action .button-addon-installed,.timeline-express-addon-action .button-addon-installed:hover,.timeline-express-addon-installed-container{opacity:.5}.timeline-express-addon-action .button-addon-installed[href="#"]:hover{cursor:no-drop}#timeline-express-addons .section{clear:both;padding:0;margin:0}#timeline-express-addons .col{display:block;float:right;margin:1% 1.6% 1% 0}#timeline-express-addons .col:first-child{margin-right:0}#timeline-express-addons .group:after,#timeline-express-addons .group:before{content:"";display:table}#timeline-express-addons .group:after{clear:both}#timeline-express-addons .group{zoom:1}#timeline-express-addons .span_3_of_3{width:100%}#timeline-express-addons .span_2_of_3{width:calc(66.13% - 2px)}#timeline-express-addons .span_1_of_3{width:calc(32.26% - 2px)}@media only screen and (max-width:960px){#timeline-express-addons .col{margin:1% 0 1% 0}#timeline-express-addons .span_1_of_3,#timeline-express-addons .span_2_of_3,#timeline-express-addons .span_3_of_3{width:100%}}
|
lib/admin/css/min/timeline-express-admin.min.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
.wp-core-ui .timeline-express-red-button{background-color:#9b2124;background-image:linear-gradient(to bottom,#c5292e,#9b2124);border-color:#9b2124;border-bottom-color:#8d1f21;box-shadow:inset 0 1px 0 rgba(120,200,230,.5);color:#fff;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.1);margin-left:2em;width:150px;text-align:center}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button.hover,.wp-core-ui .timeline-express-red-button:focus,.wp-core-ui .timeline-express-red-button:hover{background-color:#b72629;background-image:linear-gradient(to bottom,#d22e30,#9b2124);border-color:#7f1c1f;box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.3)}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button:focus{border-color:#500f0e;box-shadow:inset 0 1px 0 rgba(120,200,230,.6),1px 1px 2px rgba(0,0,0,.4)}.wp-core-ui .timeline-express-red-button.active,.wp-core-ui .timeline-express-red-button.active:focus,.wp-core-ui .timeline-express-red-button.active:hover,.wp-core-ui .timeline-express-red-button:active{background:#7f1c1f;background-image:linear-gradient(to bottom,#9b2124,#b72629);border-color:#601312 #ae2426 #ae2426 #ae2426;color:rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);text-shadow:0 1px 0 rgba(0,0,0,.1)}.wp-core-ui .timeline-express-red-button-disabled,.wp-core-ui .timeline-express-red-button:disabled,.wp-core-ui .timeline-express-red-button[disabled]{color:#e79496!important;background:#ba292b!important;border-color:#7f1c1f!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}h2.nav-tab-wrapper.te-options{padding-bottom:0!important}h2.nav-tab-wrapper.te-options a.nav-tab:nth-child(1){margin-left:0!important}#advert_metabox .inside{padding:0;margin-top:0}#advert_metabox .inside .cmb2-id-announcement-advertisments{padding:0!important;border:none;background:0 0;margin-bottom:0}#advert_metabox .inside .cmb2-id-announcement-advertisments p{padding:0 10px}#advert_metabox .inside .cmb2-id-announcement-advertisments a.advertisment-link{position:relative;display:block;max-height:278px}div.cmb2-id-announcement-help-docs{padding-top:0!important;padding-bottom:0!important}label[for=announcement_metabox-hide],label[for=help_docs_metabox-hide],label[for=timeline_express_ads-hide]{display:none!important}#timeline-express-icon{background:transparent url(../../images/timeline-express-logo-128.png) no-repeat 0 0;display:block;float:left;padding:0 0 0 .5em;height:90px;width:90px;background-size:contain}.wrap #timeline-express-page-header{margin:0}body.te_announcements_page_timeline-express-settings .wrap .postbox.ui-sortable-handle{border-radius:5px}body.te_announcements_page_timeline-express-settings .te-sidebar.add-ons-active{margin-top:3.3em}body.te_announcements_page_timeline-express-settings .wrap h2.nav-tab-wrapper{border-bottom:none}.settings-header{display:inline-block;width:100%;padding-left:0!important}.timeline-express-settings-header{background:0 0;box-shadow:none;border:none}.wrap .nav-tab-wrapper{padding-top:2.5em}.wrap .account-nav-tab{padding-top:0}.random-length-text{opacity:.5}#timeline_express_review_this_plugin_container .fa-paypal{display:block;width:100%;font-size:16px;padding-top:4px;margin:0 auto!important;color:#253b80}.wrap #timeline_express_review_this_plugin_container{padding:.5em;float:right;margin-top:.75em}#timeline_express_review_this_plugin_container{display:inline-block}#timeline_express_review_this_plugin_container a,#timeline_express_review_this_plugin_container a:hover{color:#333}#timeline_express_review_this_plugin_container .timeline_express_header_logo,#timeline_express_review_this_plugin_container div,#timeline_express_review_this_plugin_container span{float:left;margin:0 .5em;text-align:center}#timeline_express_review_this_plugin_container div.dashicons{margin:0 5px}#timeline_express_review_this_plugin_container div.dashicons-plus-alt{display:block;width:100%;margin:0 auto;color:#a3c3b8}.timeline-express-form{margin-bottom:3em}.timeline-express-settings-description{padding-bottom:2em!important;color:#a7a7a7;font-style:italic;font-size:10px}td.column-announcement_date .dashicons-arrow-right{line-height:2.9;display:inline-block;color:rgba(227,26,26,.68)}.delete-no:after{content:" no, save my announcements from being deleted. I'll need them again!"}.delete-no:hover{cursor:pointer}.delete-yes:after{content:" yes, delete all of the announcement posts. they are dead to me."}.delete-yes:hover{cursor:pointer}#ui-datepicker-div.cmb2-element{z-index:999999!important}.wp-picker-holder{position:absolute;z-index:99999999}#no-events-message_ifr{max-height:100px}.wp-list-table .no-items .colspanchange{text-align:center;height:115px;line-height:8;font-style:italic}.no-image-used-text{line-height:4.7}.wp-list-table .announcement_color_box{display:block;height:15px;width:15px;border:1px solid rgba(128,128,128,.22);padding:.5em;text-align:center;border-radius:50%}.wp-list-table .past_announcement{height:30px}.wp-list-table .edit-announcement-icon{font-size:25px!important;display:block}.wp-list-table .dashicon-past-announcement{font-size:30px!important;text-align:left}.wp-list-table img.attachment-timeline-express-thumbnail.size-timeline-express-thumbnail{max-width:100%;width:100%;height:auto}.dashicons-star-filled{color:#febe12}#timeline_express_reset_plugin_settings .dashicons-dismiss{float:left;margin-top:.5em;padding:.5em 1em 1em .5em;color:#f15353}body.admin_page_timeline-express-welcome .timeline-express-image{background:-moz-linear-gradient(top,rgba(206,220,231,.7) 0,rgba(89,106,114,.7) 100%);background-image:url( '../images/welcome/background.png' )}body.admin_page_timeline-express-welcome .timeline-screenshot{padding:1.5em;padding-bottom:0}body.admin_page_timeline-express-welcome .font-awesome-background{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Font-Awesome-Cheatsheet.png' );background-size:cover;height:250px;text-align:center;line-height:8}body.admin_page_timeline-express-welcome .intuitive-post-creation{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/intuitive-creation-screen.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .admin-manage-announcements{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Manage-Announcements.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .customize-your-timeline{padding-top:4%;margin-top:1.5em;background-image:url( '../images/welcome/customize-your-timeline.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .slides{height:665px;overflow:hidden;position:relative;width:100%;padding:4% 0 4% 0}body.admin_page_timeline-express-welcome .slides ul{list-style:none;position:relative}body.admin_page_timeline-express-welcome .slides ul li{width:100%;opacity:0;position:absolute;top:0;-webkit-animation-name:anim_slides;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_slides;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}body.admin_page_timeline-express-welcome .slides ul li:nth-child(2),body.admin_page_timeline-express-welcome .slides ul li:nth-child(2) h2.promo-text{-webkit-animation-delay:6s;-moz-animation-delay:6s}body.admin_page_timeline-express-welcome .slides ul li:nth-child(3),body.admin_page_timeline-express-welcome .slides ul li:nth-child(3) h2.promo-text{-webkit-animation-delay:12s;-moz-animation-delay:12s}body.admin_page_timeline-express-welcome .slides ul li img{display:block}body.admin_page_timeline-express-welcome .slides ul li h2.promo-text{background-color:#000;border-radius:10px 10px 10px 10px;box-shadow:0 0 3px #fff inset;color:#fff;font-size:18px;margin:0 auto;padding:10px;position:absolute;top:-35px;width:350px;text-align:center;-webkit-animation-name:anim_titles;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_titles;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}#timeline-express-support-page-wrap{padding:2em}#timeline-express-support-page-wrap hr{margin:1.5em 0}#timeline-express-support-page-header{display:inline-block;width:100%}#timeline-express-support-page-header img.te-logo{max-width:128px;min-width:90px;width:20%;float:left}#timeline-express-support-page-header .support-subhead{display:block;margin:2em 0 0 1em;float:left;width:44%}#timeline-express-support-page-wrap #timeline_express_license_key{width:25%;min-width:400px}.timeline-express-valid-license{color:rgba(144,214,125,.68)}.purchase-support-license{margin-left:-.5em!important}#support-license-form p.description.license-error{color:rgba(225,47,47,.73)}#support-license-form p.description.license-active{color:rgba(46,102,31,.68)}#support-license-form .license-links a{text-decoration:none}.timeline-express-license-buttons{display:block;width:100%;margin-top:2em}.timeline-express-invalid-license-error{color:rgba(225,47,47,.73)}.codeparrots-tracking-notice{background-image:url( '../../images/flying-parrot.png' );background-position:center right;background-repeat:no-repeat;background-size:120px}.codeparrots-tracking-notice p{max-width:90%}#premium-support-contact-form{float:left;width:33%;min-width:300px}#premium-support-contact-form form{width:100%}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form form textarea{resize:vertical}#premium-support-contact-form form input[type=submit],#premium-support-contact-form form label{margin-top:1em;display:block}.license-expiring-soon{font-size:11px;color:#f34b4b;display:block}@media only screen and (max-width:1081px){#timeline_express_license_key{min-width:90%!important;width:90%!important}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form{margin:2em 0 0 0;float:left;width:100%}#timeline-express-support-page-wrap table.widefat.fixed{max-width:100%!important}#timeline-express-support-page-header .support-subhead{width:auto}#timeline-express-support-page-header .te-logo{min-width:140px!important;float:none!important;display:block;margin:0 auto}#timeline-express-support-page-header .support-subhead h1{line-height:1.2}}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-right:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;left:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:initial;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:'';width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;left:0;top:calc((0% - (100% - 1em)) - 8%);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes tada{0%{animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{animation-timing-function:ease-in;transform:scale(1.5)}72%{animation-timing-function:ease-out;transform:scale(1)}81%{animation-timing-function:ease-in;transform:scale(1.24)}89%{animation-timing-function:ease-out;transform:scale(1)}95%{animation-timing-function:ease-in;transform:scale(1.04)}100%{animation-timing-function:ease-out;transform:scale(1)}}@keyframes jelly{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}100%{transform:scale3d(1,1,1)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}100%{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes pulse{0%{box-shadow:0 0 0 0 #bdc3c7}100%{box-shadow:0 0 0 1.5em rgba(189,195,199,0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:calc(1em / 7)}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc((0% - (100% - 1em)) - 8%);left:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:'';border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc((0% - (100% - 1em)) - 16%);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em;line-height:0}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;left:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;left:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;left:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover{display:block}.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img,.pretty.p-toggle .state.p-off{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain input:checked~.state label:before,.pretty.p-plain.p-toggle .state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{animation:zoom .2s ease}.pretty.p-smooth.p-default input:checked+.state label:after{animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:'';transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty input:checked~.state.p-primary label:after,.pretty.p-toggle .state.p-primary label:after{background-color:#428bca!important}.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg,.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-primary-o label:before,.pretty.p-toggle .state.p-primary-o label:before{border-color:#428bca}.pretty input:checked~.state.p-primary-o label:after,.pretty.p-toggle .state.p-primary-o label:after{background-color:transparent}.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg,.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty input:checked~.state.p-info label:after,.pretty.p-toggle .state.p-info label:after{background-color:#5bc0de!important}.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg,.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-info-o label:before,.pretty.p-toggle .state.p-info-o label:before{border-color:#5bc0de}.pretty input:checked~.state.p-info-o label:after,.pretty.p-toggle .state.p-info-o label:after{background-color:transparent}.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg,.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty input:checked~.state.p-success label:after,.pretty.p-toggle .state.p-success label:after{background-color:#5cb85c!important}.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg,.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-success-o label:before,.pretty.p-toggle .state.p-success-o label:before{border-color:#5cb85c}.pretty input:checked~.state.p-success-o label:after,.pretty.p-toggle .state.p-success-o label:after{background-color:transparent}.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg,.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty input:checked~.state.p-warning label:after,.pretty.p-toggle .state.p-warning label:after{background-color:#f0ad4e!important}.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg,.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-warning-o label:before,.pretty.p-toggle .state.p-warning-o label:before{border-color:#f0ad4e}.pretty input:checked~.state.p-warning-o label:after,.pretty.p-toggle .state.p-warning-o label:after{background-color:transparent}.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg,.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty input:checked~.state.p-danger label:after,.pretty.p-toggle .state.p-danger label:after{background-color:#d9534f!important}.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg,.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-danger-o label:before,.pretty.p-toggle .state.p-danger-o label:before{border-color:#d9534f}.pretty input:checked~.state.p-danger-o label:after,.pretty.p-toggle .state.p-danger-o label:after{background-color:transparent}.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg,.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc((0% - (100% - 1em)) - 35%)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state label:after,.pretty .state label:before,.pretty .state:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.timeline-express-about-wrap .timeline-express-badge{float:right;border-radius:4px;margin:0 0 15px 15px;max-width:100%}.timeline-express-about-wrap #timeline-express-header{margin-bottom:15px}.timeline-express-about-wrap #timeline-express-header h1{margin-bottom:15px!important}.timeline-express-about-wrap .about-text{margin:0 0 15px;max-width:670px}.timeline-express-about-wrap .feature-section{margin-top:20px}.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{width:50%;box-sizing:border-box}.timeline-express-about-wrap .feature-section-content{float:left;padding-right:50px}.timeline-express-about-wrap .feature-section-content h4{margin:0 0 1em}.timeline-express-about-wrap .feature-section-media{float:right;text-align:right;margin-bottom:20px}.timeline-express-about-wrap img{border:none}.timeline-express-about-wrap .feature-section:not(.under-the-hood) .col{margin-top:0}@media all and (max-width:782px){.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{float:none;padding-right:0;width:100%;text-align:left}.timeline-express-about-wrap .feature-section-media img{float:none;margin:0 0 20px}}.about-wrap .timeline-express-badge{position:absolute;top:0;right:0;color:#999;font-size:14px;text-align:center;margin:5px 0 0;width:150px}.about-wrap .timeline-express-badge .version{display:block;margin:0 auto;margin:5px auto 0 auto}.about-wrap .feature-section p{font-size:15px}.about-wrap .feature-section.two-col .col{vertical-align:top}.about-wrap .feature-section.two-col .col:nth-child(1){width:calc(65% - 4px)}.about-wrap .feature-section.two-col .col:nth-child(2){width:calc(30% - 4px);text-align:center;float:right}.about-wrap .timeline-express-features-button{font-size:14px;height:auto;padding:5px 15px;margin-top:15px}#timeline-express-addons .the-list{display:inline-block}#timeline-express-addons hr{display:block;width:100%;margin:2em 0}#timeline-express-addons .timeline-express-clear:before{content:" ";display:table}#timeline-express-addons .timeline-express-clear:after{clear:both;content:" ";display:table}#timeline-express-addons .intro{margin-bottom:10px}#timeline-express-addons h2.widefat{margin:1.5em 0;margin-bottom:8px}#timeline-express-addons h2.widefat:first-child{margin-top:0}#timeline-express-addons h2.widefat+p{margin-bottom:1rem}#timeline-express-addons a.view-all-addons.button-primary{position:absolute;margin-left:10px}.timeline-express-addons-basic-message{border:1px solid #ddd;padding:20px}.timeline-express-addons-basic-message h5{font-size:16px;font-weight:700;margin:0 0 15px 0}.timeline-express-addons-basic-message p{margin:0}.timeline-express-addons-unlock{margin:35px 0 25px}.timeline-express-addons-unlock h4{font-size:23px;font-weight:400;margin:0 0 6px 0;line-height:29px}.timeline-express-addons-unlock p{margin:0}.timeline-express-addon-item{background-color:#fff;border:1px solid #ddd}.timeline-express-addon-image{float:left;height:92px;width:92px;border:1px solid #ddd;margin:12px 0 0 12px;border-radius:3px}.timeline-express-addon-image img{display:block;margin:0 auto;max-width:100%;border-radius:3px}.timeline-express-addon-item .icons{display:block}.timeline-express-addon-item .icons .badge:first-child{margin-top:.5em}.timeline-express-addon-item .icons .badge{border:1px solid transparent;border-radius:.25rem;padding:2px 5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;display:block;width:100%;margin:3px 0}.timeline-express-addon-item .icons .badge .dashicons{font-size:15px;line-height:20px;opacity:.75}.timeline-express-addon-item .icons .badge.free{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.timeline-express-addon-item .icons .badge.popular{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.timeline-express-addon-text{margin:0 12px 0 126px;padding:13px 0}.timeline-express-addon-text h4{margin:0;font-size:16px;font-weight:700;margin:0 0 8px 0}.timeline-express-addon-text p{margin:0}.timeline-express-addon-action{text-align:center;margin:-3em 0 1em 0}.timeline-express-addon-action a,.timeline-express-addon-action button{font-size:14px;color:#fff;background-color:#0085ba;border:1px solid #006d98;text-decoration:none;width:130px;margin:40px auto 0 auto;display:block;border-radius:5px;padding:10px 0;cursor:pointer}.timeline-express-addon-action a:hover,.timeline-express-addon-action button:hover{background-color:#006d98}.timeline-express-addon-installed-container a:hover{background-color:#0085ba}.timeline-express-addon-status-active .timeline-express-addon-action{background-color:#edfaff}.timeline-express-addon-status-inactive .timeline-express-addon-action{background-color:#f5f6f7}.timeline-express-error{color:#b94a48;background-color:#f2dede;padding:8px}.timeline-express-success{color:#468847;background-color:#dff0d8;padding:8px}.timeline-express-addon-action .button-addon-installed,.timeline-express-addon-action .button-addon-installed:hover,.timeline-express-addon-installed-container{opacity:.5}.timeline-express-addon-action .button-addon-installed[href="#"]:hover{cursor:no-drop}#timeline-express-addons .section{clear:both;padding:0;margin:0}#timeline-express-addons .col{display:block;float:left;margin:1% 0 1% 1.6%}#timeline-express-addons .col:first-child{margin-left:0}#timeline-express-addons .group:after,#timeline-express-addons .group:before{content:"";display:table}#timeline-express-addons .group:after{clear:both}#timeline-express-addons .group{zoom:1}#timeline-express-addons .span_3_of_3{width:100%}#timeline-express-addons .span_2_of_3{width:calc(66.13% - 2px)}#timeline-express-addons .span_1_of_3{width:calc(32.26% - 2px)}@media only screen and (max-width:960px){#timeline-express-addons .col{margin:1% 0 1% 0}#timeline-express-addons .span_1_of_3,#timeline-express-addons .span_2_of_3,#timeline-express-addons .span_3_of_3{width:100%}}
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
.wp-core-ui .timeline-express-red-button{background-color:#9b2124;background-image:linear-gradient(to bottom,#c5292e,#9b2124);border-color:#9b2124;border-bottom-color:#8d1f21;box-shadow:inset 0 1px 0 rgba(120,200,230,.5);color:#fff;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.1);margin-left:2em;width:150px;text-align:center}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button.hover,.wp-core-ui .timeline-express-red-button:focus,.wp-core-ui .timeline-express-red-button:hover{background-color:#b72629;background-image:linear-gradient(to bottom,#d22e30,#9b2124);border-color:#7f1c1f;box-shadow:inset 0 1px 0 rgba(120,200,230,.6);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.3)}.wp-core-ui .timeline-express-red-button.focus,.wp-core-ui .timeline-express-red-button:focus{border-color:#500f0e;box-shadow:inset 0 1px 0 rgba(120,200,230,.6),1px 1px 2px rgba(0,0,0,.4)}.wp-core-ui .timeline-express-red-button.active,.wp-core-ui .timeline-express-red-button.active:focus,.wp-core-ui .timeline-express-red-button.active:hover,.wp-core-ui .timeline-express-red-button:active{background:#7f1c1f;background-image:linear-gradient(to bottom,#9b2124,#b72629);border-color:#601312 #ae2426 #ae2426 #ae2426;color:rgba(255,255,255,.95);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);text-shadow:0 1px 0 rgba(0,0,0,.1)}.wp-core-ui .timeline-express-red-button-disabled,.wp-core-ui .timeline-express-red-button:disabled,.wp-core-ui .timeline-express-red-button[disabled]{color:#e79496!important;background:#ba292b!important;border-color:#7f1c1f!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}h2.nav-tab-wrapper.te-options{padding-bottom:0!important}h2.nav-tab-wrapper.te-options a.nav-tab:nth-child(1){margin-left:0!important}#advert_metabox .inside{padding:0;margin-top:0}#advert_metabox .inside .cmb2-id-announcement-advertisments{padding:0!important;border:none;background:0 0;margin-bottom:0}#advert_metabox .inside .cmb2-id-announcement-advertisments p{padding:0 10px}#advert_metabox .inside .cmb2-id-announcement-advertisments a.advertisment-link{position:relative;display:block;max-height:278px}div.cmb2-id-announcement-help-docs{padding-top:0!important;padding-bottom:0!important}label[for=announcement_metabox-hide],label[for=help_docs_metabox-hide],label[for=timeline_express_ads-hide]{display:none!important}#timeline-express-icon{background:transparent url(../../images/timeline-express-logo-128.png) no-repeat 0 0;display:block;float:left;padding:0 0 0 .5em;height:90px;width:90px;background-size:contain}.wrap #timeline-express-page-header{margin:0}body.te_announcements_page_timeline-express-settings .wrap .postbox.ui-sortable-handle{border-radius:5px}body.te_announcements_page_timeline-express-settings .te-sidebar.add-ons-active{margin-top:3.3em}body.te_announcements_page_timeline-express-settings .wrap h2.nav-tab-wrapper{border-bottom:none}.settings-header{display:inline-block;width:100%;padding-left:0!important}.timeline-express-settings-header{background:0 0;box-shadow:none;border:none}.wrap .nav-tab-wrapper{padding-top:2.5em}.wrap .account-nav-tab{padding-top:0}.random-length-text{opacity:.5}#timeline_express_review_this_plugin_container .fa-paypal{display:block;width:100%;font-size:16px;padding-top:4px;margin:0 auto!important;color:#253b80}.wrap #timeline_express_review_this_plugin_container{padding:.5em;float:right;margin-top:.75em}#timeline_express_review_this_plugin_container{display:inline-block}#timeline_express_review_this_plugin_container a,#timeline_express_review_this_plugin_container a:hover{color:#333}#timeline_express_review_this_plugin_container .timeline_express_header_logo,#timeline_express_review_this_plugin_container div,#timeline_express_review_this_plugin_container span{float:left;margin:0 .5em;text-align:center}#timeline_express_review_this_plugin_container div.dashicons{margin:0 5px}#timeline_express_review_this_plugin_container div.dashicons-plus-alt{display:block;width:100%;margin:0 auto;color:#a3c3b8}.timeline-express-form{margin-bottom:3em}.timeline-express-settings-description{padding-bottom:2em!important;color:#a7a7a7;font-style:italic;font-size:10px}td.column-announcement_date .dashicons-arrow-right{line-height:2.9;display:inline-block;color:rgba(227,26,26,.68)}.delete-no:after{content:" no, save my announcements from being deleted. I'll need them again!"}.delete-no:hover{cursor:pointer}.delete-yes:after{content:" yes, delete all of the announcement posts. they are dead to me."}.delete-yes:hover{cursor:pointer}#ui-datepicker-div.cmb2-element{z-index:999999!important}.wp-picker-holder{position:absolute;z-index:99999999}#no-events-message_ifr{max-height:100px}.wp-list-table .no-items .colspanchange{text-align:center;height:115px;line-height:8;font-style:italic}.no-image-used-text{line-height:4.7}.wp-list-table .announcement_color_box{display:block;height:15px;width:15px;border:1px solid rgba(128,128,128,.22);padding:.5em;text-align:center;border-radius:50%}.wp-list-table .past_announcement{height:30px}.wp-list-table .edit-announcement-icon{font-size:25px!important;display:block}.wp-list-table .dashicon-past-announcement{font-size:30px!important;text-align:left}.wp-list-table img.attachment-timeline-express-thumbnail.size-timeline-express-thumbnail{max-width:100%;width:100%;height:auto}.dashicons-star-filled{color:#febe12}#timeline_express_reset_plugin_settings .dashicons-dismiss{float:left;margin-top:.5em;padding:.5em 1em 1em .5em;color:#f15353}body.admin_page_timeline-express-welcome .timeline-express-image{background:-moz-linear-gradient(top,rgba(206,220,231,.7) 0,rgba(89,106,114,.7) 100%);background-image:url( '../images/welcome/background.png' )}body.admin_page_timeline-express-welcome .timeline-screenshot{padding:1.5em;padding-bottom:0}body.admin_page_timeline-express-welcome .font-awesome-background{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Font-Awesome-Cheatsheet.png' );background-size:cover;height:250px;text-align:center;line-height:8}body.admin_page_timeline-express-welcome .intuitive-post-creation{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/intuitive-creation-screen.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .admin-manage-announcements{padding-top:3em;margin-top:1.5em;background-image:url( '../images/welcome/Manage-Announcements.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .customize-your-timeline{padding-top:4%;margin-top:1.5em;background-image:url( '../images/welcome/customize-your-timeline.jpg' );background-size:contain;height:665px;background-position:bottom center;background-repeat:no-repeat}body.admin_page_timeline-express-welcome .slides{height:665px;overflow:hidden;position:relative;width:100%;padding:4% 0 4% 0}body.admin_page_timeline-express-welcome .slides ul{list-style:none;position:relative}body.admin_page_timeline-express-welcome .slides ul li{width:100%;opacity:0;position:absolute;top:0;-webkit-animation-name:anim_slides;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_slides;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}body.admin_page_timeline-express-welcome .slides ul li:nth-child(2),body.admin_page_timeline-express-welcome .slides ul li:nth-child(2) h2.promo-text{-webkit-animation-delay:6s;-moz-animation-delay:6s}body.admin_page_timeline-express-welcome .slides ul li:nth-child(3),body.admin_page_timeline-express-welcome .slides ul li:nth-child(3) h2.promo-text{-webkit-animation-delay:12s;-moz-animation-delay:12s}body.admin_page_timeline-express-welcome .slides ul li img{display:block}body.admin_page_timeline-express-welcome .slides ul li h2.promo-text{background-color:#000;border-radius:10px 10px 10px 10px;box-shadow:0 0 3px #fff inset;color:#fff;font-size:18px;margin:0 auto;padding:10px;position:absolute;top:-35px;width:350px;text-align:center;-webkit-animation-name:anim_titles;-webkit-animation-duration:18s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:normal;-webkit-animation-delay:0;-webkit-animation-play-state:running;-webkit-animation-fill-mode:forwards;-moz-animation-name:anim_titles;-moz-animation-duration:18s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;-moz-animation-direction:normal;-moz-animation-delay:0;-moz-animation-play-state:running;-moz-animation-fill-mode:forwards}#timeline-express-support-page-wrap{padding:2em}#timeline-express-support-page-wrap hr{margin:1.5em 0}#timeline-express-support-page-header{display:inline-block;width:100%}#timeline-express-support-page-header img.te-logo{max-width:128px;min-width:90px;width:20%;float:left}#timeline-express-support-page-header .support-subhead{display:block;margin:2em 0 0 1em;float:left;width:44%}#timeline-express-support-page-wrap #timeline_express_license_key{width:25%;min-width:400px}.timeline-express-valid-license{color:rgba(144,214,125,.68)}.purchase-support-license{margin-left:-.5em!important}#support-license-form p.description.license-error{color:rgba(225,47,47,.73)}#support-license-form p.description.license-active{color:rgba(46,102,31,.68)}#support-license-form .license-links a{text-decoration:none}.timeline-express-license-buttons{display:block;width:100%;margin-top:2em}.timeline-express-invalid-license-error{color:rgba(225,47,47,.73)}.codeparrots-tracking-notice{background-image:url( '../../images/flying-parrot.png' );background-position:center right;background-repeat:no-repeat;background-size:120px}.codeparrots-tracking-notice p{max-width:90%}#premium-support-contact-form{float:left;width:33%;min-width:300px}#premium-support-contact-form form{width:100%}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form form textarea{resize:vertical}#premium-support-contact-form form input[type=submit],#premium-support-contact-form form label{margin-top:1em;display:block}.license-expiring-soon{font-size:11px;color:#f34b4b;display:block}@media only screen and (max-width:1081px){#timeline_express_license_key{min-width:90%!important;width:90%!important}#premium-support-contact-form form input,#premium-support-contact-form form label,#premium-support-contact-form form textarea{width:100%}#premium-support-contact-form{margin:2em 0 0 0;float:left;width:100%}#timeline-express-support-page-wrap table.widefat.fixed{max-width:100%!important}#timeline-express-support-page-header .support-subhead{width:auto}#timeline-express-support-page-header .te-logo{min-width:140px!important;float:none!important;display:block;margin:0 auto}#timeline-express-support-page-header .support-subhead h1{line-height:1.2}}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-right:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;left:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:initial;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:'';width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;left:0;top:calc((0% - (100% - 1em)) - 8%);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes tada{0%{animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{animation-timing-function:ease-in;transform:scale(1.5)}72%{animation-timing-function:ease-out;transform:scale(1)}81%{animation-timing-function:ease-in;transform:scale(1.24)}89%{animation-timing-function:ease-out;transform:scale(1)}95%{animation-timing-function:ease-in;transform:scale(1.04)}100%{animation-timing-function:ease-out;transform:scale(1)}}@keyframes jelly{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}100%{transform:scale3d(1,1,1)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}100%{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes pulse{0%{box-shadow:0 0 0 0 #bdc3c7}100%{box-shadow:0 0 0 1.5em rgba(189,195,199,0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:calc(1em / 7)}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc((0% - (100% - 1em)) - 8%);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc((0% - (100% - 1em)) - 8%);left:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:'';border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc((0% - (100% - 1em)) - 16%);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em;line-height:0}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;left:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;left:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;left:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover{display:block}.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img,.pretty.p-toggle .state.p-off{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain input:checked~.state label:before,.pretty.p-plain.p-toggle .state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{animation:zoom .2s ease}.pretty.p-smooth.p-default input:checked+.state label:after{animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:'';transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty input:checked~.state.p-primary label:after,.pretty.p-toggle .state.p-primary label:after{background-color:#428bca!important}.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg,.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-primary-o label:before,.pretty.p-toggle .state.p-primary-o label:before{border-color:#428bca}.pretty input:checked~.state.p-primary-o label:after,.pretty.p-toggle .state.p-primary-o label:after{background-color:transparent}.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg,.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty input:checked~.state.p-info label:after,.pretty.p-toggle .state.p-info label:after{background-color:#5bc0de!important}.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg,.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-info-o label:before,.pretty.p-toggle .state.p-info-o label:before{border-color:#5bc0de}.pretty input:checked~.state.p-info-o label:after,.pretty.p-toggle .state.p-info-o label:after{background-color:transparent}.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg,.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty input:checked~.state.p-success label:after,.pretty.p-toggle .state.p-success label:after{background-color:#5cb85c!important}.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg,.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-success-o label:before,.pretty.p-toggle .state.p-success-o label:before{border-color:#5cb85c}.pretty input:checked~.state.p-success-o label:after,.pretty.p-toggle .state.p-success-o label:after{background-color:transparent}.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg,.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty input:checked~.state.p-warning label:after,.pretty.p-toggle .state.p-warning label:after{background-color:#f0ad4e!important}.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg,.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-warning-o label:before,.pretty.p-toggle .state.p-warning-o label:before{border-color:#f0ad4e}.pretty input:checked~.state.p-warning-o label:after,.pretty.p-toggle .state.p-warning-o label:after{background-color:transparent}.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg,.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty input:checked~.state.p-danger label:after,.pretty.p-toggle .state.p-danger label:after{background-color:#d9534f!important}.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg,.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg{color:#fff;stroke:#fff}.pretty input:checked~.state.p-danger-o label:before,.pretty.p-toggle .state.p-danger-o label:before{border-color:#d9534f}.pretty input:checked~.state.p-danger-o label:after,.pretty.p-toggle .state.p-danger-o label:after{background-color:transparent}.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg,.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc((0% - (100% - 1em)) - 35%)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state label:after,.pretty .state label:before,.pretty .state:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.timeline-express-about-wrap .timeline-express-badge{float:right;border-radius:4px;margin:0 0 15px 15px;max-width:100%}.timeline-express-about-wrap #timeline-express-header{margin-bottom:15px}.timeline-express-about-wrap #timeline-express-header h1{margin-bottom:15px!important}.timeline-express-about-wrap .about-text{margin:0 0 15px;max-width:670px}.timeline-express-about-wrap .feature-section{margin-top:20px}.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{width:50%;box-sizing:border-box}.timeline-express-about-wrap .feature-section-content{float:left;padding-right:50px}.timeline-express-about-wrap .feature-section-content h4{margin:0 0 1em}.timeline-express-about-wrap .feature-section-media{float:right;text-align:right;margin-bottom:20px}.timeline-express-about-wrap img{border:none}.timeline-express-about-wrap .feature-section:not(.under-the-hood) .col{margin-top:0}@media all and (max-width:782px){.timeline-express-about-wrap .feature-section-content,.timeline-express-about-wrap .feature-section-media{float:none;padding-right:0;width:100%;text-align:left}.timeline-express-about-wrap .feature-section-media img{float:none;margin:0 0 20px}}.about-wrap .timeline-express-badge{position:absolute;top:0;right:0;color:#999;font-size:14px;text-align:center;margin:5px 0 0;width:150px}.about-wrap .timeline-express-badge .version{display:block;margin:0 auto;margin:5px auto 0 auto}.about-wrap .feature-section p{font-size:15px}.about-wrap .feature-section.two-col .col{vertical-align:top}.about-wrap .feature-section.two-col .col:nth-child(1){width:calc(65% - 4px)}.about-wrap .feature-section.two-col .col:nth-child(2){width:calc(30% - 4px);text-align:center;float:right}.about-wrap .timeline-express-features-button{font-size:14px;height:auto;padding:5px 15px;margin-top:15px}#timeline-express-addons .the-list{display:inline-block}#timeline-express-addons hr{display:block;width:100%;margin:2em 0}#timeline-express-addons .timeline-express-clear:before{content:" ";display:table}#timeline-express-addons .timeline-express-clear:after{clear:both;content:" ";display:table}#timeline-express-addons .intro{margin-bottom:10px}#timeline-express-addons h2.widefat{margin:1.5em 0;margin-bottom:8px}#timeline-express-addons h2.widefat:first-child{margin-top:0}#timeline-express-addons h2.widefat+p{margin-bottom:1rem}#timeline-express-addons a.view-all-addons.button-primary{position:absolute;margin-left:10px}.timeline-express-addons-basic-message{border:1px solid #ddd;padding:20px}.timeline-express-addons-basic-message h5{font-size:16px;font-weight:700;margin:0 0 15px 0}.timeline-express-addons-basic-message p{margin:0}.timeline-express-addons-unlock{margin:35px 0 25px}.timeline-express-addons-unlock h4{font-size:23px;font-weight:400;margin:0 0 6px 0;line-height:29px}.timeline-express-addons-unlock p{margin:0}.timeline-express-addon-item{background-color:#fff;border:1px solid #ddd}.timeline-express-addon-image{float:left;height:92px;width:92px;border:1px solid #ddd;margin:12px 0 0 12px;border-radius:3px}.timeline-express-addon-image img{display:block;margin:0 auto;max-width:100%;border-radius:3px}.timeline-express-addon-item .icons{display:block}.timeline-express-addon-item .icons .badge:first-child{margin-top:.5em}.timeline-express-addon-item .icons .badge{border:1px solid transparent;border-radius:.25rem;padding:2px 5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;display:block;width:100%;margin:3px 0}.timeline-express-addon-item .icons .badge .dashicons{font-size:15px;line-height:20px;opacity:.75}.timeline-express-addon-item .icons .badge.free{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.timeline-express-addon-item .icons .badge.popular{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.timeline-express-addon-text{margin:0 12px 0 126px;padding:13px 0}.timeline-express-addon-text h4{margin:0;font-size:16px;font-weight:700;margin:0 0 8px 0}.timeline-express-addon-text p{margin:0}.timeline-express-addon-action{text-align:center;margin:-3em 0 1em 0}.timeline-express-addon-action a,.timeline-express-addon-action button{font-size:14px;color:#fff;background-color:#0085ba;border:1px solid #006d98;text-decoration:none;width:130px;margin:40px auto 0 auto;display:block;border-radius:5px;padding:10px 0;cursor:pointer}.timeline-express-addon-action a:hover,.timeline-express-addon-action button:hover{background-color:#006d98}.timeline-express-addon-installed-container a:hover{background-color:#0085ba}.timeline-express-addon-status-active .timeline-express-addon-action{background-color:#edfaff}.timeline-express-addon-status-inactive .timeline-express-addon-action{background-color:#f5f6f7}.timeline-express-error{color:#b94a48;background-color:#f2dede;padding:8px}.timeline-express-success{color:#468847;background-color:#dff0d8;padding:8px}.timeline-express-addon-action .button-addon-installed,.timeline-express-addon-action .button-addon-installed:hover,.timeline-express-addon-installed-container{opacity:.5}.timeline-express-addon-action .button-addon-installed[href="#"]:hover{cursor:no-drop}#timeline-express-addons .section{clear:both;padding:0;margin:0}#timeline-express-addons .col{display:block;float:left;margin:1% 0 1% 1.6%}#timeline-express-addons .col:first-child{margin-left:0}#timeline-express-addons .group:after,#timeline-express-addons .group:before{content:"";display:table}#timeline-express-addons .group:after{clear:both}#timeline-express-addons .group{zoom:1}#timeline-express-addons .span_3_of_3{width:100%}#timeline-express-addons .span_2_of_3{width:calc(66.13% - 2px)}#timeline-express-addons .span_1_of_3{width:calc(32.26% - 2px)}@media only screen and (max-width:960px){#timeline-express-addons .col{margin:1% 0 1% 0}#timeline-express-addons .span_1_of_3,#timeline-express-addons .span_2_of_3,#timeline-express-addons .span_3_of_3{width:100%}}
|
lib/admin/js/min/timeline-express-admin.min.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
function changeRandomTrimLengthCheckbox(){"1"===jQuery('input[name="excerpt-random-length"]').prop("checked")?(jQuery('input[name="excerpt-trim-length"]').fadeOut("fast",function(){jQuery('input[name="excerpt-random-length"]').css("margin-left","0em")}),jQuery("#random-lenth-text-container").removeClass("random-length-text")):(jQuery('input[name="excerpt-random-length"]').css("margin-left",".5em"),jQuery('input[name="excerpt-trim-length"]').fadeIn("fast"),jQuery("#random-lenth-text-container").addClass("random-length-text"))}function toggleDeleteCheckClass(){!0===jQuery('input[name="delete-announcement-posts-on-uninstallation"]').prop("checked")?(jQuery(".delete-no").addClass("delete-yes"),jQuery(".delete-yes").removeClass("delete-no")):(jQuery(".delete-yes").addClass("delete-no"),jQuery(".delete-no").removeClass("delete-yes"))}!function(i){var t={init:function(){var e=this.checked?timelineExpressSettings.siwtchLabels.toggleCache.enabled:timelineExpressSettings.siwtchLabels.toggleCache.disabled;i(this).closest(".p-switch").find("label").text(e),t.toggleCache(this.checked)},toggleCache:function(e){var t={action:"timeline_express_toggle_cache",cacheEnabled:e};i.post(ajaxurl,t,function(e){})}};i(document).on("change",".timeline-express-toggle-cache",t.init)}(jQuery),function($){"use strict";function n(e,t){return-1<e.toUpperCase().indexOf(t.toUpperCase())}function v(e){return $.each([{re:/[\xC0-\xC6]/g,ch:"A"},{re:/[\xE0-\xE6]/g,ch:"a"},{re:/[\xC8-\xCB]/g,ch:"E"},{re:/[\xE8-\xEB]/g,ch:"e"},{re:/[\xCC-\xCF]/g,ch:"I"},{re:/[\xEC-\xEF]/g,ch:"i"},{re:/[\xD2-\xD6]/g,ch:"O"},{re:/[\xF2-\xF6]/g,ch:"o"},{re:/[\xD9-\xDC]/g,ch:"U"},{re:/[\xF9-\xFC]/g,ch:"u"},{re:/[\xC7-\xE7]/g,ch:"c"},{re:/[\xD1]/g,ch:"N"},{re:/[\xF1]/g,ch:"n"}],function(){e=e.replace(this.re,this.ch)}),e}function l(e){var t={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},i="(?:"+Object.keys(t).join("|")+")",n=new RegExp(i),s=new RegExp(i,"g"),o=null==e?"":""+e;return n.test(o)?o.replace(s,function(e){return t[e]}):o}$.expr[":"].icontains=function(e,t,i){return n($(e).text(),i[3])},$.expr[":"].aicontains=function(e,t,i){return n($(e).data("normalizedText")||$(e).text(),i[3])};var r=function(e,t,i){i&&(i.stopPropagation(),i.preventDefault()),this.$element=$(e),this.$newElement=null,this.$button=null,this.$menu=null,this.$lis=null,this.options=t,null===this.options.title&&(this.options.title=this.$element.attr("title")),this.val=r.prototype.val,this.render=r.prototype.render,this.refresh=r.prototype.refresh,this.setStyle=r.prototype.setStyle,this.selectAll=r.prototype.selectAll,this.deselectAll=r.prototype.deselectAll,this.destroy=r.prototype.remove,this.remove=r.prototype.remove,this.show=r.prototype.show,this.hide=r.prototype.hide,this.init()};function t(o,a){var l,d=arguments,e=o;o=d[0],a=d[1];[].shift.apply(d),void 0===o&&(o=e);var t=this.each(function(){var e=$(this);if(e.is("select")){var t=e.data("selectpicker"),i="object"==typeof o&&o;if(t){if(i)for(var n in i)i.hasOwnProperty(n)&&(t.options[n]=i[n])}else{var s=$.extend({},r.DEFAULTS,$.fn.selectpicker.defaults||{},e.data(),i);e.data("selectpicker",t=new r(this,s,a))}"string"==typeof o&&(l=t[o]instanceof Function?t[o].apply(t,d):t.options[o])}});return void 0!==l?l:t}r.VERSION="1.6.3",r.DEFAULTS={noneSelectedText:"Nothing selected",noneResultsText:"No results match",countSelectedText:function(e,t){return 1==e?"{0} item selected":"{0} items selected"},maxOptionsText:function(e,t){var i=[];return i[0]=1==e?"Limit reached ({n} item max)":"Limit reached ({n} items max)",i[1]=1==t?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)",i},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", ",style:"btn-default",size:"auto",title:null,selectedTextFormat:"values",width:!1,container:!1,hideDisabled:!1,showSubtext:!1,showIcon:!0,showContent:!0,dropupAuto:!0,header:!1,liveSearch:!1,actionsBox:!1,iconBase:"fa",tickIcon:"fa-ok",maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1,searchAccentInsensitive:!1},r.prototype={constructor:r,init:function(){var t=this,e=this.$element.attr("id");this.$element.hide(),this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$newElement=this.createView(),this.$element.after(this.$newElement),this.$menu=this.$newElement.find("> .dropdown-menu"),this.$button=this.$newElement.find("> button"),this.$searchbox=this.$newElement.find("input"),this.options.dropdownAlignRight&&this.$menu.addClass("dropdown-menu-right"),void 0!==e&&(this.$button.attr("data-id",e),$('label[for="'+e+'"]').click(function(e){e.preventDefault(),t.$button.focus()})),this.checkDisabled(),this.clickListener(),this.options.liveSearch&&this.liveSearchListener(),this.render(),this.liHeight(),this.setStyle(),this.setWidth(),this.options.container&&this.selectPosition(),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile()},createDropdown:function(){var e=this.multiple?" show-tick":"",t=this.$element.parent().hasClass("input-group")?" input-group-btn":"",i=this.autofocus?" autofocus":"",n=this.$element.parents().hasClass("form-group-lg")?" btn-lg":this.$element.parents().hasClass("form-group-sm")?" btn-sm":"",s=this.options.header?'<div class="popover-title"><button type="button" class="close" aria-hidden="true">×</button>'+this.options.header+"</div>":"",o=this.options.liveSearch?'<div class="bs-searchbox"><input type="text" class="input-block-level form-control" autocomplete="off" /></div>':"",a=this.options.actionsBox?'<div class="bs-actionsbox"><div class="btn-group btn-block"><button class="actions-btn bs-select-all btn btn-sm btn-default">'+this.options.selectAllText+'</button><button class="actions-btn bs-deselect-all btn btn-sm btn-default">'+this.options.deselectAllText+"</button></div></div>":"";return $('<div class="btn-group bootstrap-select'+e+t+'"><button type="button" class="btn dropdown-toggle selectpicker'+n+'" data-toggle="dropdown"'+i+'><span class="filter-option pull-left"></span> <span class="caret"></span></button><div class="dropdown-menu open">'+s+o+a+'<ul class="dropdown-menu inner selectpicker" role="menu"></ul></div></div>')},createView:function(){var e=this.createDropdown(),t=this.createLi();return e.find("ul").append(t),e},reloadLi:function(){this.destroyLi();var e=this.createLi();this.$menu.find("ul").append(e)},destroyLi:function(){this.$menu.find("li").remove()},createLi:function(){var c=this,h=[],p=0,u=function(e,t,i){return"<li"+(void 0!==i?' class="'+i+'"':"")+(void 0!==t|null===t?' data-original-index="'+t+'"':"")+">"+e+"</li>"},m=function(e,t,i,n){return'<a tabindex="0"'+(void 0!==t?' class="'+t+'"':"")+(void 0!==i?' style="'+i+'"':"")+(void 0!==n?'data-optgroup="'+n+'"':"")+' data-normalized-text="'+v(l(e))+'">'+e+'<span class="'+c.options.iconBase+" "+c.options.tickIcon+' check-mark"></span></a>'};return this.$element.find("option").each(function(){var e=$(this),t=e.attr("class")||"",i=e.attr("style"),n=e.data("content")?e.data("content"):e.html(),s=void 0!==e.data("subtext")?'<small class="muted text-muted">'+e.data("subtext")+"</small>":"",o=void 0!==e.data("icon")?'<span class="'+c.options.iconBase+" "+e.data("icon")+'"></span> ':"",a=e.is(":disabled")||e.parent().is(":disabled"),l=e[0].index;if(""!==o&&a&&(o="<span>"+o+"</span>"),e.data("content")||(n=o+'<span class="text">'+n+s+"</span>"),!c.options.hideDisabled||!a)if(e.parent().is("optgroup")&&!0!==e.data("divider")){if(0===e.index()){p+=1;var d=e.parent().attr("label"),r=void 0!==e.parent().data("subtext")?'<small class="muted text-muted">'+e.parent().data("subtext")+"</small>":"";d=(e.parent().data("icon")?'<span class="'+c.options.iconBase+" "+e.parent().data("icon")+'"></span> ':"")+'<span class="text">'+d+r+"</span>",0!==l&&0<h.length&&h.push(u("",null,"divider")),h.push(u(d,null,"dropdown-header"))}h.push(u(m(n,"opt "+t,i,p),l))}else!0===e.data("divider")?h.push(u("",l,"divider")):!0===e.data("hidden")?h.push(u(m(n,t,i),l,"hide is-hidden")):h.push(u(m(n,t,i),l))}),this.multiple||0!==this.$element.find("option:selected").length||this.options.title||this.$element.find("option").eq(0).prop("selected",!0).attr("selected","selected"),$(h.join(""))},findLis:function(){return null==this.$lis&&(this.$lis=this.$menu.find("li")),this.$lis},render:function(e){var n=this;!1!==e&&this.$element.find("option").each(function(e){n.setDisabled(e,$(this).is(":disabled")||$(this).parent().is(":disabled")),n.setSelected(e,$(this).is(":selected"))}),this.tabIndex();var t=this.options.hideDisabled?":not([disabled])":"",i=this.$element.find("option:selected"+t).map(function(){var e,t=$(this),i=t.data("icon")&&n.options.showIcon?'<i class="'+n.options.iconBase+" "+t.data("icon")+'"></i> ':"";return e=n.options.showSubtext&&t.attr("data-subtext")&&!n.multiple?' <small class="muted text-muted">'+t.data("subtext")+"</small>":"",t.data("content")&&n.options.showContent?t.data("content"):void 0!==t.attr("title")?t.attr("title"):i+t.html()+e}).toArray(),s=this.multiple?i.join(this.options.multipleSeparator):i[0];if(this.multiple&&-1<this.options.selectedTextFormat.indexOf("count")){var o=this.options.selectedTextFormat.split(">");if(1<o.length&&i.length>o[1]||1==o.length&&2<=i.length){t=this.options.hideDisabled?", [disabled]":"";var a=this.$element.find("option").not('[data-divider="true"], [data-hidden="true"]'+t).length;s=("function"==typeof this.options.countSelectedText?this.options.countSelectedText(i.length,a):this.options.countSelectedText).replace("{0}",i.length.toString()).replace("{1}",a.toString())}}this.options.title=this.$element.attr("title"),"static"==this.options.selectedTextFormat&&(s=this.options.title),s||(s=void 0!==this.options.title?this.options.title:this.options.noneSelectedText),this.$button.attr("title",l(s)),this.$newElement.find(".filter-option").html(s)},setStyle:function(e,t){this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|validate\[.*\]/gi,""));var i=e||this.options.style;"add"==t?this.$button.addClass(i):"remove"==t?this.$button.removeClass(i):(this.$button.removeClass(this.options.style),this.$button.addClass(i))},liHeight:function(){if(!1!==this.options.size){var e=this.$menu.parent().clone().find("> .dropdown-toggle").prop("autofocus",!1).end().appendTo("body"),t=e.addClass("open").find("> .dropdown-menu"),i=t.find("li").not(".divider").not(".dropdown-header").filter(":visible").children("a").outerHeight(),n=this.options.header?t.find(".popover-title").outerHeight():0,s=this.options.liveSearch?t.find(".bs-searchbox").outerHeight():0,o=this.options.actionsBox?t.find(".bs-actionsbox").outerHeight():0;e.remove(),this.$newElement.data("liHeight",i).data("headerHeight",n).data("searchHeight",s).data("actionsHeight",o)}},setSize:function(){this.findLis();var i,n,s,o=this,a=this.$menu,l=a.find(".inner"),e=this.$newElement.outerHeight(),d=this.$newElement.data("liHeight"),r=this.$newElement.data("headerHeight"),c=this.$newElement.data("searchHeight"),h=this.$newElement.data("actionsHeight"),t=this.$lis.filter(".divider").outerHeight(!0),p=parseInt(a.css("padding-top"))+parseInt(a.css("padding-bottom"))+parseInt(a.css("border-top-width"))+parseInt(a.css("border-bottom-width")),u=this.options.hideDisabled?", .disabled":"",m=$(window),f=p+parseInt(a.css("margin-top"))+parseInt(a.css("margin-bottom"))+2,v=function(){n=o.$newElement.offset().top-m.scrollTop(),s=m.height()-n-e};if(v(),this.options.header&&a.css("padding-top",0),"auto"==this.options.size){var b=function(){var e,t=o.$lis.not(".hide");v(),i=s-f,o.options.dropupAuto&&o.$newElement.toggleClass("dropup",s<n&&i-f<a.height()),o.$newElement.hasClass("dropup")&&(i=n-f),e=3<t.length+t.filter(".dropdown-header").length?3*d+f-2:0,a.css({"max-height":i+"px",overflow:"hidden","min-height":e+r+c+h+"px"}),l.css({"max-height":i-r-c-h-p+"px","overflow-y":"auto","min-height":Math.max(e-p,0)+"px"})};b(),this.$searchbox.off("input.getSize propertychange.getSize").on("input.getSize propertychange.getSize",b),$(window).off("resize.getSize").on("resize.getSize",b),$(window).off("scroll.getSize").on("scroll.getSize",b)}else if(this.options.size&&"auto"!=this.options.size&&a.find("li"+u).length>this.options.size){var g=this.$lis.not(".divider"+u).find(" > *").slice(0,this.options.size).last().parent().index(),x=this.$lis.slice(0,g+1).filter(".divider").length;i=d*this.options.size+x*t+p,o.options.dropupAuto&&this.$newElement.toggleClass("dropup",s<n&&i<a.height()),a.css({"max-height":i+r+c+h+"px",overflow:"hidden"}),l.css({"max-height":i-p+"px","overflow-y":"auto"})}},setWidth:function(){if("auto"==this.options.width){this.$menu.css("min-width","0");var e=this.$newElement.clone().appendTo("body"),t=e.find("> .dropdown-menu").css("width"),i=e.css("width","auto").find("> button").css("width");e.remove(),this.$newElement.css("width",Math.max(parseInt(t),parseInt(i))+"px")}else"fit"==this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width","").addClass("fit-width")):this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width",this.options.width)):(this.$menu.css("min-width",""),this.$newElement.css("width",""));this.$newElement.hasClass("fit-width")&&"fit"!==this.options.width&&this.$newElement.removeClass("fit-width")},selectPosition:function(){var t,i,n=this,s=$("<div />"),e=function(e){s.addClass(e.attr("class").replace(/form-control/gi,"")).toggleClass("dropup",e.hasClass("dropup")),t=e.offset(),i=e.hasClass("dropup")?0:e[0].offsetHeight,s.css({top:t.top+i,left:t.left,width:e[0].offsetWidth,position:"absolute"})};this.$newElement.on("click",function(){n.isDisabled()||(e($(this)),s.appendTo(n.options.container),s.toggleClass("open",!$(this).hasClass("open")),s.append(n.$menu))}),$(window).resize(function(){e(n.$newElement)}),$(window).on("scroll",function(){e(n.$newElement)}),$("html").on("click",function(e){$(e.target).closest(n.$newElement).length<1&&s.removeClass("open")})},setSelected:function(e,t){this.findLis(),this.$lis.filter('[data-original-index="'+e+'"]').toggleClass("selected",t)},setDisabled:function(e,t){this.findLis(),t?this.$lis.filter('[data-original-index="'+e+'"]').addClass("disabled").find("a").attr("href","#").attr("tabindex",-1):this.$lis.filter('[data-original-index="'+e+'"]').removeClass("disabled").find("a").removeAttr("href").attr("tabindex",0)},isDisabled:function(){return this.$element.is(":disabled")},checkDisabled:function(){var e=this;this.isDisabled()?this.$button.addClass("disabled").attr("tabindex",-1):(this.$button.hasClass("disabled")&&this.$button.removeClass("disabled"),-1==this.$button.attr("tabindex")&&(this.$element.data("tabindex")||this.$button.removeAttr("tabindex"))),this.$button.click(function(){return!e.isDisabled()})},tabIndex:function(){this.$element.is("[tabindex]")&&(this.$element.data("tabindex",this.$element.attr("tabindex")),this.$button.attr("tabindex",this.$element.data("tabindex")))},clickListener:function(){var g=this;this.$newElement.on("touchstart.dropdown",".dropdown-menu",function(e){e.stopPropagation()}),this.$newElement.on("click",function(){g.setSize(),g.options.liveSearch||g.multiple||setTimeout(function(){g.$menu.find(".selected a").focus()},10)}),this.$menu.on("click","li a",function(e){var t=$(this),i=t.parent().data("originalIndex"),n=g.$element.val(),s=g.$element.prop("selectedIndex");if(g.multiple&&e.stopPropagation(),e.preventDefault(),!g.isDisabled()&&!t.parent().hasClass("disabled")){var o=g.$element.find("option"),a=o.eq(i),l=a.prop("selected"),d=a.parent("optgroup"),r=g.options.maxOptions,c=d.data("maxOptions")||!1;if(g.multiple){if(a.prop("selected",!l),g.setSelected(i,!l),t.blur(),!1!==r||!1!==c){var h=r<o.filter(":selected").length,p=c<d.find("option:selected").length;if(r&&h||c&&p)if(r&&1==r)o.prop("selected",!1),a.prop("selected",!0),g.$menu.find(".selected").removeClass("selected"),g.setSelected(i,!0);else if(c&&1==c){d.find("option:selected").prop("selected",!1),a.prop("selected",!0);var u=t.data("optgroup");g.$menu.find(".selected").has('a[data-optgroup="'+u+'"]').removeClass("selected"),g.setSelected(i,!0)}else{var m="function"==typeof g.options.maxOptionsText?g.options.maxOptionsText(r,c):g.options.maxOptionsText,f=m[0].replace("{n}",r),v=m[1].replace("{n}",c),b=$('<div class="notify"></div>');m[2]&&(f=f.replace("{var}",m[2][1<r?0:1]),v=v.replace("{var}",m[2][1<c?0:1])),a.prop("selected",!1),g.$menu.append(b),r&&h&&(b.append($("<div>"+f+"</div>")),g.$element.trigger("maxReached.bs.select")),c&&p&&(b.append($("<div>"+v+"</div>")),g.$element.trigger("maxReachedGrp.bs.select")),setTimeout(function(){g.setSelected(i,!1)},10),b.delay(750).fadeOut(300,function(){$(this).remove()})}}}else o.prop("selected",!1),a.prop("selected",!0),g.$menu.find(".selected").removeClass("selected"),g.setSelected(i,!0);g.multiple?g.options.liveSearch&&g.$searchbox.focus():g.$button.focus(),(n!=g.$element.val()&&g.multiple||s!=g.$element.prop("selectedIndex")&&!g.multiple)&&g.$element.change()}}),this.$menu.on("click","li.disabled a, .popover-title, .popover-title :not(.close)",function(e){e.target==this&&(e.preventDefault(),e.stopPropagation(),g.options.liveSearch?g.$searchbox.focus():g.$button.focus())}),this.$menu.on("click","li.divider, li.dropdown-header",function(e){e.preventDefault(),e.stopPropagation(),g.options.liveSearch?g.$searchbox.focus():g.$button.focus()}),this.$menu.on("click",".popover-title .close",function(){g.$button.focus()}),this.$searchbox.on("click",function(e){e.stopPropagation()}),this.$menu.on("click",".actions-btn",function(e){g.options.liveSearch?g.$searchbox.focus():g.$button.focus(),e.preventDefault(),e.stopPropagation(),$(this).is(".bs-select-all")?g.selectAll():g.deselectAll(),g.$element.change()}),this.$element.change(function(){g.render(!1)})},liveSearchListener:function(){var e=this,t=$('<li class="no-results"></li>');this.$newElement.on("click.dropdown.data-api touchstart.dropdown.data-api",function(){e.$menu.find(".active").removeClass("active"),e.$searchbox.val()&&(e.$searchbox.val(""),e.$lis.not(".is-hidden").removeClass("hide"),t.parent().length&&t.remove()),e.multiple||e.$menu.find(".selected").addClass("active"),setTimeout(function(){e.$searchbox.focus()},10)}),this.$searchbox.on("click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api",function(e){e.stopPropagation()}),this.$searchbox.on("input propertychange",function(){e.$searchbox.val()?(e.options.searchAccentInsensitive?e.$lis.not(".is-hidden").removeClass("hide").find("a").not(":aicontains("+v(e.$searchbox.val())+")").parent().addClass("hide"):e.$lis.not(".is-hidden").removeClass("hide").find("a").not(":icontains("+e.$searchbox.val()+")").parent().addClass("hide"),e.$menu.find("li").filter(":visible:not(.no-results)").length?t.parent().length&&t.remove():(t.parent().length&&t.remove(),t.html(e.options.noneResultsText+' "'+l(e.$searchbox.val())+'"').show(),e.$menu.find("li").last().after(t))):(e.$lis.not(".is-hidden").removeClass("hide"),t.parent().length&&t.remove()),e.$menu.find("li.active").removeClass("active"),e.$menu.find("li").filter(":visible:not(.divider)").eq(0).addClass("active").find("a").focus(),$(this).focus()})},val:function(e){return void 0!==e?(this.$element.val(e),this.render(),this.$element):this.$element.val()},selectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").not(".selected").filter(":visible").find("a").click()},deselectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").filter(".selected").filter(":visible").find("a").click()},keydown:function(e){var t,i,n,s,o,a,l,d,r,c=$(this),h=c.is("input")?c.parent().parent():c.parent(),p=h.data("this"),u={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"};if(p.options.liveSearch&&(h=c.parent().parent()),p.options.container&&(h=p.$menu),t=$("[role=menu] li a",h),!(r=p.$menu.parent().hasClass("open"))&&/([0-9]|[A-z])/.test(String.fromCharCode(e.keyCode))&&(p.options.container?p.$newElement.trigger("click"):(p.setSize(),p.$menu.parent().addClass("open"),r=!0),p.$searchbox.focus()),p.options.liveSearch&&(/(^9$|27)/.test(e.keyCode.toString(10))&&r&&0===p.$menu.find(".active").length&&(e.preventDefault(),p.$menu.parent().removeClass("open"),p.$button.focus()),t=$("[role=menu] li:not(.divider):not(.dropdown-header):visible",h),c.val()||/(38|40)/.test(e.keyCode.toString(10))||0===t.filter(".active").length&&(t=p.options.searchAccentInsensitive?p.$newElement.find("li").filter(":aicontains("+v(u[e.keyCode])+")"):p.$newElement.find("li").filter(":icontains("+u[e.keyCode]+")"))),t.length){if(/(38|40)/.test(e.keyCode.toString(10)))i=t.index(t.filter(":focus")),s=t.parent(":not(.disabled):visible").first().index(),o=t.parent(":not(.disabled):visible").last().index(),n=t.eq(i).parent().nextAll(":not(.disabled):visible").eq(0).index(),a=t.eq(i).parent().prevAll(":not(.disabled):visible").eq(0).index(),l=t.eq(n).parent().prevAll(":not(.disabled):visible").eq(0).index(),p.options.liveSearch&&(t.each(function(e){$(this).is(":not(.disabled)")&&$(this).data("index",e)}),i=t.index(t.filter(".active")),s=t.filter(":not(.disabled):visible").first().data("index"),o=t.filter(":not(.disabled):visible").last().data("index"),n=t.eq(i).nextAll(":not(.disabled):visible").eq(0).data("index"),a=t.eq(i).prevAll(":not(.disabled):visible").eq(0).data("index"),l=t.eq(n).prevAll(":not(.disabled):visible").eq(0).data("index")),d=c.data("prevIndex"),38==e.keyCode&&(p.options.liveSearch&&(i-=1),i!=l&&a<i&&(i=a),i<s&&(i=s),i==d&&(i=o)),40==e.keyCode&&(p.options.liveSearch&&(i+=1),-1==i&&(i=0),i!=l&&i<n&&(i=n),o<i&&(i=o),i==d&&(i=s)),c.data("prevIndex",i),p.options.liveSearch?(e.preventDefault(),c.is(".dropdown-toggle")||(t.removeClass("active"),t.eq(i).addClass("active").find("a").focus(),c.focus())):t.eq(i).focus();else if(!c.is("input")){var m,f=[];t.each(function(){$(this).parent().is(":not(.disabled)")&&$.trim($(this).text().toLowerCase()).substring(0,1)==u[e.keyCode]&&f.push($(this).parent().index())}),m=$(document).data("keycount"),m++,$(document).data("keycount",m),$.trim($(":focus").text().toLowerCase()).substring(0,1)!=u[e.keyCode]?(m=1,$(document).data("keycount",m)):m>=f.length&&($(document).data("keycount",0),m>f.length&&(m=1)),t.eq(f[m-1]).focus()}(/(13|32)/.test(e.keyCode.toString(10))||/(^9$)/.test(e.keyCode.toString(10))&&p.options.selectOnTab)&&r&&(/(32)/.test(e.keyCode.toString(10))||e.preventDefault(),p.options.liveSearch?/(32)/.test(e.keyCode.toString(10))||(p.$menu.find(".active a").click(),c.focus()):$(":focus").click(),$(document).data("keycount",0)),(/(^9$|27)/.test(e.keyCode.toString(10))&&r&&(p.multiple||p.options.liveSearch)||/(27)/.test(e.keyCode.toString(10))&&!r)&&(p.$menu.parent().removeClass("open"),p.$button.focus())}},mobile:function(){this.$element.addClass("mobile-device").appendTo(this.$newElement),this.options.container&&this.$menu.hide()},refresh:function(){this.$lis=null,this.reloadLi(),this.render(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},update:function(){this.reloadLi(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()}};var e=$.fn.selectpicker;$.fn.selectpicker=t,$.fn.selectpicker.Constructor=r,$.fn.selectpicker.noConflict=function(){return $.fn.selectpicker=e,this},$(document).data("keycount",0).on("keydown",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",r.prototype.keydown).on("focusin.modal",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",function(e){e.stopPropagation()}),$(window).on("load.bs.select.data-api",function(){$(".selectpicker").each(function(){var e=$(this);t.call(e,e.data())})})}(jQuery),jQuery(document).ready(function(){jQuery(".color-picker-field").length&&(jQuery(".color-picker-field").wpColorPicker(),jQuery(".meta-box-sortables").sortable({disabled:!0}),jQuery(".postbox .hndle").css("cursor","pointer"))});
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
function changeRandomTrimLengthCheckbox(){"1"===jQuery('input[name="excerpt-random-length"]').prop("checked")?(jQuery('input[name="excerpt-trim-length"]').fadeOut("fast",function(){jQuery('input[name="excerpt-random-length"]').css("margin-left","0em")}),jQuery("#random-lenth-text-container").removeClass("random-length-text")):(jQuery('input[name="excerpt-random-length"]').css("margin-left",".5em"),jQuery('input[name="excerpt-trim-length"]').fadeIn("fast"),jQuery("#random-lenth-text-container").addClass("random-length-text"))}function toggleDeleteCheckClass(){!0===jQuery('input[name="delete-announcement-posts-on-uninstallation"]').prop("checked")?(jQuery(".delete-no").addClass("delete-yes"),jQuery(".delete-yes").removeClass("delete-no")):(jQuery(".delete-yes").addClass("delete-no"),jQuery(".delete-no").removeClass("delete-yes"))}!function(i){var t={init:function(){var e=this.checked?timelineExpressSettings.siwtchLabels.toggleCache.enabled:timelineExpressSettings.siwtchLabels.toggleCache.disabled;i(this).closest(".p-switch").find("label").text(e),t.toggleCache(this.checked)},toggleCache:function(e){var t={action:"timeline_express_toggle_cache",cacheEnabled:e};i.post(ajaxurl,t,function(e){})}};i(document).on("change",".timeline-express-toggle-cache",t.init)}(jQuery),function($){"use strict";function n(e,t){return-1<e.toUpperCase().indexOf(t.toUpperCase())}function v(e){return $.each([{re:/[\xC0-\xC6]/g,ch:"A"},{re:/[\xE0-\xE6]/g,ch:"a"},{re:/[\xC8-\xCB]/g,ch:"E"},{re:/[\xE8-\xEB]/g,ch:"e"},{re:/[\xCC-\xCF]/g,ch:"I"},{re:/[\xEC-\xEF]/g,ch:"i"},{re:/[\xD2-\xD6]/g,ch:"O"},{re:/[\xF2-\xF6]/g,ch:"o"},{re:/[\xD9-\xDC]/g,ch:"U"},{re:/[\xF9-\xFC]/g,ch:"u"},{re:/[\xC7-\xE7]/g,ch:"c"},{re:/[\xD1]/g,ch:"N"},{re:/[\xF1]/g,ch:"n"}],function(){e=e.replace(this.re,this.ch)}),e}function l(e){var t={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},i="(?:"+Object.keys(t).join("|")+")",n=new RegExp(i),s=new RegExp(i,"g"),o=null==e?"":""+e;return n.test(o)?o.replace(s,function(e){return t[e]}):o}$.expr[":"].icontains=function(e,t,i){return n($(e).text(),i[3])},$.expr[":"].aicontains=function(e,t,i){return n($(e).data("normalizedText")||$(e).text(),i[3])};var r=function(e,t,i){i&&(i.stopPropagation(),i.preventDefault()),this.$element=$(e),this.$newElement=null,this.$button=null,this.$menu=null,this.$lis=null,this.options=t,null===this.options.title&&(this.options.title=this.$element.attr("title")),this.val=r.prototype.val,this.render=r.prototype.render,this.refresh=r.prototype.refresh,this.setStyle=r.prototype.setStyle,this.selectAll=r.prototype.selectAll,this.deselectAll=r.prototype.deselectAll,this.destroy=r.prototype.remove,this.remove=r.prototype.remove,this.show=r.prototype.show,this.hide=r.prototype.hide,this.init()};function t(o,a){var l,d=arguments,e=o;o=d[0],a=d[1];[].shift.apply(d),void 0===o&&(o=e);var t=this.each(function(){var e=$(this);if(e.is("select")){var t=e.data("selectpicker"),i="object"==typeof o&&o;if(t){if(i)for(var n in i)i.hasOwnProperty(n)&&(t.options[n]=i[n])}else{var s=$.extend({},r.DEFAULTS,$.fn.selectpicker.defaults||{},e.data(),i);e.data("selectpicker",t=new r(this,s,a))}"string"==typeof o&&(l=t[o]instanceof Function?t[o].apply(t,d):t.options[o])}});return void 0!==l?l:t}r.VERSION="1.6.3",r.DEFAULTS={noneSelectedText:"Nothing selected",noneResultsText:"No results match",countSelectedText:function(e,t){return 1==e?"{0} item selected":"{0} items selected"},maxOptionsText:function(e,t){var i=[];return i[0]=1==e?"Limit reached ({n} item max)":"Limit reached ({n} items max)",i[1]=1==t?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)",i},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", ",style:"btn-default",size:"auto",title:null,selectedTextFormat:"values",width:!1,container:!1,hideDisabled:!1,showSubtext:!1,showIcon:!0,showContent:!0,dropupAuto:!0,header:!1,liveSearch:!1,actionsBox:!1,iconBase:"fa",tickIcon:"fa-ok",maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1,searchAccentInsensitive:!1},r.prototype={constructor:r,init:function(){var t=this,e=this.$element.attr("id");this.$element.hide(),this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$newElement=this.createView(),this.$element.after(this.$newElement),this.$menu=this.$newElement.find("> .dropdown-menu"),this.$button=this.$newElement.find("> button"),this.$searchbox=this.$newElement.find("input"),this.options.dropdownAlignRight&&this.$menu.addClass("dropdown-menu-right"),void 0!==e&&(this.$button.attr("data-id",e),$('label[for="'+e+'"]').click(function(e){e.preventDefault(),t.$button.focus()})),this.checkDisabled(),this.clickListener(),this.options.liveSearch&&this.liveSearchListener(),this.render(),this.liHeight(),this.setStyle(),this.setWidth(),this.options.container&&this.selectPosition(),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile()},createDropdown:function(){var e=this.multiple?" show-tick":"",t=this.$element.parent().hasClass("input-group")?" input-group-btn":"",i=this.autofocus?" autofocus":"",n=this.$element.parents().hasClass("form-group-lg")?" btn-lg":this.$element.parents().hasClass("form-group-sm")?" btn-sm":"",s=this.options.header?'<div class="popover-title"><button type="button" class="close" aria-hidden="true">×</button>'+this.options.header+"</div>":"",o=this.options.liveSearch?'<div class="bs-searchbox"><input type="text" class="input-block-level form-control" autocomplete="off" /></div>':"",a=this.options.actionsBox?'<div class="bs-actionsbox"><div class="btn-group btn-block"><button class="actions-btn bs-select-all btn btn-sm btn-default">'+this.options.selectAllText+'</button><button class="actions-btn bs-deselect-all btn btn-sm btn-default">'+this.options.deselectAllText+"</button></div></div>":"";return $('<div class="btn-group bootstrap-select'+e+t+'"><button type="button" class="btn dropdown-toggle selectpicker'+n+'" data-toggle="dropdown"'+i+'><span class="filter-option pull-left"></span> <span class="caret"></span></button><div class="dropdown-menu open">'+s+o+a+'<ul class="dropdown-menu inner selectpicker" role="menu"></ul></div></div>')},createView:function(){var e=this.createDropdown(),t=this.createLi();return e.find("ul").append(t),e},reloadLi:function(){this.destroyLi();var e=this.createLi();this.$menu.find("ul").append(e)},destroyLi:function(){this.$menu.find("li").remove()},createLi:function(){var c=this,h=[],p=0,u=function(e,t,i){return"<li"+(void 0!==i?' class="'+i+'"':"")+(void 0!==t|null===t?' data-original-index="'+t+'"':"")+">"+e+"</li>"},m=function(e,t,i,n){return'<a tabindex="0"'+(void 0!==t?' class="'+t+'"':"")+(void 0!==i?' style="'+i+'"':"")+(void 0!==n?'data-optgroup="'+n+'"':"")+' data-normalized-text="'+v(l(e))+'">'+e+'<span class="'+c.options.iconBase+" "+c.options.tickIcon+' check-mark"></span></a>'};return this.$element.find("option").each(function(){var e=$(this),t=e.attr("class")||"",i=e.attr("style"),n=e.data("content")?e.data("content"):e.html(),s=void 0!==e.data("subtext")?'<small class="muted text-muted">'+e.data("subtext")+"</small>":"",o=void 0!==e.data("icon")?'<span class="'+c.options.iconBase+" "+e.data("icon")+'"></span> ':"",a=e.is(":disabled")||e.parent().is(":disabled"),l=e[0].index;if(""!==o&&a&&(o="<span>"+o+"</span>"),e.data("content")||(n=o+'<span class="text">'+n+s+"</span>"),!c.options.hideDisabled||!a)if(e.parent().is("optgroup")&&!0!==e.data("divider")){if(0===e.index()){p+=1;var d=e.parent().attr("label"),r=void 0!==e.parent().data("subtext")?'<small class="muted text-muted">'+e.parent().data("subtext")+"</small>":"";d=(e.parent().data("icon")?'<span class="'+c.options.iconBase+" "+e.parent().data("icon")+'"></span> ':"")+'<span class="text">'+d+r+"</span>",0!==l&&0<h.length&&h.push(u("",null,"divider")),h.push(u(d,null,"dropdown-header"))}h.push(u(m(n,"opt "+t,i,p),l))}else!0===e.data("divider")?h.push(u("",l,"divider")):!0===e.data("hidden")?h.push(u(m(n,t,i),l,"hide is-hidden")):h.push(u(m(n,t,i),l))}),this.multiple||0!==this.$element.find("option:selected").length||this.options.title||this.$element.find("option").eq(0).prop("selected",!0).attr("selected","selected"),$(h.join(""))},findLis:function(){return null==this.$lis&&(this.$lis=this.$menu.find("li")),this.$lis},render:function(e){var n=this;!1!==e&&this.$element.find("option").each(function(e){n.setDisabled(e,$(this).is(":disabled")||$(this).parent().is(":disabled")),n.setSelected(e,$(this).is(":selected"))}),this.tabIndex();var t=this.options.hideDisabled?":not([disabled])":"",i=this.$element.find("option:selected"+t).map(function(){var e,t=$(this),i=t.data("icon")&&n.options.showIcon?'<i class="'+n.options.iconBase+" "+t.data("icon")+'"></i> ':"";return e=n.options.showSubtext&&t.attr("data-subtext")&&!n.multiple?' <small class="muted text-muted">'+t.data("subtext")+"</small>":"",t.data("content")&&n.options.showContent?t.data("content"):void 0!==t.attr("title")?t.attr("title"):i+t.html()+e}).toArray(),s=this.multiple?i.join(this.options.multipleSeparator):i[0];if(this.multiple&&-1<this.options.selectedTextFormat.indexOf("count")){var o=this.options.selectedTextFormat.split(">");if(1<o.length&&i.length>o[1]||1==o.length&&2<=i.length){t=this.options.hideDisabled?", [disabled]":"";var a=this.$element.find("option").not('[data-divider="true"], [data-hidden="true"]'+t).length;s=("function"==typeof this.options.countSelectedText?this.options.countSelectedText(i.length,a):this.options.countSelectedText).replace("{0}",i.length.toString()).replace("{1}",a.toString())}}this.options.title=this.$element.attr("title"),"static"==this.options.selectedTextFormat&&(s=this.options.title),s||(s=void 0!==this.options.title?this.options.title:this.options.noneSelectedText),this.$button.attr("title",l(s)),this.$newElement.find(".filter-option").html(s)},setStyle:function(e,t){this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|validate\[.*\]/gi,""));var i=e||this.options.style;"add"==t?this.$button.addClass(i):"remove"==t?this.$button.removeClass(i):(this.$button.removeClass(this.options.style),this.$button.addClass(i))},liHeight:function(){if(!1!==this.options.size){var e=this.$menu.parent().clone().find("> .dropdown-toggle").prop("autofocus",!1).end().appendTo("body"),t=e.addClass("open").find("> .dropdown-menu"),i=t.find("li").not(".divider").not(".dropdown-header").filter(":visible").children("a").outerHeight(),n=this.options.header?t.find(".popover-title").outerHeight():0,s=this.options.liveSearch?t.find(".bs-searchbox").outerHeight():0,o=this.options.actionsBox?t.find(".bs-actionsbox").outerHeight():0;e.remove(),this.$newElement.data("liHeight",i).data("headerHeight",n).data("searchHeight",s).data("actionsHeight",o)}},setSize:function(){this.findLis();var i,n,s,o=this,a=this.$menu,l=a.find(".inner"),e=this.$newElement.outerHeight(),d=this.$newElement.data("liHeight"),r=this.$newElement.data("headerHeight"),c=this.$newElement.data("searchHeight"),h=this.$newElement.data("actionsHeight"),t=this.$lis.filter(".divider").outerHeight(!0),p=parseInt(a.css("padding-top"))+parseInt(a.css("padding-bottom"))+parseInt(a.css("border-top-width"))+parseInt(a.css("border-bottom-width")),u=this.options.hideDisabled?", .disabled":"",m=$(window),f=p+parseInt(a.css("margin-top"))+parseInt(a.css("margin-bottom"))+2,v=function(){n=o.$newElement.offset().top-m.scrollTop(),s=m.height()-n-e};if(v(),this.options.header&&a.css("padding-top",0),"auto"==this.options.size){var b=function(){var e,t=o.$lis.not(".hide");v(),i=s-f,o.options.dropupAuto&&o.$newElement.toggleClass("dropup",s<n&&i-f<a.height()),o.$newElement.hasClass("dropup")&&(i=n-f),e=3<t.length+t.filter(".dropdown-header").length?3*d+f-2:0,a.css({"max-height":i+"px",overflow:"hidden","min-height":e+r+c+h+"px"}),l.css({"max-height":i-r-c-h-p+"px","overflow-y":"auto","min-height":Math.max(e-p,0)+"px"})};b(),this.$searchbox.off("input.getSize propertychange.getSize").on("input.getSize propertychange.getSize",b),$(window).off("resize.getSize").on("resize.getSize",b),$(window).off("scroll.getSize").on("scroll.getSize",b)}else if(this.options.size&&"auto"!=this.options.size&&a.find("li"+u).length>this.options.size){var g=this.$lis.not(".divider"+u).find(" > *").slice(0,this.options.size).last().parent().index(),x=this.$lis.slice(0,g+1).filter(".divider").length;i=d*this.options.size+x*t+p,o.options.dropupAuto&&this.$newElement.toggleClass("dropup",s<n&&i<a.height()),a.css({"max-height":i+r+c+h+"px",overflow:"hidden"}),l.css({"max-height":i-p+"px","overflow-y":"auto"})}},setWidth:function(){if("auto"==this.options.width){this.$menu.css("min-width","0");var e=this.$newElement.clone().appendTo("body"),t=e.find("> .dropdown-menu").css("width"),i=e.css("width","auto").find("> button").css("width");e.remove(),this.$newElement.css("width",Math.max(parseInt(t),parseInt(i))+"px")}else"fit"==this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width","").addClass("fit-width")):this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width",this.options.width)):(this.$menu.css("min-width",""),this.$newElement.css("width",""));this.$newElement.hasClass("fit-width")&&"fit"!==this.options.width&&this.$newElement.removeClass("fit-width")},selectPosition:function(){var t,i,n=this,s=$("<div />"),e=function(e){s.addClass(e.attr("class").replace(/form-control/gi,"")).toggleClass("dropup",e.hasClass("dropup")),t=e.offset(),i=e.hasClass("dropup")?0:e[0].offsetHeight,s.css({top:t.top+i,left:t.left,width:e[0].offsetWidth,position:"absolute"})};this.$newElement.on("click",function(){n.isDisabled()||(e($(this)),s.appendTo(n.options.container),s.toggleClass("open",!$(this).hasClass("open")),s.append(n.$menu))}),$(window).resize(function(){e(n.$newElement)}),$(window).on("scroll",function(){e(n.$newElement)}),$("html").on("click",function(e){$(e.target).closest(n.$newElement).length<1&&s.removeClass("open")})},setSelected:function(e,t){this.findLis(),this.$lis.filter('[data-original-index="'+e+'"]').toggleClass("selected",t)},setDisabled:function(e,t){this.findLis(),t?this.$lis.filter('[data-original-index="'+e+'"]').addClass("disabled").find("a").attr("href","#").attr("tabindex",-1):this.$lis.filter('[data-original-index="'+e+'"]').removeClass("disabled").find("a").removeAttr("href").attr("tabindex",0)},isDisabled:function(){return this.$element.is(":disabled")},checkDisabled:function(){var e=this;this.isDisabled()?this.$button.addClass("disabled").attr("tabindex",-1):(this.$button.hasClass("disabled")&&this.$button.removeClass("disabled"),-1==this.$button.attr("tabindex")&&(this.$element.data("tabindex")||this.$button.removeAttr("tabindex"))),this.$button.click(function(){return!e.isDisabled()})},tabIndex:function(){this.$element.is("[tabindex]")&&(this.$element.data("tabindex",this.$element.attr("tabindex")),this.$button.attr("tabindex",this.$element.data("tabindex")))},clickListener:function(){var g=this;this.$newElement.on("touchstart.dropdown",".dropdown-menu",function(e){e.stopPropagation()}),this.$newElement.on("click",function(){g.setSize(),g.options.liveSearch||g.multiple||setTimeout(function(){g.$menu.find(".selected a").focus()},10)}),this.$menu.on("click","li a",function(e){var t=$(this),i=t.parent().data("originalIndex"),n=g.$element.val(),s=g.$element.prop("selectedIndex");if(g.multiple&&e.stopPropagation(),e.preventDefault(),!g.isDisabled()&&!t.parent().hasClass("disabled")){var o=g.$element.find("option"),a=o.eq(i),l=a.prop("selected"),d=a.parent("optgroup"),r=g.options.maxOptions,c=d.data("maxOptions")||!1;if(g.multiple){if(a.prop("selected",!l),g.setSelected(i,!l),t.blur(),!1!==r||!1!==c){var h=r<o.filter(":selected").length,p=c<d.find("option:selected").length;if(r&&h||c&&p)if(r&&1==r)o.prop("selected",!1),a.prop("selected",!0),g.$menu.find(".selected").removeClass("selected"),g.setSelected(i,!0);else if(c&&1==c){d.find("option:selected").prop("selected",!1),a.prop("selected",!0);var u=t.data("optgroup");g.$menu.find(".selected").has('a[data-optgroup="'+u+'"]').removeClass("selected"),g.setSelected(i,!0)}else{var m="function"==typeof g.options.maxOptionsText?g.options.maxOptionsText(r,c):g.options.maxOptionsText,f=m[0].replace("{n}",r),v=m[1].replace("{n}",c),b=$('<div class="notify"></div>');m[2]&&(f=f.replace("{var}",m[2][1<r?0:1]),v=v.replace("{var}",m[2][1<c?0:1])),a.prop("selected",!1),g.$menu.append(b),r&&h&&(b.append($("<div>"+f+"</div>")),g.$element.trigger("maxReached.bs.select")),c&&p&&(b.append($("<div>"+v+"</div>")),g.$element.trigger("maxReachedGrp.bs.select")),setTimeout(function(){g.setSelected(i,!1)},10),b.delay(750).fadeOut(300,function(){$(this).remove()})}}}else o.prop("selected",!1),a.prop("selected",!0),g.$menu.find(".selected").removeClass("selected"),g.setSelected(i,!0);g.multiple?g.options.liveSearch&&g.$searchbox.focus():g.$button.focus(),(n!=g.$element.val()&&g.multiple||s!=g.$element.prop("selectedIndex")&&!g.multiple)&&g.$element.change()}}),this.$menu.on("click","li.disabled a, .popover-title, .popover-title :not(.close)",function(e){e.target==this&&(e.preventDefault(),e.stopPropagation(),g.options.liveSearch?g.$searchbox.focus():g.$button.focus())}),this.$menu.on("click","li.divider, li.dropdown-header",function(e){e.preventDefault(),e.stopPropagation(),g.options.liveSearch?g.$searchbox.focus():g.$button.focus()}),this.$menu.on("click",".popover-title .close",function(){g.$button.focus()}),this.$searchbox.on("click",function(e){e.stopPropagation()}),this.$menu.on("click",".actions-btn",function(e){g.options.liveSearch?g.$searchbox.focus():g.$button.focus(),e.preventDefault(),e.stopPropagation(),$(this).is(".bs-select-all")?g.selectAll():g.deselectAll(),g.$element.change()}),this.$element.change(function(){g.render(!1)})},liveSearchListener:function(){var e=this,t=$('<li class="no-results"></li>');this.$newElement.on("click.dropdown.data-api touchstart.dropdown.data-api",function(){e.$menu.find(".active").removeClass("active"),e.$searchbox.val()&&(e.$searchbox.val(""),e.$lis.not(".is-hidden").removeClass("hide"),t.parent().length&&t.remove()),e.multiple||e.$menu.find(".selected").addClass("active"),setTimeout(function(){e.$searchbox.focus()},10)}),this.$searchbox.on("click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api",function(e){e.stopPropagation()}),this.$searchbox.on("input propertychange",function(){e.$searchbox.val()?(e.options.searchAccentInsensitive?e.$lis.not(".is-hidden").removeClass("hide").find("a").not(":aicontains("+v(e.$searchbox.val())+")").parent().addClass("hide"):e.$lis.not(".is-hidden").removeClass("hide").find("a").not(":icontains("+e.$searchbox.val()+")").parent().addClass("hide"),e.$menu.find("li").filter(":visible:not(.no-results)").length?t.parent().length&&t.remove():(t.parent().length&&t.remove(),t.html(e.options.noneResultsText+' "'+l(e.$searchbox.val())+'"').show(),e.$menu.find("li").last().after(t))):(e.$lis.not(".is-hidden").removeClass("hide"),t.parent().length&&t.remove()),e.$menu.find("li.active").removeClass("active"),e.$menu.find("li").filter(":visible:not(.divider)").eq(0).addClass("active").find("a").focus(),$(this).focus()})},val:function(e){return void 0!==e?(this.$element.val(e),this.render(),this.$element):this.$element.val()},selectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").not(".selected").filter(":visible").find("a").click()},deselectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").filter(".selected").filter(":visible").find("a").click()},keydown:function(e){var t,i,n,s,o,a,l,d,r,c=$(this),h=c.is("input")?c.parent().parent():c.parent(),p=h.data("this"),u={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"};if(p.options.liveSearch&&(h=c.parent().parent()),p.options.container&&(h=p.$menu),t=$("[role=menu] li a",h),!(r=p.$menu.parent().hasClass("open"))&&/([0-9]|[A-z])/.test(String.fromCharCode(e.keyCode))&&(p.options.container?p.$newElement.trigger("click"):(p.setSize(),p.$menu.parent().addClass("open"),r=!0),p.$searchbox.focus()),p.options.liveSearch&&(/(^9$|27)/.test(e.keyCode.toString(10))&&r&&0===p.$menu.find(".active").length&&(e.preventDefault(),p.$menu.parent().removeClass("open"),p.$button.focus()),t=$("[role=menu] li:not(.divider):not(.dropdown-header):visible",h),c.val()||/(38|40)/.test(e.keyCode.toString(10))||0===t.filter(".active").length&&(t=p.options.searchAccentInsensitive?p.$newElement.find("li").filter(":aicontains("+v(u[e.keyCode])+")"):p.$newElement.find("li").filter(":icontains("+u[e.keyCode]+")"))),t.length){if(/(38|40)/.test(e.keyCode.toString(10)))i=t.index(t.filter(":focus")),s=t.parent(":not(.disabled):visible").first().index(),o=t.parent(":not(.disabled):visible").last().index(),n=t.eq(i).parent().nextAll(":not(.disabled):visible").eq(0).index(),a=t.eq(i).parent().prevAll(":not(.disabled):visible").eq(0).index(),l=t.eq(n).parent().prevAll(":not(.disabled):visible").eq(0).index(),p.options.liveSearch&&(t.each(function(e){$(this).is(":not(.disabled)")&&$(this).data("index",e)}),i=t.index(t.filter(".active")),s=t.filter(":not(.disabled):visible").first().data("index"),o=t.filter(":not(.disabled):visible").last().data("index"),n=t.eq(i).nextAll(":not(.disabled):visible").eq(0).data("index"),a=t.eq(i).prevAll(":not(.disabled):visible").eq(0).data("index"),l=t.eq(n).prevAll(":not(.disabled):visible").eq(0).data("index")),d=c.data("prevIndex"),38==e.keyCode&&(p.options.liveSearch&&(i-=1),i!=l&&a<i&&(i=a),i<s&&(i=s),i==d&&(i=o)),40==e.keyCode&&(p.options.liveSearch&&(i+=1),-1==i&&(i=0),i!=l&&i<n&&(i=n),o<i&&(i=o),i==d&&(i=s)),c.data("prevIndex",i),p.options.liveSearch?(e.preventDefault(),c.is(".dropdown-toggle")||(t.removeClass("active"),t.eq(i).addClass("active").find("a").focus(),c.focus())):t.eq(i).focus();else if(!c.is("input")){var m,f=[];t.each(function(){$(this).parent().is(":not(.disabled)")&&$.trim($(this).text().toLowerCase()).substring(0,1)==u[e.keyCode]&&f.push($(this).parent().index())}),m=$(document).data("keycount"),m++,$(document).data("keycount",m),$.trim($(":focus").text().toLowerCase()).substring(0,1)!=u[e.keyCode]?(m=1,$(document).data("keycount",m)):m>=f.length&&($(document).data("keycount",0),m>f.length&&(m=1)),t.eq(f[m-1]).focus()}(/(13|32)/.test(e.keyCode.toString(10))||/(^9$)/.test(e.keyCode.toString(10))&&p.options.selectOnTab)&&r&&(/(32)/.test(e.keyCode.toString(10))||e.preventDefault(),p.options.liveSearch?/(32)/.test(e.keyCode.toString(10))||(p.$menu.find(".active a").click(),c.focus()):$(":focus").click(),$(document).data("keycount",0)),(/(^9$|27)/.test(e.keyCode.toString(10))&&r&&(p.multiple||p.options.liveSearch)||/(27)/.test(e.keyCode.toString(10))&&!r)&&(p.$menu.parent().removeClass("open"),p.$button.focus())}},mobile:function(){this.$element.addClass("mobile-device").appendTo(this.$newElement),this.options.container&&this.$menu.hide()},refresh:function(){this.$lis=null,this.reloadLi(),this.render(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},update:function(){this.reloadLi(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()}};var e=$.fn.selectpicker;$.fn.selectpicker=t,$.fn.selectpicker.Constructor=r,$.fn.selectpicker.noConflict=function(){return $.fn.selectpicker=e,this},$(document).data("keycount",0).on("keydown",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",r.prototype.keydown).on("focusin.modal",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",function(e){e.stopPropagation()}),$(window).on("load.bs.select.data-api",function(){$(".selectpicker").each(function(){var e=$(this);t.call(e,e.data())})})}(jQuery),jQuery(document).ready(function(){jQuery(".color-picker-field").length&&(jQuery(".color-picker-field").wpColorPicker(),jQuery(".meta-box-sortables").sortable({disabled:!0}),jQuery(".postbox .hndle").css("cursor","pointer"))});
|
lib/admin/js/min/timeline-express-blocks.min.js
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* @Plugin Timeline Express
|
3 |
+
* @Author Code Parrots
|
4 |
+
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
+
*/
|
8 |
+
!function(e){var l={};function n(t){if(l[t])return l[t].exports;var c=l[t]={i:t,l:!1,exports:{}};return e[t].call(c.exports,c,c.exports,n),c.l=!0,c.exports}n.m=e,n.c=l,n.d=function(t,c,e){n.o(t,c)||Object.defineProperty(t,c,{configurable:!1,enumerable:!0,get:e})},n.n=function(t){var c=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(c,"a",c),c},n.o=function(t,c){return Object.prototype.hasOwnProperty.call(t,c)},n.p="",n(n.s=0)}([function(module,__webpack_exports__,__webpack_require__){"use strict";eval("Object.defineProperty(__webpack_exports__, \"__esModule\", { value: true });\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__timeline_js_timeline_block_js__ = __webpack_require__(1);\n/*\n * Set Locale\n */\nwp.i18n.setLocaleData({ '': {} }, 'timeline-express');\n\n// Import Blocks\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvYmxvY2tzLmpzPzc5ZWEiXSwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFNldCBMb2NhbGVcbiAqL1xud3AuaTE4bi5zZXRMb2NhbGVEYXRhKHsgJyc6IHt9IH0sICd0aW1lbGluZS1leHByZXNzJyk7XG5cbi8vIEltcG9ydCBCbG9ja3NcbmltcG9ydCAnLi90aW1lbGluZS9qcy90aW1lbGluZS1ibG9jay5qcyc7XG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvYWRtaW4vYmxvY2tzL2Jsb2Nrcy5qc1xuLy8gbW9kdWxlIGlkID0gMFxuLy8gbW9kdWxlIGNodW5rcyA9IDAiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///0\n")},function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(2);\n\n\n/**\n * Internal block libraries\n */\nvar __ = wp.i18n.__;\nvar registerBlockType = wp.blocks.registerBlockType;\nvar InspectorControls = wp.editor.InspectorControls;\nvar _wp$components = wp.components,\n PanelBody = _wp$components.PanelBody,\n PanelRow = _wp$components.PanelRow,\n TextControl = _wp$components.TextControl,\n SelectControl = _wp$components.SelectControl;\n\n\nconsole.log(timelineBlock.timeFrame);\n\n/**\n * Register block\n */\n/* unused harmony default export */ var _unused_webpack_default_export = (registerBlockType('timeline-express/timeline-block', {\n title: __('Timeline', 'timeline-express'),\n description: __('Display a beautiful timeline of events on your site.', 'timeline-express'),\n category: 'widgets',\n icon: __WEBPACK_IMPORTED_MODULE_0__icons__[\"a\" /* default */].timelineIcon,\n keywords: [__('Timeline', 'timeline-express'), __('Express', 'timeline-express'), __('CodeParrots', 'timeline-express')],\n attributes: {\n announcementLimit: {\n type: 'string',\n default: '10'\n },\n displayOrder: {\n type: 'string',\n default: timelineBlock.displayOrder\n },\n timeFrame: {\n type: 'string',\n default: timelineBlock.timeFrame\n }\n },\n edit: function edit(props) {\n var _props$attributes = props.attributes,\n announcementLimit = _props$attributes.announcementLimit,\n displayOrder = _props$attributes.displayOrder,\n timeFrame = _props$attributes.timeFrame,\n className = props.className,\n setAttributes = props.setAttributes;\n\n\n return [wp.element.createElement(\n InspectorControls,\n { key: 'timeline-block-inspector-controls' },\n wp.element.createElement(\n PanelBody,\n {\n title: __('Timeline Express', 'timeline-express'),\n className: 'timeline-block-inspector-controls'\n },\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(TextControl, {\n type: 'number',\n min: '0',\n id: 'announcement-limit',\n label: sprintf(__('%s Limit', 'timeline-express'), timelineBlock.announcementSingular),\n value: announcementLimit,\n onChange: function onChange(announcementLimit) {\n return props.setAttributes({ announcementLimit: announcementLimit });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the number of announcemnets to display on the timeline. Set to 0 for no limit.', 'timeline-express')\n ),\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(SelectControl, {\n id: 'display-order',\n label: __('Display Order', 'timeline-express'),\n options: [{ label: __('Ascending', 'timeline-express'), value: 'ASC' }, { label: __('Descending', 'timeline-express'), value: 'DESC' }],\n value: displayOrder,\n onChange: function onChange(displayOrder) {\n return props.setAttributes({ displayOrder: displayOrder });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the display order of the announcements.', 'timeline-express')\n ),\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(SelectControl, {\n id: 'time-frame',\n label: __('Time Frame', 'timeline-express'),\n options: [{ label: __('All (Past + Future)', 'timeline-express'), value: 'all' }, { label: __('Future', 'timeline-express'), value: 'future' }, { label: __('Past', 'timeline-express'), value: 'past' }],\n value: timeFrame,\n onChange: function onChange(timeFrame) {\n return props.setAttributes({ timeFrame: timeFrame });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the time frame for the announcements.', 'timeline-express')\n )\n )\n ), wp.element.createElement(\n 'div',\n {\n className: className,\n key: className\n },\n wp.element.createElement(\n 'div',\n { 'class': 'timeline-target' },\n wp.element.createElement('img', { src: timelineBlock.preloader, className: 'te-preloader' }),\n renderTimeline(props.attributes)\n )\n )];\n },\n\n save: function save(props) {\n var _props$attributes2 = props.attributes,\n announcementLimit = _props$attributes2.announcementLimit,\n displayOrder = _props$attributes2.displayOrder,\n timeFrame = _props$attributes2.timeFrame,\n className = props.className;\n\n\n return wp.element.createElement(\n 'div',\n {\n className: className,\n key: className\n },\n '[timeline-express limit=',\n announcementLimit,\n ' order=',\n displayOrder,\n ' display=',\n timeFrame,\n ']'\n );\n }\n}));\n\n/**\n * Render the timeline, AJAX handler\n *\n * @since NEXT\n */\nfunction renderTimeline(atts) {\n\n $('.timeline-target').html('<img src=\"' + timelineBlock.preloader + '\" class=\"te-preloader\" />');\n\n var data = {\n 'action': 'get_timeline_markup',\n 'announcementLimit': atts.announcementLimit,\n 'displayOrder': atts.displayOrder,\n 'timeFrame': atts.timeFrame\n };\n\n $.post(ajaxurl, data, function (response) {\n\n if (!response.success) {\n\n $('.timeline-target').html(timelineBlock.getTimelineError);\n\n return;\n }\n\n $('.timeline-target').html(response.data);\n });\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvdGltZWxpbmUtYmxvY2suanM/ODg0ZCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdGltZWxpbmVCbG9ja0ljb25zIGZyb20gJy4vaWNvbnMnO1xuXG4vKipcbiAqIEludGVybmFsIGJsb2NrIGxpYnJhcmllc1xuICovXG52YXIgX18gPSB3cC5pMThuLl9fO1xudmFyIHJlZ2lzdGVyQmxvY2tUeXBlID0gd3AuYmxvY2tzLnJlZ2lzdGVyQmxvY2tUeXBlO1xudmFyIEluc3BlY3RvckNvbnRyb2xzID0gd3AuZWRpdG9yLkluc3BlY3RvckNvbnRyb2xzO1xudmFyIF93cCRjb21wb25lbnRzID0gd3AuY29tcG9uZW50cyxcbiAgICBQYW5lbEJvZHkgPSBfd3AkY29tcG9uZW50cy5QYW5lbEJvZHksXG4gICAgUGFuZWxSb3cgPSBfd3AkY29tcG9uZW50cy5QYW5lbFJvdyxcbiAgICBUZXh0Q29udHJvbCA9IF93cCRjb21wb25lbnRzLlRleHRDb250cm9sLFxuICAgIFNlbGVjdENvbnRyb2wgPSBfd3AkY29tcG9uZW50cy5TZWxlY3RDb250cm9sO1xuXG5cbmNvbnNvbGUubG9nKHRpbWVsaW5lQmxvY2sudGltZUZyYW1lKTtcblxuLyoqXG4gKiBSZWdpc3RlciBibG9ja1xuICovXG5leHBvcnQgZGVmYXVsdCByZWdpc3RlckJsb2NrVHlwZSgndGltZWxpbmUtZXhwcmVzcy90aW1lbGluZS1ibG9jaycsIHtcbiAgdGl0bGU6IF9fKCdUaW1lbGluZScsICd0aW1lbGluZS1leHByZXNzJyksXG4gIGRlc2NyaXB0aW9uOiBfXygnRGlzcGxheSBhIGJlYXV0aWZ1bCB0aW1lbGluZSBvZiBldmVudHMgb24geW91ciBzaXRlLicsICd0aW1lbGluZS1leHByZXNzJyksXG4gIGNhdGVnb3J5OiAnd2lkZ2V0cycsXG4gIGljb246IHRpbWVsaW5lQmxvY2tJY29ucy50aW1lbGluZUljb24sXG4gIGtleXdvcmRzOiBbX18oJ1RpbWVsaW5lJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgX18oJ0V4cHJlc3MnLCAndGltZWxpbmUtZXhwcmVzcycpLCBfXygnQ29kZVBhcnJvdHMnLCAndGltZWxpbmUtZXhwcmVzcycpXSxcbiAgYXR0cmlidXRlczoge1xuICAgIGFubm91bmNlbWVudExpbWl0OiB7XG4gICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgIGRlZmF1bHQ6ICcxMCdcbiAgICB9LFxuICAgIGRpc3BsYXlPcmRlcjoge1xuICAgICAgdHlwZTogJ3N0cmluZycsXG4gICAgICBkZWZhdWx0OiB0aW1lbGluZUJsb2NrLmRpc3BsYXlPcmRlclxuICAgIH0sXG4gICAgdGltZUZyYW1lOiB7XG4gICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgIGRlZmF1bHQ6IHRpbWVsaW5lQmxvY2sudGltZUZyYW1lXG4gICAgfVxuICB9LFxuICBlZGl0OiBmdW5jdGlvbiBlZGl0KHByb3BzKSB7XG4gICAgdmFyIF9wcm9wcyRhdHRyaWJ1dGVzID0gcHJvcHMuYXR0cmlidXRlcyxcbiAgICAgICAgYW5ub3VuY2VtZW50TGltaXQgPSBfcHJvcHMkYXR0cmlidXRlcy5hbm5vdW5jZW1lbnRMaW1pdCxcbiAgICAgICAgZGlzcGxheU9yZGVyID0gX3Byb3BzJGF0dHJpYnV0ZXMuZGlzcGxheU9yZGVyLFxuICAgICAgICB0aW1lRnJhbWUgPSBfcHJvcHMkYXR0cmlidXRlcy50aW1lRnJhbWUsXG4gICAgICAgIGNsYXNzTmFtZSA9IHByb3BzLmNsYXNzTmFtZSxcbiAgICAgICAgc2V0QXR0cmlidXRlcyA9IHByb3BzLnNldEF0dHJpYnV0ZXM7XG5cblxuICAgIHJldHVybiBbd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgSW5zcGVjdG9yQ29udHJvbHMsXG4gICAgICB7IGtleTogJ3RpbWVsaW5lLWJsb2NrLWluc3BlY3Rvci1jb250cm9scycgfSxcbiAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgUGFuZWxCb2R5LFxuICAgICAgICB7XG4gICAgICAgICAgdGl0bGU6IF9fKCdUaW1lbGluZSBFeHByZXNzJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSxcbiAgICAgICAgICBjbGFzc05hbWU6ICd0aW1lbGluZS1ibG9jay1pbnNwZWN0b3ItY29udHJvbHMnXG4gICAgICAgIH0sXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICBQYW5lbFJvdyxcbiAgICAgICAgICBudWxsLFxuICAgICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChUZXh0Q29udHJvbCwge1xuICAgICAgICAgICAgdHlwZTogJ251bWJlcicsXG4gICAgICAgICAgICBtaW46ICcwJyxcbiAgICAgICAgICAgIGlkOiAnYW5ub3VuY2VtZW50LWxpbWl0JyxcbiAgICAgICAgICAgIGxhYmVsOiBzcHJpbnRmKF9fKCclcyBMaW1pdCcsICd0aW1lbGluZS1leHByZXNzJyksIHRpbWVsaW5lQmxvY2suYW5ub3VuY2VtZW50U2luZ3VsYXIpLFxuICAgICAgICAgICAgdmFsdWU6IGFubm91bmNlbWVudExpbWl0LFxuICAgICAgICAgICAgb25DaGFuZ2U6IGZ1bmN0aW9uIG9uQ2hhbmdlKGFubm91bmNlbWVudExpbWl0KSB7XG4gICAgICAgICAgICAgIHJldHVybiBwcm9wcy5zZXRBdHRyaWJ1dGVzKHsgYW5ub3VuY2VtZW50TGltaXQ6IGFubm91bmNlbWVudExpbWl0IH0pO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH0pXG4gICAgICAgICksXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICAncCcsXG4gICAgICAgICAgeyBjbGFzc05hbWU6ICdkZXNjcmlwdGlvbicgfSxcbiAgICAgICAgICBfXygnU2V0IHRoZSBudW1iZXIgb2YgYW5ub3VuY2VtbmV0cyB0byBkaXNwbGF5IG9uIHRoZSB0aW1lbGluZS4gU2V0IHRvIDAgZm9yIG5vIGxpbWl0LicsICd0aW1lbGluZS1leHByZXNzJylcbiAgICAgICAgKSxcbiAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgICAgIFBhbmVsUm93LFxuICAgICAgICAgIG51bGwsXG4gICAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFNlbGVjdENvbnRyb2wsIHtcbiAgICAgICAgICAgIGlkOiAnZGlzcGxheS1vcmRlcicsXG4gICAgICAgICAgICBsYWJlbDogX18oJ0Rpc3BsYXkgT3JkZXInLCAndGltZWxpbmUtZXhwcmVzcycpLFxuICAgICAgICAgICAgb3B0aW9uczogW3sgbGFiZWw6IF9fKCdBc2NlbmRpbmcnLCAndGltZWxpbmUtZXhwcmVzcycpLCB2YWx1ZTogJ0FTQycgfSwgeyBsYWJlbDogX18oJ0Rlc2NlbmRpbmcnLCAndGltZWxpbmUtZXhwcmVzcycpLCB2YWx1ZTogJ0RFU0MnIH1dLFxuICAgICAgICAgICAgdmFsdWU6IGRpc3BsYXlPcmRlcixcbiAgICAgICAgICAgIG9uQ2hhbmdlOiBmdW5jdGlvbiBvbkNoYW5nZShkaXNwbGF5T3JkZXIpIHtcbiAgICAgICAgICAgICAgcmV0dXJuIHByb3BzLnNldEF0dHJpYnV0ZXMoeyBkaXNwbGF5T3JkZXI6IGRpc3BsYXlPcmRlciB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9KVxuICAgICAgICApLFxuICAgICAgICB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG4gICAgICAgICAgJ3AnLFxuICAgICAgICAgIHsgY2xhc3NOYW1lOiAnZGVzY3JpcHRpb24nIH0sXG4gICAgICAgICAgX18oJ1NldCB0aGUgZGlzcGxheSBvcmRlciBvZiB0aGUgYW5ub3VuY2VtZW50cy4nLCAndGltZWxpbmUtZXhwcmVzcycpXG4gICAgICAgICksXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICBQYW5lbFJvdyxcbiAgICAgICAgICBudWxsLFxuICAgICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChTZWxlY3RDb250cm9sLCB7XG4gICAgICAgICAgICBpZDogJ3RpbWUtZnJhbWUnLFxuICAgICAgICAgICAgbGFiZWw6IF9fKCdUaW1lIEZyYW1lJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSxcbiAgICAgICAgICAgIG9wdGlvbnM6IFt7IGxhYmVsOiBfXygnQWxsIChQYXN0ICsgRnV0dXJlKScsICd0aW1lbGluZS1leHByZXNzJyksIHZhbHVlOiAnYWxsJyB9LCB7IGxhYmVsOiBfXygnRnV0dXJlJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgdmFsdWU6ICdmdXR1cmUnIH0sIHsgbGFiZWw6IF9fKCdQYXN0JywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgdmFsdWU6ICdwYXN0JyB9XSxcbiAgICAgICAgICAgIHZhbHVlOiB0aW1lRnJhbWUsXG4gICAgICAgICAgICBvbkNoYW5nZTogZnVuY3Rpb24gb25DaGFuZ2UodGltZUZyYW1lKSB7XG4gICAgICAgICAgICAgIHJldHVybiBwcm9wcy5zZXRBdHRyaWJ1dGVzKHsgdGltZUZyYW1lOiB0aW1lRnJhbWUgfSk7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfSlcbiAgICAgICAgKSxcbiAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgICAgICdwJyxcbiAgICAgICAgICB7IGNsYXNzTmFtZTogJ2Rlc2NyaXB0aW9uJyB9LFxuICAgICAgICAgIF9fKCdTZXQgdGhlIHRpbWUgZnJhbWUgZm9yIHRoZSBhbm5vdW5jZW1lbnRzLicsICd0aW1lbGluZS1leHByZXNzJylcbiAgICAgICAgKVxuICAgICAgKVxuICAgICksIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICdkaXYnLFxuICAgICAge1xuICAgICAgICBjbGFzc05hbWU6IGNsYXNzTmFtZSxcbiAgICAgICAga2V5OiBjbGFzc05hbWVcbiAgICAgIH0sXG4gICAgICB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG4gICAgICAgICdkaXYnLFxuICAgICAgICB7ICdjbGFzcyc6ICd0aW1lbGluZS10YXJnZXQnIH0sXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudCgnaW1nJywgeyBzcmM6IHRpbWVsaW5lQmxvY2sucHJlbG9hZGVyLCBjbGFzc05hbWU6ICd0ZS1wcmVsb2FkZXInIH0pLFxuICAgICAgICByZW5kZXJUaW1lbGluZShwcm9wcy5hdHRyaWJ1dGVzKVxuICAgICAgKVxuICAgICldO1xuICB9LFxuXG4gIHNhdmU6IGZ1bmN0aW9uIHNhdmUocHJvcHMpIHtcbiAgICB2YXIgX3Byb3BzJGF0dHJpYnV0ZXMyID0gcHJvcHMuYXR0cmlidXRlcyxcbiAgICAgICAgYW5ub3VuY2VtZW50TGltaXQgPSBfcHJvcHMkYXR0cmlidXRlczIuYW5ub3VuY2VtZW50TGltaXQsXG4gICAgICAgIGRpc3BsYXlPcmRlciA9IF9wcm9wcyRhdHRyaWJ1dGVzMi5kaXNwbGF5T3JkZXIsXG4gICAgICAgIHRpbWVGcmFtZSA9IF9wcm9wcyRhdHRyaWJ1dGVzMi50aW1lRnJhbWUsXG4gICAgICAgIGNsYXNzTmFtZSA9IHByb3BzLmNsYXNzTmFtZTtcblxuXG4gICAgcmV0dXJuIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICdkaXYnLFxuICAgICAge1xuICAgICAgICBjbGFzc05hbWU6IGNsYXNzTmFtZSxcbiAgICAgICAga2V5OiBjbGFzc05hbWVcbiAgICAgIH0sXG4gICAgICAnW3RpbWVsaW5lLWV4cHJlc3MgbGltaXQ9JyxcbiAgICAgIGFubm91bmNlbWVudExpbWl0LFxuICAgICAgJyBvcmRlcj0nLFxuICAgICAgZGlzcGxheU9yZGVyLFxuICAgICAgJyBkaXNwbGF5PScsXG4gICAgICB0aW1lRnJhbWUsXG4gICAgICAnXSdcbiAgICApO1xuICB9XG59KTtcblxuLyoqXG4gKiBSZW5kZXIgdGhlIHRpbWVsaW5lLCBBSkFYIGhhbmRsZXJcbiAqXG4gKiBAc2luY2UgTkVYVFxuICovXG5mdW5jdGlvbiByZW5kZXJUaW1lbGluZShhdHRzKSB7XG5cbiAgJCgnLnRpbWVsaW5lLXRhcmdldCcpLmh0bWwoJzxpbWcgc3JjPVwiJyArIHRpbWVsaW5lQmxvY2sucHJlbG9hZGVyICsgJ1wiIGNsYXNzPVwidGUtcHJlbG9hZGVyXCIgLz4nKTtcblxuICB2YXIgZGF0YSA9IHtcbiAgICAnYWN0aW9uJzogJ2dldF90aW1lbGluZV9tYXJrdXAnLFxuICAgICdhbm5vdW5jZW1lbnRMaW1pdCc6IGF0dHMuYW5ub3VuY2VtZW50TGltaXQsXG4gICAgJ2Rpc3BsYXlPcmRlcic6IGF0dHMuZGlzcGxheU9yZGVyLFxuICAgICd0aW1lRnJhbWUnOiBhdHRzLnRpbWVGcmFtZVxuICB9O1xuXG4gICQucG9zdChhamF4dXJsLCBkYXRhLCBmdW5jdGlvbiAocmVzcG9uc2UpIHtcblxuICAgIGlmICghcmVzcG9uc2Uuc3VjY2Vzcykge1xuXG4gICAgICAkKCcudGltZWxpbmUtdGFyZ2V0JykuaHRtbCh0aW1lbGluZUJsb2NrLmdldFRpbWVsaW5lRXJyb3IpO1xuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgJCgnLnRpbWVsaW5lLXRhcmdldCcpLmh0bWwocmVzcG9uc2UuZGF0YSk7XG4gIH0pO1xufVxuXG5cbi8vLy8vLy8vLy8vLy8vLy8vL1xuLy8gV0VCUEFDSyBGT09URVJcbi8vIC4vbGliL2FkbWluL2Jsb2Nrcy90aW1lbGluZS9qcy90aW1lbGluZS1ibG9jay5qc1xuLy8gbW9kdWxlIGlkID0gMVxuLy8gbW9kdWxlIGNodW5rcyA9IDAiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///1\n")},function(module,__webpack_exports__,__webpack_require__){"use strict";eval('var timelineBlockIcons = {};\n\ntimelineBlockIcons.timelineIcon = wp.element.createElement(\n\t"svg",\n\t{ version: "1.1", id: "Layer_1", xmlns: "http://www.w3.org/2000/svg", x: "0px", y: "0px",\n\t\twidth: "25px", height: "25px", viewBox: "0 0 25 25", "enable-background": "new 0 0 25 25" },\n\twp.element.createElement(\n\t\t"g",\n\t\tnull,\n\t\twp.element.createElement(\n\t\t\t"defs",\n\t\t\tnull,\n\t\t\twp.element.createElement("rect", { id: "SVGID_1_", x: "-27.5", y: "-18.5", width: "80", height: "60" })\n\t\t),\n\t\twp.element.createElement(\n\t\t\t"clipPath",\n\t\t\t{ id: "SVGID_2_" },\n\t\t\twp.element.createElement("use", { href: "#SVGID_1_", overflow: "visible" })\n\t\t),\n\t\twp.element.createElement(\n\t\t\t"g",\n\t\t\t{ "clip-path": "url(#SVGID_2_)" },\n\t\t\twp.element.createElement(\n\t\t\t\t"defs",\n\t\t\t\tnull,\n\t\t\t\twp.element.createElement("rect", { id: "SVGID_3_", x: "-27.5", y: "-18.5", width: "80", height: "60" })\n\t\t\t),\n\t\t\twp.element.createElement(\n\t\t\t\t"clipPath",\n\t\t\t\t{ id: "SVGID_4_" },\n\t\t\t\twp.element.createElement("use", { href: "#SVGID_3_", overflow: "visible" })\n\t\t\t),\n\t\t\twp.element.createElement(\n\t\t\t\t"g",\n\t\t\t\t{ "clip-path": "url(#SVGID_4_)" },\n\t\t\t\twp.element.createElement("path", { fill: "#BF5D00", d: "M14.898,21.002c-0.044-0.035-0.102-0.051-0.157-0.039c-0.453,0.088-1.206,0.194-2.226,0.194 c-1.019,0-1.772-0.106-2.225-0.194c-0.056-0.012-0.114,0.003-0.158,0.039c-0.044,0.037-0.069,0.091-0.069,0.146v1.032 c0,0.095,0.068,0.174,0.161,0.188c0.051,0.008,1.268,0.201,2.292,0.201c1.024,0,2.241-0.193,2.292-0.201 c0.093-0.015,0.161-0.094,0.161-0.188v-1.032C14.969,21.093,14.942,21.039,14.898,21.002" }),\n\t\t\t\twp.element.createElement(\n\t\t\t\t\t"g",\n\t\t\t\t\t{ opacity: "0.2" },\n\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t"g",\n\t\t\t\t\t\tnull,\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t"defs",\n\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\twp.element.createElement("rect", { id: "SVGID_5_", x: "10.063", y: "20.902", width: "4.905", height: "0.77" })\n\t\t\t\t\t\t),\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t"clipPath",\n\t\t\t\t\t\t\t{ id: "SVGID_6_" },\n\t\t\t\t\t\t\twp.element.createElement("use", { href: "#SVGID_5_", overflow: "visible" })\n\t\t\t\t\t\t),\n\t\t\t\t\t\twp.element.createElement("path", { "clip-path": "url(#SVGID_6_)", fill: "#231F20", d: "M14.898,20.945c-0.044-0.036-0.102-0.051-0.157-0.04 c-0.453,0.089-1.206,0.195-2.226,0.195c-1.019,0-1.772-0.106-2.225-0.195c-0.056-0.011-0.114,0.004-0.158,0.04 c-0.044,0.036-0.069,0.09-0.069,0.146v0.572c0-0.057,0.025-0.111,0.069-0.146c0.044-0.037,0.102-0.053,0.158-0.041 c0.453,0.09,1.206,0.195,2.225,0.195c1.02,0,1.772-0.105,2.226-0.195c0.056-0.011,0.113,0.004,0.157,0.041 c0.044,0.035,0.07,0.09,0.07,0.146v-0.572C14.969,21.035,14.942,20.981,14.898,20.945" })\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\twp.element.createElement(\n\t\t\t\t\t"g",\n\t\t\t\t\tnull,\n\t\t\t\t\twp.element.createElement("path", { fill: "#E67000", d: "M6.082,15.405c0.422-0.942,1.75-2.285,1.806-2.341c0.049-0.05,0.121-0.068,0.188-0.049 c0.066,0.019,0.118,0.072,0.133,0.14l1.766,7.641c0.014,0.061-0.002,0.125-0.043,0.17c-0.042,0.047-0.103,0.071-0.164,0.062 c0,0-0.09-0.01-0.236-0.01c-0.641,0-2.185,0.186-2.679,1.902c-0.022,0.076-0.088,0.132-0.167,0.138 c-0.005,0.001-0.01,0.001-0.016,0.001c-0.073,0-0.14-0.042-0.172-0.108C4.892,19.58,5.653,16.36,6.082,15.405" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#FF7C00", d: "M12.516,1.031c-0.934,0-4.765,4.896-4.765,10.666c0,5.594,1.69,9.183,1.707,9.221 c0.021,0.046,0.061,0.083,0.11,0.1c0.042,0.015,1.053,0.365,2.948,0.365s2.906-0.351,2.949-0.365 c0.048-0.017,0.088-0.054,0.108-0.1c0.018-0.038,1.708-3.626,1.708-9.221C17.281,5.928,13.449,1.031,12.516,1.031" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#BF5D00", d: "M15.306,4.306c-1.1-2.006-2.308-3.274-2.79-3.274c-0.482,0-1.689,1.269-2.79,3.274 c0.312,0.092,1.227,0.316,2.79,0.316S14.993,4.397,15.306,4.306" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#FFFFFF", d: "M12.516,11.571c-0.812,0-1.474-0.661-1.474-1.474c0-0.813,0.662-1.475,1.474-1.475 c0.813,0,1.475,0.661,1.475,1.475C13.99,10.91,13.329,11.571,12.516,11.571" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#E66E00", d: "M12.516,8.722c0.759,0,1.375,0.615,1.375,1.375c0,0.759-0.616,1.374-1.375,1.374 s-1.375-0.615-1.375-1.374C11.141,9.337,11.757,8.722,12.516,8.722 M12.516,8.522c-0.868,0-1.574,0.707-1.574,1.575 c0,0.868,0.706,1.574,1.574,1.574s1.574-0.707,1.574-1.574C14.09,9.229,13.384,8.522,12.516,8.522" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#FFFFFF", d: "M12.516,15.929c-0.55,0-0.998-0.448-0.998-0.999s0.448-0.999,0.998-0.999 c0.551,0,0.999,0.448,0.999,0.999S13.066,15.929,12.516,15.929" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#E66E00", d: "M12.516,14.032c0.497,0,0.898,0.402,0.898,0.898c0,0.497-0.401,0.898-0.898,0.898 c-0.496,0-0.898-0.402-0.898-0.898C11.617,14.435,12.02,14.032,12.516,14.032 M12.516,13.832c-0.605,0-1.098,0.493-1.098,1.099 c0,0.606,0.493,1.099,1.098,1.099c0.605,0,1.1-0.493,1.1-1.099C13.615,14.325,13.121,13.832,12.516,13.832" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#E6E7E8", d: "M11.408,10.363c0-0.759,0.616-1.375,1.375-1.375c0.312,0,0.598,0.105,0.828,0.28 c-0.251-0.332-0.647-0.546-1.095-0.546c-0.759,0-1.375,0.616-1.375,1.375c0,0.447,0.215,0.844,0.546,1.095 C11.513,10.961,11.408,10.675,11.408,10.363" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#E6E7E8", d: "M11.884,15.197c0-0.496,0.402-0.898,0.898-0.898c0.18,0,0.347,0.055,0.487,0.145 c-0.16-0.247-0.438-0.412-0.754-0.412c-0.496,0-0.898,0.402-0.898,0.898c0,0.316,0.165,0.594,0.412,0.754 C11.938,15.544,11.884,15.377,11.884,15.197" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#FF7C00", d: "M18.913,15.405c-0.422-0.942-1.75-2.285-1.807-2.341c-0.048-0.05-0.12-0.068-0.187-0.049 s-0.118,0.072-0.133,0.14l-1.766,7.641c-0.016,0.061,0.001,0.125,0.042,0.17c0.042,0.047,0.103,0.071,0.165,0.062 c0,0,0.09-0.01,0.236-0.01c0.641,0,2.185,0.186,2.68,1.902c0.021,0.076,0.088,0.132,0.167,0.138 c0.005,0.001,0.01,0.001,0.016,0.001c0.072,0,0.14-0.042,0.172-0.108C20.103,19.58,19.342,16.36,18.913,15.405" }),\n\t\t\t\t\twp.element.createElement("path", { fill: "#FF9633", d: "M15.914,5.537c0.647,1.63,0.988,5.093,0.609,7.452c0.356,0.372,1.325,1.425,1.674,2.204 c0.414,0.924,1.139,3.959-0.259,7.201c0.081,0.158,0.152,0.334,0.21,0.531c0.021,0.075,0.088,0.13,0.167,0.137 c0.005,0,0.011,0,0.017,0c0.072,0,0.14-0.041,0.171-0.107c1.605-3.371,0.844-6.59,0.415-7.546 c-0.35-0.779-1.318-1.832-1.674-2.204c0.027-0.483,0.042-0.984,0.042-1.503C17.286,9.43,16.691,7.293,15.914,5.537" }),\n\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t"g",\n\t\t\t\t\t\t{ opacity: "0.2" },\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t"g",\n\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\t"defs",\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\twp.element.createElement("rect", { id: "SVGID_7_", x: "7.751", y: "1.031", width: "6.281", height: "20.162" })\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\t"clipPath",\n\t\t\t\t\t\t\t\t{ id: "SVGID_8_" },\n\t\t\t\t\t\t\t\twp.element.createElement("use", { href: "#SVGID_7_", overflow: "visible" })\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\twp.element.createElement("path", { "clip-path": "url(#SVGID_8_)", fill: "#231F20", d: "M8.931,12.877c0-5.769,3.832-10.665,4.765-10.665 c0.088,0,0.202,0.044,0.336,0.127c-0.651-0.831-1.225-1.308-1.517-1.308c-0.934,0-4.765,4.896-4.765,10.666 c0,5.594,1.69,9.183,1.707,9.221c0.021,0.046,0.061,0.083,0.11,0.1c0.021,0.008,0.262,0.09,0.711,0.176 C9.778,19.791,8.931,16.839,8.931,12.877" })\n\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t)\n);\n\n/* harmony default export */ __webpack_exports__["a"] = (timelineBlockIcons);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvaWNvbnMuanM/YTdiZCJdLCJzb3VyY2VzQ29udGVudCI6WyJ2YXIgdGltZWxpbmVCbG9ja0ljb25zID0ge307XG5cbnRpbWVsaW5lQmxvY2tJY29ucy50aW1lbGluZUljb24gPSB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFwic3ZnXCIsXG5cdHsgdmVyc2lvbjogXCIxLjFcIiwgaWQ6IFwiTGF5ZXJfMVwiLCB4bWxuczogXCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiLCB4OiBcIjBweFwiLCB5OiBcIjBweFwiLFxuXHRcdHdpZHRoOiBcIjI1cHhcIiwgaGVpZ2h0OiBcIjI1cHhcIiwgdmlld0JveDogXCIwIDAgMjUgMjVcIiwgXCJlbmFibGUtYmFja2dyb3VuZFwiOiBcIm5ldyAwIDAgMjUgMjVcIiB9LFxuXHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XCJnXCIsXG5cdFx0bnVsbCxcblx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcImRlZnNcIixcblx0XHRcdG51bGwsXG5cdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJyZWN0XCIsIHsgaWQ6IFwiU1ZHSURfMV9cIiwgeDogXCItMjcuNVwiLCB5OiBcIi0xOC41XCIsIHdpZHRoOiBcIjgwXCIsIGhlaWdodDogXCI2MFwiIH0pXG5cdFx0KSxcblx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcImNsaXBQYXRoXCIsXG5cdFx0XHR7IGlkOiBcIlNWR0lEXzJfXCIgfSxcblx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInVzZVwiLCB7IGhyZWY6IFwiI1NWR0lEXzFfXCIsIG92ZXJmbG93OiBcInZpc2libGVcIiB9KVxuXHRcdCksXG5cdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XCJnXCIsXG5cdFx0XHR7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF8yXylcIiB9LFxuXHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcImRlZnNcIixcblx0XHRcdFx0bnVsbCxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicmVjdFwiLCB7IGlkOiBcIlNWR0lEXzNfXCIsIHg6IFwiLTI3LjVcIiwgeTogXCItMTguNVwiLCB3aWR0aDogXCI4MFwiLCBoZWlnaHQ6IFwiNjBcIiB9KVxuXHRcdFx0KSxcblx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XCJjbGlwUGF0aFwiLFxuXHRcdFx0XHR7IGlkOiBcIlNWR0lEXzRfXCIgfSxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwidXNlXCIsIHsgaHJlZjogXCIjU1ZHSURfM19cIiwgb3ZlcmZsb3c6IFwidmlzaWJsZVwiIH0pXG5cdFx0XHQpLFxuXHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcImdcIixcblx0XHRcdFx0eyBcImNsaXAtcGF0aFwiOiBcInVybCgjU1ZHSURfNF8pXCIgfSxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0JGNUQwMFwiLCBkOiBcIk0xNC44OTgsMjEuMDAyYy0wLjA0NC0wLjAzNS0wLjEwMi0wLjA1MS0wLjE1Ny0wLjAzOWMtMC40NTMsMC4wODgtMS4yMDYsMC4xOTQtMi4yMjYsMC4xOTQgYy0xLjAxOSwwLTEuNzcyLTAuMTA2LTIuMjI1LTAuMTk0Yy0wLjA1Ni0wLjAxMi0wLjExNCwwLjAwMy0wLjE1OCwwLjAzOWMtMC4wNDQsMC4wMzctMC4wNjksMC4wOTEtMC4wNjksMC4xNDZ2MS4wMzIgYzAsMC4wOTUsMC4wNjgsMC4xNzQsMC4xNjEsMC4xODhjMC4wNTEsMC4wMDgsMS4yNjgsMC4yMDEsMi4yOTIsMC4yMDFjMS4wMjQsMCwyLjI0MS0wLjE5MywyLjI5Mi0wLjIwMSBjMC4wOTMtMC4wMTUsMC4xNjEtMC4wOTQsMC4xNjEtMC4xODh2LTEuMDMyQzE0Ljk2OSwyMS4wOTMsMTQuOTQyLDIxLjAzOSwxNC44OTgsMjEuMDAyXCIgfSksXG5cdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHR7IG9wYWNpdHk6IFwiMC4yXCIgfSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdG51bGwsXG5cdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcdFwiZGVmc1wiLFxuXHRcdFx0XHRcdFx0XHRudWxsLFxuXHRcdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJyZWN0XCIsIHsgaWQ6IFwiU1ZHSURfNV9cIiwgeDogXCIxMC4wNjNcIiwgeTogXCIyMC45MDJcIiwgd2lkdGg6IFwiNC45MDVcIiwgaGVpZ2h0OiBcIjAuNzdcIiB9KVxuXHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XHRcdFx0XCJjbGlwUGF0aFwiLFxuXHRcdFx0XHRcdFx0XHR7IGlkOiBcIlNWR0lEXzZfXCIgfSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwidXNlXCIsIHsgaHJlZjogXCIjU1ZHSURfNV9cIiwgb3ZlcmZsb3c6IFwidmlzaWJsZVwiIH0pXG5cdFx0XHRcdFx0XHQpLFxuXHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF82XylcIiwgZmlsbDogXCIjMjMxRjIwXCIsIGQ6IFwiTTE0Ljg5OCwyMC45NDVjLTAuMDQ0LTAuMDM2LTAuMTAyLTAuMDUxLTAuMTU3LTAuMDQgYy0wLjQ1MywwLjA4OS0xLjIwNiwwLjE5NS0yLjIyNiwwLjE5NWMtMS4wMTksMC0xLjc3Mi0wLjEwNi0yLjIyNS0wLjE5NWMtMC4wNTYtMC4wMTEtMC4xMTQsMC4wMDQtMC4xNTgsMC4wNCBjLTAuMDQ0LDAuMDM2LTAuMDY5LDAuMDktMC4wNjksMC4xNDZ2MC41NzJjMC0wLjA1NywwLjAyNS0wLjExMSwwLjA2OS0wLjE0NmMwLjA0NC0wLjAzNywwLjEwMi0wLjA1MywwLjE1OC0wLjA0MSBjMC40NTMsMC4wOSwxLjIwNiwwLjE5NSwyLjIyNSwwLjE5NWMxLjAyLDAsMS43NzItMC4xMDUsMi4yMjYtMC4xOTVjMC4wNTYtMC4wMTEsMC4xMTMsMC4wMDQsMC4xNTcsMC4wNDEgYzAuMDQ0LDAuMDM1LDAuMDcsMC4wOSwwLjA3LDAuMTQ2di0wLjU3MkMxNC45NjksMjEuMDM1LDE0Ljk0MiwyMC45ODEsMTQuODk4LDIwLjk0NVwiIH0pXG5cdFx0XHRcdFx0KVxuXHRcdFx0XHQpLFxuXHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XCJnXCIsXG5cdFx0XHRcdFx0bnVsbCxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY3MDAwXCIsIGQ6IFwiTTYuMDgyLDE1LjQwNWMwLjQyMi0wLjk0MiwxLjc1LTIuMjg1LDEuODA2LTIuMzQxYzAuMDQ5LTAuMDUsMC4xMjEtMC4wNjgsMC4xODgtMC4wNDkgYzAuMDY2LDAuMDE5LDAuMTE4LDAuMDcyLDAuMTMzLDAuMTRsMS43NjYsNy42NDFjMC4wMTQsMC4wNjEtMC4wMDIsMC4xMjUtMC4wNDMsMC4xN2MtMC4wNDIsMC4wNDctMC4xMDMsMC4wNzEtMC4xNjQsMC4wNjIgYzAsMC0wLjA5LTAuMDEtMC4yMzYtMC4wMWMtMC42NDEsMC0yLjE4NSwwLjE4Ni0yLjY3OSwxLjkwMmMtMC4wMjIsMC4wNzYtMC4wODgsMC4xMzItMC4xNjcsMC4xMzggYy0wLjAwNSwwLjAwMS0wLjAxLDAuMDAxLTAuMDE2LDAuMDAxYy0wLjA3MywwLTAuMTQtMC4wNDItMC4xNzItMC4xMDhDNC44OTIsMTkuNTgsNS42NTMsMTYuMzYsNi4wODIsMTUuNDA1XCIgfSksXG5cdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0ZGN0MwMFwiLCBkOiBcIk0xMi41MTYsMS4wMzFjLTAuOTM0LDAtNC43NjUsNC44OTYtNC43NjUsMTAuNjY2YzAsNS41OTQsMS42OSw5LjE4MywxLjcwNyw5LjIyMSBjMC4wMjEsMC4wNDYsMC4wNjEsMC4wODMsMC4xMSwwLjFjMC4wNDIsMC4wMTUsMS4wNTMsMC4zNjUsMi45NDgsMC4zNjVzMi45MDYtMC4zNTEsMi45NDktMC4zNjUgYzAuMDQ4LTAuMDE3LDAuMDg4LTAuMDU0LDAuMTA4LTAuMWMwLjAxOC0wLjAzOCwxLjcwOC0zLjYyNiwxLjcwOC05LjIyMUMxNy4yODEsNS45MjgsMTMuNDQ5LDEuMDMxLDEyLjUxNiwxLjAzMVwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNCRjVEMDBcIiwgZDogXCJNMTUuMzA2LDQuMzA2Yy0xLjEtMi4wMDYtMi4zMDgtMy4yNzQtMi43OS0zLjI3NGMtMC40ODIsMC0xLjY4OSwxLjI2OS0yLjc5LDMuMjc0IGMwLjMxMiwwLjA5MiwxLjIyNywwLjMxNiwyLjc5LDAuMzE2UzE0Ljk5Myw0LjM5NywxNS4zMDYsNC4zMDZcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRkZGRkZGXCIsIGQ6IFwiTTEyLjUxNiwxMS41NzFjLTAuODEyLDAtMS40NzQtMC42NjEtMS40NzQtMS40NzRjMC0wLjgxMywwLjY2Mi0xLjQ3NSwxLjQ3NC0xLjQ3NSBjMC44MTMsMCwxLjQ3NSwwLjY2MSwxLjQ3NSwxLjQ3NUMxMy45OSwxMC45MSwxMy4zMjksMTEuNTcxLDEyLjUxNiwxMS41NzFcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY2RTAwXCIsIGQ6IFwiTTEyLjUxNiw4LjcyMmMwLjc1OSwwLDEuMzc1LDAuNjE1LDEuMzc1LDEuMzc1YzAsMC43NTktMC42MTYsMS4zNzQtMS4zNzUsMS4zNzQgcy0xLjM3NS0wLjYxNS0xLjM3NS0xLjM3NEMxMS4xNDEsOS4zMzcsMTEuNzU3LDguNzIyLDEyLjUxNiw4LjcyMiBNMTIuNTE2LDguNTIyYy0wLjg2OCwwLTEuNTc0LDAuNzA3LTEuNTc0LDEuNTc1IGMwLDAuODY4LDAuNzA2LDEuNTc0LDEuNTc0LDEuNTc0czEuNTc0LTAuNzA3LDEuNTc0LTEuNTc0QzE0LjA5LDkuMjI5LDEzLjM4NCw4LjUyMiwxMi41MTYsOC41MjJcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRkZGRkZGXCIsIGQ6IFwiTTEyLjUxNiwxNS45MjljLTAuNTUsMC0wLjk5OC0wLjQ0OC0wLjk5OC0wLjk5OXMwLjQ0OC0wLjk5OSwwLjk5OC0wLjk5OSBjMC41NTEsMCwwLjk5OSwwLjQ0OCwwLjk5OSwwLjk5OVMxMy4wNjYsMTUuOTI5LDEyLjUxNiwxNS45MjlcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY2RTAwXCIsIGQ6IFwiTTEyLjUxNiwxNC4wMzJjMC40OTcsMCwwLjg5OCwwLjQwMiwwLjg5OCwwLjg5OGMwLDAuNDk3LTAuNDAxLDAuODk4LTAuODk4LDAuODk4IGMtMC40OTYsMC0wLjg5OC0wLjQwMi0wLjg5OC0wLjg5OEMxMS42MTcsMTQuNDM1LDEyLjAyLDE0LjAzMiwxMi41MTYsMTQuMDMyIE0xMi41MTYsMTMuODMyYy0wLjYwNSwwLTEuMDk4LDAuNDkzLTEuMDk4LDEuMDk5IGMwLDAuNjA2LDAuNDkzLDEuMDk5LDEuMDk4LDEuMDk5YzAuNjA1LDAsMS4xLTAuNDkzLDEuMS0xLjA5OUMxMy42MTUsMTQuMzI1LDEzLjEyMSwxMy44MzIsMTIuNTE2LDEzLjgzMlwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNFNkU3RThcIiwgZDogXCJNMTEuNDA4LDEwLjM2M2MwLTAuNzU5LDAuNjE2LTEuMzc1LDEuMzc1LTEuMzc1YzAuMzEyLDAsMC41OTgsMC4xMDUsMC44MjgsMC4yOCBjLTAuMjUxLTAuMzMyLTAuNjQ3LTAuNTQ2LTEuMDk1LTAuNTQ2Yy0wLjc1OSwwLTEuMzc1LDAuNjE2LTEuMzc1LDEuMzc1YzAsMC40NDcsMC4yMTUsMC44NDQsMC41NDYsMS4wOTUgQzExLjUxMywxMC45NjEsMTEuNDA4LDEwLjY3NSwxMS40MDgsMTAuMzYzXCIgfSksXG5cdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0U2RTdFOFwiLCBkOiBcIk0xMS44ODQsMTUuMTk3YzAtMC40OTYsMC40MDItMC44OTgsMC44OTgtMC44OThjMC4xOCwwLDAuMzQ3LDAuMDU1LDAuNDg3LDAuMTQ1IGMtMC4xNi0wLjI0Ny0wLjQzOC0wLjQxMi0wLjc1NC0wLjQxMmMtMC40OTYsMC0wLjg5OCwwLjQwMi0wLjg5OCwwLjg5OGMwLDAuMzE2LDAuMTY1LDAuNTk0LDAuNDEyLDAuNzU0IEMxMS45MzgsMTUuNTQ0LDExLjg4NCwxNS4zNzcsMTEuODg0LDE1LjE5N1wiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNGRjdDMDBcIiwgZDogXCJNMTguOTEzLDE1LjQwNWMtMC40MjItMC45NDItMS43NS0yLjI4NS0xLjgwNy0yLjM0MWMtMC4wNDgtMC4wNS0wLjEyLTAuMDY4LTAuMTg3LTAuMDQ5IHMtMC4xMTgsMC4wNzItMC4xMzMsMC4xNGwtMS43NjYsNy42NDFjLTAuMDE2LDAuMDYxLDAuMDAxLDAuMTI1LDAuMDQyLDAuMTdjMC4wNDIsMC4wNDcsMC4xMDMsMC4wNzEsMC4xNjUsMC4wNjIgYzAsMCwwLjA5LTAuMDEsMC4yMzYtMC4wMWMwLjY0MSwwLDIuMTg1LDAuMTg2LDIuNjgsMS45MDJjMC4wMjEsMC4wNzYsMC4wODgsMC4xMzIsMC4xNjcsMC4xMzggYzAuMDA1LDAuMDAxLDAuMDEsMC4wMDEsMC4wMTYsMC4wMDFjMC4wNzIsMCwwLjE0LTAuMDQyLDAuMTcyLTAuMTA4QzIwLjEwMywxOS41OCwxOS4zNDIsMTYuMzYsMTguOTEzLDE1LjQwNVwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNGRjk2MzNcIiwgZDogXCJNMTUuOTE0LDUuNTM3YzAuNjQ3LDEuNjMsMC45ODgsNS4wOTMsMC42MDksNy40NTJjMC4zNTYsMC4zNzIsMS4zMjUsMS40MjUsMS42NzQsMi4yMDQgYzAuNDE0LDAuOTI0LDEuMTM5LDMuOTU5LTAuMjU5LDcuMjAxYzAuMDgxLDAuMTU4LDAuMTUyLDAuMzM0LDAuMjEsMC41MzFjMC4wMjEsMC4wNzUsMC4wODgsMC4xMywwLjE2NywwLjEzNyBjMC4wMDUsMCwwLjAxMSwwLDAuMDE3LDBjMC4wNzIsMCwwLjE0LTAuMDQxLDAuMTcxLTAuMTA3YzEuNjA1LTMuMzcxLDAuODQ0LTYuNTksMC40MTUtNy41NDYgYy0wLjM1LTAuNzc5LTEuMzE4LTEuODMyLTEuNjc0LTIuMjA0YzAuMDI3LTAuNDgzLDAuMDQyLTAuOTg0LDAuMDQyLTEuNTAzQzE3LjI4Niw5LjQzLDE2LjY5MSw3LjI5MywxNS45MTQsNS41MzdcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdHsgb3BhY2l0eTogXCIwLjJcIiB9LFxuXHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdFx0bnVsbCxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcdFwiZGVmc1wiLFxuXHRcdFx0XHRcdFx0XHRcdG51bGwsXG5cdFx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicmVjdFwiLCB7IGlkOiBcIlNWR0lEXzdfXCIsIHg6IFwiNy43NTFcIiwgeTogXCIxLjAzMVwiLCB3aWR0aDogXCI2LjI4MVwiLCBoZWlnaHQ6IFwiMjAuMTYyXCIgfSlcblx0XHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcdFwiY2xpcFBhdGhcIixcblx0XHRcdFx0XHRcdFx0XHR7IGlkOiBcIlNWR0lEXzhfXCIgfSxcblx0XHRcdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJ1c2VcIiwgeyBocmVmOiBcIiNTVkdJRF83X1wiLCBvdmVyZmxvdzogXCJ2aXNpYmxlXCIgfSlcblx0XHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF84XylcIiwgZmlsbDogXCIjMjMxRjIwXCIsIGQ6IFwiTTguOTMxLDEyLjg3N2MwLTUuNzY5LDMuODMyLTEwLjY2NSw0Ljc2NS0xMC42NjUgYzAuMDg4LDAsMC4yMDIsMC4wNDQsMC4zMzYsMC4xMjdjLTAuNjUxLTAuODMxLTEuMjI1LTEuMzA4LTEuNTE3LTEuMzA4Yy0wLjkzNCwwLTQuNzY1LDQuODk2LTQuNzY1LDEwLjY2NiBjMCw1LjU5NCwxLjY5LDkuMTgzLDEuNzA3LDkuMjIxYzAuMDIxLDAuMDQ2LDAuMDYxLDAuMDgzLDAuMTEsMC4xYzAuMDIxLDAuMDA4LDAuMjYyLDAuMDksMC43MTEsMC4xNzYgQzkuNzc4LDE5Ljc5MSw4LjkzMSwxNi44MzksOC45MzEsMTIuODc3XCIgfSlcblx0XHRcdFx0XHRcdClcblx0XHRcdFx0XHQpXG5cdFx0XHRcdClcblx0XHRcdClcblx0XHQpXG5cdClcbik7XG5cbmV4cG9ydCBkZWZhdWx0IHRpbWVsaW5lQmxvY2tJY29ucztcblxuXG4vLy8vLy8vLy8vLy8vLy8vLy9cbi8vIFdFQlBBQ0sgRk9PVEVSXG4vLyAuL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvaWNvbnMuanNcbi8vIG1vZHVsZSBpZCA9IDJcbi8vIG1vZHVsZSBjaHVua3MgPSAwIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///2\n')}]);
|
lib/admin/js/min/timeline-express-tinymce.min.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
tinymce.PluginManager.add("timeline_express",function(e,t){e.on("keyup",function(){-1<e.getContent().indexOf("[timeline-express]")?e.controlManager.setDisabled("timeline_express_shortcode_button",!0):e.controlManager.setDisabled("timeline_express_shortcode_button",!1)}),e.addButton("timeline_express_shortcode_button",{title:"Timeline Express Shortcode",text:!1,image:t+"/../../images/timeline-express-menu-icon.png",onclick:function(){this.disabled(!this.disabled()),e.insertContent("[timeline-express]")}}),e.onSetContent.add(function(e,t){-1<e.getContent().indexOf("[timeline-express]")&&e.controlManager.setDisabled("timeline_express_shortcode_button",!0)})});
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
tinymce.PluginManager.add("timeline_express",function(e,t){e.on("keyup",function(){-1<e.getContent().indexOf("[timeline-express]")?e.controlManager.setDisabled("timeline_express_shortcode_button",!0):e.controlManager.setDisabled("timeline_express_shortcode_button",!1)}),e.addButton("timeline_express_shortcode_button",{title:"Timeline Express Shortcode",text:!1,image:t+"/../../images/timeline-express-menu-icon.png",onclick:function(){this.disabled(!this.disabled()),e.insertContent("[timeline-express]")}}),e.onSetContent.add(function(e,t){-1<e.getContent().indexOf("[timeline-express]")&&e.controlManager.setDisabled("timeline_express_shortcode_button",!0)})});
|
lib/admin/js/timeline-express-blocks.js
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******/ (function(modules) { // webpackBootstrap
|
2 |
+
/******/ // The module cache
|
3 |
+
/******/ var installedModules = {};
|
4 |
+
/******/
|
5 |
+
/******/ // The require function
|
6 |
+
/******/ function __webpack_require__(moduleId) {
|
7 |
+
/******/
|
8 |
+
/******/ // Check if module is in cache
|
9 |
+
/******/ if(installedModules[moduleId]) {
|
10 |
+
/******/ return installedModules[moduleId].exports;
|
11 |
+
/******/ }
|
12 |
+
/******/ // Create a new module (and put it into the cache)
|
13 |
+
/******/ var module = installedModules[moduleId] = {
|
14 |
+
/******/ i: moduleId,
|
15 |
+
/******/ l: false,
|
16 |
+
/******/ exports: {}
|
17 |
+
/******/ };
|
18 |
+
/******/
|
19 |
+
/******/ // Execute the module function
|
20 |
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
21 |
+
/******/
|
22 |
+
/******/ // Flag the module as loaded
|
23 |
+
/******/ module.l = true;
|
24 |
+
/******/
|
25 |
+
/******/ // Return the exports of the module
|
26 |
+
/******/ return module.exports;
|
27 |
+
/******/ }
|
28 |
+
/******/
|
29 |
+
/******/
|
30 |
+
/******/ // expose the modules object (__webpack_modules__)
|
31 |
+
/******/ __webpack_require__.m = modules;
|
32 |
+
/******/
|
33 |
+
/******/ // expose the module cache
|
34 |
+
/******/ __webpack_require__.c = installedModules;
|
35 |
+
/******/
|
36 |
+
/******/ // define getter function for harmony exports
|
37 |
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
38 |
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
39 |
+
/******/ Object.defineProperty(exports, name, {
|
40 |
+
/******/ configurable: false,
|
41 |
+
/******/ enumerable: true,
|
42 |
+
/******/ get: getter
|
43 |
+
/******/ });
|
44 |
+
/******/ }
|
45 |
+
/******/ };
|
46 |
+
/******/
|
47 |
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
48 |
+
/******/ __webpack_require__.n = function(module) {
|
49 |
+
/******/ var getter = module && module.__esModule ?
|
50 |
+
/******/ function getDefault() { return module['default']; } :
|
51 |
+
/******/ function getModuleExports() { return module; };
|
52 |
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
53 |
+
/******/ return getter;
|
54 |
+
/******/ };
|
55 |
+
/******/
|
56 |
+
/******/ // Object.prototype.hasOwnProperty.call
|
57 |
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
58 |
+
/******/
|
59 |
+
/******/ // __webpack_public_path__
|
60 |
+
/******/ __webpack_require__.p = "";
|
61 |
+
/******/
|
62 |
+
/******/ // Load entry module and return exports
|
63 |
+
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
64 |
+
/******/ })
|
65 |
+
/************************************************************************/
|
66 |
+
/******/ ([
|
67 |
+
/* 0 */
|
68 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
69 |
+
|
70 |
+
"use strict";
|
71 |
+
eval("Object.defineProperty(__webpack_exports__, \"__esModule\", { value: true });\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__timeline_js_timeline_block_js__ = __webpack_require__(1);\n/*\n * Set Locale\n */\nwp.i18n.setLocaleData({ '': {} }, 'timeline-express');\n\n// Import Blocks\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvYmxvY2tzLmpzPzc5ZWEiXSwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFNldCBMb2NhbGVcbiAqL1xud3AuaTE4bi5zZXRMb2NhbGVEYXRhKHsgJyc6IHt9IH0sICd0aW1lbGluZS1leHByZXNzJyk7XG5cbi8vIEltcG9ydCBCbG9ja3NcbmltcG9ydCAnLi90aW1lbGluZS9qcy90aW1lbGluZS1ibG9jay5qcyc7XG5cblxuLy8vLy8vLy8vLy8vLy8vLy8vXG4vLyBXRUJQQUNLIEZPT1RFUlxuLy8gLi9saWIvYWRtaW4vYmxvY2tzL2Jsb2Nrcy5qc1xuLy8gbW9kdWxlIGlkID0gMFxuLy8gbW9kdWxlIGNodW5rcyA9IDAiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///0\n");
|
72 |
+
|
73 |
+
/***/ }),
|
74 |
+
/* 1 */
|
75 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
76 |
+
|
77 |
+
"use strict";
|
78 |
+
eval("/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(2);\n\n\n/**\n * Internal block libraries\n */\nvar __ = wp.i18n.__;\nvar registerBlockType = wp.blocks.registerBlockType;\nvar InspectorControls = wp.editor.InspectorControls;\nvar _wp$components = wp.components,\n PanelBody = _wp$components.PanelBody,\n PanelRow = _wp$components.PanelRow,\n TextControl = _wp$components.TextControl,\n SelectControl = _wp$components.SelectControl;\n\n\nconsole.log(timelineBlock.timeFrame);\n\n/**\n * Register block\n */\n/* unused harmony default export */ var _unused_webpack_default_export = (registerBlockType('timeline-express/timeline-block', {\n title: __('Timeline', 'timeline-express'),\n description: __('Display a beautiful timeline of events on your site.', 'timeline-express'),\n category: 'widgets',\n icon: __WEBPACK_IMPORTED_MODULE_0__icons__[\"a\" /* default */].timelineIcon,\n keywords: [__('Timeline', 'timeline-express'), __('Express', 'timeline-express'), __('CodeParrots', 'timeline-express')],\n attributes: {\n announcementLimit: {\n type: 'string',\n default: '10'\n },\n displayOrder: {\n type: 'string',\n default: timelineBlock.displayOrder\n },\n timeFrame: {\n type: 'string',\n default: timelineBlock.timeFrame\n }\n },\n edit: function edit(props) {\n var _props$attributes = props.attributes,\n announcementLimit = _props$attributes.announcementLimit,\n displayOrder = _props$attributes.displayOrder,\n timeFrame = _props$attributes.timeFrame,\n className = props.className,\n setAttributes = props.setAttributes;\n\n\n return [wp.element.createElement(\n InspectorControls,\n { key: 'timeline-block-inspector-controls' },\n wp.element.createElement(\n PanelBody,\n {\n title: __('Timeline Express', 'timeline-express'),\n className: 'timeline-block-inspector-controls'\n },\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(TextControl, {\n type: 'number',\n min: '0',\n id: 'announcement-limit',\n label: sprintf(__('%s Limit', 'timeline-express'), timelineBlock.announcementSingular),\n value: announcementLimit,\n onChange: function onChange(announcementLimit) {\n return props.setAttributes({ announcementLimit: announcementLimit });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the number of announcemnets to display on the timeline. Set to 0 for no limit.', 'timeline-express')\n ),\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(SelectControl, {\n id: 'display-order',\n label: __('Display Order', 'timeline-express'),\n options: [{ label: __('Ascending', 'timeline-express'), value: 'ASC' }, { label: __('Descending', 'timeline-express'), value: 'DESC' }],\n value: displayOrder,\n onChange: function onChange(displayOrder) {\n return props.setAttributes({ displayOrder: displayOrder });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the display order of the announcements.', 'timeline-express')\n ),\n wp.element.createElement(\n PanelRow,\n null,\n wp.element.createElement(SelectControl, {\n id: 'time-frame',\n label: __('Time Frame', 'timeline-express'),\n options: [{ label: __('All (Past + Future)', 'timeline-express'), value: 'all' }, { label: __('Future', 'timeline-express'), value: 'future' }, { label: __('Past', 'timeline-express'), value: 'past' }],\n value: timeFrame,\n onChange: function onChange(timeFrame) {\n return props.setAttributes({ timeFrame: timeFrame });\n }\n })\n ),\n wp.element.createElement(\n 'p',\n { className: 'description' },\n __('Set the time frame for the announcements.', 'timeline-express')\n )\n )\n ), wp.element.createElement(\n 'div',\n {\n className: className,\n key: className\n },\n wp.element.createElement(\n 'div',\n { 'class': 'timeline-target' },\n wp.element.createElement('img', { src: timelineBlock.preloader, className: 'te-preloader' }),\n renderTimeline(props.attributes)\n )\n )];\n },\n\n save: function save(props) {\n var _props$attributes2 = props.attributes,\n announcementLimit = _props$attributes2.announcementLimit,\n displayOrder = _props$attributes2.displayOrder,\n timeFrame = _props$attributes2.timeFrame,\n className = props.className;\n\n\n return wp.element.createElement(\n 'div',\n {\n className: className,\n key: className\n },\n '[timeline-express limit=',\n announcementLimit,\n ' order=',\n displayOrder,\n ' display=',\n timeFrame,\n ']'\n );\n }\n}));\n\n/**\n * Render the timeline, AJAX handler\n *\n * @since NEXT\n */\nfunction renderTimeline(atts) {\n\n $('.timeline-target').html('<img src=\"' + timelineBlock.preloader + '\" class=\"te-preloader\" />');\n\n var data = {\n 'action': 'get_timeline_markup',\n 'announcementLimit': atts.announcementLimit,\n 'displayOrder': atts.displayOrder,\n 'timeFrame': atts.timeFrame\n };\n\n $.post(ajaxurl, data, function (response) {\n\n if (!response.success) {\n\n $('.timeline-target').html(timelineBlock.getTimelineError);\n\n return;\n }\n\n $('.timeline-target').html(response.data);\n });\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvdGltZWxpbmUtYmxvY2suanM/ODg0ZCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdGltZWxpbmVCbG9ja0ljb25zIGZyb20gJy4vaWNvbnMnO1xuXG4vKipcbiAqIEludGVybmFsIGJsb2NrIGxpYnJhcmllc1xuICovXG52YXIgX18gPSB3cC5pMThuLl9fO1xudmFyIHJlZ2lzdGVyQmxvY2tUeXBlID0gd3AuYmxvY2tzLnJlZ2lzdGVyQmxvY2tUeXBlO1xudmFyIEluc3BlY3RvckNvbnRyb2xzID0gd3AuZWRpdG9yLkluc3BlY3RvckNvbnRyb2xzO1xudmFyIF93cCRjb21wb25lbnRzID0gd3AuY29tcG9uZW50cyxcbiAgICBQYW5lbEJvZHkgPSBfd3AkY29tcG9uZW50cy5QYW5lbEJvZHksXG4gICAgUGFuZWxSb3cgPSBfd3AkY29tcG9uZW50cy5QYW5lbFJvdyxcbiAgICBUZXh0Q29udHJvbCA9IF93cCRjb21wb25lbnRzLlRleHRDb250cm9sLFxuICAgIFNlbGVjdENvbnRyb2wgPSBfd3AkY29tcG9uZW50cy5TZWxlY3RDb250cm9sO1xuXG5cbmNvbnNvbGUubG9nKHRpbWVsaW5lQmxvY2sudGltZUZyYW1lKTtcblxuLyoqXG4gKiBSZWdpc3RlciBibG9ja1xuICovXG5leHBvcnQgZGVmYXVsdCByZWdpc3RlckJsb2NrVHlwZSgndGltZWxpbmUtZXhwcmVzcy90aW1lbGluZS1ibG9jaycsIHtcbiAgdGl0bGU6IF9fKCdUaW1lbGluZScsICd0aW1lbGluZS1leHByZXNzJyksXG4gIGRlc2NyaXB0aW9uOiBfXygnRGlzcGxheSBhIGJlYXV0aWZ1bCB0aW1lbGluZSBvZiBldmVudHMgb24geW91ciBzaXRlLicsICd0aW1lbGluZS1leHByZXNzJyksXG4gIGNhdGVnb3J5OiAnd2lkZ2V0cycsXG4gIGljb246IHRpbWVsaW5lQmxvY2tJY29ucy50aW1lbGluZUljb24sXG4gIGtleXdvcmRzOiBbX18oJ1RpbWVsaW5lJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgX18oJ0V4cHJlc3MnLCAndGltZWxpbmUtZXhwcmVzcycpLCBfXygnQ29kZVBhcnJvdHMnLCAndGltZWxpbmUtZXhwcmVzcycpXSxcbiAgYXR0cmlidXRlczoge1xuICAgIGFubm91bmNlbWVudExpbWl0OiB7XG4gICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgIGRlZmF1bHQ6ICcxMCdcbiAgICB9LFxuICAgIGRpc3BsYXlPcmRlcjoge1xuICAgICAgdHlwZTogJ3N0cmluZycsXG4gICAgICBkZWZhdWx0OiB0aW1lbGluZUJsb2NrLmRpc3BsYXlPcmRlclxuICAgIH0sXG4gICAgdGltZUZyYW1lOiB7XG4gICAgICB0eXBlOiAnc3RyaW5nJyxcbiAgICAgIGRlZmF1bHQ6IHRpbWVsaW5lQmxvY2sudGltZUZyYW1lXG4gICAgfVxuICB9LFxuICBlZGl0OiBmdW5jdGlvbiBlZGl0KHByb3BzKSB7XG4gICAgdmFyIF9wcm9wcyRhdHRyaWJ1dGVzID0gcHJvcHMuYXR0cmlidXRlcyxcbiAgICAgICAgYW5ub3VuY2VtZW50TGltaXQgPSBfcHJvcHMkYXR0cmlidXRlcy5hbm5vdW5jZW1lbnRMaW1pdCxcbiAgICAgICAgZGlzcGxheU9yZGVyID0gX3Byb3BzJGF0dHJpYnV0ZXMuZGlzcGxheU9yZGVyLFxuICAgICAgICB0aW1lRnJhbWUgPSBfcHJvcHMkYXR0cmlidXRlcy50aW1lRnJhbWUsXG4gICAgICAgIGNsYXNzTmFtZSA9IHByb3BzLmNsYXNzTmFtZSxcbiAgICAgICAgc2V0QXR0cmlidXRlcyA9IHByb3BzLnNldEF0dHJpYnV0ZXM7XG5cblxuICAgIHJldHVybiBbd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgSW5zcGVjdG9yQ29udHJvbHMsXG4gICAgICB7IGtleTogJ3RpbWVsaW5lLWJsb2NrLWluc3BlY3Rvci1jb250cm9scycgfSxcbiAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgUGFuZWxCb2R5LFxuICAgICAgICB7XG4gICAgICAgICAgdGl0bGU6IF9fKCdUaW1lbGluZSBFeHByZXNzJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSxcbiAgICAgICAgICBjbGFzc05hbWU6ICd0aW1lbGluZS1ibG9jay1pbnNwZWN0b3ItY29udHJvbHMnXG4gICAgICAgIH0sXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICBQYW5lbFJvdyxcbiAgICAgICAgICBudWxsLFxuICAgICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChUZXh0Q29udHJvbCwge1xuICAgICAgICAgICAgdHlwZTogJ251bWJlcicsXG4gICAgICAgICAgICBtaW46ICcwJyxcbiAgICAgICAgICAgIGlkOiAnYW5ub3VuY2VtZW50LWxpbWl0JyxcbiAgICAgICAgICAgIGxhYmVsOiBzcHJpbnRmKF9fKCclcyBMaW1pdCcsICd0aW1lbGluZS1leHByZXNzJyksIHRpbWVsaW5lQmxvY2suYW5ub3VuY2VtZW50U2luZ3VsYXIpLFxuICAgICAgICAgICAgdmFsdWU6IGFubm91bmNlbWVudExpbWl0LFxuICAgICAgICAgICAgb25DaGFuZ2U6IGZ1bmN0aW9uIG9uQ2hhbmdlKGFubm91bmNlbWVudExpbWl0KSB7XG4gICAgICAgICAgICAgIHJldHVybiBwcm9wcy5zZXRBdHRyaWJ1dGVzKHsgYW5ub3VuY2VtZW50TGltaXQ6IGFubm91bmNlbWVudExpbWl0IH0pO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH0pXG4gICAgICAgICksXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICAncCcsXG4gICAgICAgICAgeyBjbGFzc05hbWU6ICdkZXNjcmlwdGlvbicgfSxcbiAgICAgICAgICBfXygnU2V0IHRoZSBudW1iZXIgb2YgYW5ub3VuY2VtbmV0cyB0byBkaXNwbGF5IG9uIHRoZSB0aW1lbGluZS4gU2V0IHRvIDAgZm9yIG5vIGxpbWl0LicsICd0aW1lbGluZS1leHByZXNzJylcbiAgICAgICAgKSxcbiAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgICAgIFBhbmVsUm93LFxuICAgICAgICAgIG51bGwsXG4gICAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFNlbGVjdENvbnRyb2wsIHtcbiAgICAgICAgICAgIGlkOiAnZGlzcGxheS1vcmRlcicsXG4gICAgICAgICAgICBsYWJlbDogX18oJ0Rpc3BsYXkgT3JkZXInLCAndGltZWxpbmUtZXhwcmVzcycpLFxuICAgICAgICAgICAgb3B0aW9uczogW3sgbGFiZWw6IF9fKCdBc2NlbmRpbmcnLCAndGltZWxpbmUtZXhwcmVzcycpLCB2YWx1ZTogJ0FTQycgfSwgeyBsYWJlbDogX18oJ0Rlc2NlbmRpbmcnLCAndGltZWxpbmUtZXhwcmVzcycpLCB2YWx1ZTogJ0RFU0MnIH1dLFxuICAgICAgICAgICAgdmFsdWU6IGRpc3BsYXlPcmRlcixcbiAgICAgICAgICAgIG9uQ2hhbmdlOiBmdW5jdGlvbiBvbkNoYW5nZShkaXNwbGF5T3JkZXIpIHtcbiAgICAgICAgICAgICAgcmV0dXJuIHByb3BzLnNldEF0dHJpYnV0ZXMoeyBkaXNwbGF5T3JkZXI6IGRpc3BsYXlPcmRlciB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9KVxuICAgICAgICApLFxuICAgICAgICB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG4gICAgICAgICAgJ3AnLFxuICAgICAgICAgIHsgY2xhc3NOYW1lOiAnZGVzY3JpcHRpb24nIH0sXG4gICAgICAgICAgX18oJ1NldCB0aGUgZGlzcGxheSBvcmRlciBvZiB0aGUgYW5ub3VuY2VtZW50cy4nLCAndGltZWxpbmUtZXhwcmVzcycpXG4gICAgICAgICksXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICAgICBQYW5lbFJvdyxcbiAgICAgICAgICBudWxsLFxuICAgICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChTZWxlY3RDb250cm9sLCB7XG4gICAgICAgICAgICBpZDogJ3RpbWUtZnJhbWUnLFxuICAgICAgICAgICAgbGFiZWw6IF9fKCdUaW1lIEZyYW1lJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSxcbiAgICAgICAgICAgIG9wdGlvbnM6IFt7IGxhYmVsOiBfXygnQWxsIChQYXN0ICsgRnV0dXJlKScsICd0aW1lbGluZS1leHByZXNzJyksIHZhbHVlOiAnYWxsJyB9LCB7IGxhYmVsOiBfXygnRnV0dXJlJywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgdmFsdWU6ICdmdXR1cmUnIH0sIHsgbGFiZWw6IF9fKCdQYXN0JywgJ3RpbWVsaW5lLWV4cHJlc3MnKSwgdmFsdWU6ICdwYXN0JyB9XSxcbiAgICAgICAgICAgIHZhbHVlOiB0aW1lRnJhbWUsXG4gICAgICAgICAgICBvbkNoYW5nZTogZnVuY3Rpb24gb25DaGFuZ2UodGltZUZyYW1lKSB7XG4gICAgICAgICAgICAgIHJldHVybiBwcm9wcy5zZXRBdHRyaWJ1dGVzKHsgdGltZUZyYW1lOiB0aW1lRnJhbWUgfSk7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgfSlcbiAgICAgICAgKSxcbiAgICAgICAgd3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuICAgICAgICAgICdwJyxcbiAgICAgICAgICB7IGNsYXNzTmFtZTogJ2Rlc2NyaXB0aW9uJyB9LFxuICAgICAgICAgIF9fKCdTZXQgdGhlIHRpbWUgZnJhbWUgZm9yIHRoZSBhbm5vdW5jZW1lbnRzLicsICd0aW1lbGluZS1leHByZXNzJylcbiAgICAgICAgKVxuICAgICAgKVxuICAgICksIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICdkaXYnLFxuICAgICAge1xuICAgICAgICBjbGFzc05hbWU6IGNsYXNzTmFtZSxcbiAgICAgICAga2V5OiBjbGFzc05hbWVcbiAgICAgIH0sXG4gICAgICB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG4gICAgICAgICdkaXYnLFxuICAgICAgICB7ICdjbGFzcyc6ICd0aW1lbGluZS10YXJnZXQnIH0sXG4gICAgICAgIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudCgnaW1nJywgeyBzcmM6IHRpbWVsaW5lQmxvY2sucHJlbG9hZGVyLCBjbGFzc05hbWU6ICd0ZS1wcmVsb2FkZXInIH0pLFxuICAgICAgICByZW5kZXJUaW1lbGluZShwcm9wcy5hdHRyaWJ1dGVzKVxuICAgICAgKVxuICAgICldO1xuICB9LFxuXG4gIHNhdmU6IGZ1bmN0aW9uIHNhdmUocHJvcHMpIHtcbiAgICB2YXIgX3Byb3BzJGF0dHJpYnV0ZXMyID0gcHJvcHMuYXR0cmlidXRlcyxcbiAgICAgICAgYW5ub3VuY2VtZW50TGltaXQgPSBfcHJvcHMkYXR0cmlidXRlczIuYW5ub3VuY2VtZW50TGltaXQsXG4gICAgICAgIGRpc3BsYXlPcmRlciA9IF9wcm9wcyRhdHRyaWJ1dGVzMi5kaXNwbGF5T3JkZXIsXG4gICAgICAgIHRpbWVGcmFtZSA9IF9wcm9wcyRhdHRyaWJ1dGVzMi50aW1lRnJhbWUsXG4gICAgICAgIGNsYXNzTmFtZSA9IHByb3BzLmNsYXNzTmFtZTtcblxuXG4gICAgcmV0dXJuIHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcbiAgICAgICdkaXYnLFxuICAgICAge1xuICAgICAgICBjbGFzc05hbWU6IGNsYXNzTmFtZSxcbiAgICAgICAga2V5OiBjbGFzc05hbWVcbiAgICAgIH0sXG4gICAgICAnW3RpbWVsaW5lLWV4cHJlc3MgbGltaXQ9JyxcbiAgICAgIGFubm91bmNlbWVudExpbWl0LFxuICAgICAgJyBvcmRlcj0nLFxuICAgICAgZGlzcGxheU9yZGVyLFxuICAgICAgJyBkaXNwbGF5PScsXG4gICAgICB0aW1lRnJhbWUsXG4gICAgICAnXSdcbiAgICApO1xuICB9XG59KTtcblxuLyoqXG4gKiBSZW5kZXIgdGhlIHRpbWVsaW5lLCBBSkFYIGhhbmRsZXJcbiAqXG4gKiBAc2luY2UgTkVYVFxuICovXG5mdW5jdGlvbiByZW5kZXJUaW1lbGluZShhdHRzKSB7XG5cbiAgJCgnLnRpbWVsaW5lLXRhcmdldCcpLmh0bWwoJzxpbWcgc3JjPVwiJyArIHRpbWVsaW5lQmxvY2sucHJlbG9hZGVyICsgJ1wiIGNsYXNzPVwidGUtcHJlbG9hZGVyXCIgLz4nKTtcblxuICB2YXIgZGF0YSA9IHtcbiAgICAnYWN0aW9uJzogJ2dldF90aW1lbGluZV9tYXJrdXAnLFxuICAgICdhbm5vdW5jZW1lbnRMaW1pdCc6IGF0dHMuYW5ub3VuY2VtZW50TGltaXQsXG4gICAgJ2Rpc3BsYXlPcmRlcic6IGF0dHMuZGlzcGxheU9yZGVyLFxuICAgICd0aW1lRnJhbWUnOiBhdHRzLnRpbWVGcmFtZVxuICB9O1xuXG4gICQucG9zdChhamF4dXJsLCBkYXRhLCBmdW5jdGlvbiAocmVzcG9uc2UpIHtcblxuICAgIGlmICghcmVzcG9uc2Uuc3VjY2Vzcykge1xuXG4gICAgICAkKCcudGltZWxpbmUtdGFyZ2V0JykuaHRtbCh0aW1lbGluZUJsb2NrLmdldFRpbWVsaW5lRXJyb3IpO1xuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgJCgnLnRpbWVsaW5lLXRhcmdldCcpLmh0bWwocmVzcG9uc2UuZGF0YSk7XG4gIH0pO1xufVxuXG5cbi8vLy8vLy8vLy8vLy8vLy8vL1xuLy8gV0VCUEFDSyBGT09URVJcbi8vIC4vbGliL2FkbWluL2Jsb2Nrcy90aW1lbGluZS9qcy90aW1lbGluZS1ibG9jay5qc1xuLy8gbW9kdWxlIGlkID0gMVxuLy8gbW9kdWxlIGNodW5rcyA9IDAiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///1\n");
|
79 |
+
|
80 |
+
/***/ }),
|
81 |
+
/* 2 */
|
82 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
83 |
+
|
84 |
+
"use strict";
|
85 |
+
eval("var timelineBlockIcons = {};\n\ntimelineBlockIcons.timelineIcon = wp.element.createElement(\n\t\"svg\",\n\t{ version: \"1.1\", id: \"Layer_1\", xmlns: \"http://www.w3.org/2000/svg\", x: \"0px\", y: \"0px\",\n\t\twidth: \"25px\", height: \"25px\", viewBox: \"0 0 25 25\", \"enable-background\": \"new 0 0 25 25\" },\n\twp.element.createElement(\n\t\t\"g\",\n\t\tnull,\n\t\twp.element.createElement(\n\t\t\t\"defs\",\n\t\t\tnull,\n\t\t\twp.element.createElement(\"rect\", { id: \"SVGID_1_\", x: \"-27.5\", y: \"-18.5\", width: \"80\", height: \"60\" })\n\t\t),\n\t\twp.element.createElement(\n\t\t\t\"clipPath\",\n\t\t\t{ id: \"SVGID_2_\" },\n\t\t\twp.element.createElement(\"use\", { href: \"#SVGID_1_\", overflow: \"visible\" })\n\t\t),\n\t\twp.element.createElement(\n\t\t\t\"g\",\n\t\t\t{ \"clip-path\": \"url(#SVGID_2_)\" },\n\t\t\twp.element.createElement(\n\t\t\t\t\"defs\",\n\t\t\t\tnull,\n\t\t\t\twp.element.createElement(\"rect\", { id: \"SVGID_3_\", x: \"-27.5\", y: \"-18.5\", width: \"80\", height: \"60\" })\n\t\t\t),\n\t\t\twp.element.createElement(\n\t\t\t\t\"clipPath\",\n\t\t\t\t{ id: \"SVGID_4_\" },\n\t\t\t\twp.element.createElement(\"use\", { href: \"#SVGID_3_\", overflow: \"visible\" })\n\t\t\t),\n\t\t\twp.element.createElement(\n\t\t\t\t\"g\",\n\t\t\t\t{ \"clip-path\": \"url(#SVGID_4_)\" },\n\t\t\t\twp.element.createElement(\"path\", { fill: \"#BF5D00\", d: \"M14.898,21.002c-0.044-0.035-0.102-0.051-0.157-0.039c-0.453,0.088-1.206,0.194-2.226,0.194 c-1.019,0-1.772-0.106-2.225-0.194c-0.056-0.012-0.114,0.003-0.158,0.039c-0.044,0.037-0.069,0.091-0.069,0.146v1.032 c0,0.095,0.068,0.174,0.161,0.188c0.051,0.008,1.268,0.201,2.292,0.201c1.024,0,2.241-0.193,2.292-0.201 c0.093-0.015,0.161-0.094,0.161-0.188v-1.032C14.969,21.093,14.942,21.039,14.898,21.002\" }),\n\t\t\t\twp.element.createElement(\n\t\t\t\t\t\"g\",\n\t\t\t\t\t{ opacity: \"0.2\" },\n\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\"g\",\n\t\t\t\t\t\tnull,\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\"defs\",\n\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\twp.element.createElement(\"rect\", { id: \"SVGID_5_\", x: \"10.063\", y: \"20.902\", width: \"4.905\", height: \"0.77\" })\n\t\t\t\t\t\t),\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\"clipPath\",\n\t\t\t\t\t\t\t{ id: \"SVGID_6_\" },\n\t\t\t\t\t\t\twp.element.createElement(\"use\", { href: \"#SVGID_5_\", overflow: \"visible\" })\n\t\t\t\t\t\t),\n\t\t\t\t\t\twp.element.createElement(\"path\", { \"clip-path\": \"url(#SVGID_6_)\", fill: \"#231F20\", d: \"M14.898,20.945c-0.044-0.036-0.102-0.051-0.157-0.04 c-0.453,0.089-1.206,0.195-2.226,0.195c-1.019,0-1.772-0.106-2.225-0.195c-0.056-0.011-0.114,0.004-0.158,0.04 c-0.044,0.036-0.069,0.09-0.069,0.146v0.572c0-0.057,0.025-0.111,0.069-0.146c0.044-0.037,0.102-0.053,0.158-0.041 c0.453,0.09,1.206,0.195,2.225,0.195c1.02,0,1.772-0.105,2.226-0.195c0.056-0.011,0.113,0.004,0.157,0.041 c0.044,0.035,0.07,0.09,0.07,0.146v-0.572C14.969,21.035,14.942,20.981,14.898,20.945\" })\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\twp.element.createElement(\n\t\t\t\t\t\"g\",\n\t\t\t\t\tnull,\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#E67000\", d: \"M6.082,15.405c0.422-0.942,1.75-2.285,1.806-2.341c0.049-0.05,0.121-0.068,0.188-0.049 c0.066,0.019,0.118,0.072,0.133,0.14l1.766,7.641c0.014,0.061-0.002,0.125-0.043,0.17c-0.042,0.047-0.103,0.071-0.164,0.062 c0,0-0.09-0.01-0.236-0.01c-0.641,0-2.185,0.186-2.679,1.902c-0.022,0.076-0.088,0.132-0.167,0.138 c-0.005,0.001-0.01,0.001-0.016,0.001c-0.073,0-0.14-0.042-0.172-0.108C4.892,19.58,5.653,16.36,6.082,15.405\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#FF7C00\", d: \"M12.516,1.031c-0.934,0-4.765,4.896-4.765,10.666c0,5.594,1.69,9.183,1.707,9.221 c0.021,0.046,0.061,0.083,0.11,0.1c0.042,0.015,1.053,0.365,2.948,0.365s2.906-0.351,2.949-0.365 c0.048-0.017,0.088-0.054,0.108-0.1c0.018-0.038,1.708-3.626,1.708-9.221C17.281,5.928,13.449,1.031,12.516,1.031\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#BF5D00\", d: \"M15.306,4.306c-1.1-2.006-2.308-3.274-2.79-3.274c-0.482,0-1.689,1.269-2.79,3.274 c0.312,0.092,1.227,0.316,2.79,0.316S14.993,4.397,15.306,4.306\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#FFFFFF\", d: \"M12.516,11.571c-0.812,0-1.474-0.661-1.474-1.474c0-0.813,0.662-1.475,1.474-1.475 c0.813,0,1.475,0.661,1.475,1.475C13.99,10.91,13.329,11.571,12.516,11.571\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#E66E00\", d: \"M12.516,8.722c0.759,0,1.375,0.615,1.375,1.375c0,0.759-0.616,1.374-1.375,1.374 s-1.375-0.615-1.375-1.374C11.141,9.337,11.757,8.722,12.516,8.722 M12.516,8.522c-0.868,0-1.574,0.707-1.574,1.575 c0,0.868,0.706,1.574,1.574,1.574s1.574-0.707,1.574-1.574C14.09,9.229,13.384,8.522,12.516,8.522\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#FFFFFF\", d: \"M12.516,15.929c-0.55,0-0.998-0.448-0.998-0.999s0.448-0.999,0.998-0.999 c0.551,0,0.999,0.448,0.999,0.999S13.066,15.929,12.516,15.929\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#E66E00\", d: \"M12.516,14.032c0.497,0,0.898,0.402,0.898,0.898c0,0.497-0.401,0.898-0.898,0.898 c-0.496,0-0.898-0.402-0.898-0.898C11.617,14.435,12.02,14.032,12.516,14.032 M12.516,13.832c-0.605,0-1.098,0.493-1.098,1.099 c0,0.606,0.493,1.099,1.098,1.099c0.605,0,1.1-0.493,1.1-1.099C13.615,14.325,13.121,13.832,12.516,13.832\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#E6E7E8\", d: \"M11.408,10.363c0-0.759,0.616-1.375,1.375-1.375c0.312,0,0.598,0.105,0.828,0.28 c-0.251-0.332-0.647-0.546-1.095-0.546c-0.759,0-1.375,0.616-1.375,1.375c0,0.447,0.215,0.844,0.546,1.095 C11.513,10.961,11.408,10.675,11.408,10.363\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#E6E7E8\", d: \"M11.884,15.197c0-0.496,0.402-0.898,0.898-0.898c0.18,0,0.347,0.055,0.487,0.145 c-0.16-0.247-0.438-0.412-0.754-0.412c-0.496,0-0.898,0.402-0.898,0.898c0,0.316,0.165,0.594,0.412,0.754 C11.938,15.544,11.884,15.377,11.884,15.197\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#FF7C00\", d: \"M18.913,15.405c-0.422-0.942-1.75-2.285-1.807-2.341c-0.048-0.05-0.12-0.068-0.187-0.049 s-0.118,0.072-0.133,0.14l-1.766,7.641c-0.016,0.061,0.001,0.125,0.042,0.17c0.042,0.047,0.103,0.071,0.165,0.062 c0,0,0.09-0.01,0.236-0.01c0.641,0,2.185,0.186,2.68,1.902c0.021,0.076,0.088,0.132,0.167,0.138 c0.005,0.001,0.01,0.001,0.016,0.001c0.072,0,0.14-0.042,0.172-0.108C20.103,19.58,19.342,16.36,18.913,15.405\" }),\n\t\t\t\t\twp.element.createElement(\"path\", { fill: \"#FF9633\", d: \"M15.914,5.537c0.647,1.63,0.988,5.093,0.609,7.452c0.356,0.372,1.325,1.425,1.674,2.204 c0.414,0.924,1.139,3.959-0.259,7.201c0.081,0.158,0.152,0.334,0.21,0.531c0.021,0.075,0.088,0.13,0.167,0.137 c0.005,0,0.011,0,0.017,0c0.072,0,0.14-0.041,0.171-0.107c1.605-3.371,0.844-6.59,0.415-7.546 c-0.35-0.779-1.318-1.832-1.674-2.204c0.027-0.483,0.042-0.984,0.042-1.503C17.286,9.43,16.691,7.293,15.914,5.537\" }),\n\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\"g\",\n\t\t\t\t\t\t{ opacity: \"0.2\" },\n\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\"g\",\n\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\t\"defs\",\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\twp.element.createElement(\"rect\", { id: \"SVGID_7_\", x: \"7.751\", y: \"1.031\", width: \"6.281\", height: \"20.162\" })\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\twp.element.createElement(\n\t\t\t\t\t\t\t\t\"clipPath\",\n\t\t\t\t\t\t\t\t{ id: \"SVGID_8_\" },\n\t\t\t\t\t\t\t\twp.element.createElement(\"use\", { href: \"#SVGID_7_\", overflow: \"visible\" })\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\twp.element.createElement(\"path\", { \"clip-path\": \"url(#SVGID_8_)\", fill: \"#231F20\", d: \"M8.931,12.877c0-5.769,3.832-10.665,4.765-10.665 c0.088,0,0.202,0.044,0.336,0.127c-0.651-0.831-1.225-1.308-1.517-1.308c-0.934,0-4.765,4.896-4.765,10.666 c0,5.594,1.69,9.183,1.707,9.221c0.021,0.046,0.061,0.083,0.11,0.1c0.021,0.008,0.262,0.09,0.711,0.176 C9.778,19.791,8.931,16.839,8.931,12.877\" })\n\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t)\n\t\t\t)\n\t\t)\n\t)\n);\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (timelineBlockIcons);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvaWNvbnMuanM/YTdiZCJdLCJzb3VyY2VzQ29udGVudCI6WyJ2YXIgdGltZWxpbmVCbG9ja0ljb25zID0ge307XG5cbnRpbWVsaW5lQmxvY2tJY29ucy50aW1lbGluZUljb24gPSB3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFwic3ZnXCIsXG5cdHsgdmVyc2lvbjogXCIxLjFcIiwgaWQ6IFwiTGF5ZXJfMVwiLCB4bWxuczogXCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiLCB4OiBcIjBweFwiLCB5OiBcIjBweFwiLFxuXHRcdHdpZHRoOiBcIjI1cHhcIiwgaGVpZ2h0OiBcIjI1cHhcIiwgdmlld0JveDogXCIwIDAgMjUgMjVcIiwgXCJlbmFibGUtYmFja2dyb3VuZFwiOiBcIm5ldyAwIDAgMjUgMjVcIiB9LFxuXHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XCJnXCIsXG5cdFx0bnVsbCxcblx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcImRlZnNcIixcblx0XHRcdG51bGwsXG5cdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJyZWN0XCIsIHsgaWQ6IFwiU1ZHSURfMV9cIiwgeDogXCItMjcuNVwiLCB5OiBcIi0xOC41XCIsIHdpZHRoOiBcIjgwXCIsIGhlaWdodDogXCI2MFwiIH0pXG5cdFx0KSxcblx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcImNsaXBQYXRoXCIsXG5cdFx0XHR7IGlkOiBcIlNWR0lEXzJfXCIgfSxcblx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInVzZVwiLCB7IGhyZWY6IFwiI1NWR0lEXzFfXCIsIG92ZXJmbG93OiBcInZpc2libGVcIiB9KVxuXHRcdCksXG5cdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XCJnXCIsXG5cdFx0XHR7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF8yXylcIiB9LFxuXHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcImRlZnNcIixcblx0XHRcdFx0bnVsbCxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicmVjdFwiLCB7IGlkOiBcIlNWR0lEXzNfXCIsIHg6IFwiLTI3LjVcIiwgeTogXCItMTguNVwiLCB3aWR0aDogXCI4MFwiLCBoZWlnaHQ6IFwiNjBcIiB9KVxuXHRcdFx0KSxcblx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XCJjbGlwUGF0aFwiLFxuXHRcdFx0XHR7IGlkOiBcIlNWR0lEXzRfXCIgfSxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwidXNlXCIsIHsgaHJlZjogXCIjU1ZHSURfM19cIiwgb3ZlcmZsb3c6IFwidmlzaWJsZVwiIH0pXG5cdFx0XHQpLFxuXHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcImdcIixcblx0XHRcdFx0eyBcImNsaXAtcGF0aFwiOiBcInVybCgjU1ZHSURfNF8pXCIgfSxcblx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0JGNUQwMFwiLCBkOiBcIk0xNC44OTgsMjEuMDAyYy0wLjA0NC0wLjAzNS0wLjEwMi0wLjA1MS0wLjE1Ny0wLjAzOWMtMC40NTMsMC4wODgtMS4yMDYsMC4xOTQtMi4yMjYsMC4xOTQgYy0xLjAxOSwwLTEuNzcyLTAuMTA2LTIuMjI1LTAuMTk0Yy0wLjA1Ni0wLjAxMi0wLjExNCwwLjAwMy0wLjE1OCwwLjAzOWMtMC4wNDQsMC4wMzctMC4wNjksMC4wOTEtMC4wNjksMC4xNDZ2MS4wMzIgYzAsMC4wOTUsMC4wNjgsMC4xNzQsMC4xNjEsMC4xODhjMC4wNTEsMC4wMDgsMS4yNjgsMC4yMDEsMi4yOTIsMC4yMDFjMS4wMjQsMCwyLjI0MS0wLjE5MywyLjI5Mi0wLjIwMSBjMC4wOTMtMC4wMTUsMC4xNjEtMC4wOTQsMC4xNjEtMC4xODh2LTEuMDMyQzE0Ljk2OSwyMS4wOTMsMTQuOTQyLDIxLjAzOSwxNC44OTgsMjEuMDAyXCIgfSksXG5cdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHR7IG9wYWNpdHk6IFwiMC4yXCIgfSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdG51bGwsXG5cdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcdFwiZGVmc1wiLFxuXHRcdFx0XHRcdFx0XHRudWxsLFxuXHRcdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJyZWN0XCIsIHsgaWQ6IFwiU1ZHSURfNV9cIiwgeDogXCIxMC4wNjNcIiwgeTogXCIyMC45MDJcIiwgd2lkdGg6IFwiNC45MDVcIiwgaGVpZ2h0OiBcIjAuNzdcIiB9KVxuXHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcblx0XHRcdFx0XHRcdFx0XCJjbGlwUGF0aFwiLFxuXHRcdFx0XHRcdFx0XHR7IGlkOiBcIlNWR0lEXzZfXCIgfSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwidXNlXCIsIHsgaHJlZjogXCIjU1ZHSURfNV9cIiwgb3ZlcmZsb3c6IFwidmlzaWJsZVwiIH0pXG5cdFx0XHRcdFx0XHQpLFxuXHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF82XylcIiwgZmlsbDogXCIjMjMxRjIwXCIsIGQ6IFwiTTE0Ljg5OCwyMC45NDVjLTAuMDQ0LTAuMDM2LTAuMTAyLTAuMDUxLTAuMTU3LTAuMDQgYy0wLjQ1MywwLjA4OS0xLjIwNiwwLjE5NS0yLjIyNiwwLjE5NWMtMS4wMTksMC0xLjc3Mi0wLjEwNi0yLjIyNS0wLjE5NWMtMC4wNTYtMC4wMTEtMC4xMTQsMC4wMDQtMC4xNTgsMC4wNCBjLTAuMDQ0LDAuMDM2LTAuMDY5LDAuMDktMC4wNjksMC4xNDZ2MC41NzJjMC0wLjA1NywwLjAyNS0wLjExMSwwLjA2OS0wLjE0NmMwLjA0NC0wLjAzNywwLjEwMi0wLjA1MywwLjE1OC0wLjA0MSBjMC40NTMsMC4wOSwxLjIwNiwwLjE5NSwyLjIyNSwwLjE5NWMxLjAyLDAsMS43NzItMC4xMDUsMi4yMjYtMC4xOTVjMC4wNTYtMC4wMTEsMC4xMTMsMC4wMDQsMC4xNTcsMC4wNDEgYzAuMDQ0LDAuMDM1LDAuMDcsMC4wOSwwLjA3LDAuMTQ2di0wLjU3MkMxNC45NjksMjEuMDM1LDE0Ljk0MiwyMC45ODEsMTQuODk4LDIwLjk0NVwiIH0pXG5cdFx0XHRcdFx0KVxuXHRcdFx0XHQpLFxuXHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XCJnXCIsXG5cdFx0XHRcdFx0bnVsbCxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY3MDAwXCIsIGQ6IFwiTTYuMDgyLDE1LjQwNWMwLjQyMi0wLjk0MiwxLjc1LTIuMjg1LDEuODA2LTIuMzQxYzAuMDQ5LTAuMDUsMC4xMjEtMC4wNjgsMC4xODgtMC4wNDkgYzAuMDY2LDAuMDE5LDAuMTE4LDAuMDcyLDAuMTMzLDAuMTRsMS43NjYsNy42NDFjMC4wMTQsMC4wNjEtMC4wMDIsMC4xMjUtMC4wNDMsMC4xN2MtMC4wNDIsMC4wNDctMC4xMDMsMC4wNzEtMC4xNjQsMC4wNjIgYzAsMC0wLjA5LTAuMDEtMC4yMzYtMC4wMWMtMC42NDEsMC0yLjE4NSwwLjE4Ni0yLjY3OSwxLjkwMmMtMC4wMjIsMC4wNzYtMC4wODgsMC4xMzItMC4xNjcsMC4xMzggYy0wLjAwNSwwLjAwMS0wLjAxLDAuMDAxLTAuMDE2LDAuMDAxYy0wLjA3MywwLTAuMTQtMC4wNDItMC4xNzItMC4xMDhDNC44OTIsMTkuNTgsNS42NTMsMTYuMzYsNi4wODIsMTUuNDA1XCIgfSksXG5cdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0ZGN0MwMFwiLCBkOiBcIk0xMi41MTYsMS4wMzFjLTAuOTM0LDAtNC43NjUsNC44OTYtNC43NjUsMTAuNjY2YzAsNS41OTQsMS42OSw5LjE4MywxLjcwNyw5LjIyMSBjMC4wMjEsMC4wNDYsMC4wNjEsMC4wODMsMC4xMSwwLjFjMC4wNDIsMC4wMTUsMS4wNTMsMC4zNjUsMi45NDgsMC4zNjVzMi45MDYtMC4zNTEsMi45NDktMC4zNjUgYzAuMDQ4LTAuMDE3LDAuMDg4LTAuMDU0LDAuMTA4LTAuMWMwLjAxOC0wLjAzOCwxLjcwOC0zLjYyNiwxLjcwOC05LjIyMUMxNy4yODEsNS45MjgsMTMuNDQ5LDEuMDMxLDEyLjUxNiwxLjAzMVwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNCRjVEMDBcIiwgZDogXCJNMTUuMzA2LDQuMzA2Yy0xLjEtMi4wMDYtMi4zMDgtMy4yNzQtMi43OS0zLjI3NGMtMC40ODIsMC0xLjY4OSwxLjI2OS0yLjc5LDMuMjc0IGMwLjMxMiwwLjA5MiwxLjIyNywwLjMxNiwyLjc5LDAuMzE2UzE0Ljk5Myw0LjM5NywxNS4zMDYsNC4zMDZcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRkZGRkZGXCIsIGQ6IFwiTTEyLjUxNiwxMS41NzFjLTAuODEyLDAtMS40NzQtMC42NjEtMS40NzQtMS40NzRjMC0wLjgxMywwLjY2Mi0xLjQ3NSwxLjQ3NC0xLjQ3NSBjMC44MTMsMCwxLjQ3NSwwLjY2MSwxLjQ3NSwxLjQ3NUMxMy45OSwxMC45MSwxMy4zMjksMTEuNTcxLDEyLjUxNiwxMS41NzFcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY2RTAwXCIsIGQ6IFwiTTEyLjUxNiw4LjcyMmMwLjc1OSwwLDEuMzc1LDAuNjE1LDEuMzc1LDEuMzc1YzAsMC43NTktMC42MTYsMS4zNzQtMS4zNzUsMS4zNzQgcy0xLjM3NS0wLjYxNS0xLjM3NS0xLjM3NEMxMS4xNDEsOS4zMzcsMTEuNzU3LDguNzIyLDEyLjUxNiw4LjcyMiBNMTIuNTE2LDguNTIyYy0wLjg2OCwwLTEuNTc0LDAuNzA3LTEuNTc0LDEuNTc1IGMwLDAuODY4LDAuNzA2LDEuNTc0LDEuNTc0LDEuNTc0czEuNTc0LTAuNzA3LDEuNTc0LTEuNTc0QzE0LjA5LDkuMjI5LDEzLjM4NCw4LjUyMiwxMi41MTYsOC41MjJcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRkZGRkZGXCIsIGQ6IFwiTTEyLjUxNiwxNS45MjljLTAuNTUsMC0wLjk5OC0wLjQ0OC0wLjk5OC0wLjk5OXMwLjQ0OC0wLjk5OSwwLjk5OC0wLjk5OSBjMC41NTEsMCwwLjk5OSwwLjQ0OCwwLjk5OSwwLjk5OVMxMy4wNjYsMTUuOTI5LDEyLjUxNiwxNS45MjlcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJwYXRoXCIsIHsgZmlsbDogXCIjRTY2RTAwXCIsIGQ6IFwiTTEyLjUxNiwxNC4wMzJjMC40OTcsMCwwLjg5OCwwLjQwMiwwLjg5OCwwLjg5OGMwLDAuNDk3LTAuNDAxLDAuODk4LTAuODk4LDAuODk4IGMtMC40OTYsMC0wLjg5OC0wLjQwMi0wLjg5OC0wLjg5OEMxMS42MTcsMTQuNDM1LDEyLjAyLDE0LjAzMiwxMi41MTYsMTQuMDMyIE0xMi41MTYsMTMuODMyYy0wLjYwNSwwLTEuMDk4LDAuNDkzLTEuMDk4LDEuMDk5IGMwLDAuNjA2LDAuNDkzLDEuMDk5LDEuMDk4LDEuMDk5YzAuNjA1LDAsMS4xLTAuNDkzLDEuMS0xLjA5OUMxMy42MTUsMTQuMzI1LDEzLjEyMSwxMy44MzIsMTIuNTE2LDEzLjgzMlwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNFNkU3RThcIiwgZDogXCJNMTEuNDA4LDEwLjM2M2MwLTAuNzU5LDAuNjE2LTEuMzc1LDEuMzc1LTEuMzc1YzAuMzEyLDAsMC41OTgsMC4xMDUsMC44MjgsMC4yOCBjLTAuMjUxLTAuMzMyLTAuNjQ3LTAuNTQ2LTEuMDk1LTAuNTQ2Yy0wLjc1OSwwLTEuMzc1LDAuNjE2LTEuMzc1LDEuMzc1YzAsMC40NDcsMC4yMTUsMC44NDQsMC41NDYsMS4wOTUgQzExLjUxMywxMC45NjEsMTEuNDA4LDEwLjY3NSwxMS40MDgsMTAuMzYzXCIgfSksXG5cdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IGZpbGw6IFwiI0U2RTdFOFwiLCBkOiBcIk0xMS44ODQsMTUuMTk3YzAtMC40OTYsMC40MDItMC44OTgsMC44OTgtMC44OThjMC4xOCwwLDAuMzQ3LDAuMDU1LDAuNDg3LDAuMTQ1IGMtMC4xNi0wLjI0Ny0wLjQzOC0wLjQxMi0wLjc1NC0wLjQxMmMtMC40OTYsMC0wLjg5OCwwLjQwMi0wLjg5OCwwLjg5OGMwLDAuMzE2LDAuMTY1LDAuNTk0LDAuNDEyLDAuNzU0IEMxMS45MzgsMTUuNTQ0LDExLjg4NCwxNS4zNzcsMTEuODg0LDE1LjE5N1wiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNGRjdDMDBcIiwgZDogXCJNMTguOTEzLDE1LjQwNWMtMC40MjItMC45NDItMS43NS0yLjI4NS0xLjgwNy0yLjM0MWMtMC4wNDgtMC4wNS0wLjEyLTAuMDY4LTAuMTg3LTAuMDQ5IHMtMC4xMTgsMC4wNzItMC4xMzMsMC4xNGwtMS43NjYsNy42NDFjLTAuMDE2LDAuMDYxLDAuMDAxLDAuMTI1LDAuMDQyLDAuMTdjMC4wNDIsMC4wNDcsMC4xMDMsMC4wNzEsMC4xNjUsMC4wNjIgYzAsMCwwLjA5LTAuMDEsMC4yMzYtMC4wMWMwLjY0MSwwLDIuMTg1LDAuMTg2LDIuNjgsMS45MDJjMC4wMjEsMC4wNzYsMC4wODgsMC4xMzIsMC4xNjcsMC4xMzggYzAuMDA1LDAuMDAxLDAuMDEsMC4wMDEsMC4wMTYsMC4wMDFjMC4wNzIsMCwwLjE0LTAuMDQyLDAuMTcyLTAuMTA4QzIwLjEwMywxOS41OCwxOS4zNDIsMTYuMzYsMTguOTEzLDE1LjQwNVwiIH0pLFxuXHRcdFx0XHRcdHdwLmVsZW1lbnQuY3JlYXRlRWxlbWVudChcInBhdGhcIiwgeyBmaWxsOiBcIiNGRjk2MzNcIiwgZDogXCJNMTUuOTE0LDUuNTM3YzAuNjQ3LDEuNjMsMC45ODgsNS4wOTMsMC42MDksNy40NTJjMC4zNTYsMC4zNzIsMS4zMjUsMS40MjUsMS42NzQsMi4yMDQgYzAuNDE0LDAuOTI0LDEuMTM5LDMuOTU5LTAuMjU5LDcuMjAxYzAuMDgxLDAuMTU4LDAuMTUyLDAuMzM0LDAuMjEsMC41MzFjMC4wMjEsMC4wNzUsMC4wODgsMC4xMywwLjE2NywwLjEzNyBjMC4wMDUsMCwwLjAxMSwwLDAuMDE3LDBjMC4wNzIsMCwwLjE0LTAuMDQxLDAuMTcxLTAuMTA3YzEuNjA1LTMuMzcxLDAuODQ0LTYuNTksMC40MTUtNy41NDYgYy0wLjM1LTAuNzc5LTEuMzE4LTEuODMyLTEuNjc0LTIuMjA0YzAuMDI3LTAuNDgzLDAuMDQyLTAuOTg0LDAuMDQyLTEuNTAzQzE3LjI4Niw5LjQzLDE2LjY5MSw3LjI5MywxNS45MTQsNS41MzdcIiB9KSxcblx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXG5cdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdHsgb3BhY2l0eTogXCIwLjJcIiB9LFxuXHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcImdcIixcblx0XHRcdFx0XHRcdFx0bnVsbCxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcdFwiZGVmc1wiLFxuXHRcdFx0XHRcdFx0XHRcdG51bGwsXG5cdFx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicmVjdFwiLCB7IGlkOiBcIlNWR0lEXzdfXCIsIHg6IFwiNy43NTFcIiwgeTogXCIxLjAzMVwiLCB3aWR0aDogXCI2LjI4MVwiLCBoZWlnaHQ6IFwiMjAuMTYyXCIgfSlcblx0XHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFxuXHRcdFx0XHRcdFx0XHRcdFwiY2xpcFBhdGhcIixcblx0XHRcdFx0XHRcdFx0XHR7IGlkOiBcIlNWR0lEXzhfXCIgfSxcblx0XHRcdFx0XHRcdFx0XHR3cC5lbGVtZW50LmNyZWF0ZUVsZW1lbnQoXCJ1c2VcIiwgeyBocmVmOiBcIiNTVkdJRF83X1wiLCBvdmVyZmxvdzogXCJ2aXNpYmxlXCIgfSlcblx0XHRcdFx0XHRcdFx0KSxcblx0XHRcdFx0XHRcdFx0d3AuZWxlbWVudC5jcmVhdGVFbGVtZW50KFwicGF0aFwiLCB7IFwiY2xpcC1wYXRoXCI6IFwidXJsKCNTVkdJRF84XylcIiwgZmlsbDogXCIjMjMxRjIwXCIsIGQ6IFwiTTguOTMxLDEyLjg3N2MwLTUuNzY5LDMuODMyLTEwLjY2NSw0Ljc2NS0xMC42NjUgYzAuMDg4LDAsMC4yMDIsMC4wNDQsMC4zMzYsMC4xMjdjLTAuNjUxLTAuODMxLTEuMjI1LTEuMzA4LTEuNTE3LTEuMzA4Yy0wLjkzNCwwLTQuNzY1LDQuODk2LTQuNzY1LDEwLjY2NiBjMCw1LjU5NCwxLjY5LDkuMTgzLDEuNzA3LDkuMjIxYzAuMDIxLDAuMDQ2LDAuMDYxLDAuMDgzLDAuMTEsMC4xYzAuMDIxLDAuMDA4LDAuMjYyLDAuMDksMC43MTEsMC4xNzYgQzkuNzc4LDE5Ljc5MSw4LjkzMSwxNi44MzksOC45MzEsMTIuODc3XCIgfSlcblx0XHRcdFx0XHRcdClcblx0XHRcdFx0XHQpXG5cdFx0XHRcdClcblx0XHRcdClcblx0XHQpXG5cdClcbik7XG5cbmV4cG9ydCBkZWZhdWx0IHRpbWVsaW5lQmxvY2tJY29ucztcblxuXG4vLy8vLy8vLy8vLy8vLy8vLy9cbi8vIFdFQlBBQ0sgRk9PVEVSXG4vLyAuL2xpYi9hZG1pbi9ibG9ja3MvdGltZWxpbmUvanMvaWNvbnMuanNcbi8vIG1vZHVsZSBpZCA9IDJcbi8vIG1vZHVsZSBjaHVua3MgPSAwIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///2\n");
|
86 |
+
|
87 |
+
/***/ })
|
88 |
+
/******/ ]);
|
lib/classes/class-timeline-express-admin.php
CHANGED
@@ -18,7 +18,9 @@ class Timeline_Express_Admin {
|
|
18 |
|
19 |
include_once( TIMELINE_EXPRESS_PATH . 'lib/classes/class-timeline-express-2-week-notice.php' );
|
20 |
|
21 |
-
new Timeline_Express_Two_Weeks_Notice;
|
|
|
|
|
22 |
|
23 |
/* Generate our announcements custom post type */
|
24 |
add_action( 'init', array( $this, 'timeline_express_generate_announcement_post_type' ) );
|
18 |
|
19 |
include_once( TIMELINE_EXPRESS_PATH . 'lib/classes/class-timeline-express-2-week-notice.php' );
|
20 |
|
21 |
+
new Timeline_Express_Two_Weeks_Notice();
|
22 |
+
|
23 |
+
include_once( TIMELINE_EXPRESS_PATH . 'lib/classes/class-timeline-express-blocks.php' );
|
24 |
|
25 |
/* Generate our announcements custom post type */
|
26 |
add_action( 'init', array( $this, 'timeline_express_generate_announcement_post_type' ) );
|
lib/classes/class-timeline-express-blocks.php
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
4 |
+
|
5 |
+
exit;
|
6 |
+
|
7 |
+
}
|
8 |
+
|
9 |
+
class Timeline_Express_Content_Blocks {
|
10 |
+
|
11 |
+
private $options;
|
12 |
+
|
13 |
+
public function __construct() {
|
14 |
+
|
15 |
+
$this->options = timeline_express_get_options();
|
16 |
+
|
17 |
+
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_scripts' ) );
|
18 |
+
|
19 |
+
add_action( 'wp_ajax_get_timeline_markup', array( $this, 'get_timeline_markup' ) );
|
20 |
+
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Enqueue content block scripts.
|
25 |
+
*
|
26 |
+
* @action enqueue_block_editor_assets
|
27 |
+
*
|
28 |
+
* @since 1.8.0
|
29 |
+
*/
|
30 |
+
public function enqueue_block_scripts() {
|
31 |
+
|
32 |
+
$suffix = SCRIPT_DEBUG ? '' : '.min';
|
33 |
+
$minpath = SCRIPT_DEBUG ? '../admin/js/timeline-express-blocks.js' : '../admin/js/min/timeline-express-blocks.min.js';
|
34 |
+
|
35 |
+
new Timeline_Express_Initialize();
|
36 |
+
|
37 |
+
wp_enqueue_script( 'timeline-express-blocks', plugins_url( $minpath, __FILE__ ), array( 'wp-i18n', 'wp-element', 'wp-blocks', 'wp-components' ), TIMELINE_EXPRESS_VERSION_CURRENT, true );
|
38 |
+
|
39 |
+
wp_localize_script(
|
40 |
+
'timeline-express-blocks',
|
41 |
+
'timelineBlock',
|
42 |
+
array(
|
43 |
+
'preloader' => admin_url( 'images/wpspin_light-2x.gif' ),
|
44 |
+
'animation_disabled' => ( isset( $this->options['disable-animation'] ) && $this->options['disable-animation'] ) ? true : false,
|
45 |
+
'getTimelineError' => __( 'There was an error generating the timeline. Please try again.', 'timeline-express' ),
|
46 |
+
'displayOrder' => $this->options['announcement-display-order'],
|
47 |
+
'timeFrame' => ( '0' === $this->options['announcement-time-frame'] ) ? 'future' : ( '1' === $this->options['announcement-time-frame'] ? 'all' : 'past' ),
|
48 |
+
'announcementSingular' => (string) apply_filters( 'timeline_express_singular_name', esc_html__( 'Announcement', 'timeline-express' ) ),
|
49 |
+
)
|
50 |
+
);
|
51 |
+
|
52 |
+
wp_enqueue_style( 'timeline-express-blocks', plugins_url( "../admin/blocks/timeline/css/timeline-block{$suffix}.css", __FILE__ ), array(), TIMELINE_EXPRESS_VERSION_CURRENT, 'all' );
|
53 |
+
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Render the timeline markup, AJAX handler
|
58 |
+
*
|
59 |
+
* @return mixed Markup for the timeline
|
60 |
+
*/
|
61 |
+
public function get_timeline_markup() {
|
62 |
+
|
63 |
+
$limit = filter_input( INPUT_POST, 'announcementLimit', FILTER_SANITIZE_NUMBER_INT );
|
64 |
+
$order = filter_input( INPUT_POST, 'displayOrder', FILTER_SANITIZE_STRING );
|
65 |
+
$timeframe = filter_input( INPUT_POST, 'timeFrame', FILTER_SANITIZE_STRING );
|
66 |
+
|
67 |
+
$defaults = array(
|
68 |
+
'limit' => ! $limit ? -1 : $limit,
|
69 |
+
'order' => ! $order ? $this->options['announcement-display-order'] : $order,
|
70 |
+
'display' => ! $timeframe ? $this->options['announcement-time-frame'] : $timeframe,
|
71 |
+
);
|
72 |
+
|
73 |
+
apply_filters( 'timeline_express_disable_cache', '__return_true' );
|
74 |
+
|
75 |
+
$timeline_express_init = new Timeline_Express_Initialize();
|
76 |
+
|
77 |
+
wp_send_json_success( $timeline_express_init->generate_timeline_express( $this->options, $defaults ) );
|
78 |
+
|
79 |
+
}
|
80 |
+
|
81 |
+
}
|
82 |
+
|
83 |
+
new Timeline_Express_Content_Blocks();
|
lib/classes/class-timeline-express-initialize.php
CHANGED
@@ -22,13 +22,11 @@ class Timeline_Express_Initialize {
|
|
22 |
|
23 |
/**
|
24 |
* Enqueue our scripts & styles
|
25 |
-
* 1)
|
26 |
-
* 2)
|
27 |
-
* 3) do_action( 'timeline-express-scripts' ) for additional plugins to hook into.
|
28 |
*/
|
29 |
/* Scripts */
|
30 |
-
wp_enqueue_script( '
|
31 |
-
wp_enqueue_script( 'timeline-express-js-base', TIMELINE_EXPRESS_URL . 'lib/public/js/min/timeline-express.min.js', array( 'jquery-masonry' ) );
|
32 |
|
33 |
/* pass the disabled state to our script */
|
34 |
wp_localize_script(
|
22 |
|
23 |
/**
|
24 |
* Enqueue our scripts & styles
|
25 |
+
* 1) Timeline Express Base Scripts to initialize the timeline.
|
26 |
+
* 2) do_action( 'timeline-express-scripts' ) for additional plugins to hook into.
|
|
|
27 |
*/
|
28 |
/* Scripts */
|
29 |
+
wp_enqueue_script( 'timeline-express-js-base', TIMELINE_EXPRESS_URL . 'lib/public/js/min/timeline-express.min.js', array( 'jquery' ) );
|
|
|
30 |
|
31 |
/* pass the disabled state to our script */
|
32 |
wp_localize_script(
|
lib/public/css/min/timeline-express-rtl.min.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
.cd-container{width:95%;margin:0 auto}.cd-container::after{content:'';display:table;clear:both}#cd-timeline{position:relative;padding:1em 0;margin-top:2em;margin-bottom:3em}#cd-timeline::before{content:'';position:absolute;top:0;right:18px;height:100%;width:4px;background:rgba(179,177,179,.75)}.cd-timeline-content h2{margin:0}.cd-timeline-content .cd-date,.cd-timeline-content .the-excerpt,.cd-timeline-content .timeline-express-read-more-link{position:relative;z-index:10;display:block}.cd-timeline-content .the-excerpt p{margin-bottom:0}.announcement-banner-image{border-radius:3px}.cd-timeline-block{width:100%;display:inline-block}.cd-timeline-block:after{content:"";display:table;clear:both}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{position:absolute;right:-5px;height:50px;width:50px;border-radius:50%;box-shadow:0 0 0 4px #fff,inset 0 2px 0 rgba(0,0,0,.08),0 3px 0 4px rgba(0,0,0,.05)}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;text-align:center;line-height:55px;color:#fff}.cd-timeline-img img{display:block;position:relative;right:50%;top:50%;margin-right:-12px;margin-top:-12px}.cd-timeline-content{position:relative;margin-right:70px;top:0;background:#fff;border-radius:.25em;padding:1em;box-shadow:0 3px 0 #b9c5cd;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;-ms-box-sizing:border-box!important;margin-bottom:1em}.cd-timeline-content:after{content:"";display:table;clear:both}.cd-timeline-content .cd-date{float:right;padding:.8em 0;opacity:.7;font-size:12px}.cd-timeline-title-container+img{margin:.75em 0;width:100%;max-width:100%}.cd-timeline-title-container+.the-excerpt{margin-top:.5em}.cd-timeline-title-container .timeline-date{font-style:italic;display:block;margin:3px 0 0 0}@keyframes cd-reveal-image{0%{opacity:0;transform:scale(.5)}60%{opacity:1;transform:scale(1.2)}100%{transform:scale(1)}}@keyframes te-slide-in-left{0%{opacity:0;transform:translateX(100px)}60%{opacity:1;transform:translateX(-20px)}100%{transform:translateX(0)}}@keyframes te-slide-in-right{0%{opacity:0;transform:translateX(-100px)}60%{opacity:1;transform:translateX(20px)}100%{transform:translateX(0)}}.cd-timeline-icon-link,.cd-timeline-icon-link:hover{color:transparent;margin:0;box-shadow:none;-webkit-box-shadow:none;text-decoration:none}#cd-timeline span.fa{color:#fff;font-size:23px;display:block;text-align:center;line-height:52px}.cd-timeline-content::before{content:'';position:absolute;top:16px;left:100%;height:0;width:0;border:12px solid transparent}@media only screen and (min-width:822px){#cd-timeline{margin:3.5em 0}#cd-timeline::before{right:50%;margin-right:-2px}#cd-timeline span.fa{font-size:25px;line-height:63px;height:100%}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{width:60px;height:60px;right:50%;margin-right:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;line-height:60px;text-align:center}.cssanimations .cd-timeline-img.is-hidden{visibility:hidden}.cssanimations .cd-timeline-img.bounce-in{visibility:visible;animation:cd-reveal-image .6s}.cd-container{width:100%}.cd-timeline-content{margin-right:0;top:8px;padding:1.6em;width:42.5%;background:#efefef}.cd-timeline-content::before{top:12px;right:100%;border-color:transparent #efefef transparent transparent}.cd-timeline-content .cd-date{position:absolute;width:100%;right:125%;top:15px}.cd-timeline-block:nth-child(even) .cd-timeline-content{float:left}.cd-timeline-block:nth-child(even) .cd-timeline-content::before{top:12px;right:auto;left:100%;border-color:transparent}.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{right:auto;left:125%;text-align:left}.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}.cssanimations .cd-timeline-content.bounce-in{visibility:visible;animation:te-slide-in-right .6s}.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in{animation:te-slide-in-left .6s}}body.single-te_announcements .entry-meta{display:inline-block}body.single-te_announcements .timeline-express-content-area{width:100%}body.single-te_announcements .timeline-express-main{max-width:960px}body.single-te_announcements .announcement-banner-image{width:auto}body.single-te_announcements .timeline-express-single-page-announcement-date{display:block;margin:.5em 0;font-style:italic}body.single-te_announcements .timeline-express-single-page-content{margin:.5em 0 1em 0}body.single-te_announcements nav.navigation.post-navigation{display:none}body.single-te_announcements .content-area.twentyfifteen article.te_announcements .entry-header h1{margin-top:0}
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
.cd-container{width:95%;margin:0 auto}.cd-container::after{content:'';display:table;clear:both}#cd-timeline{position:relative;padding:1em 0;margin-top:2em;margin-bottom:3em}#cd-timeline::before{content:'';position:absolute;top:0;right:18px;height:100%;width:4px;background:rgba(179,177,179,.75)}.cd-timeline-content h2{margin:0}.cd-timeline-content .cd-date,.cd-timeline-content .the-excerpt,.cd-timeline-content .timeline-express-read-more-link{position:relative;z-index:10;display:block}.cd-timeline-content .the-excerpt p{margin-bottom:0}.announcement-banner-image{border-radius:3px}.cd-timeline-block{width:100%;display:inline-block}.cd-timeline-block:after{content:"";display:table;clear:both}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{position:absolute;right:-5px;height:50px;width:50px;border-radius:50%;box-shadow:0 0 0 4px #fff,inset 0 2px 0 rgba(0,0,0,.08),0 3px 0 4px rgba(0,0,0,.05)}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;text-align:center;line-height:55px;color:#fff}.cd-timeline-img img{display:block;position:relative;right:50%;top:50%;margin-right:-12px;margin-top:-12px}.cd-timeline-content{position:relative;margin-right:70px;top:0;background:#fff;border-radius:.25em;padding:1em;box-shadow:0 3px 0 #b9c5cd;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;-ms-box-sizing:border-box!important;margin-bottom:1em}.cd-timeline-content:after{content:"";display:table;clear:both}.cd-timeline-content .cd-date{float:right;padding:.8em 0;opacity:.7;font-size:12px}.cd-timeline-title-container+img{margin:.75em 0;width:100%;max-width:100%}.cd-timeline-title-container+.the-excerpt{margin-top:.5em}.cd-timeline-title-container .timeline-date{font-style:italic;display:block;margin:3px 0 0 0}@keyframes cd-reveal-image{0%{opacity:0;transform:scale(.5)}60%{opacity:1;transform:scale(1.2)}100%{transform:scale(1)}}@keyframes te-slide-in-left{0%{opacity:0;transform:translateX(100px)}60%{opacity:1;transform:translateX(-20px)}100%{transform:translateX(0)}}@keyframes te-slide-in-right{0%{opacity:0;transform:translateX(-100px)}60%{opacity:1;transform:translateX(20px)}100%{transform:translateX(0)}}.cd-timeline-icon-link,.cd-timeline-icon-link:hover{color:transparent;margin:0;box-shadow:none;-webkit-box-shadow:none;text-decoration:none}#cd-timeline span.fa{color:#fff;font-size:23px;display:block;text-align:center;line-height:52px}.cd-timeline-content::before{content:'';position:absolute;top:16px;left:100%;height:0;width:0;border:12px solid transparent}@media only screen and (min-width:822px){#cd-timeline{margin:3.5em 0}#cd-timeline::before{right:50%;margin-right:-2px}#cd-timeline span.fa{font-size:25px;line-height:63px;height:100%}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{width:60px;height:60px;right:50%;margin-right:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;line-height:60px;text-align:center}.cssanimations .cd-timeline-img.is-hidden{visibility:hidden}.cssanimations .cd-timeline-img.bounce-in{visibility:visible;animation:cd-reveal-image .6s}.cd-container{width:100%}.cd-timeline-content{margin-right:0;top:8px;padding:1.6em;width:42.5%;background:#efefef}.cd-timeline-content::before{top:12px;right:100%;border-color:transparent #efefef transparent transparent}.cd-timeline-content .cd-date{position:absolute;width:100%;right:125%;top:15px}.cd-timeline-block:nth-child(even) .cd-timeline-content{float:left}.cd-timeline-block:nth-child(even) .cd-timeline-content::before{top:12px;right:auto;left:100%;border-color:transparent}.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{right:auto;left:125%;text-align:left}.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}.cssanimations .cd-timeline-content.bounce-in{visibility:visible;animation:te-slide-in-right .6s}.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in{animation:te-slide-in-left .6s}}body.single-te_announcements .entry-meta{display:inline-block}body.single-te_announcements .timeline-express-content-area{width:100%}body.single-te_announcements .timeline-express-main{max-width:960px}body.single-te_announcements .announcement-banner-image{width:auto}body.single-te_announcements .timeline-express-single-page-announcement-date{display:block;margin:.5em 0;font-style:italic}body.single-te_announcements .timeline-express-single-page-content{margin:.5em 0 1em 0}body.single-te_announcements nav.navigation.post-navigation{display:none}body.single-te_announcements .content-area.twentyfifteen article.te_announcements .entry-header h1{margin-top:0}
|
lib/public/css/min/timeline-express.min.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
.cd-container{width:95%;margin:0 auto}.cd-container::after{content:'';display:table;clear:both}#cd-timeline{position:relative;padding:1em 0;margin-top:2em;margin-bottom:3em}#cd-timeline::before{content:'';position:absolute;top:0;left:18px;height:100%;width:4px;background:rgba(179,177,179,.75)}.cd-timeline-content h2{margin:0}.cd-timeline-content .cd-date,.cd-timeline-content .the-excerpt,.cd-timeline-content .timeline-express-read-more-link{position:relative;z-index:10;display:block}.cd-timeline-content .the-excerpt p{margin-bottom:0}.announcement-banner-image{border-radius:3px}.cd-timeline-block{width:100%;display:inline-block}.cd-timeline-block:after{content:"";display:table;clear:both}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{position:absolute;left:-5px;height:50px;width:50px;border-radius:50%;box-shadow:0 0 0 4px #fff,inset 0 2px 0 rgba(0,0,0,.08),0 3px 0 4px rgba(0,0,0,.05)}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;text-align:center;line-height:55px;color:#fff}.cd-timeline-img img{display:block;position:relative;left:50%;top:50%;margin-left:-12px;margin-top:-12px}.cd-timeline-content{position:relative;margin-left:70px;top:0;background:#fff;border-radius:.25em;padding:1em;box-shadow:0 3px 0 #b9c5cd;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;-ms-box-sizing:border-box!important;margin-bottom:1em}.cd-timeline-content:after{content:"";display:table;clear:both}.cd-timeline-content .cd-date{float:left;padding:.8em 0;opacity:.7;font-size:12px}.cd-timeline-title-container+img{margin:.75em 0;width:100%;max-width:100%}.cd-timeline-title-container+.the-excerpt{margin-top:.5em}.cd-timeline-title-container .timeline-date{font-style:italic;display:block;margin:3px 0 0 0}@keyframes cd-reveal-image{0%{opacity:0;transform:scale(.5)}60%{opacity:1;transform:scale(1.2)}100%{transform:scale(1)}}@keyframes te-slide-in-left{0%{opacity:0;transform:translateX(-100px)}60%{opacity:1;transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes te-slide-in-right{0%{opacity:0;transform:translateX(100px)}60%{opacity:1;transform:translateX(-20px)}100%{transform:translateX(0)}}.cd-timeline-icon-link,.cd-timeline-icon-link:hover{color:transparent;margin:0;box-shadow:none;-webkit-box-shadow:none;text-decoration:none}#cd-timeline span.fa{color:#fff;font-size:23px;display:block;text-align:center;line-height:52px}.cd-timeline-content::before{content:'';position:absolute;top:16px;right:100%;height:0;width:0;border:12px solid transparent}@media only screen and (min-width:822px){#cd-timeline{margin:3.5em 0}#cd-timeline::before{left:50%;margin-left:-2px}#cd-timeline span.fa{font-size:25px;line-height:63px;height:100%}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{width:60px;height:60px;left:50%;margin-left:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;line-height:60px;text-align:center}.cssanimations .cd-timeline-img.is-hidden{visibility:hidden}.cssanimations .cd-timeline-img.bounce-in{visibility:visible;animation:cd-reveal-image .6s}.cd-container{width:100%}.cd-timeline-content{margin-left:0;top:8px;padding:1.6em;width:42.5%;background:#efefef}.cd-timeline-content::before{top:12px;left:100%;border-color:transparent transparent transparent #efefef}.cd-timeline-content .cd-date{position:absolute;width:100%;left:125%;top:15px}.cd-timeline-block:nth-child(even) .cd-timeline-content{float:right}.cd-timeline-block:nth-child(even) .cd-timeline-content::before{top:12px;left:auto;right:100%;border-color:transparent}.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{left:auto;right:125%;text-align:right}.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}.cssanimations .cd-timeline-content.bounce-in{visibility:visible;animation:te-slide-in-left .6s}.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in{animation:te-slide-in-right .6s}}body.single-te_announcements .entry-meta{display:inline-block}body.single-te_announcements .timeline-express-content-area{width:100%}body.single-te_announcements .timeline-express-main{max-width:960px}body.single-te_announcements .announcement-banner-image{width:auto}body.single-te_announcements .timeline-express-single-page-announcement-date{display:block;margin:.5em 0;font-style:italic}body.single-te_announcements .timeline-express-single-page-content{margin:.5em 0 1em 0}body.single-te_announcements nav.navigation.post-navigation{display:none}body.single-te_announcements .content-area.twentyfifteen article.te_announcements .entry-header h1{margin-top:0}
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
.cd-container{width:95%;margin:0 auto}.cd-container::after{content:'';display:table;clear:both}#cd-timeline{position:relative;padding:1em 0;margin-top:2em;margin-bottom:3em}#cd-timeline::before{content:'';position:absolute;top:0;left:18px;height:100%;width:4px;background:rgba(179,177,179,.75)}.cd-timeline-content h2{margin:0}.cd-timeline-content .cd-date,.cd-timeline-content .the-excerpt,.cd-timeline-content .timeline-express-read-more-link{position:relative;z-index:10;display:block}.cd-timeline-content .the-excerpt p{margin-bottom:0}.announcement-banner-image{border-radius:3px}.cd-timeline-block{width:100%;display:inline-block}.cd-timeline-block:after{content:"";display:table;clear:both}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{position:absolute;left:-5px;height:50px;width:50px;border-radius:50%;box-shadow:0 0 0 4px #fff,inset 0 2px 0 rgba(0,0,0,.08),0 3px 0 4px rgba(0,0,0,.05)}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;text-align:center;line-height:55px;color:#fff}.cd-timeline-img img{display:block;position:relative;left:50%;top:50%;margin-left:-12px;margin-top:-12px}.cd-timeline-content{position:relative;margin-left:70px;top:0;background:#fff;border-radius:.25em;padding:1em;box-shadow:0 3px 0 #b9c5cd;box-sizing:border-box!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;-ms-box-sizing:border-box!important;margin-bottom:1em}.cd-timeline-content:after{content:"";display:table;clear:both}.cd-timeline-content .cd-date{float:left;padding:.8em 0;opacity:.7;font-size:12px}.cd-timeline-title-container+img{margin:.75em 0;width:100%;max-width:100%}.cd-timeline-title-container+.the-excerpt{margin-top:.5em}.cd-timeline-title-container .timeline-date{font-style:italic;display:block;margin:3px 0 0 0}@keyframes cd-reveal-image{0%{opacity:0;transform:scale(.5)}60%{opacity:1;transform:scale(1.2)}100%{transform:scale(1)}}@keyframes te-slide-in-left{0%{opacity:0;transform:translateX(-100px)}60%{opacity:1;transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes te-slide-in-right{0%{opacity:0;transform:translateX(100px)}60%{opacity:1;transform:translateX(-20px)}100%{transform:translateX(0)}}.cd-timeline-icon-link,.cd-timeline-icon-link:hover{color:transparent;margin:0;box-shadow:none;-webkit-box-shadow:none;text-decoration:none}#cd-timeline span.fa{color:#fff;font-size:23px;display:block;text-align:center;line-height:52px}.cd-timeline-content::before{content:'';position:absolute;top:16px;right:100%;height:0;width:0;border:12px solid transparent}@media only screen and (min-width:822px){#cd-timeline{margin:3.5em 0}#cd-timeline::before{left:50%;margin-left:-2px}#cd-timeline span.fa{font-size:25px;line-height:63px;height:100%}.cd-timeline-block:first-child{margin-top:0}.cd-timeline-block:last-child{margin-bottom:0}.cd-timeline-img{width:60px;height:60px;left:50%;margin-left:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}.cd-timeline-img span.year{display:inline-block;width:100%;height:100%;line-height:60px;text-align:center}.cssanimations .cd-timeline-img.is-hidden{visibility:hidden}.cssanimations .cd-timeline-img.bounce-in{visibility:visible;animation:cd-reveal-image .6s}.cd-container{width:100%}.cd-timeline-content{margin-left:0;top:8px;padding:1.6em;width:42.5%;background:#efefef}.cd-timeline-content::before{top:12px;left:100%;border-color:transparent transparent transparent #efefef}.cd-timeline-content .cd-date{position:absolute;width:100%;left:125%;top:15px}.cd-timeline-block:nth-child(even) .cd-timeline-content{float:right}.cd-timeline-block:nth-child(even) .cd-timeline-content::before{top:12px;left:auto;right:100%;border-color:transparent}.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{left:auto;right:125%;text-align:right}.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}.cssanimations .cd-timeline-content.bounce-in{visibility:visible;animation:te-slide-in-left .6s}.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in{animation:te-slide-in-right .6s}}body.single-te_announcements .entry-meta{display:inline-block}body.single-te_announcements .timeline-express-content-area{width:100%}body.single-te_announcements .timeline-express-main{max-width:960px}body.single-te_announcements .announcement-banner-image{width:auto}body.single-te_announcements .timeline-express-single-page-announcement-date{display:block;margin:.5em 0;font-style:italic}body.single-te_announcements .timeline-express-single-page-content{margin:.5em 0 1em 0}body.single-te_announcements nav.navigation.post-navigation{display:none}body.single-te_announcements .content-area.twentyfifteen article.te_announcements .entry-header h1{margin-top:0}
|
lib/public/js/min/timeline-express.min.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
-
* @Version 1.
|
6 |
-
* @Build 12-
|
7 |
*/
|
8 |
jQuery(document).ready(function(){window.dispatchEvent(new CustomEvent("timelineLayoutStart")),jQuery("html").addClass("cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions");var e=jQuery(".cd-timeline-block");e.each(function(){timeline_express_data.animation_disabled||jQuery(this).offset().top>jQuery(window).scrollTop()+.75*jQuery(window).height()&&jQuery(this).find(".cd-timeline-img, .cd-timeline-content").addClass("is-hidden")}),timeline_express_data.animation_disabled||jQuery(window).on("scroll",function(){e.each(function(){jQuery(this).offset().top<=jQuery(window).scrollTop()+.75*jQuery(window).height()&&jQuery(this).find(".cd-timeline-img").hasClass("is-hidden")&&jQuery(this).find(".cd-timeline-img, .cd-timeline-content").removeClass("is-hidden").addClass("bounce-in")})}),window.dispatchEvent(new CustomEvent("timelineLayoutComplete"))});
|
2 |
* @Plugin Timeline Express
|
3 |
* @Author Code Parrots
|
4 |
* @Site https://www.wp-timelineexpress.com
|
5 |
+
* @Version 1.8.0
|
6 |
+
* @Build 12-15-2018
|
7 |
*/
|
8 |
jQuery(document).ready(function(){window.dispatchEvent(new CustomEvent("timelineLayoutStart")),jQuery("html").addClass("cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions");var e=jQuery(".cd-timeline-block");e.each(function(){timeline_express_data.animation_disabled||jQuery(this).offset().top>jQuery(window).scrollTop()+.75*jQuery(window).height()&&jQuery(this).find(".cd-timeline-img, .cd-timeline-content").addClass("is-hidden")}),timeline_express_data.animation_disabled||jQuery(window).on("scroll",function(){e.each(function(){jQuery(this).offset().top<=jQuery(window).scrollTop()+.75*jQuery(window).height()&&jQuery(this).find(".cd-timeline-img").hasClass("is-hidden")&&jQuery(this).find(".cd-timeline-img, .cd-timeline-content").removeClass("is-hidden").addClass("bounce-in")})}),window.dispatchEvent(new CustomEvent("timelineLayoutComplete"))});
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: codeparrots, eherman24
|
|
3 |
Tags: timeline, responsive, vertical, animated, company, history, font awesome, events, calendar, scroll, dates, milestone
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.0
|
6 |
-
Stable tag: 1.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Timeline Express creates a beautiful vertical animated and responsive timeline of posts, in chronological order.
|
@@ -365,12 +365,19 @@ The above example will load font awesome version 4.4.0 instead of the current st
|
|
365 |
|
366 |
1. Timeline Express - Announcement Creation Screen
|
367 |
2. Timeline Express - Admin Announcement Management
|
368 |
-
3. Timeline Express -
|
369 |
-
4. Timeline Express -
|
370 |
-
5. Timeline Express -
|
|
|
|
|
|
|
371 |
|
372 |
== Changelog ==
|
373 |
|
|
|
|
|
|
|
|
|
374 |
= 1.7.4 - December 10th, 2018 =
|
375 |
- **New:** Disable the block editor for announcements.
|
376 |
- **New:** Introduce new filters for better control over caching.
|
3 |
Tags: timeline, responsive, vertical, animated, company, history, font awesome, events, calendar, scroll, dates, milestone
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.0
|
6 |
+
Stable tag: 1.8.0
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Timeline Express creates a beautiful vertical animated and responsive timeline of posts, in chronological order.
|
365 |
|
366 |
1. Timeline Express - Announcement Creation Screen
|
367 |
2. Timeline Express - Admin Announcement Management
|
368 |
+
3. Timeline Express - Timeline Content Block
|
369 |
+
4. Timeline Express - Timeline Content Block Controls
|
370 |
+
5. Timeline Express - Timeline Content Block Demo
|
371 |
+
6. Timeline Express - Frontend Timeline Layout
|
372 |
+
7. Timeline Express - Responsive Layout (mobile devices)
|
373 |
+
8. Timeline Express - Admin Settings Page
|
374 |
|
375 |
== Changelog ==
|
376 |
|
377 |
+
= 1.8.0 - December 15th, 2018 =
|
378 |
+
- **New:** Introduce new Timeline content block (inside of the widget content blocks).
|
379 |
+
- **Tweak:** Remove unused jquery masonry script enqueue.
|
380 |
+
|
381 |
= 1.7.4 - December 10th, 2018 =
|
382 |
- **New:** Disable the block editor for announcements.
|
383 |
- **New:** Introduce new filters for better control over caching.
|
timeline-express.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Timeline Express
|
5 |
Plugin URI: https://www.wp-timelineexpress.com
|
6 |
Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
|
7 |
-
Version: 1.
|
8 |
Author: Code Parrots
|
9 |
Text Domain: timeline-express
|
10 |
Author URI: http://www.codeparrots.com
|
4 |
Plugin Name: Timeline Express
|
5 |
Plugin URI: https://www.wp-timelineexpress.com
|
6 |
Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
|
7 |
+
Version: 1.8.0
|
8 |
Author: Code Parrots
|
9 |
Text Domain: timeline-express
|
10 |
Author URI: http://www.codeparrots.com
|