Version Description
- 23-08-2021 =
- Fix: Animated text UTF8 characters splitting
- Fix: Typography issue in post block, category list, post terms, team, and nav menu
- Fix: Typography gradient color in post title
Download this release
Release Info
Developer | jegstudio |
Plugin | Jeg Elementor Kit |
Version | 1.11.3 |
Comparing to | |
See all releases |
Code changes from version 1.11.2 to 1.11.3
- assets/dev/js/accordion.js +0 -49
- assets/dev/js/animated-text.js +0 -133
- assets/dev/js/client-logo.js +0 -79
- assets/dev/js/countdown.js +0 -111
- assets/dev/js/fun-fact.js +0 -64
- assets/dev/js/gallery.js +0 -192
- assets/dev/js/mailchimp.js +0 -74
- assets/dev/js/nav-menu.js +0 -118
- assets/dev/js/off-canvas.js +0 -54
- assets/dev/js/pie-chart.js +0 -171
- assets/dev/js/portfolio-gallery.js +0 -92
- assets/dev/js/post-pagination.js +0 -167
- assets/dev/js/progress-bar.js +0 -65
- assets/dev/js/search.js +0 -45
- assets/dev/js/tabs.js +0 -44
- assets/dev/js/team.js +0 -60
- assets/dev/js/testimonials.js +0 -84
- assets/dev/js/video-button.js +0 -87
- assets/dev/scss/admin/dashboard.scss +0 -398
- assets/dev/scss/admin/editor.scss +0 -234
- assets/dev/scss/elements/accordion.scss +0 -142
- assets/dev/scss/elements/animated-text.scss +0 -444
- assets/dev/scss/elements/button.scss +0 -33
- assets/dev/scss/elements/category-list.scss +0 -33
- assets/dev/scss/elements/client-logo.scss +0 -651
- assets/dev/scss/elements/contact-form-7.scss +0 -46
- assets/dev/scss/elements/countdown.scss +0 -70
- assets/dev/scss/elements/dual-button.scss +0 -64
- assets/dev/scss/elements/feature-list.scss +0 -165
- assets/dev/scss/elements/fun-fact.scss +0 -58
- assets/dev/scss/elements/gallery.scss +0 -560
- assets/dev/scss/elements/heading.scss +0 -158
- assets/dev/scss/elements/icon-box.scss +0 -174
- assets/dev/scss/elements/image-box.scss +0 -104
- assets/dev/scss/elements/mailchimp.scss +0 -141
- assets/dev/scss/elements/main.scss +0 -345
- assets/dev/scss/elements/nav-menu.scss +0 -311
- assets/dev/scss/elements/off-canvas.scss +0 -153
- assets/dev/scss/elements/pie-chart.scss +0 -75
- assets/dev/scss/elements/portfolio-gallery.scss +0 -110
- assets/dev/scss/elements/post-author.scss +0 -5
- assets/dev/scss/elements/post-block.scss +0 -328
- assets/dev/scss/elements/post-date.scss +0 -5
- assets/dev/scss/elements/post-excerpt.scss +0 -5
- assets/dev/scss/elements/post-list.scss +0 -74
- assets/dev/scss/elements/post-terms.scss +0 -10
- assets/dev/scss/elements/post-title.scss +0 -5
- assets/dev/scss/elements/progress-bar.scss +0 -275
- assets/dev/scss/elements/search.scss +0 -84
- assets/dev/scss/elements/social-share.scss +0 -26
- assets/dev/scss/elements/tabs.scss +0 -175
- assets/dev/scss/elements/team.scss +0 -497
- assets/dev/scss/elements/testimonials.scss +0 -730
- assets/dev/scss/elements/video-button.scss +0 -43
- assets/dev/scss/helpers/_animation.scss +0 -1165
- assets/dev/scss/helpers/_mixin.scss +0 -103
- assets/dev/scss/helpers/_variable.scss +0 -79
- assets/js/tiny-slider/tiny-slider.css +0 -0
- class/elements/options/class-category-list-option.php +1 -1
- class/elements/options/class-nav-menu-option.php +16 -16
- class/elements/options/class-post-block-option.php +4 -4
- class/elements/options/class-post-terms-option.php +1 -1
- class/elements/options/class-post-title-option.php +1 -1
- class/elements/options/class-team-option.php +3 -1
- class/elements/views/class-animated-text-view.php +5 -3
- jeg-elementor-kit.php +4 -4
- languages/jeg-elementor-kit.pot +68 -68
- readme.txt +39 -37
assets/dev/js/accordion.js
DELETED
@@ -1,49 +0,0 @@
|
|
1 |
-
class JKitAccordion extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-accordion',
|
6 |
-
cards: '.card-wrapper'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$cards: this.$element.find(selectors.cards),
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onClick()
|
21 |
-
}
|
22 |
-
|
23 |
-
onClick() {
|
24 |
-
this.elements.$cards.each(function() {
|
25 |
-
jQuery(this).on('click', function(e) {
|
26 |
-
e.preventDefault()
|
27 |
-
if (jQuery(this).hasClass('expand')) {
|
28 |
-
jQuery(this).find('.card-expand').slideUp()
|
29 |
-
jQuery(this).removeClass('expand')
|
30 |
-
} else {
|
31 |
-
jQuery(this).parent().find('.card-expand').slideUp()
|
32 |
-
jQuery(this).parent().find('.card-wrapper').removeClass('expand')
|
33 |
-
jQuery(this).addClass('expand')
|
34 |
-
jQuery(this).find('.card-expand').slideDown()
|
35 |
-
}
|
36 |
-
})
|
37 |
-
})
|
38 |
-
}
|
39 |
-
}
|
40 |
-
|
41 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
42 |
-
const addHandler = ($element) => {
|
43 |
-
elementorFrontend.elementsHandler.addHandler(JKitAccordion, {
|
44 |
-
$element,
|
45 |
-
});
|
46 |
-
};
|
47 |
-
|
48 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_accordion.default', addHandler);
|
49 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/animated-text.js
DELETED
@@ -1,133 +0,0 @@
|
|
1 |
-
class JKitAnimatedText extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-animated-text',
|
6 |
-
dynamic: '.dynamic-wrapper'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$dynamic: this.$element.find(selectors.dynamic)
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onRenderElement()
|
21 |
-
}
|
22 |
-
|
23 |
-
onRenderElement() {
|
24 |
-
const animation = this.elements.$wrapper.data('style');
|
25 |
-
|
26 |
-
if ('rotating' == animation) {
|
27 |
-
const rotate = this.elements.$wrapper.data('rotate'),
|
28 |
-
dynamic_text = this.elements.$dynamic.find('.dynamic-text');
|
29 |
-
|
30 |
-
if (dynamic_text.length > 0) {
|
31 |
-
const firstText = dynamic_text.first();
|
32 |
-
|
33 |
-
if (['typing', 'swirl', 'blinds', 'wave'].includes(rotate)) {
|
34 |
-
this.animateText(firstText, this.getNextText(firstText));
|
35 |
-
} else {
|
36 |
-
this.showText(firstText, this.getNextText(firstText));
|
37 |
-
}
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
41 |
-
|
42 |
-
animateText(text, nextText) {
|
43 |
-
this.elements.$dynamic.removeClass('typing-delete');
|
44 |
-
text.addClass('show-text');
|
45 |
-
this.elements.$dynamic.removeClass('cursor-blink');
|
46 |
-
this.animateLetter(text.find('.dynamic-text-letter').first(), text, nextText);
|
47 |
-
}
|
48 |
-
|
49 |
-
animateLetter(letter, text, nextText) {
|
50 |
-
const $this = this,
|
51 |
-
letter_speed = this.elements.$wrapper.data('letter-speed');
|
52 |
-
letter.addClass('show-letter');
|
53 |
-
|
54 |
-
setTimeout(function() {
|
55 |
-
if (letter.is(':last-child')) {
|
56 |
-
$this.hideText(text, nextText);
|
57 |
-
} else {
|
58 |
-
$this.animateLetter(letter.next(), text, nextText);
|
59 |
-
}
|
60 |
-
}, letter_speed);
|
61 |
-
}
|
62 |
-
|
63 |
-
getNextText(text) {
|
64 |
-
return text.is(':last-child') ? this.elements.$dynamic.find('.dynamic-text').first() : text.next();
|
65 |
-
}
|
66 |
-
|
67 |
-
hideText(text, nextText) {
|
68 |
-
const $this = this,
|
69 |
-
rotate = $this.elements.$wrapper.data('rotate'),
|
70 |
-
delay = $this.elements.$wrapper.data('delay');
|
71 |
-
this.elements.$dynamic.addClass('cursor-blink');
|
72 |
-
|
73 |
-
setTimeout(function() {
|
74 |
-
if ('typing' == rotate) {
|
75 |
-
const delay_delete = $this.elements.$wrapper.data('delay-delete');
|
76 |
-
$this.elements.$dynamic.addClass('typing-delete');
|
77 |
-
setTimeout(function() {
|
78 |
-
text.removeClass('show-text');
|
79 |
-
text.find('.dynamic-text-letter').removeClass('show-letter');
|
80 |
-
$this.animateText(nextText, $this.getNextText(nextText));
|
81 |
-
}, delay_delete);
|
82 |
-
} else {
|
83 |
-
text.removeClass('show-text');
|
84 |
-
text.find('.dynamic-text-letter').removeClass('show-letter');
|
85 |
-
$this.animateText(nextText, $this.getNextText(nextText));
|
86 |
-
}
|
87 |
-
}, delay);
|
88 |
-
}
|
89 |
-
|
90 |
-
showText(text, nextText) {
|
91 |
-
const $this = this,
|
92 |
-
delay = $this.elements.$wrapper.data('delay'),
|
93 |
-
rotate = $this.elements.$wrapper.data('rotate');
|
94 |
-
|
95 |
-
text.addClass('show-text');
|
96 |
-
|
97 |
-
if (rotate == 'clip') {
|
98 |
-
const clip_duration = $this.elements.$wrapper.data('clip-duration');
|
99 |
-
$this.elements.$dynamic.width(text.width() + 10);
|
100 |
-
$this.elements.$dynamic.animate({
|
101 |
-
width: 0
|
102 |
-
}, clip_duration / 2, function() {
|
103 |
-
text.removeClass('show-text');
|
104 |
-
nextText.addClass('show-text');
|
105 |
-
$this.elements.$dynamic.animate({
|
106 |
-
width: nextText.width() + 10
|
107 |
-
}, clip_duration / 2, function() {
|
108 |
-
setTimeout(function() {
|
109 |
-
text.removeClass('show-text');
|
110 |
-
$this.showText(nextText, $this.getNextText(nextText));
|
111 |
-
}, delay);
|
112 |
-
})
|
113 |
-
});
|
114 |
-
} else {
|
115 |
-
$this.elements.$dynamic.width(text.width());
|
116 |
-
setTimeout(function() {
|
117 |
-
text.removeClass('show-text');
|
118 |
-
$this.showText(nextText, $this.getNextText(nextText));
|
119 |
-
}, delay);
|
120 |
-
}
|
121 |
-
}
|
122 |
-
|
123 |
-
}
|
124 |
-
|
125 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
126 |
-
const addHandler = ($element) => {
|
127 |
-
elementorFrontend.elementsHandler.addHandler(JKitAnimatedText, {
|
128 |
-
$element,
|
129 |
-
});
|
130 |
-
};
|
131 |
-
|
132 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_animated_text.default', addHandler);
|
133 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/client-logo.js
DELETED
@@ -1,79 +0,0 @@
|
|
1 |
-
class JKitClientLogo extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-client-logo',
|
6 |
-
items: '.client-track',
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors');
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$items: this.$element.find(selectors.items),
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onLoadElement()
|
21 |
-
}
|
22 |
-
|
23 |
-
onLoadElement() {
|
24 |
-
this.loadCarousel()
|
25 |
-
}
|
26 |
-
|
27 |
-
loadCarousel() {
|
28 |
-
const id = this.elements.$wrapper.data('id'),
|
29 |
-
options = this.elements.$wrapper.data('settings'),
|
30 |
-
selectors = this.getSettings('selectors'),
|
31 |
-
attr = {
|
32 |
-
container: selectors.wrapper + '[data-id="' + id + '"] ' + selectors.items,
|
33 |
-
loop: true,
|
34 |
-
mouseDrag: true,
|
35 |
-
autoplay: options.autoplay,
|
36 |
-
autoplayTimeout: options.autoplay_speed,
|
37 |
-
autoplayHoverPause: options.autoplay_hover_pause,
|
38 |
-
navPosition: 'bottom',
|
39 |
-
controlsPosition: options.arrow_position,
|
40 |
-
controlsText: [options.navigation_left, options.navigation_right],
|
41 |
-
responsiveClass: true,
|
42 |
-
responsive: {
|
43 |
-
0: {
|
44 |
-
items: options.items_mobile,
|
45 |
-
gutter: options.margin_mobile
|
46 |
-
},
|
47 |
-
768: {
|
48 |
-
items: options.items_tablet,
|
49 |
-
gutter: options.margin_tablet
|
50 |
-
},
|
51 |
-
1025: {
|
52 |
-
items: options.items,
|
53 |
-
gutter: options.margin
|
54 |
-
}
|
55 |
-
}
|
56 |
-
}
|
57 |
-
|
58 |
-
tns(attr)
|
59 |
-
this.elements.$wrapper.find('button[data-action]').remove()
|
60 |
-
|
61 |
-
if (!options.show_navigation) {
|
62 |
-
this.elements.$wrapper.find('.tns-controls').remove()
|
63 |
-
}
|
64 |
-
|
65 |
-
if (!options.show_dots) {
|
66 |
-
this.elements.$wrapper.find('.tns-nav').remove()
|
67 |
-
}
|
68 |
-
}
|
69 |
-
}
|
70 |
-
|
71 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
72 |
-
const addHandler = ($element) => {
|
73 |
-
elementorFrontend.elementsHandler.addHandler(JKitClientLogo, {
|
74 |
-
$element,
|
75 |
-
});
|
76 |
-
};
|
77 |
-
|
78 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_client_logo.default', addHandler);
|
79 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/countdown.js
DELETED
@@ -1,111 +0,0 @@
|
|
1 |
-
class JKitCountdown extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-countdown',
|
6 |
-
days: '.timer-container.timer-days',
|
7 |
-
hours: '.timer-container.timer-hours',
|
8 |
-
minutes: '.timer-container.timer-minutes',
|
9 |
-
seconds: '.timer-container.timer-seconds',
|
10 |
-
counts: '.timer-container .timer-count'
|
11 |
-
},
|
12 |
-
};
|
13 |
-
}
|
14 |
-
|
15 |
-
getDefaultElements() {
|
16 |
-
const selectors = this.getSettings('selectors');
|
17 |
-
return {
|
18 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
19 |
-
$days: this.$element.find(selectors.days),
|
20 |
-
$hours: this.$element.find(selectors.hours),
|
21 |
-
$minutes: this.$element.find(selectors.minutes),
|
22 |
-
$seconds: this.$element.find(selectors.seconds),
|
23 |
-
$counts: this.$element.find(selectors.counts),
|
24 |
-
};
|
25 |
-
}
|
26 |
-
|
27 |
-
bindEvents() {
|
28 |
-
this.onRender()
|
29 |
-
}
|
30 |
-
|
31 |
-
onRender() {
|
32 |
-
const $this = this,
|
33 |
-
date = new Date($this.elements.$wrapper.data('due-date')).getTime();
|
34 |
-
|
35 |
-
const x = setInterval(function() {
|
36 |
-
const now = new Date(),
|
37 |
-
distance = date - now,
|
38 |
-
days = Math.floor(distance / (1000 * 60 * 60 * 24)),
|
39 |
-
hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)),
|
40 |
-
minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)),
|
41 |
-
seconds = Math.floor((distance % (1000 * 60)) / 1000);
|
42 |
-
|
43 |
-
$this.elements.$counts.removeClass('timer-loading');
|
44 |
-
|
45 |
-
if (distance >= 0) {
|
46 |
-
if ($this.elements.$days) {
|
47 |
-
$this.elements.$days.find('.timer-count').text(days);
|
48 |
-
}
|
49 |
-
|
50 |
-
if ($this.elements.$hours) {
|
51 |
-
$this.elements.$hours.find('.timer-count').text(hours);
|
52 |
-
}
|
53 |
-
|
54 |
-
if ($this.elements.$minutes) {
|
55 |
-
$this.elements.$minutes.find('.timer-count').text(minutes);
|
56 |
-
}
|
57 |
-
|
58 |
-
if ($this.elements.$seconds) {
|
59 |
-
$this.elements.$seconds.find('.timer-count').text(seconds);
|
60 |
-
}
|
61 |
-
} else {
|
62 |
-
clearInterval(x);
|
63 |
-
$this.elements.$wrapper.addClass('countdown-expired');
|
64 |
-
$this.onExpired();
|
65 |
-
}
|
66 |
-
}, 1000);
|
67 |
-
}
|
68 |
-
|
69 |
-
onExpired() {
|
70 |
-
const $this = this,
|
71 |
-
wrapper = $this.elements.$wrapper,
|
72 |
-
type = wrapper.data('expired-type');
|
73 |
-
|
74 |
-
if (type == 'message') {
|
75 |
-
const title = wrapper.data('expired-title'),
|
76 |
-
content = wrapper.data('expired-content');
|
77 |
-
|
78 |
-
wrapper.html(`
|
79 |
-
<div class="expire-message">
|
80 |
-
<span class="expire-title">${title}</span>
|
81 |
-
<span class="expire-content">${content}</span>
|
82 |
-
</div>
|
83 |
-
`);
|
84 |
-
} else if (type == 'redirect') {
|
85 |
-
const link = wrapper.data('redirect-link');
|
86 |
-
|
87 |
-
if ((window.self !== window.top)) {
|
88 |
-
wrapper.html(
|
89 |
-
`<div class="expire-message">
|
90 |
-
<span class="expire-content">${iframe_content}</span>
|
91 |
-
</div>
|
92 |
-
`);
|
93 |
-
} else {
|
94 |
-
location.href = link;
|
95 |
-
}
|
96 |
-
} else if (type == 'template') {
|
97 |
-
const template = wrapper.data('template');
|
98 |
-
wrapper.html(template);
|
99 |
-
}
|
100 |
-
}
|
101 |
-
}
|
102 |
-
|
103 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
104 |
-
const addHandler = ($element) => {
|
105 |
-
elementorFrontend.elementsHandler.addHandler(JKitCountdown, {
|
106 |
-
$element,
|
107 |
-
});
|
108 |
-
};
|
109 |
-
|
110 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_countdown.default', addHandler);
|
111 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/fun-fact.js
DELETED
@@ -1,64 +0,0 @@
|
|
1 |
-
class JKitFunFact extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-fun-fact',
|
6 |
-
number: '.number'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors');
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$number: this.$element.find(selectors.number),
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onLoadElement()
|
21 |
-
}
|
22 |
-
|
23 |
-
onLoadElement() {
|
24 |
-
this.countNumber()
|
25 |
-
jQuery(window).on('scroll', this.countNumber.bind(this))
|
26 |
-
}
|
27 |
-
|
28 |
-
countNumber() {
|
29 |
-
const el = this.elements.$number
|
30 |
-
|
31 |
-
if (this.onScreen() && !el.hasClass('loaded')) {
|
32 |
-
el.prop('Counter', 0).animate({
|
33 |
-
Counter: el.data('value')
|
34 |
-
}, {
|
35 |
-
duration: el.data('animation-duration'),
|
36 |
-
easing: 'swing',
|
37 |
-
step: function(now) {
|
38 |
-
el.text(Math.ceil(now).toLocaleString())
|
39 |
-
},
|
40 |
-
complete: function() {
|
41 |
-
el.text(el.data('value').toLocaleString())
|
42 |
-
}
|
43 |
-
})
|
44 |
-
el.addClass('loaded')
|
45 |
-
}
|
46 |
-
}
|
47 |
-
|
48 |
-
onScreen() {
|
49 |
-
const windowBottomEdge = jQuery(window).scrollTop() + jQuery(window).height(),
|
50 |
-
elementTopEdge = this.elements.$wrapper.offset().top
|
51 |
-
|
52 |
-
return elementTopEdge <= windowBottomEdge;
|
53 |
-
}
|
54 |
-
}
|
55 |
-
|
56 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
57 |
-
const addHandler = ($element) => {
|
58 |
-
elementorFrontend.elementsHandler.addHandler(JKitFunFact, {
|
59 |
-
$element,
|
60 |
-
});
|
61 |
-
};
|
62 |
-
|
63 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_fun_fact.default', addHandler);
|
64 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/gallery.js
DELETED
@@ -1,192 +0,0 @@
|
|
1 |
-
class JKitGallery extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-gallery',
|
6 |
-
grid: '.gallery-items',
|
7 |
-
active_label: '.jkit-gallery-control.active',
|
8 |
-
filter: '.jkit-gallery-control',
|
9 |
-
filter_button: '#search-filter-trigger',
|
10 |
-
filter_label: '#search-filter-trigger span',
|
11 |
-
filter_list: '.search-filter-controls',
|
12 |
-
filter_form: '#jkit-gallery-search-box-input',
|
13 |
-
load_more: '.jkit-gallery-load-more',
|
14 |
-
},
|
15 |
-
};
|
16 |
-
}
|
17 |
-
|
18 |
-
getDefaultElements() {
|
19 |
-
const selectors = this.getSettings('selectors')
|
20 |
-
return {
|
21 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
22 |
-
$grid: this.$element.find(selectors.grid),
|
23 |
-
$active_label: this.$element.find(selectors.active_label),
|
24 |
-
$filter: this.$element.find(selectors.filter),
|
25 |
-
$filter_button: this.$element.find(selectors.filter_button),
|
26 |
-
$filter_label: this.$element.find(selectors.filter_label),
|
27 |
-
$filter_list: this.$element.find(selectors.filter_list),
|
28 |
-
$filter_form: this.$element.find(selectors.filter_form),
|
29 |
-
$load_more: this.$element.find(selectors.load_more),
|
30 |
-
};
|
31 |
-
}
|
32 |
-
|
33 |
-
bindEvents() {
|
34 |
-
const $this = this,
|
35 |
-
layout = $this.elements.$wrapper.data('grid') == 'masonry' ? 'masonry' : 'fitRows',
|
36 |
-
duration = parseFloat(($this.elements.$wrapper.data('animation-duration') / 1000).toFixed(2)).toString() + 's'
|
37 |
-
|
38 |
-
$this.grid = $this.elements.$grid.isotope({
|
39 |
-
itemSelector: '.gallery-item-wrap',
|
40 |
-
layoutMode: layout,
|
41 |
-
transitionDuration: duration,
|
42 |
-
})
|
43 |
-
$this.grid.imagesLoaded().progress(function() {
|
44 |
-
$this.grid.isotope('layout')
|
45 |
-
})
|
46 |
-
|
47 |
-
$this.onInitGallery()
|
48 |
-
$this.onClickFilterButton()
|
49 |
-
$this.onClickLoadMoreButton()
|
50 |
-
$this.onFormChange()
|
51 |
-
}
|
52 |
-
|
53 |
-
onInitGallery() {
|
54 |
-
const $this = this
|
55 |
-
|
56 |
-
$this.elements.$filter.each(function() {
|
57 |
-
jQuery(this).on('click', function(e) {
|
58 |
-
e.preventDefault()
|
59 |
-
const selectors = $this.getSettings('selectors'),
|
60 |
-
filter_value = jQuery(this).data('filter'),
|
61 |
-
filter_label = $this.elements.$filter_label,
|
62 |
-
filter_list = $this.elements.$filter_list,
|
63 |
-
filter_button = $this.elements.$filter_button,
|
64 |
-
filter_form = $this.elements.$filter_form,
|
65 |
-
filter = $this.elements.$filter
|
66 |
-
|
67 |
-
filter.removeClass('active')
|
68 |
-
jQuery(this).addClass('active')
|
69 |
-
|
70 |
-
$this.elements.$active_label = $this.$element.find(selectors.active_label)
|
71 |
-
$this.grid.isotope({
|
72 |
-
filter: function() {
|
73 |
-
const class_filter = filter_value !== '*' ? filter_value.substring(1) : '*',
|
74 |
-
class_list = jQuery(this).attr('class').split(/\s+/)
|
75 |
-
|
76 |
-
let check_filter = false
|
77 |
-
|
78 |
-
if (filter_button.length > 0) {
|
79 |
-
const text = filter_form.val(),
|
80 |
-
name = jQuery(this).find('.item-title').text(),
|
81 |
-
content = jQuery(this).find('.item-content').text()
|
82 |
-
|
83 |
-
check_filter = class_filter != '*' ?
|
84 |
-
(name.toLowerCase().includes(text.toLowerCase()) || content.toLowerCase().includes(text.toLowerCase())) && class_list.includes(class_filter) :
|
85 |
-
name.toLowerCase().includes(text.toLowerCase()) || content.toLowerCase().includes(text.toLowerCase())
|
86 |
-
} else {
|
87 |
-
check_filter = class_filter != '*' ? class_list.includes(class_filter) : true
|
88 |
-
}
|
89 |
-
|
90 |
-
return check_filter
|
91 |
-
}
|
92 |
-
})
|
93 |
-
|
94 |
-
if (filter_button.length > 0) {
|
95 |
-
filter_label.text(jQuery(this).text())
|
96 |
-
filter_list.removeClass('open-controls')
|
97 |
-
}
|
98 |
-
})
|
99 |
-
})
|
100 |
-
}
|
101 |
-
|
102 |
-
onClickFilterButton() {
|
103 |
-
const $this = this
|
104 |
-
|
105 |
-
$this.elements.$filter_button.on('click', function(e) {
|
106 |
-
e.preventDefault()
|
107 |
-
const filter_list = $this.elements.$filter_list
|
108 |
-
|
109 |
-
if (filter_list.hasClass('open-controls')) {
|
110 |
-
filter_list.removeClass('open-controls')
|
111 |
-
} else {
|
112 |
-
filter_list.addClass('open-controls')
|
113 |
-
}
|
114 |
-
})
|
115 |
-
}
|
116 |
-
|
117 |
-
onFormChange() {
|
118 |
-
const $this = this,
|
119 |
-
filter_form = $this.elements.$filter_form
|
120 |
-
|
121 |
-
if (filter_form !== undefined) {
|
122 |
-
filter_form.on('change paste keyup', function() {
|
123 |
-
const text = jQuery(this).val()
|
124 |
-
|
125 |
-
$this.grid.isotope({
|
126 |
-
filter: function() {
|
127 |
-
const name = jQuery(this).find('.item-title').text(),
|
128 |
-
content = jQuery(this).find('.item-content').text(),
|
129 |
-
class_list = jQuery(this).attr('class').split(/\s+/),
|
130 |
-
class_filter = $this.elements.$active_label.data('filter') !== '*' ? $this.elements.$active_label.data('filter').substring(1) : '*'
|
131 |
-
|
132 |
-
let check_filter = false
|
133 |
-
|
134 |
-
if (class_filter == '*') {
|
135 |
-
check_filter = name.toLowerCase().includes(text.toLowerCase()) || content.toLowerCase().includes(text.toLowerCase())
|
136 |
-
} else {
|
137 |
-
check_filter = (name.toLowerCase().includes(text.toLowerCase()) || content.toLowerCase().includes(text.toLowerCase())) && class_list.includes(class_filter)
|
138 |
-
}
|
139 |
-
|
140 |
-
return check_filter
|
141 |
-
}
|
142 |
-
})
|
143 |
-
})
|
144 |
-
}
|
145 |
-
}
|
146 |
-
|
147 |
-
onClickLoadMoreButton() {
|
148 |
-
const $this = this,
|
149 |
-
items = $this.elements.$wrapper.data('items')
|
150 |
-
|
151 |
-
$this.elements.$load_more.on('click', function(e) {
|
152 |
-
e.preventDefault()
|
153 |
-
|
154 |
-
const current_loaded = parseInt($this.elements.$wrapper.attr('data-current-loaded')),
|
155 |
-
count_items = parseInt($this.elements.$wrapper.attr('data-count-items')),
|
156 |
-
load_more = parseInt($this.elements.$wrapper.attr('data-load-more')),
|
157 |
-
no_more_text = $this.elements.$wrapper.attr('data-no-more')
|
158 |
-
|
159 |
-
if (count_items > current_loaded) {
|
160 |
-
if ((count_items - load_more - current_loaded) > 0) {
|
161 |
-
const items_append = [...items].splice(current_loaded, load_more)
|
162 |
-
$this.grid.append(items_append).isotope('reloadItems').isotope()
|
163 |
-
$this.grid.imagesLoaded().progress(function() {
|
164 |
-
$this.grid.isotope('layout')
|
165 |
-
})
|
166 |
-
$this.elements.$wrapper.attr('data-current-loaded', current_loaded + load_more)
|
167 |
-
} else {
|
168 |
-
const items_append = [...items].splice(current_loaded, count_items - current_loaded)
|
169 |
-
$this.grid.append(items_append).isotope('reloadItems').isotope()
|
170 |
-
$this.grid.imagesLoaded().progress(function() {
|
171 |
-
$this.grid.isotope('layout')
|
172 |
-
})
|
173 |
-
$this.elements.$wrapper.attr('data-current-loaded', count_items)
|
174 |
-
$this.elements.$load_more.find('.load-more-text').text(no_more_text)
|
175 |
-
setTimeout(function() {
|
176 |
-
$this.elements.$load_more.fadeOut('slow');
|
177 |
-
}, 600);
|
178 |
-
}
|
179 |
-
}
|
180 |
-
})
|
181 |
-
}
|
182 |
-
}
|
183 |
-
|
184 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
185 |
-
const addHandler = ($element) => {
|
186 |
-
elementorFrontend.elementsHandler.addHandler(JKitGallery, {
|
187 |
-
$element,
|
188 |
-
});
|
189 |
-
};
|
190 |
-
|
191 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_gallery.default', addHandler);
|
192 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/mailchimp.js
DELETED
@@ -1,74 +0,0 @@
|
|
1 |
-
class JKitMailchimp extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-mailchimp',
|
6 |
-
form: '.jkit-mailchimp-form'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$form: this.$element.find(selectors.form)
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onSubmit()
|
21 |
-
}
|
22 |
-
|
23 |
-
onSubmit() {
|
24 |
-
this.elements.$form.on('submit', function(e) {
|
25 |
-
e.preventDefault();
|
26 |
-
const message = jQuery(this).find('.jkit-mailchimp-message');
|
27 |
-
const error_message = jQuery(this).data('error-message');
|
28 |
-
const success_message = jQuery(this).data('success-message');
|
29 |
-
const data = {
|
30 |
-
first_name: jQuery(this).find('input[name="first-name"]').val(),
|
31 |
-
last_name: jQuery(this).find('input[name="last-name"]').val(),
|
32 |
-
phone: jQuery(this).find('input[name="phone"]').val(),
|
33 |
-
email: jQuery(this).find('input[name="email"]').val(),
|
34 |
-
list: jQuery(this).data('listed')
|
35 |
-
}
|
36 |
-
|
37 |
-
message.removeClass('error success');
|
38 |
-
|
39 |
-
jQuery.ajax({
|
40 |
-
type: 'POST',
|
41 |
-
url: jkit_ajax_url,
|
42 |
-
data: {
|
43 |
-
data: data,
|
44 |
-
action: 'jkit_element_ajax_jkit_mailchimp',
|
45 |
-
},
|
46 |
-
dataType: 'json',
|
47 |
-
encode: true
|
48 |
-
})
|
49 |
-
.done(function(data) {
|
50 |
-
if (data.status_code >= 400) {
|
51 |
-
message.addClass('error');
|
52 |
-
message.text(data.message);
|
53 |
-
} else {
|
54 |
-
message.addClass('success');
|
55 |
-
message.text(success_message);
|
56 |
-
}
|
57 |
-
})
|
58 |
-
.fail(function() {
|
59 |
-
message.addClass('error');
|
60 |
-
message.text(error_message);
|
61 |
-
});
|
62 |
-
});
|
63 |
-
}
|
64 |
-
}
|
65 |
-
|
66 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
67 |
-
const addHandler = ($element) => {
|
68 |
-
elementorFrontend.elementsHandler.addHandler(JKitMailchimp, {
|
69 |
-
$element,
|
70 |
-
});
|
71 |
-
};
|
72 |
-
|
73 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_mailchimp.default', addHandler);
|
74 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/nav-menu.js
DELETED
@@ -1,118 +0,0 @@
|
|
1 |
-
class JKitNavMenu extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-nav-menu',
|
6 |
-
container: '.jkit-menu-wrapper',
|
7 |
-
open_toggle: '.jkit-hamburger-menu',
|
8 |
-
close_toggle: '.jkit-close-menu',
|
9 |
-
dropdown_toggle: 'li.menu-item-has-children > a i',
|
10 |
-
menu_dropdown: 'li.menu-item-has-children > a',
|
11 |
-
},
|
12 |
-
};
|
13 |
-
}
|
14 |
-
|
15 |
-
getDefaultElements() {
|
16 |
-
const selectors = this.getSettings('selectors')
|
17 |
-
return {
|
18 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
19 |
-
$container: this.$element.find(selectors.container),
|
20 |
-
$open_toggle: this.$element.find(selectors.open_toggle),
|
21 |
-
$close_toggle: this.$element.find(selectors.close_toggle),
|
22 |
-
$dropdown_toggle: this.$element.find(selectors.dropdown_toggle),
|
23 |
-
$menu_dropdown: this.$element.find(selectors.menu_dropdown),
|
24 |
-
};
|
25 |
-
}
|
26 |
-
|
27 |
-
bindEvents() {
|
28 |
-
this.onLoadElement()
|
29 |
-
}
|
30 |
-
|
31 |
-
onLoadElement() {
|
32 |
-
this.addBodyClass()
|
33 |
-
this.addDropdownIcon()
|
34 |
-
this.onToogleClick()
|
35 |
-
}
|
36 |
-
|
37 |
-
addBodyClass() {
|
38 |
-
if (this.elements.$wrapper.length > 0) {
|
39 |
-
jQuery('body').addClass('jkit-nav-menu-loaded')
|
40 |
-
}
|
41 |
-
}
|
42 |
-
|
43 |
-
addDropdownIcon() {
|
44 |
-
const $this = this,
|
45 |
-
indicator = $this.elements.$wrapper.data('item-indicator'),
|
46 |
-
dropdown = $this.elements.$menu_dropdown,
|
47 |
-
selectors = this.getSettings('selectors')
|
48 |
-
|
49 |
-
dropdown.each(function() {
|
50 |
-
if (jQuery(this).find('i').length == 0) {
|
51 |
-
jQuery(this).append(indicator)
|
52 |
-
}
|
53 |
-
})
|
54 |
-
|
55 |
-
$this.elements.$dropdown_toggle = this.$element.find(selectors.dropdown_toggle)
|
56 |
-
}
|
57 |
-
|
58 |
-
onToogleClick() {
|
59 |
-
const $this = this,
|
60 |
-
wrapper = $this.elements.$wrapper,
|
61 |
-
menu_dropdown = $this.elements.$menu_dropdown,
|
62 |
-
open_toggle = $this.elements.$open_toggle,
|
63 |
-
close_toggle = $this.elements.$close_toggle,
|
64 |
-
dropdown_toggle = $this.elements.$dropdown_toggle
|
65 |
-
|
66 |
-
open_toggle.on('click', function(e) {
|
67 |
-
e.preventDefault()
|
68 |
-
if (($this.elements.$container).hasClass('active')) {
|
69 |
-
$this.elements.$container.removeClass('active')
|
70 |
-
} else {
|
71 |
-
$this.elements.$container.addClass('active')
|
72 |
-
}
|
73 |
-
})
|
74 |
-
|
75 |
-
close_toggle.on('click', function(e) {
|
76 |
-
e.preventDefault()
|
77 |
-
$this.elements.$container.removeClass('active')
|
78 |
-
})
|
79 |
-
|
80 |
-
if (wrapper.hasClass('submenu-click-title')) {
|
81 |
-
menu_dropdown.each(function() {
|
82 |
-
jQuery(this).on('click', function(e) {
|
83 |
-
e.preventDefault()
|
84 |
-
const dropdown = jQuery(this).next()
|
85 |
-
|
86 |
-
if (dropdown.hasClass('dropdown-open')) {
|
87 |
-
dropdown.removeClass('dropdown-open')
|
88 |
-
} else {
|
89 |
-
dropdown.addClass('dropdown-open')
|
90 |
-
}
|
91 |
-
})
|
92 |
-
})
|
93 |
-
} else {
|
94 |
-
dropdown_toggle.each(function() {
|
95 |
-
jQuery(this).on('click', function(e) {
|
96 |
-
e.preventDefault()
|
97 |
-
const dropdown = jQuery(this).parents('a').next()
|
98 |
-
|
99 |
-
if (dropdown.hasClass('dropdown-open')) {
|
100 |
-
dropdown.removeClass('dropdown-open')
|
101 |
-
} else {
|
102 |
-
dropdown.addClass('dropdown-open')
|
103 |
-
}
|
104 |
-
})
|
105 |
-
})
|
106 |
-
}
|
107 |
-
}
|
108 |
-
}
|
109 |
-
|
110 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
111 |
-
const addHandler = ($element) => {
|
112 |
-
elementorFrontend.elementsHandler.addHandler(JKitNavMenu, {
|
113 |
-
$element,
|
114 |
-
});
|
115 |
-
};
|
116 |
-
|
117 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_nav_menu.default', addHandler);
|
118 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/off-canvas.js
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
class JKitOffCanvas extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-off-canvas',
|
6 |
-
sidebar: '.offcanvas-sidebar',
|
7 |
-
hamburger: '.offcanvas-sidebar-button',
|
8 |
-
close: '.offcanvas-close-button',
|
9 |
-
overlay: '.bg-overlay',
|
10 |
-
},
|
11 |
-
};
|
12 |
-
}
|
13 |
-
|
14 |
-
getDefaultElements() {
|
15 |
-
const selectors = this.getSettings('selectors');
|
16 |
-
return {
|
17 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
18 |
-
$sidebar: this.$element.find(selectors.sidebar),
|
19 |
-
$hamburger: this.$element.find(selectors.hamburger),
|
20 |
-
$close: this.$element.find(selectors.close),
|
21 |
-
$overlay: this.$element.find(selectors.overlay),
|
22 |
-
};
|
23 |
-
}
|
24 |
-
|
25 |
-
bindEvents() {
|
26 |
-
const $this = this;
|
27 |
-
|
28 |
-
$this.elements.$hamburger.on('click', function() {
|
29 |
-
if ($this.elements.$sidebar.hasClass('active')) {
|
30 |
-
$this.elements.$sidebar.removeClass('active');
|
31 |
-
} else {
|
32 |
-
$this.elements.$sidebar.addClass('active');
|
33 |
-
}
|
34 |
-
});
|
35 |
-
|
36 |
-
$this.elements.$close.on('click', function() {
|
37 |
-
$this.elements.$sidebar.removeClass('active');
|
38 |
-
});
|
39 |
-
|
40 |
-
$this.elements.$overlay.on('click', function() {
|
41 |
-
$this.elements.$sidebar.removeClass('active');
|
42 |
-
});
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
47 |
-
const addHandler = ($element) => {
|
48 |
-
elementorFrontend.elementsHandler.addHandler(JKitOffCanvas, {
|
49 |
-
$element,
|
50 |
-
});
|
51 |
-
};
|
52 |
-
|
53 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_off_canvas.default', addHandler);
|
54 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/pie-chart.js
DELETED
@@ -1,171 +0,0 @@
|
|
1 |
-
class JKitPieChart extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-pie-chart',
|
6 |
-
canvas_main: 'canvas.main-canvas',
|
7 |
-
canvas_bg: 'canvas.background-canvas',
|
8 |
-
number: '.pie-chart-content',
|
9 |
-
},
|
10 |
-
};
|
11 |
-
}
|
12 |
-
|
13 |
-
getDefaultElements() {
|
14 |
-
const selectors = this.getSettings('selectors')
|
15 |
-
return {
|
16 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
17 |
-
$canvas_main: this.$element.find(selectors.canvas_main),
|
18 |
-
$canvas_bg: this.$element.find(selectors.canvas_bg),
|
19 |
-
$number: this.$element.find(selectors.number),
|
20 |
-
};
|
21 |
-
}
|
22 |
-
|
23 |
-
bindEvents() {
|
24 |
-
this.animateChart()
|
25 |
-
jQuery(window).on('scroll', this.animateChart.bind(this))
|
26 |
-
|
27 |
-
if (this.elements.$wrapper.data('content-type') == 'percentage') {
|
28 |
-
this.countNumber()
|
29 |
-
jQuery(window).on('scroll', this.countNumber.bind(this))
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
animateChart() {
|
34 |
-
const $this = this,
|
35 |
-
canvas_main = $this.elements.$canvas_main,
|
36 |
-
canvas_bg = $this.elements.$canvas_bg
|
37 |
-
|
38 |
-
if (this.onScreen() && !canvas_main.hasClass('loaded')) {
|
39 |
-
const wrapper = $this.elements.$wrapper,
|
40 |
-
ctx_main = canvas_main.get(0).getContext('2d'),
|
41 |
-
ctx_bg = canvas_bg.get(0).getContext('2d'),
|
42 |
-
percent = wrapper.data('percent'),
|
43 |
-
cutout = wrapper.data('cutout'),
|
44 |
-
color_type = wrapper.data('color-type'),
|
45 |
-
color = wrapper.data('color'),
|
46 |
-
bg_color = wrapper.data('bg-color'),
|
47 |
-
gradient1 = wrapper.data('gradient1'),
|
48 |
-
gradient2 = wrapper.data('gradient2'),
|
49 |
-
animation_duration = wrapper.data('animation-duration'),
|
50 |
-
data_main = {
|
51 |
-
datasets: [{
|
52 |
-
data: [percent, 100 - percent],
|
53 |
-
backgroundColor: ["#80b1ff", 'transparent'],
|
54 |
-
hoverBackgroundColor: ["#80b1ff", 'transparent'],
|
55 |
-
borderWidth: 0,
|
56 |
-
}]
|
57 |
-
},
|
58 |
-
data_bg = {
|
59 |
-
datasets: [{
|
60 |
-
data: [100],
|
61 |
-
backgroundColor: ["#d1d1d1"],
|
62 |
-
hoverBackgroundColor: ["#d1d1d1"],
|
63 |
-
borderWidth: 0,
|
64 |
-
}]
|
65 |
-
},
|
66 |
-
options_main = {
|
67 |
-
animation: {
|
68 |
-
duration: animation_duration,
|
69 |
-
},
|
70 |
-
responsive: true,
|
71 |
-
cutoutPercentage: cutout,
|
72 |
-
title: {
|
73 |
-
display: false,
|
74 |
-
},
|
75 |
-
legend: {
|
76 |
-
display: false,
|
77 |
-
},
|
78 |
-
tooltips: {
|
79 |
-
enabled: false,
|
80 |
-
}
|
81 |
-
},
|
82 |
-
options_bg = {
|
83 |
-
animation: false,
|
84 |
-
responsive: true,
|
85 |
-
cutoutPercentage: cutout,
|
86 |
-
title: {
|
87 |
-
display: false,
|
88 |
-
},
|
89 |
-
legend: {
|
90 |
-
display: false,
|
91 |
-
},
|
92 |
-
tooltips: {
|
93 |
-
enabled: false,
|
94 |
-
}
|
95 |
-
}
|
96 |
-
|
97 |
-
if (color_type == 'normal') {
|
98 |
-
if (color !== '') {
|
99 |
-
data_main.datasets[0].backgroundColor[0] = color
|
100 |
-
data_main.datasets[0].hoverBackgroundColor[0] = color
|
101 |
-
}
|
102 |
-
} else if (color_type == 'gradient' && (gradient1 !== '' || gradient2 !== '')) {
|
103 |
-
const gradientFill = ctx_main.createLinearGradient(0, 0, 0, 170)
|
104 |
-
if (gradient1 !== '') {
|
105 |
-
gradientFill.addColorStop(0, gradient1)
|
106 |
-
}
|
107 |
-
if (gradient2 !== '') {
|
108 |
-
gradientFill.addColorStop(1, gradient2)
|
109 |
-
}
|
110 |
-
data_main.datasets[0].backgroundColor[0] = gradientFill
|
111 |
-
data_main.datasets[0].hoverBackgroundColor[0] = gradientFill
|
112 |
-
}
|
113 |
-
|
114 |
-
if (bg_color !== '') {
|
115 |
-
data_bg.datasets[0].backgroundColor[0] = bg_color
|
116 |
-
data_bg.datasets[0].hoverBackgroundColor[0] = bg_color
|
117 |
-
}
|
118 |
-
|
119 |
-
new Chart(ctx_main, {
|
120 |
-
type: 'doughnut',
|
121 |
-
data: data_main,
|
122 |
-
options: options_main,
|
123 |
-
})
|
124 |
-
|
125 |
-
new Chart(ctx_bg, {
|
126 |
-
type: 'doughnut',
|
127 |
-
data: data_bg,
|
128 |
-
options: options_bg,
|
129 |
-
})
|
130 |
-
|
131 |
-
canvas_main.addClass('loaded')
|
132 |
-
canvas_main.css('display', '')
|
133 |
-
canvas_bg.css('display', '')
|
134 |
-
}
|
135 |
-
}
|
136 |
-
|
137 |
-
countNumber() {
|
138 |
-
const number = this.elements.$number,
|
139 |
-
wrapper = this.elements.$wrapper
|
140 |
-
|
141 |
-
if (this.onScreen() && !number.hasClass('loaded')) {
|
142 |
-
number.prop('Counter', 0).animate({
|
143 |
-
Counter: wrapper.data('percent')
|
144 |
-
}, {
|
145 |
-
duration: wrapper.data('animation-duration'),
|
146 |
-
easing: 'swing',
|
147 |
-
step: function(now) {
|
148 |
-
number.text(Math.ceil(now).toString() + '%')
|
149 |
-
}
|
150 |
-
})
|
151 |
-
number.addClass('loaded')
|
152 |
-
}
|
153 |
-
}
|
154 |
-
|
155 |
-
onScreen() {
|
156 |
-
const windowBottomEdge = jQuery(window).scrollTop() + jQuery(window).height(),
|
157 |
-
elementTopEdge = this.elements.$wrapper.offset().top
|
158 |
-
|
159 |
-
return elementTopEdge <= windowBottomEdge;
|
160 |
-
}
|
161 |
-
}
|
162 |
-
|
163 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
164 |
-
const addHandler = ($element) => {
|
165 |
-
elementorFrontend.elementsHandler.addHandler(JKitPieChart, {
|
166 |
-
$element,
|
167 |
-
});
|
168 |
-
};
|
169 |
-
|
170 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_pie_chart.default', addHandler);
|
171 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/portfolio-gallery.js
DELETED
@@ -1,92 +0,0 @@
|
|
1 |
-
class JKitPortfolioGallery extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-portfolio-gallery',
|
6 |
-
row_items: '.row-item',
|
7 |
-
gallery_items: '.gallery-items',
|
8 |
-
image_items: '.image-item',
|
9 |
-
},
|
10 |
-
};
|
11 |
-
}
|
12 |
-
|
13 |
-
getDefaultElements() {
|
14 |
-
const selectors = this.getSettings('selectors');
|
15 |
-
return {
|
16 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
17 |
-
$row_items: this.$element.find(selectors.row_items),
|
18 |
-
$gallery_items: this.$element.find(selectors.gallery_items),
|
19 |
-
$image_items: this.$element.find(selectors.image_items),
|
20 |
-
};
|
21 |
-
}
|
22 |
-
|
23 |
-
bindEvents() {
|
24 |
-
this.onRenderInit()
|
25 |
-
this.onClickHover()
|
26 |
-
}
|
27 |
-
|
28 |
-
onRenderInit() {
|
29 |
-
const $this = this,
|
30 |
-
row_items = $this.elements.$row_items,
|
31 |
-
image_items = $this.elements.$image_items
|
32 |
-
|
33 |
-
jQuery(row_items.get().reverse()).each(function() {
|
34 |
-
if (jQuery(this).hasClass('current-item')) {
|
35 |
-
row_items.removeClass('current-item')
|
36 |
-
jQuery(this).addClass('current-item')
|
37 |
-
}
|
38 |
-
})
|
39 |
-
|
40 |
-
jQuery(image_items.get().reverse()).each(function() {
|
41 |
-
if (jQuery(this).hasClass('current-item')) {
|
42 |
-
image_items.removeClass('current-item')
|
43 |
-
jQuery(this).addClass('current-item')
|
44 |
-
}
|
45 |
-
})
|
46 |
-
}
|
47 |
-
|
48 |
-
onClickHover() {
|
49 |
-
const $this = this,
|
50 |
-
wrapper = $this.elements.$wrapper,
|
51 |
-
row_items = $this.elements.$row_items
|
52 |
-
|
53 |
-
if (wrapper.hasClass('on-click')) {
|
54 |
-
row_items.each(function() {
|
55 |
-
jQuery(this).on({
|
56 |
-
click: function() {
|
57 |
-
row_items.removeClass('current-item')
|
58 |
-
jQuery(this).addClass('current-item')
|
59 |
-
$this.onShowImage(jQuery(this).data('tab'))
|
60 |
-
},
|
61 |
-
})
|
62 |
-
})
|
63 |
-
}
|
64 |
-
|
65 |
-
if (wrapper.hasClass('on-hover')) {
|
66 |
-
row_items.each(function() {
|
67 |
-
jQuery(this).on({
|
68 |
-
mouseenter: function() {
|
69 |
-
row_items.removeClass('current-item')
|
70 |
-
jQuery(this).addClass('current-item')
|
71 |
-
$this.onShowImage(jQuery(this).data('tab'))
|
72 |
-
},
|
73 |
-
})
|
74 |
-
})
|
75 |
-
}
|
76 |
-
}
|
77 |
-
|
78 |
-
onShowImage(id) {
|
79 |
-
this.elements.$image_items.removeClass('current-item')
|
80 |
-
this.elements.$gallery_items.find('#' + id).addClass('current-item')
|
81 |
-
}
|
82 |
-
}
|
83 |
-
|
84 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
85 |
-
const addHandler = ($element) => {
|
86 |
-
elementorFrontend.elementsHandler.addHandler(JKitPortfolioGallery, {
|
87 |
-
$element,
|
88 |
-
});
|
89 |
-
};
|
90 |
-
|
91 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_portfolio_gallery.default', addHandler);
|
92 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/post-pagination.js
DELETED
@@ -1,167 +0,0 @@
|
|
1 |
-
class JKitPostPagination extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.post-element',
|
6 |
-
pagination: '.jkit-block-pagination',
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$pagination: this.$element.find(selectors.pagination),
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onInitPagination()
|
21 |
-
}
|
22 |
-
|
23 |
-
onInitPagination() {
|
24 |
-
const $this = this,
|
25 |
-
wrapper = $this.elements.$wrapper,
|
26 |
-
pagination = $this.elements.$pagination,
|
27 |
-
options = wrapper.data('settings'),
|
28 |
-
load_limit = options.pagination_scroll_limit,
|
29 |
-
pagination_mode = options.pagination_mode,
|
30 |
-
parameter = {
|
31 |
-
'action': jkit_element_pagination_option.element_prefix + options.class,
|
32 |
-
'data': {
|
33 |
-
'current_page': 1,
|
34 |
-
'attr': options
|
35 |
-
}
|
36 |
-
}
|
37 |
-
|
38 |
-
let lock_load = false,
|
39 |
-
xhr_cache = []
|
40 |
-
|
41 |
-
const scroll_handler = function() {
|
42 |
-
if (!lock_load && !pagination.hasClass('disabled') && (window.self == window.top)) {
|
43 |
-
if (load_limit >= parameter.data.current_page || load_limit == '0') {
|
44 |
-
pagination.find('a').waypoint(function() {
|
45 |
-
request_ajax()
|
46 |
-
this.destroy()
|
47 |
-
}, {
|
48 |
-
offset: '100%',
|
49 |
-
context: window
|
50 |
-
})
|
51 |
-
}
|
52 |
-
}
|
53 |
-
}
|
54 |
-
|
55 |
-
const save_cache = function(parameter, response) {
|
56 |
-
xhr_cache.push({
|
57 |
-
param: JSON.stringify(parameter),
|
58 |
-
result: response
|
59 |
-
})
|
60 |
-
}
|
61 |
-
|
62 |
-
const get_cache = function(parameter) {
|
63 |
-
const jsonparam = JSON.stringify(parameter)
|
64 |
-
|
65 |
-
for (let i = 0; i < xhr_cache.length; i++) {
|
66 |
-
if (jsonparam === xhr_cache[i].param) {
|
67 |
-
return prepare_cache(xhr_cache[i].result)
|
68 |
-
}
|
69 |
-
}
|
70 |
-
}
|
71 |
-
|
72 |
-
const prepare_cache = function(result) {
|
73 |
-
result.content = '<div>' + result.content + '</div>'
|
74 |
-
const content = jQuery(result.content)
|
75 |
-
|
76 |
-
result.content = content.html()
|
77 |
-
return result
|
78 |
-
}
|
79 |
-
|
80 |
-
const render_ajax_response = function(response) {
|
81 |
-
const content = jQuery(response.content)
|
82 |
-
let count = 0
|
83 |
-
|
84 |
-
content.each(function() {
|
85 |
-
if (jQuery(this).hasClass('jkit-post')) {
|
86 |
-
jQuery(this).addClass('jkit-ajax-loaded anim-' + count)
|
87 |
-
}
|
88 |
-
count++
|
89 |
-
})
|
90 |
-
|
91 |
-
wrapper.removeClass('loading')
|
92 |
-
wrapper.addClass('loaded')
|
93 |
-
wrapper.find('.jkit-ajax-flag').append(content)
|
94 |
-
|
95 |
-
if (!response.next) {
|
96 |
-
pagination.addClass('disabled')
|
97 |
-
pagination.hide()
|
98 |
-
}
|
99 |
-
|
100 |
-
request_after_ajax()
|
101 |
-
jQuery(window).trigger('resize')
|
102 |
-
|
103 |
-
if ('scrollload' === pagination_mode) {
|
104 |
-
setTimeout(function() {
|
105 |
-
scroll_handler()
|
106 |
-
}, 500);
|
107 |
-
}
|
108 |
-
}
|
109 |
-
|
110 |
-
const request_ajax = function() {
|
111 |
-
request_before_ajax()
|
112 |
-
parameter.data.current_page = parameter.data.current_page + 1
|
113 |
-
const result = get_cache(parameter)
|
114 |
-
|
115 |
-
if (result) {
|
116 |
-
render_ajax_response(result)
|
117 |
-
} else {
|
118 |
-
jQuery.ajax({
|
119 |
-
url: jkit_ajax_url,
|
120 |
-
type: 'post',
|
121 |
-
dataType: 'json',
|
122 |
-
data: parameter,
|
123 |
-
success: function(response) {
|
124 |
-
render_ajax_response(response)
|
125 |
-
save_cache(parameter, response)
|
126 |
-
}
|
127 |
-
})
|
128 |
-
}
|
129 |
-
}
|
130 |
-
|
131 |
-
const request_before_ajax = function() {
|
132 |
-
lock_load = true
|
133 |
-
pagination.addClass('loading')
|
134 |
-
pagination.find('a').text(pagination.find('a').data('loading'))
|
135 |
-
wrapper.addClass('loading')
|
136 |
-
}
|
137 |
-
|
138 |
-
const request_after_ajax = function() {
|
139 |
-
lock_load = false
|
140 |
-
pagination.removeClass('loading')
|
141 |
-
pagination.find('a').text(pagination.find('a').data('load'))
|
142 |
-
}
|
143 |
-
|
144 |
-
if ('scrollload' === pagination_mode) {
|
145 |
-
scroll_handler()
|
146 |
-
}
|
147 |
-
|
148 |
-
pagination.find('a').on('click', function(e) {
|
149 |
-
e.preventDefault()
|
150 |
-
if (!lock_load && !pagination.hasClass('disabled')) {
|
151 |
-
request_ajax()
|
152 |
-
}
|
153 |
-
})
|
154 |
-
|
155 |
-
}
|
156 |
-
}
|
157 |
-
|
158 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
159 |
-
const addHandler = ($element) => {
|
160 |
-
elementorFrontend.elementsHandler.addHandler(JKitPostPagination, {
|
161 |
-
$element,
|
162 |
-
});
|
163 |
-
};
|
164 |
-
|
165 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_post_block.default', addHandler);
|
166 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_post_list.default', addHandler);
|
167 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/progress-bar.js
DELETED
@@ -1,65 +0,0 @@
|
|
1 |
-
class JKitProgressBar extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-progress-bar',
|
6 |
-
skill: '.skill-track',
|
7 |
-
number: '.number-percentage'
|
8 |
-
},
|
9 |
-
};
|
10 |
-
}
|
11 |
-
|
12 |
-
getDefaultElements() {
|
13 |
-
const selectors = this.getSettings('selectors');
|
14 |
-
return {
|
15 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
16 |
-
$skill: this.$element.find(selectors.skill),
|
17 |
-
$number: this.$element.find(selectors.number),
|
18 |
-
};
|
19 |
-
}
|
20 |
-
|
21 |
-
bindEvents() {
|
22 |
-
this.onLoadElement()
|
23 |
-
}
|
24 |
-
|
25 |
-
onLoadElement() {
|
26 |
-
this.countNumber()
|
27 |
-
jQuery(window).on('scroll', this.countNumber.bind(this))
|
28 |
-
}
|
29 |
-
|
30 |
-
countNumber() {
|
31 |
-
const number = this.elements.$number,
|
32 |
-
skill = this.elements.$skill
|
33 |
-
|
34 |
-
if (this.onScreen() && !number.hasClass('loaded')) {
|
35 |
-
number.prop('Counter', 0).animate({
|
36 |
-
Counter: number.data('value')
|
37 |
-
}, {
|
38 |
-
duration: number.data('animation-duration'),
|
39 |
-
easing: 'swing',
|
40 |
-
step: function(now) {
|
41 |
-
number.text(Math.ceil(now).toString() + '%')
|
42 |
-
skill.css('width', now.toString() + '%')
|
43 |
-
}
|
44 |
-
})
|
45 |
-
number.addClass('loaded')
|
46 |
-
}
|
47 |
-
}
|
48 |
-
|
49 |
-
onScreen() {
|
50 |
-
const windowBottomEdge = jQuery(window).scrollTop() + jQuery(window).height(),
|
51 |
-
elementTopEdge = this.elements.$wrapper.offset().top
|
52 |
-
|
53 |
-
return elementTopEdge <= windowBottomEdge;
|
54 |
-
}
|
55 |
-
}
|
56 |
-
|
57 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
58 |
-
const addHandler = ($element) => {
|
59 |
-
elementorFrontend.elementsHandler.addHandler(JKitProgressBar, {
|
60 |
-
$element,
|
61 |
-
});
|
62 |
-
};
|
63 |
-
|
64 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_progress_bar.default', addHandler);
|
65 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/search.js
DELETED
@@ -1,45 +0,0 @@
|
|
1 |
-
class JKitSearch extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-search'
|
6 |
-
},
|
7 |
-
};
|
8 |
-
}
|
9 |
-
|
10 |
-
getDefaultElements() {
|
11 |
-
const selectors = this.getSettings('selectors')
|
12 |
-
return {
|
13 |
-
$wrapper: this.$element.find(selectors.wrapper)
|
14 |
-
};
|
15 |
-
}
|
16 |
-
|
17 |
-
bindEvents() {
|
18 |
-
const $this = this,
|
19 |
-
wrapper = $this.elements.$wrapper
|
20 |
-
|
21 |
-
wrapper.magnificPopup({
|
22 |
-
mainClass: 'mfp-fade jkit-magnific-popup',
|
23 |
-
delegate: 'a.jkit-search-modal',
|
24 |
-
removalDelay: 500,
|
25 |
-
midClick: true,
|
26 |
-
showCloseBtn: true,
|
27 |
-
closeBtnInside: false,
|
28 |
-
prependTo: wrapper,
|
29 |
-
type: "inline",
|
30 |
-
fixedContentPos: true,
|
31 |
-
fixedBgPos: true,
|
32 |
-
overflowY: "auto"
|
33 |
-
})
|
34 |
-
}
|
35 |
-
}
|
36 |
-
|
37 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
38 |
-
const addHandler = ($element) => {
|
39 |
-
elementorFrontend.elementsHandler.addHandler(JKitSearch, {
|
40 |
-
$element,
|
41 |
-
});
|
42 |
-
};
|
43 |
-
|
44 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_search.default', addHandler);
|
45 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/tabs.js
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
class JKitTabs extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-tabs',
|
6 |
-
tab: 'li.tab-nav',
|
7 |
-
content: '.tab-content-list'
|
8 |
-
},
|
9 |
-
};
|
10 |
-
}
|
11 |
-
|
12 |
-
getDefaultElements() {
|
13 |
-
const selectors = this.getSettings('selectors')
|
14 |
-
return {
|
15 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
16 |
-
$tab: this.$element.find(selectors.tab),
|
17 |
-
$content: this.$element.find(selectors.content)
|
18 |
-
};
|
19 |
-
}
|
20 |
-
|
21 |
-
bindEvents() {
|
22 |
-
const $this = this;
|
23 |
-
|
24 |
-
$this.elements.$tab.on('click', function() {
|
25 |
-
const tab_id = jQuery(this).data('tab');
|
26 |
-
|
27 |
-
$this.elements.$tab.removeClass('active');
|
28 |
-
jQuery(this).addClass('active');
|
29 |
-
|
30 |
-
$this.elements.$content.find('.tab-content').removeClass('active');
|
31 |
-
$this.elements.$content.find('.' + tab_id).addClass('active');
|
32 |
-
});
|
33 |
-
}
|
34 |
-
}
|
35 |
-
|
36 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
37 |
-
const addHandler = ($element) => {
|
38 |
-
elementorFrontend.elementsHandler.addHandler(JKitTabs, {
|
39 |
-
$element,
|
40 |
-
});
|
41 |
-
};
|
42 |
-
|
43 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_tabs.default', addHandler);
|
44 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/team.js
DELETED
@@ -1,60 +0,0 @@
|
|
1 |
-
class JKitTeam extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-team',
|
6 |
-
close_modal: '.team-modal-close'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$close_modal: this.$element.find(selectors.close_modal)
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onClick()
|
21 |
-
}
|
22 |
-
|
23 |
-
onClick() {
|
24 |
-
const $this = this,
|
25 |
-
wrapper = $this.elements.$wrapper,
|
26 |
-
close_modal = $this.elements.$close_modal
|
27 |
-
|
28 |
-
wrapper.magnificPopup({
|
29 |
-
delegate: 'a.jkit-team-modal',
|
30 |
-
removalDelay: 500,
|
31 |
-
callbacks: {
|
32 |
-
beforeOpen: function() {
|
33 |
-
this.st.mainClass = this.st.el.attr('data-effect')
|
34 |
-
}
|
35 |
-
},
|
36 |
-
midClick: true,
|
37 |
-
showCloseBtn: false,
|
38 |
-
prependTo: wrapper,
|
39 |
-
type: "inline",
|
40 |
-
fixedContentPos: true,
|
41 |
-
fixedBgPos: true,
|
42 |
-
overflowY: "auto"
|
43 |
-
})
|
44 |
-
|
45 |
-
close_modal.on('click', function(e) {
|
46 |
-
e.preventDefault()
|
47 |
-
jQuery.magnificPopup.close()
|
48 |
-
})
|
49 |
-
}
|
50 |
-
}
|
51 |
-
|
52 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
53 |
-
const addHandler = ($element) => {
|
54 |
-
elementorFrontend.elementsHandler.addHandler(JKitTeam, {
|
55 |
-
$element,
|
56 |
-
});
|
57 |
-
};
|
58 |
-
|
59 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_team.default', addHandler);
|
60 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/testimonials.js
DELETED
@@ -1,84 +0,0 @@
|
|
1 |
-
class JKitTestimonials extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-testimonials',
|
6 |
-
items: '.testimonials-track',
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors');
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$items: this.$element.find(selectors.items),
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onLoadElement()
|
21 |
-
}
|
22 |
-
|
23 |
-
onLoadElement() {
|
24 |
-
this.loadCarousel()
|
25 |
-
}
|
26 |
-
|
27 |
-
loadCarousel() {
|
28 |
-
const id = this.elements.$wrapper.data('id'),
|
29 |
-
selectors = this.getSettings('selectors'),
|
30 |
-
options = this.elements.$wrapper.data('settings'),
|
31 |
-
attr = {
|
32 |
-
container: selectors.wrapper + '[data-id="' + id + '"] ' + selectors.items,
|
33 |
-
loop: true,
|
34 |
-
mouseDrag: true,
|
35 |
-
autoplay: options.autoplay,
|
36 |
-
autoplayTimeout: options.autoplay_speed,
|
37 |
-
autoplayHoverPause: options.autoplay_hover_pause,
|
38 |
-
navPosition: 'bottom',
|
39 |
-
controlsPosition: options.arrow_position,
|
40 |
-
controlsText: [options.navigation_left, options.navigation_right],
|
41 |
-
responsiveClass: true,
|
42 |
-
responsive: {
|
43 |
-
0: {
|
44 |
-
items: options.items_mobile,
|
45 |
-
gutter: options.margin_mobile
|
46 |
-
},
|
47 |
-
768: {
|
48 |
-
items: options.items_tablet,
|
49 |
-
gutter: options.margin_tablet
|
50 |
-
},
|
51 |
-
1025: {
|
52 |
-
items: options.items,
|
53 |
-
gutter: options.margin
|
54 |
-
}
|
55 |
-
}
|
56 |
-
}
|
57 |
-
|
58 |
-
tns(attr)
|
59 |
-
this.elements.$wrapper.find('button[data-action]').remove()
|
60 |
-
|
61 |
-
if (!options.show_navigation) {
|
62 |
-
this.elements.$wrapper.find('.tns-controls').remove()
|
63 |
-
}
|
64 |
-
|
65 |
-
if (!options.show_dots) {
|
66 |
-
this.elements.$wrapper.find('.tns-nav').remove()
|
67 |
-
}
|
68 |
-
|
69 |
-
if (options.show_navigation) {
|
70 |
-
attr.nav = true
|
71 |
-
attr.navText = ['<i class="' + options.navigation_left + '" aria-hidden="true"></i>', '<i class="' + options.navigation_right + '" aria-hidden="true"></i>']
|
72 |
-
}
|
73 |
-
}
|
74 |
-
}
|
75 |
-
|
76 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
77 |
-
const addHandler = ($element) => {
|
78 |
-
elementorFrontend.elementsHandler.addHandler(JKitTestimonials, {
|
79 |
-
$element,
|
80 |
-
});
|
81 |
-
};
|
82 |
-
|
83 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_testimonials.default', addHandler);
|
84 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/js/video-button.js
DELETED
@@ -1,87 +0,0 @@
|
|
1 |
-
class JKitVideoButton extends elementorModules.frontend.handlers.Base {
|
2 |
-
getDefaultSettings() {
|
3 |
-
return {
|
4 |
-
selectors: {
|
5 |
-
wrapper: '.jeg-elementor-kit.jkit-video-button',
|
6 |
-
link: '.jeg-elementor-kit.jkit-video-button .jkit-video-popup-btn'
|
7 |
-
},
|
8 |
-
};
|
9 |
-
}
|
10 |
-
|
11 |
-
getDefaultElements() {
|
12 |
-
const selectors = this.getSettings('selectors')
|
13 |
-
return {
|
14 |
-
$wrapper: this.$element.find(selectors.wrapper),
|
15 |
-
$link: this.$element.find(selectors.link)
|
16 |
-
};
|
17 |
-
}
|
18 |
-
|
19 |
-
bindEvents() {
|
20 |
-
this.onClick()
|
21 |
-
}
|
22 |
-
|
23 |
-
onClick() {
|
24 |
-
const wrapper = this.elements.$wrapper,
|
25 |
-
type = wrapper.data('type'),
|
26 |
-
autoplay = wrapper.data('autoplay'),
|
27 |
-
loop = wrapper.data('loop'),
|
28 |
-
controls = wrapper.data('controls');
|
29 |
-
|
30 |
-
let src = '//www.youtube.com/embed/';
|
31 |
-
|
32 |
-
if ('youtube' == type) {
|
33 |
-
const start = wrapper.data('start'),
|
34 |
-
end = wrapper.data('end');
|
35 |
-
|
36 |
-
src = src + '?playlist=%id%&autoplay=' + autoplay + '&loop=' + loop + '&controls=' + controls + '&start=' + start + '&end=' + end + '&version=3';
|
37 |
-
} else {
|
38 |
-
const mute = wrapper.data('mute'),
|
39 |
-
title = wrapper.data('title'),
|
40 |
-
portrait = wrapper.data('portrait'),
|
41 |
-
byline = wrapper.data('byline');
|
42 |
-
|
43 |
-
src = '//player.vimeo.com/video/%id%?autoplay=' + autoplay + '&muted=' + mute + '&loop=' + loop + '&controls=' + controls + '&title=' + title + '&portrait=' + portrait + '&byline=' + byline;
|
44 |
-
}
|
45 |
-
|
46 |
-
this.elements.$link.magnificPopup({
|
47 |
-
type: 'iframe',
|
48 |
-
iframe: {
|
49 |
-
patterns: {
|
50 |
-
youtube: {
|
51 |
-
index: 'youtube.com/',
|
52 |
-
id: function(url) {
|
53 |
-
var m = url.match(/[\\?\\&]v=([^\\?\\&]+)/);
|
54 |
-
if (!m || !m[1]) return null;
|
55 |
-
return m[1];
|
56 |
-
},
|
57 |
-
src: src
|
58 |
-
},
|
59 |
-
vimeo: {
|
60 |
-
index: 'vimeo.com/',
|
61 |
-
id: function(url) {
|
62 |
-
var m = url.match(/(https?:\/\/)?(www.)?(player.)?vimeo.com\/([a-z]*\/)*([0-9]{6,11})[?]?.*/);
|
63 |
-
if (!m || !m[5]) return null;
|
64 |
-
return m[5];
|
65 |
-
},
|
66 |
-
src: src
|
67 |
-
}
|
68 |
-
}
|
69 |
-
},
|
70 |
-
mainClass: 'mfp-fade jkit-magnific-popup',
|
71 |
-
removalDelay: 160,
|
72 |
-
preloader: !0,
|
73 |
-
fixedContentPos: !1,
|
74 |
-
showCloseBtn: true
|
75 |
-
});
|
76 |
-
}
|
77 |
-
}
|
78 |
-
|
79 |
-
jQuery(window).on('elementor/frontend/init', () => {
|
80 |
-
const addHandler = ($element) => {
|
81 |
-
elementorFrontend.elementsHandler.addHandler(JKitVideoButton, {
|
82 |
-
$element,
|
83 |
-
});
|
84 |
-
};
|
85 |
-
|
86 |
-
elementorFrontend.hooks.addAction('frontend/element_ready/jkit_video_button.default', addHandler);
|
87 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/admin/dashboard.scss
DELETED
@@ -1,398 +0,0 @@
|
|
1 |
-
$white: #fff;
|
2 |
-
$white-light-gray: #f9f9f9;
|
3 |
-
$header-black: #242a32;
|
4 |
-
$input-border-color: #D5D5D7;
|
5 |
-
$button-color: #0058E6;
|
6 |
-
$button-hover-color: #0048bd;
|
7 |
-
$button-loading-color: #d1345b;
|
8 |
-
$button-loading-color-alt: #f1295b;
|
9 |
-
@mixin user-select() {
|
10 |
-
user-select: none;
|
11 |
-
-webkit-user-select: none;
|
12 |
-
-khtml-user-select: none;
|
13 |
-
-moz-user-select: none;
|
14 |
-
-ms-user-select: none;
|
15 |
-
-o-user-select: none;
|
16 |
-
}
|
17 |
-
|
18 |
-
*:focus {
|
19 |
-
outline: none;
|
20 |
-
}
|
21 |
-
|
22 |
-
#adminmenu li#toplevel_page_jkit-dashboard .wp-menu-image img {
|
23 |
-
width: 16px;
|
24 |
-
}
|
25 |
-
|
26 |
-
.jkit-dashboard-header-wrap {
|
27 |
-
margin-right: 20px;
|
28 |
-
a {
|
29 |
-
text-decoration: none;
|
30 |
-
color: #444;
|
31 |
-
&:hover {
|
32 |
-
color: #222;
|
33 |
-
}
|
34 |
-
}
|
35 |
-
.jkit-dashboard-header-tab {
|
36 |
-
padding: 0;
|
37 |
-
margin: 1em 0;
|
38 |
-
border-bottom: 1px solid #ddd;
|
39 |
-
a {
|
40 |
-
font-size: 15px;
|
41 |
-
margin-bottom: -2px;
|
42 |
-
padding: 20px;
|
43 |
-
display: inline-block;
|
44 |
-
border-bottom: 3px solid transparent;
|
45 |
-
&.tab-active {
|
46 |
-
border-bottom: 3px solid #0835e6;
|
47 |
-
}
|
48 |
-
}
|
49 |
-
}
|
50 |
-
}
|
51 |
-
|
52 |
-
.jkit-button {
|
53 |
-
background: #3557dc;
|
54 |
-
color: #fff;
|
55 |
-
padding: 12px 25px;
|
56 |
-
border: 1px solid #0835e6;
|
57 |
-
cursor: pointer;
|
58 |
-
font-size: 14px;
|
59 |
-
}
|
60 |
-
|
61 |
-
.jkit-loading {
|
62 |
-
text-align: center;
|
63 |
-
line-height: 100px;
|
64 |
-
}
|
65 |
-
|
66 |
-
#jkit-dashboard-header-container {
|
67 |
-
text-align: center;
|
68 |
-
height: calc(100vh - 200px);
|
69 |
-
min-height: 150px;
|
70 |
-
position: relative;
|
71 |
-
margin-right: 20px;
|
72 |
-
h1 {
|
73 |
-
font-size: 32px;
|
74 |
-
line-height: 35px;
|
75 |
-
}
|
76 |
-
p {
|
77 |
-
font-size: 15px;
|
78 |
-
}
|
79 |
-
.empty-content {
|
80 |
-
width: 100%;
|
81 |
-
position: absolute;
|
82 |
-
top: 50%;
|
83 |
-
-webkit-transform: translateY(-50%);
|
84 |
-
-ms-transform: translateY(-50%);
|
85 |
-
transform: translateY(-50%);
|
86 |
-
.empty-content-wrapper {
|
87 |
-
width: 450px;
|
88 |
-
margin: 0 auto;
|
89 |
-
}
|
90 |
-
p {
|
91 |
-
margin: 25px 0;
|
92 |
-
}
|
93 |
-
h1 {
|
94 |
-
margin-top: 0;
|
95 |
-
}
|
96 |
-
}
|
97 |
-
}
|
98 |
-
|
99 |
-
.jkit-dashboard-body-wrap {
|
100 |
-
margin-right: 20px;
|
101 |
-
#jkit-form-content {
|
102 |
-
margin: 20px 0 0;
|
103 |
-
* {
|
104 |
-
box-sizing: border-box;
|
105 |
-
}
|
106 |
-
}
|
107 |
-
.jkit-form-content {
|
108 |
-
position: relative;
|
109 |
-
display: block;
|
110 |
-
height: 50px;
|
111 |
-
margin: 0;
|
112 |
-
padding: 0 87px 0 10px;
|
113 |
-
font-size: 0;
|
114 |
-
white-space: nowrap;
|
115 |
-
cursor: pointer;
|
116 |
-
@include user-select();
|
117 |
-
&:before,
|
118 |
-
&:after {
|
119 |
-
content: '';
|
120 |
-
display: inline-block;
|
121 |
-
vertical-align: middle;
|
122 |
-
}
|
123 |
-
&:before {
|
124 |
-
height: 100%;
|
125 |
-
}
|
126 |
-
&:after {
|
127 |
-
position: absolute;
|
128 |
-
width: 24px;
|
129 |
-
height: 100%;
|
130 |
-
right: 30px;
|
131 |
-
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiNBOUFDQUYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=');
|
132 |
-
background-repeat: no-repeat;
|
133 |
-
background-position: center;
|
134 |
-
transform: rotate(180deg);
|
135 |
-
}
|
136 |
-
}
|
137 |
-
.jkit-form-content>div {
|
138 |
-
display: inline-block;
|
139 |
-
vertical-align: middle;
|
140 |
-
}
|
141 |
-
@media screen and (max-width: 800px) {
|
142 |
-
.jkit-form-content {
|
143 |
-
height: auto;
|
144 |
-
padding: 10px 87px 10px 30px;
|
145 |
-
&:before {
|
146 |
-
display: none;
|
147 |
-
}
|
148 |
-
&:after {
|
149 |
-
top: 0;
|
150 |
-
}
|
151 |
-
}
|
152 |
-
.jkit-form-content>div {
|
153 |
-
display: block;
|
154 |
-
width: 100%;
|
155 |
-
}
|
156 |
-
}
|
157 |
-
.jkit-form-tab {
|
158 |
-
position: relative;
|
159 |
-
width: 100%;
|
160 |
-
margin: 0 auto 10px;
|
161 |
-
border-radius: 4px;
|
162 |
-
background-color: $white;
|
163 |
-
box-shadow: 0 0 0 1px rgba(236, 236, 236, 1);
|
164 |
-
opacity: 1;
|
165 |
-
transition: box-shadow .2s, opacity .4s;
|
166 |
-
&:hover {
|
167 |
-
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
|
168 |
-
}
|
169 |
-
}
|
170 |
-
.jkit-form-content+.jkit-form-tab-content {
|
171 |
-
transition: max-height .3s;
|
172 |
-
}
|
173 |
-
.jkit-form-tab:not(.collapse) {
|
174 |
-
.jkit-form-content+.jkit-form-tab-content {
|
175 |
-
max-height: 0;
|
176 |
-
overflow: hidden;
|
177 |
-
padding: 0;
|
178 |
-
}
|
179 |
-
}
|
180 |
-
.jkit-form-tab-content {
|
181 |
-
background-color: $white-light-gray;
|
182 |
-
text-align: justify;
|
183 |
-
padding: 25px;
|
184 |
-
}
|
185 |
-
.jkit-form-input-group {
|
186 |
-
>label {
|
187 |
-
font-weight: 700;
|
188 |
-
margin-bottom: 10px;
|
189 |
-
display: block;
|
190 |
-
color: $header-black;
|
191 |
-
font-size: 14px;
|
192 |
-
line-height: 16px;
|
193 |
-
}
|
194 |
-
>input {
|
195 |
-
border-radius: 5px;
|
196 |
-
padding: 8px 30px;
|
197 |
-
height: 54px;
|
198 |
-
box-sizing: border-box;
|
199 |
-
font-size: 14px;
|
200 |
-
line-height: 28px;
|
201 |
-
display: inline-block;
|
202 |
-
color: $header-black;
|
203 |
-
border: 1px solid $input-border-color;
|
204 |
-
box-shadow: none;
|
205 |
-
width: 100%;
|
206 |
-
}
|
207 |
-
&:not(:last-child) {
|
208 |
-
margin-bottom: 15px;
|
209 |
-
}
|
210 |
-
}
|
211 |
-
.jkit-form-info {
|
212 |
-
width: 60%;
|
213 |
-
white-space: nowrap;
|
214 |
-
font-size: 0;
|
215 |
-
&:before {
|
216 |
-
content: '';
|
217 |
-
display: inline-block;
|
218 |
-
height: 44px;
|
219 |
-
vertical-align: middle;
|
220 |
-
}
|
221 |
-
}
|
222 |
-
.jkit-form-name {
|
223 |
-
display: inline-block;
|
224 |
-
width: 75%;
|
225 |
-
margin-left: 15px;
|
226 |
-
font-weight: 700;
|
227 |
-
font-size: 14px;
|
228 |
-
text-transform: uppercase;
|
229 |
-
line-height: 22px;
|
230 |
-
color: $header-black;
|
231 |
-
white-space: normal;
|
232 |
-
text-align: left;
|
233 |
-
vertical-align: middle;
|
234 |
-
}
|
235 |
-
.jkit-form-submit {
|
236 |
-
margin-top: 30px;
|
237 |
-
text-align: right;
|
238 |
-
>button {
|
239 |
-
padding: 8px 20px 8px 20px;
|
240 |
-
color: $white;
|
241 |
-
cursor: pointer;
|
242 |
-
@include user-select();
|
243 |
-
position: relative;
|
244 |
-
z-index: 1;
|
245 |
-
font-size: 16px;
|
246 |
-
border-style: solid;
|
247 |
-
border-width: 0;
|
248 |
-
background-color: $button-color;
|
249 |
-
box-shadow: none;
|
250 |
-
border-radius: 5px;
|
251 |
-
margin-top: 0;
|
252 |
-
margin-bottom: 0;
|
253 |
-
line-height: 26px;
|
254 |
-
&.saving,
|
255 |
-
&.saving:hover {
|
256 |
-
background-color: $button-loading-color;
|
257 |
-
}
|
258 |
-
&:hover {
|
259 |
-
background-color: $button-hover-color;
|
260 |
-
}
|
261 |
-
}
|
262 |
-
}
|
263 |
-
.elements-control-container {
|
264 |
-
display: flex;
|
265 |
-
flex-flow: row wrap;
|
266 |
-
align-items: center;
|
267 |
-
.element-checkbox-option {
|
268 |
-
position: relative;
|
269 |
-
display: flex;
|
270 |
-
justify-content: space-between;
|
271 |
-
width: calc((100% / 4) - (30px * 3 / 4));
|
272 |
-
align-items: center;
|
273 |
-
font-size: 24px;
|
274 |
-
margin-bottom: 30px;
|
275 |
-
padding: 15px;
|
276 |
-
box-sizing: border-box;
|
277 |
-
border-radius: 5px;
|
278 |
-
background-color: rgb(255, 255, 255);
|
279 |
-
box-shadow: 0 0 0 1px rgba(236, 236, 236, 1);
|
280 |
-
@media screen and (min-width: 1025px) {
|
281 |
-
&:not(:nth-child(4n)) {
|
282 |
-
margin-right: 30px;
|
283 |
-
}
|
284 |
-
}
|
285 |
-
@media screen and (min-width: 769px) and (max-width: 1024px) {
|
286 |
-
width: calc((100% / 3) - (30px * 2 / 3));
|
287 |
-
&:not(:nth-child(3n)) {
|
288 |
-
margin-right: 30px;
|
289 |
-
}
|
290 |
-
}
|
291 |
-
@media screen and (min-width: 481px) and (max-width: 768px) {
|
292 |
-
width: calc((100% / 2) - (30px / 2));
|
293 |
-
&:not(:nth-child(2n)) {
|
294 |
-
margin-right: 30px;
|
295 |
-
}
|
296 |
-
}
|
297 |
-
@media screen and (max-width: 480px) {
|
298 |
-
width: 100%;
|
299 |
-
}
|
300 |
-
&:hover {
|
301 |
-
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
|
302 |
-
}
|
303 |
-
.element-title {
|
304 |
-
margin-left: 15px;
|
305 |
-
font-weight: 700;
|
306 |
-
font-size: 14px;
|
307 |
-
text-transform: uppercase;
|
308 |
-
line-height: 22px;
|
309 |
-
color: #242a32;
|
310 |
-
white-space: normal;
|
311 |
-
text-align: left;
|
312 |
-
vertical-align: middle;
|
313 |
-
}
|
314 |
-
.element-toggle {
|
315 |
-
position: absolute;
|
316 |
-
top: 50%;
|
317 |
-
right: 0;
|
318 |
-
transform: translateY(-50%);
|
319 |
-
margin: 0 15px 0 0;
|
320 |
-
}
|
321 |
-
input[type="checkbox"] {
|
322 |
-
display: none;
|
323 |
-
}
|
324 |
-
input:checked + .switch {
|
325 |
-
background: #d4e4ff;
|
326 |
-
&:after {
|
327 |
-
background: #5f9bff;
|
328 |
-
transform: translate3d(100%, -50%, 0);
|
329 |
-
}
|
330 |
-
}
|
331 |
-
.switch {
|
332 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
333 |
-
margin-top: 5px;
|
334 |
-
margin-right: 15px;
|
335 |
-
display: inline-block;
|
336 |
-
width: 35px;
|
337 |
-
height: 12px;
|
338 |
-
border-radius: 8px;
|
339 |
-
background: #ebebeb;
|
340 |
-
vertical-align: middle;
|
341 |
-
position: relative;
|
342 |
-
cursor: pointer;
|
343 |
-
user-select: none;
|
344 |
-
transition: background 350ms ease;
|
345 |
-
&:after {
|
346 |
-
content: "";
|
347 |
-
background: #ccc;
|
348 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
349 |
-
transform: translate3d(0, -50%, 0);
|
350 |
-
display: block;
|
351 |
-
width: 20px;
|
352 |
-
height: 20px;
|
353 |
-
border-radius: 50%;
|
354 |
-
position: absolute;
|
355 |
-
top: 50%;
|
356 |
-
left: -3px;
|
357 |
-
transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease;
|
358 |
-
}
|
359 |
-
}
|
360 |
-
}
|
361 |
-
}
|
362 |
-
.elements-global-control {
|
363 |
-
margin-bottom: 2em;
|
364 |
-
text-align: center;
|
365 |
-
.enable-all,
|
366 |
-
.disable-all {
|
367 |
-
user-select: none;
|
368 |
-
-webkit-user-select: none;
|
369 |
-
-khtml-user-select: none;
|
370 |
-
-moz-user-select: none;
|
371 |
-
-ms-user-select: none;
|
372 |
-
-o-user-select: none;
|
373 |
-
position: relative;
|
374 |
-
z-index: 1;
|
375 |
-
font-size: 16px;
|
376 |
-
border-style: solid;
|
377 |
-
border-width: 0;
|
378 |
-
box-shadow: none;
|
379 |
-
border-radius: 5px;
|
380 |
-
margin-top: 0;
|
381 |
-
margin-bottom: 0;
|
382 |
-
line-height: 26px;
|
383 |
-
}
|
384 |
-
.enable-all {
|
385 |
-
background-color: $button-color;
|
386 |
-
margin-right: 5px;
|
387 |
-
&:hover {
|
388 |
-
background-color: $button-hover-color;
|
389 |
-
}
|
390 |
-
}
|
391 |
-
.disable-all {
|
392 |
-
background-color: $button-loading-color;
|
393 |
-
&:hover {
|
394 |
-
background-color: $button-loading-color-alt;
|
395 |
-
}
|
396 |
-
}
|
397 |
-
}
|
398 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/admin/editor.scss
DELETED
@@ -1,234 +0,0 @@
|
|
1 |
-
.elementor-control-sg_content_postblock_type,
|
2 |
-
.elementor-control-sg_layout_testimonial_choose {
|
3 |
-
.elementor-choices {
|
4 |
-
text-align: left;
|
5 |
-
background: transparent;
|
6 |
-
display: table;
|
7 |
-
line-height: 1 !important;
|
8 |
-
}
|
9 |
-
>.elementor-control-content>.elementor-control-field {
|
10 |
-
>.elementor-control-input-wrapper {
|
11 |
-
width: 100%;
|
12 |
-
margin-top: 10px;
|
13 |
-
}
|
14 |
-
-ms-flex-wrap: wrap;
|
15 |
-
flex-wrap: wrap;
|
16 |
-
}
|
17 |
-
label[for^="elementor-control-"] {
|
18 |
-
margin-bottom: 5px;
|
19 |
-
margin-right: 5px;
|
20 |
-
width: 118px !important;
|
21 |
-
height: 88px !important;
|
22 |
-
display: inline-block !important;
|
23 |
-
border-width: 1px;
|
24 |
-
border-style: solid;
|
25 |
-
border-color: #ddd !important;
|
26 |
-
padding: 3px;
|
27 |
-
i {
|
28 |
-
width: auto;
|
29 |
-
height: 100%;
|
30 |
-
display: block;
|
31 |
-
}
|
32 |
-
}
|
33 |
-
}
|
34 |
-
|
35 |
-
.elementor-control-sg_content_postblock_type {
|
36 |
-
input[name^="elementor-choose-sg_content_postblock_type-"]:checked+.elementor-choices-label {
|
37 |
-
border-color: #278ab7;
|
38 |
-
background-color: #278ab7;
|
39 |
-
}
|
40 |
-
label[for^="elementor-control-"] .jkit-postblock-type-1 {
|
41 |
-
background-image: url('../../img/admin/post-block-1.png');
|
42 |
-
}
|
43 |
-
label[for^="elementor-control-"] .jkit-postblock-type-2 {
|
44 |
-
background-image: url('../../img/admin/post-block-2.png');
|
45 |
-
}
|
46 |
-
label[for^="elementor-control-"] .jkit-postblock-type-3 {
|
47 |
-
background-image: url('../../img/admin/post-block-3.png');
|
48 |
-
}
|
49 |
-
label[for^="elementor-control-"] .jkit-postblock-type-4 {
|
50 |
-
background-image: url('../../img/admin/post-block-4.png');
|
51 |
-
}
|
52 |
-
label[for^="elementor-control-"] .jkit-postblock-type-5 {
|
53 |
-
background-image: url('../../img/admin/post-block-5.png');
|
54 |
-
}
|
55 |
-
}
|
56 |
-
|
57 |
-
.elementor-control-sg_layout_testimonial_choose {
|
58 |
-
input[name^="elementor-choose-sg_layout_testimonial_choose-"]:checked+.elementor-choices-label {
|
59 |
-
border-color: #278ab7;
|
60 |
-
background-color: #278ab7;
|
61 |
-
}
|
62 |
-
label[for^="elementor-control-"] .jkit-testimonials-layout-1 {
|
63 |
-
background-image: url('../../img/admin/testimonial-1.png');
|
64 |
-
}
|
65 |
-
label[for^="elementor-control-"] .jkit-testimonials-layout-2 {
|
66 |
-
background-image: url('../../img/admin/testimonial-2.png');
|
67 |
-
}
|
68 |
-
label[for^="elementor-control-"] .jkit-testimonials-layout-3 {
|
69 |
-
background-image: url('../../img/admin/testimonial-3.png');
|
70 |
-
}
|
71 |
-
label[for^="elementor-control-"] .jkit-testimonials-layout-4 {
|
72 |
-
background-image: url('../../img/admin/testimonial-4.png');
|
73 |
-
}
|
74 |
-
}
|
75 |
-
|
76 |
-
i[class*=jkit_] {
|
77 |
-
background-size: auto !important;
|
78 |
-
width: 32px !important;
|
79 |
-
height: 32px !important;
|
80 |
-
display: block;
|
81 |
-
margin-left: auto;
|
82 |
-
margin-right: auto;
|
83 |
-
}
|
84 |
-
|
85 |
-
i[class^=jkit-option-additional] {
|
86 |
-
background-size: auto !important;
|
87 |
-
width: 12px !important;
|
88 |
-
height: 12px !important;
|
89 |
-
display: inline-block;
|
90 |
-
}
|
91 |
-
|
92 |
-
i[class^=jkit_nav_menu] {
|
93 |
-
background-image: url('../../img/admin/block-icon/nav-menu.svg');
|
94 |
-
}
|
95 |
-
|
96 |
-
i[class^=jkit_icon_box] {
|
97 |
-
background-image: url('../../img/admin/block-icon/icon-box.svg');
|
98 |
-
}
|
99 |
-
|
100 |
-
i[class^=jkit_image_box] {
|
101 |
-
background-image: url('../../img/admin/block-icon/image-box.svg');
|
102 |
-
}
|
103 |
-
|
104 |
-
i[class^=jkit_fun_fact] {
|
105 |
-
background-image: url('../../img/admin/block-icon/funfact.svg');
|
106 |
-
}
|
107 |
-
|
108 |
-
i[class^=jkit_progress_bar] {
|
109 |
-
background-image: url('../../img/admin/block-icon/progress-bar.svg');
|
110 |
-
}
|
111 |
-
|
112 |
-
i[class^=jkit_client_logo] {
|
113 |
-
background-image: url('../../img/admin/block-icon/client-logo.svg');
|
114 |
-
}
|
115 |
-
|
116 |
-
i[class^=jkit_testimonials] {
|
117 |
-
background-image: url('../../img/admin/block-icon/testimonial.svg');
|
118 |
-
}
|
119 |
-
|
120 |
-
i[class^=jkit_accordion] {
|
121 |
-
background-image: url('../../img/admin/block-icon/accordion.svg');
|
122 |
-
}
|
123 |
-
|
124 |
-
i[class^=jkit_gallery] {
|
125 |
-
background-image: url('../../img/admin/block-icon/gallery.svg');
|
126 |
-
}
|
127 |
-
|
128 |
-
i[class^=jkit_contact_form_7] {
|
129 |
-
background-image: url('../../img/admin/block-icon/form-cf7.svg');
|
130 |
-
}
|
131 |
-
|
132 |
-
i[class^=jkit_mailchimp] {
|
133 |
-
background-image: url('../../img/admin/block-icon/mailchimp.svg');
|
134 |
-
}
|
135 |
-
|
136 |
-
i[class^=jkit_post_block] {
|
137 |
-
background-image: url('../../img/admin/block-icon/post-block.svg');
|
138 |
-
}
|
139 |
-
|
140 |
-
i[class^=jkit_team] {
|
141 |
-
background-image: url('../../img/admin/block-icon/team.svg');
|
142 |
-
}
|
143 |
-
|
144 |
-
i[class^=jkit_pie_chart] {
|
145 |
-
background-image: url('../../img/admin/block-icon/pie-chart.svg');
|
146 |
-
}
|
147 |
-
|
148 |
-
i[class^=jkit_portfolio_gallery] {
|
149 |
-
background-image: url('../../img/admin/block-icon/portfolio.svg');
|
150 |
-
}
|
151 |
-
|
152 |
-
i[class^=jkit_animated_text] {
|
153 |
-
background-image: url('../../img/admin/block-icon/animated-text.svg');
|
154 |
-
}
|
155 |
-
|
156 |
-
i[class^=jkit_countdown] {
|
157 |
-
background-image: url('../../img/admin/block-icon/countdown.svg');
|
158 |
-
}
|
159 |
-
|
160 |
-
i[class^=jkit_button] {
|
161 |
-
background-image: url('../../img/admin/block-icon/button.svg');
|
162 |
-
}
|
163 |
-
|
164 |
-
i[class^=jkit_post_list] {
|
165 |
-
background-image: url('../../img/admin/block-icon/post-list.svg');
|
166 |
-
}
|
167 |
-
|
168 |
-
i[class^=jkit_category_list] {
|
169 |
-
background-image: url('../../img/admin/block-icon/category-list.svg');
|
170 |
-
}
|
171 |
-
|
172 |
-
i[class^=jkit_feature_list] {
|
173 |
-
background-image: url('../../img/admin/block-icon/feature-list.svg');
|
174 |
-
}
|
175 |
-
|
176 |
-
i[class^=jkit_video_button] {
|
177 |
-
background-image: url('../../img/admin/block-icon/video-button.svg');
|
178 |
-
}
|
179 |
-
|
180 |
-
i[class^=jkit_heading] {
|
181 |
-
background-image: url('../../img/admin/block-icon/heading.svg');
|
182 |
-
}
|
183 |
-
|
184 |
-
i[class^=jkit_post_title] {
|
185 |
-
background-image: url('../../img/admin/block-icon/post-title.svg');
|
186 |
-
}
|
187 |
-
|
188 |
-
i[class^=jkit_post_featured_image] {
|
189 |
-
background-image: url('../../img/admin/block-icon/post-featured-image.svg');
|
190 |
-
}
|
191 |
-
|
192 |
-
i[class^=jkit_post_comment] {
|
193 |
-
background-image: url('../../img/admin/block-icon/post-comment.svg');
|
194 |
-
}
|
195 |
-
|
196 |
-
i[class^=jkit_post_date] {
|
197 |
-
background-image: url('../../img/admin/block-icon/post-date.svg');
|
198 |
-
}
|
199 |
-
|
200 |
-
i[class^=jkit_post_author] {
|
201 |
-
background-image: url('../../img/admin/block-icon/post-author.svg');
|
202 |
-
}
|
203 |
-
|
204 |
-
i[class^=jkit_post_terms] {
|
205 |
-
background-image: url('../../img/admin/block-icon/post-terms.svg');
|
206 |
-
}
|
207 |
-
|
208 |
-
i[class^=jkit_post_excerpt] {
|
209 |
-
background-image: url('../../img/admin/block-icon/post-excerpt.svg');
|
210 |
-
}
|
211 |
-
|
212 |
-
i[class^=jkit_social_share] {
|
213 |
-
background-image: url('../../img/admin/block-icon/social-share.svg');
|
214 |
-
}
|
215 |
-
|
216 |
-
i[class^=jkit_off_canvas] {
|
217 |
-
background-image: url('../../img/admin/block-icon/off-canvas.svg');
|
218 |
-
}
|
219 |
-
|
220 |
-
i[class^=jkit_tabs] {
|
221 |
-
background-image: url('../../img/admin/block-icon/tabs.svg');
|
222 |
-
}
|
223 |
-
|
224 |
-
i[class^=jkit_dual_button] {
|
225 |
-
background-image: url('../../img/admin/block-icon/dual-button.svg');
|
226 |
-
}
|
227 |
-
|
228 |
-
i[class^=jkit_search] {
|
229 |
-
background-image: url('../../img/admin/block-icon/search.svg');
|
230 |
-
}
|
231 |
-
|
232 |
-
i[class^=jkit-option-additional] {
|
233 |
-
background-image: url('../../img/admin/icon.svg');
|
234 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/accordion.scss
DELETED
@@ -1,142 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-accordion {
|
4 |
-
counter-reset: jkitNumber;
|
5 |
-
.card-wrapper {
|
6 |
-
background-color: transparent;
|
7 |
-
border: 0;
|
8 |
-
border-radius: 0;
|
9 |
-
&:not(:last-child) {
|
10 |
-
margin-bottom: 10px;
|
11 |
-
}
|
12 |
-
&.expand {
|
13 |
-
.card-header {
|
14 |
-
.card-header-button {
|
15 |
-
.left-icon-group,
|
16 |
-
.right-icon-group {
|
17 |
-
.normal-icon {
|
18 |
-
display: none;
|
19 |
-
}
|
20 |
-
.active-icon {
|
21 |
-
display: block;
|
22 |
-
}
|
23 |
-
}
|
24 |
-
}
|
25 |
-
}
|
26 |
-
}
|
27 |
-
.card-header {
|
28 |
-
cursor: pointer;
|
29 |
-
.card-header-button {
|
30 |
-
@include displayflex();
|
31 |
-
color: var(--jkit-txt-color);
|
32 |
-
background-color: var(--jkit-element-lighten-bg-color);
|
33 |
-
font-weight: 700;
|
34 |
-
padding: 14px 30px;
|
35 |
-
border: 1px solid transparent;
|
36 |
-
@include alignitemscenter();
|
37 |
-
position: relative;
|
38 |
-
.number:before {
|
39 |
-
counter-increment: jkitNumber;
|
40 |
-
content: counter(jkitNumber) ". ";
|
41 |
-
}
|
42 |
-
.title {
|
43 |
-
padding-right: 10px;
|
44 |
-
display: inline-block;
|
45 |
-
}
|
46 |
-
.left-icon-group {
|
47 |
-
padding-right: 26px;
|
48 |
-
float: left;
|
49 |
-
}
|
50 |
-
.right-icon-group {
|
51 |
-
position: absolute;
|
52 |
-
right: 0;
|
53 |
-
margin-right: 30px;
|
54 |
-
}
|
55 |
-
.left-icon-group,
|
56 |
-
.right-icon-group {
|
57 |
-
.normal-icon {
|
58 |
-
display: block;
|
59 |
-
}
|
60 |
-
.active-icon {
|
61 |
-
display: none;
|
62 |
-
}
|
63 |
-
}
|
64 |
-
}
|
65 |
-
}
|
66 |
-
}
|
67 |
-
.card-expand {
|
68 |
-
.card-body {
|
69 |
-
padding: 30px 85px 30px 65px;
|
70 |
-
}
|
71 |
-
}
|
72 |
-
&.style-curve {
|
73 |
-
.card-wrapper .card-header .card-header-button {
|
74 |
-
position: relative;
|
75 |
-
border: 0;
|
76 |
-
padding-left: 70px;
|
77 |
-
background-color: var(--jkit-element-bg-color);
|
78 |
-
&:before {
|
79 |
-
position: absolute;
|
80 |
-
content: "";
|
81 |
-
top: 0;
|
82 |
-
left: 0;
|
83 |
-
height: 100%;
|
84 |
-
width: 35px;
|
85 |
-
background-color: rgba(255, 255, 255, 0.2);
|
86 |
-
text-align: right;
|
87 |
-
line-height: 55px;
|
88 |
-
}
|
89 |
-
&:after {
|
90 |
-
position: absolute;
|
91 |
-
content: "";
|
92 |
-
left: 35px;
|
93 |
-
top: 0;
|
94 |
-
border-top: 26.5px solid transparent;
|
95 |
-
border-right: 26.5px solid transparent;
|
96 |
-
border-left: 26.5px solid rgba(255, 255, 255, 0.2);
|
97 |
-
border-bottom: 26.5px solid transparent;
|
98 |
-
}
|
99 |
-
.left-icon-group {
|
100 |
-
position: absolute;
|
101 |
-
left: 20px;
|
102 |
-
top: 50%;
|
103 |
-
@include transform(false, translateY(-50%));
|
104 |
-
z-index: 2;
|
105 |
-
}
|
106 |
-
}
|
107 |
-
}
|
108 |
-
&.style-box {
|
109 |
-
.card-wrapper .card-header .card-header-button {
|
110 |
-
border: 1px solid var(--jkit-border-color);
|
111 |
-
border-bottom: 1px solid var(--jkit-element-bg-color);
|
112 |
-
background-color: var(--jkit-bg-color);
|
113 |
-
position: relative;
|
114 |
-
padding-left: 85px;
|
115 |
-
&:before {
|
116 |
-
position: absolute;
|
117 |
-
top: -1px;
|
118 |
-
left: -1px;
|
119 |
-
content: "";
|
120 |
-
height: calc(100% + 2px);
|
121 |
-
width: 55px;
|
122 |
-
text-align: center;
|
123 |
-
line-height: 55px;
|
124 |
-
color: var(--jkit-bg-color);
|
125 |
-
background-color: var(--jkit-element-bg-color);
|
126 |
-
}
|
127 |
-
.left-icon-group {
|
128 |
-
position: absolute;
|
129 |
-
left: 20px;
|
130 |
-
top: 50%;
|
131 |
-
@include transform(false, translateY(-50%));
|
132 |
-
}
|
133 |
-
}
|
134 |
-
}
|
135 |
-
&.style-shadow {
|
136 |
-
.card-wrapper .card-header .card-header-button {
|
137 |
-
@include boxshadow(-1.216px 6.894px 15px 0 rgba(37, 117, 252, 0.2));
|
138 |
-
border-radius: 0 0 5px 5px;
|
139 |
-
background-color: var(--jkit-bg-color);
|
140 |
-
}
|
141 |
-
}
|
142 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/animated-text.scss
DELETED
@@ -1,444 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-animated-text {
|
4 |
-
@include transition(false, false, all .3s ease);
|
5 |
-
a {
|
6 |
-
text-decoration: none;
|
7 |
-
color: var(--jkit-txt-h-color);
|
8 |
-
}
|
9 |
-
.animated-text {
|
10 |
-
padding: 0;
|
11 |
-
margin: 0;
|
12 |
-
display: inline-block;
|
13 |
-
.normal-text {
|
14 |
-
z-index: 1;
|
15 |
-
position: relative;
|
16 |
-
vertical-align: bottom;
|
17 |
-
font-size: 43px;
|
18 |
-
font-weight: 500;
|
19 |
-
line-height: 1.2;
|
20 |
-
&.style-gradient {
|
21 |
-
background: var(--jkit-element-darken-bg-color);
|
22 |
-
background: linear-gradient(180deg, var(--jkit-element-lighten-bg-color) 0%, var(--jkit-element-darken-bg-color) 100%);
|
23 |
-
-moz-text-fill-color: transparent;
|
24 |
-
-o-text-fill-color: transparent;
|
25 |
-
-webkit-text-fill-color: transparent;
|
26 |
-
background-clip: text;
|
27 |
-
-webkit-background-clip: text;
|
28 |
-
}
|
29 |
-
}
|
30 |
-
.dynamic-wrapper {
|
31 |
-
overflow: visible;
|
32 |
-
text-align: inherit;
|
33 |
-
display: inline-block;
|
34 |
-
position: relative;
|
35 |
-
vertical-align: bottom;
|
36 |
-
&.style-gradient {
|
37 |
-
.dynamic-text {
|
38 |
-
background: var(--jkit-element-darken-bg-color);
|
39 |
-
background: linear-gradient(180deg, var(--jkit-element-lighten-bg-color) 0%, var(--jkit-element-darken-bg-color) 100%);
|
40 |
-
-moz-text-fill-color: transparent;
|
41 |
-
-o-text-fill-color: transparent;
|
42 |
-
-webkit-text-fill-color: transparent;
|
43 |
-
background-clip: text;
|
44 |
-
-webkit-background-clip: text;
|
45 |
-
.dynamic-text-letter {
|
46 |
-
background: var(--jkit-element-darken-bg-color);
|
47 |
-
background: linear-gradient(180deg, var(--jkit-element-lighten-bg-color) 0%, var(--jkit-element-darken-bg-color) 100%);
|
48 |
-
-moz-text-fill-color: transparent;
|
49 |
-
-o-text-fill-color: transparent;
|
50 |
-
-webkit-text-fill-color: transparent;
|
51 |
-
background-clip: text;
|
52 |
-
-webkit-background-clip: text;
|
53 |
-
}
|
54 |
-
}
|
55 |
-
}
|
56 |
-
}
|
57 |
-
.dynamic-text {
|
58 |
-
display: inline-block;
|
59 |
-
position: relative;
|
60 |
-
top: 0;
|
61 |
-
left: 0;
|
62 |
-
z-index: 1;
|
63 |
-
font-size: 43px;
|
64 |
-
font-weight: 500;
|
65 |
-
line-height: 1.2;
|
66 |
-
}
|
67 |
-
svg {
|
68 |
-
position: absolute;
|
69 |
-
left: 0;
|
70 |
-
overflow: visible;
|
71 |
-
path {
|
72 |
-
fill: none;
|
73 |
-
stroke-dasharray: 1500;
|
74 |
-
@include animation(false, jkit-animated-dash 10s infinite);
|
75 |
-
&.style-color {
|
76 |
-
stroke: var(--jkit-element-bg-color);
|
77 |
-
}
|
78 |
-
}
|
79 |
-
path:nth-of-type(2) {
|
80 |
-
@include animation(delay, .3s);
|
81 |
-
}
|
82 |
-
linearGradient {
|
83 |
-
stop:nth-of-type(1) {
|
84 |
-
stop-color: var(--jkit-element-lighten-bg-color);
|
85 |
-
}
|
86 |
-
stop:nth-of-type(2) {
|
87 |
-
stop-color: var(--jkit-element-darken-bg-color);
|
88 |
-
}
|
89 |
-
}
|
90 |
-
}
|
91 |
-
}
|
92 |
-
&[data-shape="strikethrough"] {
|
93 |
-
.animated-text svg {
|
94 |
-
top: 50%;
|
95 |
-
width: 100%;
|
96 |
-
height: 100%;
|
97 |
-
}
|
98 |
-
}
|
99 |
-
&[data-shape="double"],
|
100 |
-
&[data-shape="diagonal"],
|
101 |
-
&[data-shape="x"] {
|
102 |
-
.animated-text svg {
|
103 |
-
top: 0;
|
104 |
-
width: 100%;
|
105 |
-
height: 100%;
|
106 |
-
}
|
107 |
-
}
|
108 |
-
&[data-shape="curly"],
|
109 |
-
&[data-shape="underline-zigzag"],
|
110 |
-
&[data-shape="double-underline"],
|
111 |
-
&[data-shape="underline"] {
|
112 |
-
.animated-text svg {
|
113 |
-
top: 90%;
|
114 |
-
width: 100%;
|
115 |
-
height: 100%;
|
116 |
-
}
|
117 |
-
}
|
118 |
-
&[data-shape="circle"] {
|
119 |
-
.animated-text svg {
|
120 |
-
top: 0;
|
121 |
-
width: calc(100% + 20px);
|
122 |
-
height: calc(100% + 20px);
|
123 |
-
@include transform(false, translate(-10px, -10px));
|
124 |
-
}
|
125 |
-
}
|
126 |
-
&[data-style="rotating"] {
|
127 |
-
.animated-text .dynamic-text {
|
128 |
-
&:not(.show-text) {
|
129 |
-
visibility: hidden;
|
130 |
-
opacity: 0;
|
131 |
-
display: none;
|
132 |
-
}
|
133 |
-
}
|
134 |
-
&[data-rotate="typing"] {
|
135 |
-
.animated-text {
|
136 |
-
.dynamic-wrapper {
|
137 |
-
&:after {
|
138 |
-
content: "";
|
139 |
-
position: absolute;
|
140 |
-
left: auto;
|
141 |
-
right: 0;
|
142 |
-
top: 50%;
|
143 |
-
@include transform(false, translateY(-50%));
|
144 |
-
height: 90%;
|
145 |
-
width: 1px;
|
146 |
-
background-color: var(--jkit-txt-color);
|
147 |
-
}
|
148 |
-
&.cursor-blink:after {
|
149 |
-
@include animation(false, jkit-animated-pulse 1s infinite);
|
150 |
-
}
|
151 |
-
&.typing-delete {
|
152 |
-
background: var(--jkit-txt-h-color);
|
153 |
-
&.style-gradient .dynamic-text {
|
154 |
-
color: var(--jkit-txt-m-color);
|
155 |
-
background: none;
|
156 |
-
background-clip: border-box;
|
157 |
-
-webkit-background-clip: border-box;
|
158 |
-
-moz-text-fill-color: unset;
|
159 |
-
-o-text-fill-color: unset;
|
160 |
-
-webkit-text-fill-color: unset;
|
161 |
-
.dynamic-text-letter {
|
162 |
-
background: none;
|
163 |
-
background-clip: border-box;
|
164 |
-
-webkit-background-clip: border-box;
|
165 |
-
-webkit-background-clip: border-box;
|
166 |
-
-moz-text-fill-color: unset;
|
167 |
-
-o-text-fill-color: unset;
|
168 |
-
-webkit-text-fill-color: unset;
|
169 |
-
}
|
170 |
-
}
|
171 |
-
.dynamic-text .dynamic-text-letter {
|
172 |
-
color: var(--jkit-txt-m-color);
|
173 |
-
}
|
174 |
-
}
|
175 |
-
}
|
176 |
-
.dynamic-text-letter {
|
177 |
-
&:not(.show-letter) {
|
178 |
-
display: none;
|
179 |
-
}
|
180 |
-
}
|
181 |
-
}
|
182 |
-
}
|
183 |
-
&[data-rotate="swirl"] {
|
184 |
-
.animated-text {
|
185 |
-
.dynamic-wrapper {
|
186 |
-
@include transition(false, false, width .3s ease);
|
187 |
-
overflow: hidden;
|
188 |
-
}
|
189 |
-
.dynamic-text-letter {
|
190 |
-
display: inline-block;
|
191 |
-
@include transform(style, preserve-3d);
|
192 |
-
@include transform(false, translateZ(-20px) rotateX(90deg));
|
193 |
-
-webkit-backface-visibility: hidden;
|
194 |
-
backface-visibility: hidden;
|
195 |
-
&.show-letter {
|
196 |
-
@include animation(false, jkit-animated-swirl-in .4s forwards);
|
197 |
-
}
|
198 |
-
}
|
199 |
-
}
|
200 |
-
}
|
201 |
-
&[data-rotate="blinds"] {
|
202 |
-
@include transition(false, false, width .3s ease);
|
203 |
-
.animated-text .dynamic-text-letter {
|
204 |
-
@include transform(false, rotateY(180deg));
|
205 |
-
display: inline-block;
|
206 |
-
-webkit-backface-visibility: hidden;
|
207 |
-
backface-visibility: hidden;
|
208 |
-
&.show-letter {
|
209 |
-
@include animation(false, jkit-animated-blinds-in .6s forwards);
|
210 |
-
}
|
211 |
-
}
|
212 |
-
}
|
213 |
-
&[data-rotate="wave"] {
|
214 |
-
@include transition(false, false, width .3s ease);
|
215 |
-
.animated-text .dynamic-text-letter {
|
216 |
-
@include transform(false, scale(0));
|
217 |
-
display: inline-block;
|
218 |
-
-webkit-backface-visibility: hidden;
|
219 |
-
backface-visibility: hidden;
|
220 |
-
&.show-letter {
|
221 |
-
@include animation(false, jkit-animated-wave-up .3s forwards);
|
222 |
-
}
|
223 |
-
}
|
224 |
-
}
|
225 |
-
&[data-rotate="flip"] {
|
226 |
-
.animated-text {
|
227 |
-
.dynamic-wrapper {
|
228 |
-
@include transition(false, false, width .3s ease);
|
229 |
-
overflow: hidden;
|
230 |
-
}
|
231 |
-
.dynamic-text {
|
232 |
-
@include transform(origin, 50% 100%);
|
233 |
-
@include transform(false, rotateX(180deg));
|
234 |
-
position: relative;
|
235 |
-
&.show-text {
|
236 |
-
position: relative;
|
237 |
-
white-space: nowrap;
|
238 |
-
@include transform(false, rotateX(0deg));
|
239 |
-
@include animation(false, jkit-animated-flip-in 1.2s);
|
240 |
-
}
|
241 |
-
&:not(.show-text) {
|
242 |
-
display: inline-block;
|
243 |
-
position: absolute;
|
244 |
-
visibility: visible;
|
245 |
-
@include transform(false, rotateX(180deg));
|
246 |
-
@include animation(false, jkit-animated-flip-out 1.2s);
|
247 |
-
}
|
248 |
-
}
|
249 |
-
}
|
250 |
-
}
|
251 |
-
&[data-rotate="drop-in"] {
|
252 |
-
.animated-text {
|
253 |
-
.dynamic-wrapper {
|
254 |
-
@include transition(false, false, width .3s ease);
|
255 |
-
-webkit-perspective: 300px;
|
256 |
-
perspective: 300px;
|
257 |
-
overflow: hidden;
|
258 |
-
}
|
259 |
-
.dynamic-text {
|
260 |
-
position: relative;
|
261 |
-
&.show-text {
|
262 |
-
position: relative;
|
263 |
-
white-space: nowrap;
|
264 |
-
@include animation(false, jkit-animated-drop-in-in 0.6s);
|
265 |
-
}
|
266 |
-
&:not(.show-text) {
|
267 |
-
display: inline-block;
|
268 |
-
position: absolute;
|
269 |
-
visibility: visible;
|
270 |
-
@include animation(false, jkit-animated-drop-in-out 0.6s);
|
271 |
-
}
|
272 |
-
}
|
273 |
-
}
|
274 |
-
}
|
275 |
-
&[data-rotate="slide-left"] {
|
276 |
-
.animated-text {
|
277 |
-
.dynamic-wrapper {
|
278 |
-
@include transition(false, false, width .3s ease);
|
279 |
-
overflow: hidden;
|
280 |
-
}
|
281 |
-
.dynamic-text {
|
282 |
-
&.show-text {
|
283 |
-
position: relative;
|
284 |
-
white-space: nowrap;
|
285 |
-
@include animation(false, jkit-animated-slide-left-in .6s);
|
286 |
-
}
|
287 |
-
&:not(.show-text) {
|
288 |
-
display: inline-block;
|
289 |
-
position: absolute;
|
290 |
-
visibility: visible;
|
291 |
-
@include animation(false, jkit-animated-slide-left-out .6s);
|
292 |
-
}
|
293 |
-
}
|
294 |
-
}
|
295 |
-
}
|
296 |
-
&[data-rotate="slide-right"] {
|
297 |
-
.animated-text {
|
298 |
-
.dynamic-wrapper {
|
299 |
-
@include transition(false, false, width .3s ease);
|
300 |
-
overflow: hidden;
|
301 |
-
}
|
302 |
-
.dynamic-text {
|
303 |
-
&.show-text {
|
304 |
-
position: relative;
|
305 |
-
white-space: nowrap;
|
306 |
-
@include animation(false, jkit-animated-slide-right-in .6s);
|
307 |
-
}
|
308 |
-
&:not(.show-text) {
|
309 |
-
display: inline-block;
|
310 |
-
position: absolute;
|
311 |
-
visibility: visible;
|
312 |
-
@include animation(false, jkit-animated-slide-right-out .6s);
|
313 |
-
}
|
314 |
-
}
|
315 |
-
}
|
316 |
-
}
|
317 |
-
&[data-rotate="slide-up"] {
|
318 |
-
.animated-text {
|
319 |
-
.dynamic-wrapper {
|
320 |
-
@include transition(false, false, width .3s ease);
|
321 |
-
overflow: hidden;
|
322 |
-
}
|
323 |
-
.dynamic-text {
|
324 |
-
&.show-text {
|
325 |
-
position: relative;
|
326 |
-
white-space: nowrap;
|
327 |
-
@include animation(false, jkit-animated-slide-up-in .6s);
|
328 |
-
}
|
329 |
-
&:not(.show-text) {
|
330 |
-
display: inline-block;
|
331 |
-
position: absolute;
|
332 |
-
visibility: visible;
|
333 |
-
@include animation(false, jkit-animated-slide-up-out .6s);
|
334 |
-
}
|
335 |
-
}
|
336 |
-
}
|
337 |
-
}
|
338 |
-
&[data-rotate="slide-down"] {
|
339 |
-
.animated-text {
|
340 |
-
.dynamic-wrapper {
|
341 |
-
@include transition(false, false, width .3s ease);
|
342 |
-
overflow: hidden;
|
343 |
-
}
|
344 |
-
.dynamic-text {
|
345 |
-
&.show-text {
|
346 |
-
position: relative;
|
347 |
-
white-space: nowrap;
|
348 |
-
@include animation(false, jkit-animated-slide-down-in .6s);
|
349 |
-
}
|
350 |
-
&:not(.show-text) {
|
351 |
-
display: inline-block;
|
352 |
-
position: absolute;
|
353 |
-
visibility: visible;
|
354 |
-
@include animation(false, jkit-animated-slide-down-out .6s);
|
355 |
-
}
|
356 |
-
}
|
357 |
-
}
|
358 |
-
}
|
359 |
-
&[data-rotate="bounce"] {
|
360 |
-
.animated-text {
|
361 |
-
.dynamic-wrapper {
|
362 |
-
@include transition(false, false, width .3s ease);
|
363 |
-
overflow: hidden;
|
364 |
-
}
|
365 |
-
.dynamic-text {
|
366 |
-
&.show-text {
|
367 |
-
position: relative;
|
368 |
-
white-space: nowrap;
|
369 |
-
@include animation(false, jkit-animated-bounce-in .6s);
|
370 |
-
}
|
371 |
-
&:not(.show-text) {
|
372 |
-
display: inline-block;
|
373 |
-
position: absolute;
|
374 |
-
visibility: visible;
|
375 |
-
@include animation(false, jkit-animated-bounce-out .6s);
|
376 |
-
}
|
377 |
-
}
|
378 |
-
}
|
379 |
-
}
|
380 |
-
&[data-rotate="swing"] {
|
381 |
-
.animated-text {
|
382 |
-
.dynamic-wrapper {
|
383 |
-
@include transition(false, false, width .3s ease);
|
384 |
-
overflow: hidden;
|
385 |
-
}
|
386 |
-
.dynamic-text {
|
387 |
-
&.show-text {
|
388 |
-
position: relative;
|
389 |
-
white-space: nowrap;
|
390 |
-
@include animation(false, jkit-animated-swing-in .6s);
|
391 |
-
}
|
392 |
-
&:not(.show-text) {
|
393 |
-
display: inline-block;
|
394 |
-
position: absolute;
|
395 |
-
visibility: visible;
|
396 |
-
@include animation(false, jkit-animated-swing-out .6s);
|
397 |
-
}
|
398 |
-
}
|
399 |
-
}
|
400 |
-
}
|
401 |
-
&[data-rotate="rubber-band"] {
|
402 |
-
.animated-text {
|
403 |
-
.dynamic-wrapper {
|
404 |
-
@include transition(false, false, width .3s ease);
|
405 |
-
overflow: hidden;
|
406 |
-
}
|
407 |
-
.dynamic-text {
|
408 |
-
&.show-text {
|
409 |
-
position: relative;
|
410 |
-
white-space: nowrap;
|
411 |
-
@include animation(false, jkit-animated-rubber-band-in .6s);
|
412 |
-
}
|
413 |
-
&:not(.show-text) {
|
414 |
-
display: inline-block;
|
415 |
-
position: absolute;
|
416 |
-
visibility: visible;
|
417 |
-
@include animation(false, jkit-animated-rubber-band-out .6s);
|
418 |
-
}
|
419 |
-
}
|
420 |
-
}
|
421 |
-
}
|
422 |
-
&[data-rotate="clip"] {
|
423 |
-
.animated-text {
|
424 |
-
.dynamic-wrapper {
|
425 |
-
overflow: hidden;
|
426 |
-
text-align: left;
|
427 |
-
&:after {
|
428 |
-
content: "";
|
429 |
-
position: absolute;
|
430 |
-
left: auto;
|
431 |
-
right: 0;
|
432 |
-
top: 0;
|
433 |
-
height: 100%;
|
434 |
-
width: 2px;
|
435 |
-
background-color: var(--jkit-txt-color);
|
436 |
-
}
|
437 |
-
}
|
438 |
-
.dynamic-text.show-text {
|
439 |
-
white-space: nowrap;
|
440 |
-
}
|
441 |
-
}
|
442 |
-
}
|
443 |
-
}
|
444 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/button.scss
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-button {
|
4 |
-
.jkit-button-wrapper {
|
5 |
-
border-radius: 5px;
|
6 |
-
font-size: 15px;
|
7 |
-
padding: 15px 30px;
|
8 |
-
display: inline-block;
|
9 |
-
color: var(--jkit-txt-alt-color);
|
10 |
-
position: relative;
|
11 |
-
display: inline-block;
|
12 |
-
line-height: 1;
|
13 |
-
-webkit-user-select: none;
|
14 |
-
-ms-user-select: none;
|
15 |
-
user-select: none;
|
16 |
-
white-space: nowrap;
|
17 |
-
vertical-align: middle;
|
18 |
-
text-align: center;
|
19 |
-
background-color: var(--jkit-btn-bg-color);
|
20 |
-
@include transition(false, false, all .4s ease);
|
21 |
-
&:hover {
|
22 |
-
background-color: var(--jkit-btn-bg-hover-color);
|
23 |
-
}
|
24 |
-
i, svg {
|
25 |
-
display: inline-block;
|
26 |
-
vertical-align: middle;
|
27 |
-
}
|
28 |
-
svg {
|
29 |
-
fill: var(--jkit-txt-alt-color);
|
30 |
-
@include transition(false, false, all .4s ease);
|
31 |
-
}
|
32 |
-
}
|
33 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/category-list.scss
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-categorylist {
|
4 |
-
.category-list-item a {
|
5 |
-
display: inline-flex;
|
6 |
-
@include alignitemscenter();
|
7 |
-
@include transition(false, false, all .4s ease);
|
8 |
-
position: relative;
|
9 |
-
color: var(--jkit-txt-h-color);
|
10 |
-
&:hover {
|
11 |
-
color: var(--jkit-txt-h-color);
|
12 |
-
svg {
|
13 |
-
fill: var(--jkit-txt-h-color);
|
14 |
-
}
|
15 |
-
}
|
16 |
-
.jkit-categorylist-content {
|
17 |
-
z-index: 2;
|
18 |
-
display: block;
|
19 |
-
margin-bottom: 0;
|
20 |
-
}
|
21 |
-
.icon-list {
|
22 |
-
text-align: center;
|
23 |
-
}
|
24 |
-
svg {
|
25 |
-
fill: var(--jkit-txt-h-color);
|
26 |
-
}
|
27 |
-
}
|
28 |
-
&.layout-horizontal {
|
29 |
-
@include displayflex();
|
30 |
-
@include alignitemsstart();
|
31 |
-
@include flexwrap();
|
32 |
-
}
|
33 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/client-logo.scss
DELETED
@@ -1,651 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-client-logo {
|
5 |
-
position: relative;
|
6 |
-
display: inline-block;
|
7 |
-
overflow: hidden;
|
8 |
-
width: 100%;
|
9 |
-
.client-list {
|
10 |
-
position: relative;
|
11 |
-
z-index: 1;
|
12 |
-
}
|
13 |
-
.client-track {
|
14 |
-
.image-list {
|
15 |
-
@include displayflex();
|
16 |
-
@include alignitemscenter();
|
17 |
-
-webkit-box-pack: justify;
|
18 |
-
-ms-flex-pack: justify;
|
19 |
-
justify-content: center;
|
20 |
-
overflow: hidden;
|
21 |
-
&:hover .content-image .hover-image {
|
22 |
-
opacity: 1;
|
23 |
-
@include transition(false, false, opacity .25s ease-in-out .0s);
|
24 |
-
}
|
25 |
-
}
|
26 |
-
.content-image {
|
27 |
-
position: relative;
|
28 |
-
line-height: 0;
|
29 |
-
width: 100%;
|
30 |
-
.main-image {
|
31 |
-
height: auto;
|
32 |
-
width: 100%;
|
33 |
-
}
|
34 |
-
.hover-image {
|
35 |
-
position: absolute;
|
36 |
-
left: 0px;
|
37 |
-
top: 50%;
|
38 |
-
@include transform(false, translateY(-50%));
|
39 |
-
opacity: 0;
|
40 |
-
height: auto;
|
41 |
-
width: 100%;
|
42 |
-
}
|
43 |
-
}
|
44 |
-
.client-slider.hover-enable:hover .content-image .main-image {
|
45 |
-
opacity: 0;
|
46 |
-
visibility: hidden;
|
47 |
-
@include transition(false, false, all 0.25s ease);
|
48 |
-
}
|
49 |
-
}
|
50 |
-
.client-track:not(.tns-slider) .client-slider {
|
51 |
-
margin-right: 10px;
|
52 |
-
}
|
53 |
-
.tns-nav {
|
54 |
-
text-align: center;
|
55 |
-
button {
|
56 |
-
width: 9px;
|
57 |
-
height: 9px;
|
58 |
-
padding: 0;
|
59 |
-
margin: 0 5px;
|
60 |
-
border-radius: 50%;
|
61 |
-
background: var(--jkit-txt-m-color);
|
62 |
-
border: 0;
|
63 |
-
&.tns-nav-active {
|
64 |
-
background: var(--jkit-txt-color);
|
65 |
-
}
|
66 |
-
}
|
67 |
-
}
|
68 |
-
.tns-horizontal.tns-subpixel>.tns-item {
|
69 |
-
vertical-align: middle;
|
70 |
-
}
|
71 |
-
.tns-controls button {
|
72 |
-
color: var(--jkit-txt-color);
|
73 |
-
border: 0px;
|
74 |
-
background: none;
|
75 |
-
i, svg {
|
76 |
-
@include transition(false, false, all .4s ease);
|
77 |
-
}
|
78 |
-
}
|
79 |
-
&.arrow-bottom-middle {
|
80 |
-
.tns-controls {
|
81 |
-
text-align: center;
|
82 |
-
button[data-controls="prev"],
|
83 |
-
button[data-controls="next"] {
|
84 |
-
color: var(--jkit-txt-color);
|
85 |
-
display: inline-block;
|
86 |
-
margin: 0;
|
87 |
-
padding: 0;
|
88 |
-
}
|
89 |
-
}
|
90 |
-
}
|
91 |
-
&.arrow-bottom-edge {
|
92 |
-
.tns-controls {
|
93 |
-
button[data-controls="next"] {
|
94 |
-
display: inline-block;
|
95 |
-
position: absolute;
|
96 |
-
right: 0;
|
97 |
-
}
|
98 |
-
}
|
99 |
-
}
|
100 |
-
&.arrow-middle-edge {
|
101 |
-
.tns-controls {
|
102 |
-
button {
|
103 |
-
display: inline-block;
|
104 |
-
position: absolute;
|
105 |
-
top: 50%;
|
106 |
-
@include transform(false, translate(0%, -50%));
|
107 |
-
z-index: 2;
|
108 |
-
&[data-controls="prev"] {
|
109 |
-
left: 0;
|
110 |
-
}
|
111 |
-
&[data-controls="next"] {
|
112 |
-
right: 0;
|
113 |
-
}
|
114 |
-
}
|
115 |
-
}
|
116 |
-
}
|
117 |
-
&.arrow-top-right {
|
118 |
-
.tns-controls {
|
119 |
-
text-align: right;
|
120 |
-
button[data-controls="prev"],
|
121 |
-
button[data-controls="next"] {
|
122 |
-
color: var(--jkit-txt-color);
|
123 |
-
display: inline-block;
|
124 |
-
margin: 0;
|
125 |
-
padding: 0;
|
126 |
-
}
|
127 |
-
}
|
128 |
-
}
|
129 |
-
&.arrow-top-left {
|
130 |
-
.tns-controls {
|
131 |
-
text-align: left;
|
132 |
-
button[data-controls="prev"],
|
133 |
-
button[data-controls="next"] {
|
134 |
-
color: var(--jkit-txt-color);
|
135 |
-
display: inline-block;
|
136 |
-
margin: 0;
|
137 |
-
padding: 0;
|
138 |
-
}
|
139 |
-
}
|
140 |
-
}
|
141 |
-
&.grid-desktop-1 {
|
142 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
143 |
-
.client-track:not(.tns-slider) {
|
144 |
-
display: flex;
|
145 |
-
flex-direction: row;
|
146 |
-
.client-slider {
|
147 |
-
width: 100%;
|
148 |
-
&:nth-child(n+2) {
|
149 |
-
display: none;
|
150 |
-
}
|
151 |
-
}
|
152 |
-
}
|
153 |
-
.client-track:not(:nth-child(1)) {
|
154 |
-
margin-right: 10px;
|
155 |
-
}
|
156 |
-
}
|
157 |
-
}
|
158 |
-
&.grid-desktop-2 {
|
159 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
160 |
-
.client-track:not(.tns-slider) {
|
161 |
-
display: flex;
|
162 |
-
flex-direction: row;
|
163 |
-
.client-slider {
|
164 |
-
width: 100%;
|
165 |
-
&:nth-child(n+3) {
|
166 |
-
display: none;
|
167 |
-
}
|
168 |
-
}
|
169 |
-
}
|
170 |
-
.client-track:not(:nth-child(2)) {
|
171 |
-
margin-right: 10px;
|
172 |
-
}
|
173 |
-
}
|
174 |
-
}
|
175 |
-
&.grid-desktop-3 {
|
176 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
177 |
-
.client-track:not(.tns-slider) {
|
178 |
-
display: flex;
|
179 |
-
flex-direction: row;
|
180 |
-
.client-slider {
|
181 |
-
width: 100%;
|
182 |
-
&:nth-child(n+4) {
|
183 |
-
display: none;
|
184 |
-
}
|
185 |
-
}
|
186 |
-
}
|
187 |
-
.client-track:not(:nth-child(3)) {
|
188 |
-
margin-right: 10px;
|
189 |
-
}
|
190 |
-
}
|
191 |
-
}
|
192 |
-
&.grid-desktop-4 {
|
193 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
194 |
-
.client-track:not(.tns-slider) {
|
195 |
-
display: flex;
|
196 |
-
flex-direction: row;
|
197 |
-
.client-slider {
|
198 |
-
width: 100%;
|
199 |
-
&:nth-child(n+5) {
|
200 |
-
display: none;
|
201 |
-
}
|
202 |
-
}
|
203 |
-
}
|
204 |
-
.client-track:not(:nth-child(4)) {
|
205 |
-
margin-right: 10px;
|
206 |
-
}
|
207 |
-
}
|
208 |
-
}
|
209 |
-
&.grid-desktop-5 {
|
210 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
211 |
-
.client-track:not(.tns-slider) {
|
212 |
-
display: flex;
|
213 |
-
flex-direction: row;
|
214 |
-
.client-slider {
|
215 |
-
width: 100%;
|
216 |
-
&:nth-child(n+6) {
|
217 |
-
display: none;
|
218 |
-
}
|
219 |
-
}
|
220 |
-
}
|
221 |
-
.client-track:not(:nth-child(5)) {
|
222 |
-
margin-right: 10px;
|
223 |
-
}
|
224 |
-
}
|
225 |
-
}
|
226 |
-
&.grid-desktop-6 {
|
227 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
228 |
-
.client-track:not(.tns-slider) {
|
229 |
-
display: flex;
|
230 |
-
flex-direction: row;
|
231 |
-
.client-slider {
|
232 |
-
width: 100%;
|
233 |
-
&:nth-child(n+7) {
|
234 |
-
display: none;
|
235 |
-
}
|
236 |
-
}
|
237 |
-
}
|
238 |
-
.client-track:not(:nth-child(6)) {
|
239 |
-
margin-right: 10px;
|
240 |
-
}
|
241 |
-
}
|
242 |
-
}
|
243 |
-
&.grid-desktop-7 {
|
244 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
245 |
-
.client-track:not(.tns-slider) {
|
246 |
-
display: flex;
|
247 |
-
flex-direction: row;
|
248 |
-
.client-slider {
|
249 |
-
width: 100%;
|
250 |
-
&:nth-child(n+8) {
|
251 |
-
display: none;
|
252 |
-
}
|
253 |
-
}
|
254 |
-
}
|
255 |
-
.client-track:not(:nth-child(7)) {
|
256 |
-
margin-right: 10px;
|
257 |
-
}
|
258 |
-
}
|
259 |
-
}
|
260 |
-
&.grid-desktop-8 {
|
261 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
262 |
-
.client-track:not(.tns-slider) {
|
263 |
-
display: flex;
|
264 |
-
flex-direction: row;
|
265 |
-
.client-slider {
|
266 |
-
width: 100%;
|
267 |
-
&:nth-child(n+9) {
|
268 |
-
display: none;
|
269 |
-
}
|
270 |
-
}
|
271 |
-
}
|
272 |
-
.client-track:not(:nth-child(8)) {
|
273 |
-
margin-right: 10px;
|
274 |
-
}
|
275 |
-
}
|
276 |
-
}
|
277 |
-
&.grid-desktop-9 {
|
278 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
279 |
-
.client-track:not(.tns-slider) {
|
280 |
-
display: flex;
|
281 |
-
flex-direction: row;
|
282 |
-
.client-slider {
|
283 |
-
width: 100%;
|
284 |
-
&:nth-child(n+10) {
|
285 |
-
display: none;
|
286 |
-
}
|
287 |
-
}
|
288 |
-
}
|
289 |
-
.client-track:not(:nth-child(9)) {
|
290 |
-
margin-right: 10px;
|
291 |
-
}
|
292 |
-
}
|
293 |
-
}
|
294 |
-
&.grid-desktop-10 {
|
295 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
296 |
-
.client-track:not(.tns-slider) {
|
297 |
-
display: flex;
|
298 |
-
flex-direction: row;
|
299 |
-
.client-slider {
|
300 |
-
width: 100%;
|
301 |
-
&:nth-child(n+11) {
|
302 |
-
display: none;
|
303 |
-
}
|
304 |
-
}
|
305 |
-
}
|
306 |
-
.client-track:not(:nth-child(10)) {
|
307 |
-
margin-right: 10px;
|
308 |
-
}
|
309 |
-
}
|
310 |
-
}
|
311 |
-
&.grid-tablet-1 {
|
312 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
313 |
-
.client-track:not(.tns-slider) {
|
314 |
-
display: flex;
|
315 |
-
flex-direction: row;
|
316 |
-
.client-slider {
|
317 |
-
width: 100%;
|
318 |
-
&:nth-child(n+11) {
|
319 |
-
display: none;
|
320 |
-
}
|
321 |
-
}
|
322 |
-
}
|
323 |
-
.client-track:not(:nth-child(1)) {
|
324 |
-
margin-right: 10px;
|
325 |
-
}
|
326 |
-
}
|
327 |
-
}
|
328 |
-
&.grid-tablet-2 {
|
329 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
330 |
-
.client-track:not(.tns-slider) {
|
331 |
-
display: flex;
|
332 |
-
flex-direction: row;
|
333 |
-
.client-slider {
|
334 |
-
width: 100%;
|
335 |
-
&:nth-child(n+3) {
|
336 |
-
display: none;
|
337 |
-
}
|
338 |
-
}
|
339 |
-
}
|
340 |
-
.client-track:not(:nth-child(2)) {
|
341 |
-
margin-right: 10px;
|
342 |
-
}
|
343 |
-
}
|
344 |
-
}
|
345 |
-
&.grid-tablet-3 {
|
346 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
347 |
-
.client-track:not(.tns-slider) {
|
348 |
-
display: flex;
|
349 |
-
flex-direction: row;
|
350 |
-
.client-slider {
|
351 |
-
width: 100%;
|
352 |
-
&:nth-child(n+4) {
|
353 |
-
display: none;
|
354 |
-
}
|
355 |
-
}
|
356 |
-
}
|
357 |
-
.client-track:not(:nth-child(3)) {
|
358 |
-
margin-right: 10px;
|
359 |
-
}
|
360 |
-
}
|
361 |
-
}
|
362 |
-
&.grid-tablet-4 {
|
363 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
364 |
-
.client-track:not(.tns-slider) {
|
365 |
-
display: flex;
|
366 |
-
flex-direction: row;
|
367 |
-
.client-slider {
|
368 |
-
width: 100%;
|
369 |
-
&:nth-child(n+5) {
|
370 |
-
display: none;
|
371 |
-
}
|
372 |
-
}
|
373 |
-
}
|
374 |
-
.client-track:not(:nth-child(4)) {
|
375 |
-
margin-right: 10px;
|
376 |
-
}
|
377 |
-
}
|
378 |
-
}
|
379 |
-
&.grid-tablet-5 {
|
380 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
381 |
-
.client-track:not(.tns-slider) {
|
382 |
-
display: flex;
|
383 |
-
flex-direction: row;
|
384 |
-
.client-slider {
|
385 |
-
width: 100%;
|
386 |
-
&:nth-child(n+6) {
|
387 |
-
display: none;
|
388 |
-
}
|
389 |
-
}
|
390 |
-
}
|
391 |
-
.client-track:not(:nth-child(5)) {
|
392 |
-
margin-right: 10px;
|
393 |
-
}
|
394 |
-
}
|
395 |
-
}
|
396 |
-
&.grid-tablet-6 {
|
397 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
398 |
-
.client-track:not(.tns-slider) {
|
399 |
-
display: flex;
|
400 |
-
flex-direction: row;
|
401 |
-
.client-slider {
|
402 |
-
width: 100%;
|
403 |
-
&:nth-child(n+7) {
|
404 |
-
display: none;
|
405 |
-
}
|
406 |
-
}
|
407 |
-
}
|
408 |
-
.client-track:not(:nth-child(6)) {
|
409 |
-
margin-right: 10px;
|
410 |
-
}
|
411 |
-
}
|
412 |
-
}
|
413 |
-
&.grid-tablet-7 {
|
414 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
415 |
-
.client-track:not(.tns-slider) {
|
416 |
-
display: flex;
|
417 |
-
flex-direction: row;
|
418 |
-
.client-slider {
|
419 |
-
width: 100%;
|
420 |
-
&:nth-child(n+8) {
|
421 |
-
display: none;
|
422 |
-
}
|
423 |
-
}
|
424 |
-
}
|
425 |
-
.client-track:not(:nth-child(7)) {
|
426 |
-
margin-right: 10px;
|
427 |
-
}
|
428 |
-
}
|
429 |
-
}
|
430 |
-
&.grid-tablet-8 {
|
431 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
432 |
-
.client-track:not(.tns-slider) {
|
433 |
-
display: flex;
|
434 |
-
flex-direction: row;
|
435 |
-
.client-slider {
|
436 |
-
width: 100%;
|
437 |
-
&:nth-child(n+9) {
|
438 |
-
display: none;
|
439 |
-
}
|
440 |
-
}
|
441 |
-
}
|
442 |
-
.client-track:not(:nth-child(8)) {
|
443 |
-
margin-right: 10px;
|
444 |
-
}
|
445 |
-
}
|
446 |
-
}
|
447 |
-
&.grid-tablet-9 {
|
448 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
449 |
-
.client-track:not(.tns-slider) {
|
450 |
-
display: flex;
|
451 |
-
flex-direction: row;
|
452 |
-
.client-slider {
|
453 |
-
width: 100%;
|
454 |
-
&:nth-child(n+10) {
|
455 |
-
display: none;
|
456 |
-
}
|
457 |
-
}
|
458 |
-
}
|
459 |
-
.client-track:not(:nth-child(9)) {
|
460 |
-
margin-right: 10px;
|
461 |
-
}
|
462 |
-
}
|
463 |
-
}
|
464 |
-
&.grid-tablet-10 {
|
465 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
466 |
-
.client-track:not(.tns-slider) {
|
467 |
-
display: flex;
|
468 |
-
flex-direction: row;
|
469 |
-
.client-slider {
|
470 |
-
width: 100%;
|
471 |
-
&:nth-child(n+11) {
|
472 |
-
display: none;
|
473 |
-
}
|
474 |
-
}
|
475 |
-
}
|
476 |
-
.client-track:not(:nth-child(10)) {
|
477 |
-
margin-right: 10px;
|
478 |
-
}
|
479 |
-
}
|
480 |
-
}
|
481 |
-
&.grid-mobile-1 {
|
482 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
483 |
-
.client-track:not(.tns-slider) {
|
484 |
-
display: flex;
|
485 |
-
flex-direction: row;
|
486 |
-
.client-slider {
|
487 |
-
width: 100%;
|
488 |
-
&:nth-child(n+2) {
|
489 |
-
display: none;
|
490 |
-
}
|
491 |
-
}
|
492 |
-
}
|
493 |
-
.client-track:not(:nth-child(1)) {
|
494 |
-
margin-right: 10px;
|
495 |
-
}
|
496 |
-
}
|
497 |
-
}
|
498 |
-
&.grid-mobile-2 {
|
499 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
500 |
-
.client-track:not(.tns-slider) {
|
501 |
-
display: flex;
|
502 |
-
flex-direction: row;
|
503 |
-
.client-slider {
|
504 |
-
width: 100%;
|
505 |
-
&:nth-child(n+3) {
|
506 |
-
display: none;
|
507 |
-
}
|
508 |
-
}
|
509 |
-
}
|
510 |
-
.client-track:not(:nth-child(2)) {
|
511 |
-
margin-right: 10px;
|
512 |
-
}
|
513 |
-
}
|
514 |
-
}
|
515 |
-
&.grid-mobile-3 {
|
516 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
517 |
-
.client-track:not(.tns-slider) {
|
518 |
-
display: flex;
|
519 |
-
flex-direction: row;
|
520 |
-
.client-slider {
|
521 |
-
width: 100%;
|
522 |
-
&:nth-child(n+4) {
|
523 |
-
display: none;
|
524 |
-
}
|
525 |
-
}
|
526 |
-
}
|
527 |
-
.client-track:not(:nth-child(3)) {
|
528 |
-
margin-right: 10px;
|
529 |
-
}
|
530 |
-
}
|
531 |
-
}
|
532 |
-
&.grid-mobile-4 {
|
533 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
534 |
-
.client-track:not(.tns-slider) {
|
535 |
-
display: flex;
|
536 |
-
flex-direction: row;
|
537 |
-
.client-slider {
|
538 |
-
width: 100%;
|
539 |
-
&:nth-child(n+5) {
|
540 |
-
display: none;
|
541 |
-
}
|
542 |
-
}
|
543 |
-
}
|
544 |
-
.client-track:not(:nth-child(4)) {
|
545 |
-
margin-right: 10px;
|
546 |
-
}
|
547 |
-
}
|
548 |
-
}
|
549 |
-
&.grid-mobile-5 {
|
550 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
551 |
-
.client-track:not(.tns-slider) {
|
552 |
-
display: flex;
|
553 |
-
flex-direction: row;
|
554 |
-
.client-slider {
|
555 |
-
width: 100%;
|
556 |
-
&:nth-child(n+6) {
|
557 |
-
display: none;
|
558 |
-
}
|
559 |
-
}
|
560 |
-
}
|
561 |
-
.client-track:not(:nth-child(5)) {
|
562 |
-
margin-right: 10px;
|
563 |
-
}
|
564 |
-
}
|
565 |
-
}
|
566 |
-
&.grid-mobile-6 {
|
567 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
568 |
-
.client-track:not(.tns-slider) {
|
569 |
-
display: flex;
|
570 |
-
flex-direction: row;
|
571 |
-
.client-slider {
|
572 |
-
width: 100%;
|
573 |
-
&:nth-child(n+7) {
|
574 |
-
display: none;
|
575 |
-
}
|
576 |
-
}
|
577 |
-
}
|
578 |
-
.client-track:not(:nth-child(6)) {
|
579 |
-
margin-right: 10px;
|
580 |
-
}
|
581 |
-
}
|
582 |
-
}
|
583 |
-
&.grid-mobile-7 {
|
584 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
585 |
-
.client-track:not(.tns-slider) {
|
586 |
-
display: flex;
|
587 |
-
flex-direction: row;
|
588 |
-
.client-slider {
|
589 |
-
width: 100%;
|
590 |
-
&:nth-child(n+8) {
|
591 |
-
display: none;
|
592 |
-
}
|
593 |
-
}
|
594 |
-
}
|
595 |
-
.client-track:not(:nth-child(7)) {
|
596 |
-
margin-right: 10px;
|
597 |
-
}
|
598 |
-
}
|
599 |
-
}
|
600 |
-
&.grid-mobile-8 {
|
601 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
602 |
-
.client-track:not(.tns-slider) {
|
603 |
-
display: flex;
|
604 |
-
flex-direction: row;
|
605 |
-
.client-slider {
|
606 |
-
width: 100%;
|
607 |
-
&:nth-child(n+9) {
|
608 |
-
display: none;
|
609 |
-
}
|
610 |
-
}
|
611 |
-
}
|
612 |
-
.client-track:not(:nth-child(8)) {
|
613 |
-
margin-right: 10px;
|
614 |
-
}
|
615 |
-
}
|
616 |
-
}
|
617 |
-
&.grid-mobile-9 {
|
618 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
619 |
-
.client-track:not(.tns-slider) {
|
620 |
-
display: flex;
|
621 |
-
flex-direction: row;
|
622 |
-
.client-slider {
|
623 |
-
width: 100%;
|
624 |
-
&:nth-child(n+10) {
|
625 |
-
display: none;
|
626 |
-
}
|
627 |
-
}
|
628 |
-
}
|
629 |
-
.client-track:not(:nth-child(9)) {
|
630 |
-
margin-right: 10px;
|
631 |
-
}
|
632 |
-
}
|
633 |
-
}
|
634 |
-
&.grid-mobile-10 {
|
635 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
636 |
-
.client-track:not(.tns-slider) {
|
637 |
-
display: flex;
|
638 |
-
flex-direction: row;
|
639 |
-
.client-slider {
|
640 |
-
width: 100%;
|
641 |
-
&:nth-child(n+11) {
|
642 |
-
display: none;
|
643 |
-
}
|
644 |
-
}
|
645 |
-
}
|
646 |
-
.client-track:not(:nth-child(10)) {
|
647 |
-
margin-right: 10px;
|
648 |
-
}
|
649 |
-
}
|
650 |
-
}
|
651 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/contact-form-7.scss
DELETED
@@ -1,46 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-contact-form-7 {
|
4 |
-
&:before {
|
5 |
-
content: unset;
|
6 |
-
}
|
7 |
-
form {
|
8 |
-
label {
|
9 |
-
color: var(--jkit-form-txt-color);
|
10 |
-
width: 100%;
|
11 |
-
max-width: 380px;
|
12 |
-
span {
|
13 |
-
pointer-events: none;
|
14 |
-
color: var(--jkit-txt-m-color);
|
15 |
-
font-size: .8125rem;
|
16 |
-
display: block;
|
17 |
-
}
|
18 |
-
}
|
19 |
-
input:not([type=submit]):not([type=checkbox]):not([type=radio]),
|
20 |
-
textarea,
|
21 |
-
select {
|
22 |
-
border: 1px solid var(--jkit-form-border-color);
|
23 |
-
margin-bottom: 20px;
|
24 |
-
}
|
25 |
-
input[type=submit] {
|
26 |
-
display: inline-block;
|
27 |
-
font-weight: 400;
|
28 |
-
text-align: center;
|
29 |
-
white-space: nowrap;
|
30 |
-
vertical-align: middle;
|
31 |
-
border-radius: 0;
|
32 |
-
padding: 12px 72px;
|
33 |
-
font-size: .9375rem;
|
34 |
-
background-color: var(--jkit-btn-bg-color);
|
35 |
-
border: 0;
|
36 |
-
color: #fff;
|
37 |
-
cursor: pointer;
|
38 |
-
margin-bottom: 20px;
|
39 |
-
@include userselect('none');
|
40 |
-
@include transition(false, false, all .5s ease);
|
41 |
-
&:hover {
|
42 |
-
background-color: var(--jkit-btn-bg-hover-color);
|
43 |
-
}
|
44 |
-
}
|
45 |
-
}
|
46 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/countdown.scss
DELETED
@@ -1,70 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-countdown {
|
4 |
-
position: relative;
|
5 |
-
z-index: 10;
|
6 |
-
text-align: center;
|
7 |
-
@include displayflex();
|
8 |
-
@include flexwrap();
|
9 |
-
&.separator-enable {
|
10 |
-
.timer-container:not(:last-child) .timer-inner-container::after {
|
11 |
-
position: absolute;
|
12 |
-
left: 100%;
|
13 |
-
z-index: 1;
|
14 |
-
color: var(--jkit-form-txt-color);
|
15 |
-
font-size: 45px;
|
16 |
-
}
|
17 |
-
}
|
18 |
-
.timer-container {
|
19 |
-
-webkit-box-flex: 0;
|
20 |
-
-ms-flex: 0 0 25%;
|
21 |
-
flex: 0 0 25%;
|
22 |
-
max-width: 25%;
|
23 |
-
}
|
24 |
-
.timer-inner-container {
|
25 |
-
position: relative;
|
26 |
-
margin: auto;
|
27 |
-
margin-bottom: 0;
|
28 |
-
width: 150px;
|
29 |
-
height: 150px;
|
30 |
-
background: var(--jkit-element-bg-color);
|
31 |
-
@include displayflex();
|
32 |
-
@include alignitemscenter();
|
33 |
-
}
|
34 |
-
.timer-content {
|
35 |
-
width: 100%;
|
36 |
-
>span {
|
37 |
-
display: block;
|
38 |
-
color: #fff;
|
39 |
-
line-height: 1;
|
40 |
-
}
|
41 |
-
&.label-inline>span {
|
42 |
-
display: inline-block;
|
43 |
-
}
|
44 |
-
.timer-count {
|
45 |
-
font-size: 36px;
|
46 |
-
font-weight: 700;
|
47 |
-
margin-top: 14px;
|
48 |
-
margin-bottom: 14px;
|
49 |
-
&.timer-loading {
|
50 |
-
opacity: 0;
|
51 |
-
visibility: hidden;
|
52 |
-
}
|
53 |
-
}
|
54 |
-
.timer-title {
|
55 |
-
font-size: 14px;
|
56 |
-
letter-spacing: 2.5px;
|
57 |
-
}
|
58 |
-
}
|
59 |
-
.expire-message {
|
60 |
-
.expire-title {
|
61 |
-
font-size: 24px;
|
62 |
-
font-weight: 600;
|
63 |
-
margin-bottom: 12px;
|
64 |
-
display: block;
|
65 |
-
}
|
66 |
-
.expire-content {
|
67 |
-
display: block;
|
68 |
-
}
|
69 |
-
}
|
70 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/dual-button.scss
DELETED
@@ -1,64 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-dual-button {
|
5 |
-
@include flexwrap();
|
6 |
-
@include displayflex();
|
7 |
-
|
8 |
-
.jkit-dual-button-wrapper {
|
9 |
-
position: relative;
|
10 |
-
@include displayflex();
|
11 |
-
@include alignitemscenter();
|
12 |
-
|
13 |
-
@media screen and (max-width: 480px) {
|
14 |
-
display: block;
|
15 |
-
}
|
16 |
-
|
17 |
-
.jkit-dual-btn {
|
18 |
-
cursor: pointer;
|
19 |
-
display: inline-block;
|
20 |
-
font-size: 14px;
|
21 |
-
font-weight: 700;
|
22 |
-
outline: 0;
|
23 |
-
position: relative;
|
24 |
-
@include transition(false, false, all .4s ease);
|
25 |
-
text-align: center;
|
26 |
-
overflow: hidden;
|
27 |
-
color: var(--jkit-txt-alt-color);
|
28 |
-
width: 100%;
|
29 |
-
padding: 20px;
|
30 |
-
z-index: 1;
|
31 |
-
|
32 |
-
svg {
|
33 |
-
fill: var(--jkit-txt-alt-color);
|
34 |
-
}
|
35 |
-
}
|
36 |
-
|
37 |
-
.jkit-dual-button-one {
|
38 |
-
background: var(--jkit-btn-bg-color);
|
39 |
-
}
|
40 |
-
|
41 |
-
.jkit-dual-button-two {
|
42 |
-
background: var(--jkit-form-txt-color);
|
43 |
-
}
|
44 |
-
|
45 |
-
.jkit-dual-button-middle-text {
|
46 |
-
@include displayflex();
|
47 |
-
@include alignitemscenter();
|
48 |
-
-webkit-box-pack: center;
|
49 |
-
-ms-flex-pack: center;
|
50 |
-
justify-content: center;
|
51 |
-
border-radius: 100%;
|
52 |
-
position: relative;
|
53 |
-
background: #fafaf8;
|
54 |
-
color: #444;
|
55 |
-
position: absolute;
|
56 |
-
left: 50%;
|
57 |
-
top: 50%;
|
58 |
-
-webkit-transform: translate(-50%,-50%);
|
59 |
-
transform: translate(-50%,-50%);
|
60 |
-
font-size: 14px;
|
61 |
-
z-index: 5;
|
62 |
-
}
|
63 |
-
}
|
64 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/feature-list.scss
DELETED
@@ -1,165 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-feature-list {
|
4 |
-
.feature-list-items {
|
5 |
-
list-style-type: none;
|
6 |
-
margin: 0;
|
7 |
-
padding: 0;
|
8 |
-
|
9 |
-
.feature-list-item {
|
10 |
-
position: relative;
|
11 |
-
|
12 |
-
.feature-list-icon-box {
|
13 |
-
z-index: 2;
|
14 |
-
@include transition(false, false, all .5s ease);
|
15 |
-
}
|
16 |
-
|
17 |
-
.feature-list-icon-inner {
|
18 |
-
background-color: var(--jkit-element-bg-color);
|
19 |
-
@include transition(false, false, all .5s ease);
|
20 |
-
display: -webkit-inline-box;
|
21 |
-
display: -ms-inline-flexbox;
|
22 |
-
display: inline-flex;
|
23 |
-
}
|
24 |
-
|
25 |
-
.feature-list-icon {
|
26 |
-
color: var(--jkit-txt-alt-color);
|
27 |
-
@include transition(false, false, all .5s ease);
|
28 |
-
line-height: 1;
|
29 |
-
text-align: center;
|
30 |
-
height: 70px;
|
31 |
-
width: 70px;
|
32 |
-
display: -webkit-inline-box;
|
33 |
-
display: -ms-inline-flexbox;
|
34 |
-
display: inline-flex;
|
35 |
-
@include displayflex();
|
36 |
-
@include alignitemscenter();
|
37 |
-
justify-content: center;
|
38 |
-
|
39 |
-
i {
|
40 |
-
color: var(--jkit-txt-alt-color);
|
41 |
-
}
|
42 |
-
|
43 |
-
svg {
|
44 |
-
fill: var(--jkit-txt-alt-color);
|
45 |
-
}
|
46 |
-
}
|
47 |
-
|
48 |
-
.feature-list-content-box {
|
49 |
-
.feature-list-title {
|
50 |
-
color: var(--jkit-txt-h-color);
|
51 |
-
line-height: 1.5em;
|
52 |
-
margin-top: -2px;
|
53 |
-
margin-bottom: 10px;
|
54 |
-
font-weight: 600;
|
55 |
-
|
56 |
-
> a {
|
57 |
-
color: var(--jkit-txt-h-color);
|
58 |
-
}
|
59 |
-
}
|
60 |
-
|
61 |
-
.feature-list-content {
|
62 |
-
padding: 0;
|
63 |
-
margin: 0;
|
64 |
-
color: var(--jkit-txt-color);
|
65 |
-
font-size: 14px;
|
66 |
-
font-weight: 400;
|
67 |
-
line-height: 1.5em;
|
68 |
-
}
|
69 |
-
}
|
70 |
-
|
71 |
-
.connector {
|
72 |
-
display: block;
|
73 |
-
position: absolute;
|
74 |
-
width: 0;
|
75 |
-
margin: 0 auto;
|
76 |
-
z-index: 1;
|
77 |
-
height: 100%;
|
78 |
-
top: .5em;
|
79 |
-
font-size: 60px;
|
80 |
-
left: 0;
|
81 |
-
right: calc(100% - 60px);
|
82 |
-
border-right: 0 !important;
|
83 |
-
border-style: solid;
|
84 |
-
border-color: var(--jkit-element-bg-color);
|
85 |
-
border-width: 1px;
|
86 |
-
@include transition(false, false, all .5s ease);
|
87 |
-
}
|
88 |
-
|
89 |
-
&:last-child .connector {
|
90 |
-
display: none;
|
91 |
-
}
|
92 |
-
}
|
93 |
-
|
94 |
-
&.connector-type-modern .feature-list-item {
|
95 |
-
.connector {
|
96 |
-
display: none;
|
97 |
-
}
|
98 |
-
|
99 |
-
&:before,
|
100 |
-
&:after {
|
101 |
-
content: "";
|
102 |
-
position: absolute;
|
103 |
-
display: block;
|
104 |
-
border-style: solid;
|
105 |
-
border-color: var(--jkit-element-bg-color);
|
106 |
-
border-width: 1px;
|
107 |
-
}
|
108 |
-
|
109 |
-
&:before {
|
110 |
-
top: 0;
|
111 |
-
z-index: 1;
|
112 |
-
border-right: none !important;
|
113 |
-
height: 100%;
|
114 |
-
}
|
115 |
-
|
116 |
-
&:after {
|
117 |
-
top: 50%;
|
118 |
-
width: 23px;
|
119 |
-
z-index: 2;
|
120 |
-
border-top: none !important;
|
121 |
-
}
|
122 |
-
|
123 |
-
:not(:last-child):before {
|
124 |
-
height: calc(100% + 8px);
|
125 |
-
}
|
126 |
-
}
|
127 |
-
|
128 |
-
&.shape-circle {
|
129 |
-
.feature-list-item {
|
130 |
-
.feature-list-icon,
|
131 |
-
.feature-list-icon-inner {
|
132 |
-
border-radius: 50%;
|
133 |
-
}
|
134 |
-
}
|
135 |
-
}
|
136 |
-
|
137 |
-
&.shape-rhombus {
|
138 |
-
.feature-list-item {
|
139 |
-
.feature-list-icon-inner {
|
140 |
-
@include transform(false, rotate(45deg));
|
141 |
-
margin: 15px;
|
142 |
-
}
|
143 |
-
|
144 |
-
.feature-list-icon {
|
145 |
-
i, svg, img {
|
146 |
-
@include transform(false, rotate(-45deg));
|
147 |
-
}
|
148 |
-
}
|
149 |
-
}
|
150 |
-
}
|
151 |
-
|
152 |
-
&.shape-view-framed .feature-list-item .feature-list-icon {
|
153 |
-
color: var(--jkit-element-bg-color);
|
154 |
-
background-color: var(--jkit-txt-alt-color);
|
155 |
-
|
156 |
-
i {
|
157 |
-
color: var(--jkit-element-bg-color);
|
158 |
-
}
|
159 |
-
|
160 |
-
svg {
|
161 |
-
fill: var(--jkit-element-bg-color);
|
162 |
-
}
|
163 |
-
}
|
164 |
-
}
|
165 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/fun-fact.scss
DELETED
@@ -1,58 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-fun-fact {
|
4 |
-
@include transition(false, false, all .4s ease);
|
5 |
-
-webkit-backface-visibility: hidden;
|
6 |
-
backface-visibility: hidden;
|
7 |
-
position: relative;
|
8 |
-
z-index: 2;
|
9 |
-
background-repeat: no-repeat;
|
10 |
-
background-size: cover;
|
11 |
-
background-position: center center;
|
12 |
-
text-align: center;
|
13 |
-
overflow: hidden;
|
14 |
-
&:before {
|
15 |
-
position: absolute;
|
16 |
-
content: "";
|
17 |
-
height: 100%;
|
18 |
-
width: 100%;
|
19 |
-
@include transition(false, false, all .6s ease);
|
20 |
-
background-size: 101% 101%;
|
21 |
-
z-index: 1;
|
22 |
-
}
|
23 |
-
.fun-fact-inner {
|
24 |
-
position: relative;
|
25 |
-
z-index: 2;
|
26 |
-
>.icon {
|
27 |
-
margin-bottom: 15px;
|
28 |
-
padding: 15px;
|
29 |
-
font-size: 40px;
|
30 |
-
color: var(--jkit-txt-color);
|
31 |
-
display: inline-block;
|
32 |
-
svg {
|
33 |
-
width: 40px;
|
34 |
-
fill: var(--jkit-txt-color);
|
35 |
-
}
|
36 |
-
}
|
37 |
-
.content {
|
38 |
-
.number-wrapper {
|
39 |
-
font-size: 28px;
|
40 |
-
font-weight: 700;
|
41 |
-
color: var(--jkit-txt-color);
|
42 |
-
.super {
|
43 |
-
top: -5px;
|
44 |
-
left: 0px;
|
45 |
-
vertical-align: super;
|
46 |
-
font-size: 22px;
|
47 |
-
color: var(--jkit-txt-color);
|
48 |
-
}
|
49 |
-
}
|
50 |
-
.title {
|
51 |
-
font-size: 15px;
|
52 |
-
margin: 0;
|
53 |
-
font-weight: 400;
|
54 |
-
color: var(--jkit-txt-color);
|
55 |
-
}
|
56 |
-
}
|
57 |
-
}
|
58 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/gallery.scss
DELETED
@@ -1,560 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-gallery {
|
5 |
-
&:before {
|
6 |
-
content: none;
|
7 |
-
}
|
8 |
-
&[data-grid="masonry"] {
|
9 |
-
.gallery-items .gallery-item-wrap .grid-item .thumbnail-wrap {
|
10 |
-
height: auto;
|
11 |
-
position: relative;
|
12 |
-
}
|
13 |
-
}
|
14 |
-
&.layout-card .gallery-items .gallery-item-wrap {
|
15 |
-
&:hover {
|
16 |
-
.grid-item .thumbnail-wrap .style-overlay {
|
17 |
-
visibility: visible;
|
18 |
-
opacity: 0.7;
|
19 |
-
}
|
20 |
-
}
|
21 |
-
.grid-item {
|
22 |
-
-webkit-box-shadow: 0px 0px 30px 0px rgba(3, 29, 60, .05);
|
23 |
-
box-shadow: 0px 0px 30px 0px rgba(3, 29, 60, .05);
|
24 |
-
.thumbnail-wrap {
|
25 |
-
position: relative;
|
26 |
-
line-height: 0;
|
27 |
-
.style-overlay {
|
28 |
-
visibility: hidden;
|
29 |
-
opacity: 0;
|
30 |
-
@include transition(false, false, .5s all ease);
|
31 |
-
@include displayflex();
|
32 |
-
background: var(--jkit-element-darken-bg-color);
|
33 |
-
@include alignitemscenter();
|
34 |
-
position: absolute;
|
35 |
-
left: 0;
|
36 |
-
top: 0;
|
37 |
-
height: 100%;
|
38 |
-
width: 100%;
|
39 |
-
padding: 15px;
|
40 |
-
z-index: 10;
|
41 |
-
}
|
42 |
-
}
|
43 |
-
}
|
44 |
-
}
|
45 |
-
.search-filters-wrap {
|
46 |
-
height: 55px;
|
47 |
-
border-radius: 5px;
|
48 |
-
max-width: 600px;
|
49 |
-
margin: 15px auto 50px;
|
50 |
-
@include displayflex();
|
51 |
-
@include flexwrap();
|
52 |
-
@include alignitemscenter();
|
53 |
-
.filter-wrap {
|
54 |
-
position: relative;
|
55 |
-
-ms-flex-preferred-size: 30%;
|
56 |
-
flex-basis: 30%;
|
57 |
-
button.search-filter-trigger {
|
58 |
-
color: #7f8995;
|
59 |
-
border: 0px solid;
|
60 |
-
border-right: 1px solid var(--jkit-element-bg-color);
|
61 |
-
width: 100%;
|
62 |
-
border-radius: 0px;
|
63 |
-
padding: 17px 13px;
|
64 |
-
font-size: 14px;
|
65 |
-
background: var(--jkit-element-lighten-bg-color);
|
66 |
-
height: 55px;
|
67 |
-
border-radius: 10px 0px 0 10px;
|
68 |
-
outline: none;
|
69 |
-
text-align: center;
|
70 |
-
position: relative;
|
71 |
-
svg {
|
72 |
-
fill: #7f8995;
|
73 |
-
width: 14px;
|
74 |
-
}
|
75 |
-
}
|
76 |
-
ul.search-filter-controls {
|
77 |
-
position: absolute;
|
78 |
-
left: 0;
|
79 |
-
background: #fff;
|
80 |
-
z-index: 999;
|
81 |
-
width: 150px;
|
82 |
-
visibility: hidden;
|
83 |
-
opacity: 0;
|
84 |
-
@include transition(false, false, 300ms);
|
85 |
-
width: 100%;
|
86 |
-
border-radius: 5px;
|
87 |
-
padding-top: 7px;
|
88 |
-
margin: 0;
|
89 |
-
padding: 0;
|
90 |
-
list-style: none;
|
91 |
-
li:first-child {
|
92 |
-
border-top: 0px solid;
|
93 |
-
}
|
94 |
-
li {
|
95 |
-
padding: 5px 5px 5px 10px;
|
96 |
-
cursor: pointer;
|
97 |
-
@include transition(false, false, 300ms);
|
98 |
-
font-size: 14px;
|
99 |
-
color: #7f8995;
|
100 |
-
font-weight: normal;
|
101 |
-
&:hover {
|
102 |
-
color: #000;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
&.open-controls {
|
106 |
-
visibility: visible;
|
107 |
-
opacity: 1;
|
108 |
-
}
|
109 |
-
}
|
110 |
-
}
|
111 |
-
.jkit-gallery-search-box {
|
112 |
-
background: var(--jkit-element-lighten-bg-color);
|
113 |
-
border-radius: 0 10px 10px 0;
|
114 |
-
-ms-flex-preferred-size: 70%;
|
115 |
-
flex-basis: 70%;
|
116 |
-
height: 100%;
|
117 |
-
input[type="text"] {
|
118 |
-
width: 100%;
|
119 |
-
height: 100%;
|
120 |
-
margin: 0;
|
121 |
-
padding: 15px;
|
122 |
-
font-size: 14px;
|
123 |
-
border: 0px solid;
|
124 |
-
outline: none;
|
125 |
-
background: none;
|
126 |
-
}
|
127 |
-
}
|
128 |
-
}
|
129 |
-
.filter-controls {
|
130 |
-
@include displayflex();
|
131 |
-
@include alignitemscenter();
|
132 |
-
-webkit-box-orient: vertical;
|
133 |
-
-webkit-box-direction: normal;
|
134 |
-
-ms-flex-flow: 1 1 auto;
|
135 |
-
flex-flow: 1 1 auto;
|
136 |
-
-webkit-box-pack: center;
|
137 |
-
-ms-flex-pack: center;
|
138 |
-
justify-content: center;
|
139 |
-
-ms-flex-flow: row wrap;
|
140 |
-
flex-flow: row wrap;
|
141 |
-
padding: 0px;
|
142 |
-
margin: 0px;
|
143 |
-
ul {
|
144 |
-
margin: 0px 0px 20px 0px;
|
145 |
-
padding: 0px;
|
146 |
-
text-align: center;
|
147 |
-
li {
|
148 |
-
font-size: 13px;
|
149 |
-
line-height: 1.8;
|
150 |
-
text-transform: uppercase;
|
151 |
-
letter-spacing: 1px;
|
152 |
-
padding: 6px 15px;
|
153 |
-
cursor: pointer;
|
154 |
-
margin: 0 5px;
|
155 |
-
font-weight: normal;
|
156 |
-
list-style: none;
|
157 |
-
display: inline-block;
|
158 |
-
text-align: center;
|
159 |
-
&.active {
|
160 |
-
background: var(--jkit-element-bg-color);
|
161 |
-
border-radius: 0px;
|
162 |
-
color: var(--jkit-bg-color);
|
163 |
-
}
|
164 |
-
}
|
165 |
-
}
|
166 |
-
}
|
167 |
-
.gallery-items {
|
168 |
-
.gallery-item-wrap {
|
169 |
-
width: 100%;
|
170 |
-
float: left;
|
171 |
-
&:hover .grid-item {
|
172 |
-
.caption-wrap.style-overlay {
|
173 |
-
visibility: visible;
|
174 |
-
opacity: 0.7;
|
175 |
-
&.overlay-slide {
|
176 |
-
.item-caption-over {
|
177 |
-
.item-title,
|
178 |
-
.item-content,
|
179 |
-
.item-buttons {
|
180 |
-
@include transform(false, translate(0));
|
181 |
-
}
|
182 |
-
}
|
183 |
-
}
|
184 |
-
&.overlay-zoom {
|
185 |
-
.item-hover-bg,
|
186 |
-
.item-caption-over {
|
187 |
-
@include transform(false, scale(1));
|
188 |
-
}
|
189 |
-
}
|
190 |
-
}
|
191 |
-
.video-wrap a {
|
192 |
-
font-size: 65px;
|
193 |
-
@include transition(false, false, .5s all ease);
|
194 |
-
svg {
|
195 |
-
width: 65px;
|
196 |
-
}
|
197 |
-
}
|
198 |
-
}
|
199 |
-
.grid-item {
|
200 |
-
margin: 5px;
|
201 |
-
position: relative;
|
202 |
-
overflow: hidden;
|
203 |
-
.thumbnail-wrap {
|
204 |
-
height: 300px;
|
205 |
-
overflow: hidden;
|
206 |
-
line-height: 0;
|
207 |
-
img {
|
208 |
-
width: 100%;
|
209 |
-
height: 100%;
|
210 |
-
object-fit: cover;
|
211 |
-
}
|
212 |
-
}
|
213 |
-
.video-wrap {
|
214 |
-
position: absolute;
|
215 |
-
top: 50%;
|
216 |
-
left: 50%;
|
217 |
-
@include transform(false, translate(-50%, -50%));
|
218 |
-
z-index: 15;
|
219 |
-
a {
|
220 |
-
font-size: 60px;
|
221 |
-
color: var(--jkit-bg-color);
|
222 |
-
svg {
|
223 |
-
width: 60px;
|
224 |
-
fill: var(--jkit-bg-color);
|
225 |
-
}
|
226 |
-
}
|
227 |
-
}
|
228 |
-
.caption-category {
|
229 |
-
line-height: normal;
|
230 |
-
span {
|
231 |
-
position: absolute;
|
232 |
-
left: 50%;
|
233 |
-
bottom: 0;
|
234 |
-
font-size: 12px;
|
235 |
-
font-weight: 500;
|
236 |
-
@include transform(false, translateX(-50%));
|
237 |
-
margin-bottom: 15px;
|
238 |
-
border-radius: 5px;
|
239 |
-
padding: 5px 10px 5px 10px;
|
240 |
-
background: var(--jkit-selection-bg-color);
|
241 |
-
}
|
242 |
-
}
|
243 |
-
.caption-button {
|
244 |
-
position: absolute;
|
245 |
-
left: 50%;
|
246 |
-
top: 50%;
|
247 |
-
width: 100%;
|
248 |
-
height: auto;
|
249 |
-
text-align: center;
|
250 |
-
@include transform(false, translate(-50%, -50%));
|
251 |
-
.item-buttons a {
|
252 |
-
display: inline-block;
|
253 |
-
font-size: 16px;
|
254 |
-
margin: 0px 7px;
|
255 |
-
span {
|
256 |
-
background: var(--jkit-bg-color);
|
257 |
-
color: var(--jkit-element-bg-color);
|
258 |
-
height: 50px;
|
259 |
-
line-height: 50px;
|
260 |
-
width: 50px;
|
261 |
-
border-radius: 50%;
|
262 |
-
padding: 15px;
|
263 |
-
svg {
|
264 |
-
fill: var(--jkit-element-bg-color);
|
265 |
-
}
|
266 |
-
}
|
267 |
-
}
|
268 |
-
}
|
269 |
-
.caption-wrap {
|
270 |
-
.item-caption-over .item-buttons a {
|
271 |
-
display: inline-block;
|
272 |
-
font-size: 16px;
|
273 |
-
margin-right: 15px;
|
274 |
-
span {
|
275 |
-
background: var(--jkit-bg-color);
|
276 |
-
color: var(--jkit-element-bg-color);
|
277 |
-
height: 50px;
|
278 |
-
line-height: 50px;
|
279 |
-
width: 50px;
|
280 |
-
border-radius: 50%;
|
281 |
-
padding: 15px;
|
282 |
-
svg {
|
283 |
-
fill: var(--jkit-element-bg-color);
|
284 |
-
}
|
285 |
-
}
|
286 |
-
}
|
287 |
-
.item-hover-bg {
|
288 |
-
position: absolute;
|
289 |
-
left: 0;
|
290 |
-
top: 0;
|
291 |
-
height: 100%;
|
292 |
-
width: 100%;
|
293 |
-
content: "";
|
294 |
-
background: var(--jkit-element-darken-bg-color);
|
295 |
-
z-index: -1;
|
296 |
-
opacity: 0.7;
|
297 |
-
}
|
298 |
-
.caption-head {
|
299 |
-
position: absolute;
|
300 |
-
top: 0;
|
301 |
-
left: 0;
|
302 |
-
width: 100%;
|
303 |
-
@include displayflex();
|
304 |
-
-webkit-box-pack: justify;
|
305 |
-
-ms-flex-pack: justify;
|
306 |
-
justify-content: space-between;
|
307 |
-
padding: 15px;
|
308 |
-
z-index: 3;
|
309 |
-
color: var(--jkit-bg-color);
|
310 |
-
font-size: 18px;
|
311 |
-
font-weight: 700;
|
312 |
-
line-height: normal;
|
313 |
-
.item-rating li {
|
314 |
-
display: inline-block;
|
315 |
-
list-style: none;
|
316 |
-
margin-right: 2px;
|
317 |
-
svg {
|
318 |
-
fill: var(--jkit-bg-color);
|
319 |
-
}
|
320 |
-
}
|
321 |
-
}
|
322 |
-
&.style-overlay {
|
323 |
-
visibility: hidden;
|
324 |
-
opacity: 0;
|
325 |
-
@include transition(false, false, .6s all ease);
|
326 |
-
@include displayflex();
|
327 |
-
@include alignitemscenter();
|
328 |
-
position: absolute;
|
329 |
-
left: 0;
|
330 |
-
top: 0;
|
331 |
-
height: 100%;
|
332 |
-
width: 100%;
|
333 |
-
padding: 15px;
|
334 |
-
z-index: 10;
|
335 |
-
&.overlay-slide .item-caption-over {
|
336 |
-
.item-title {
|
337 |
-
@include transform(false, translateY(20px));
|
338 |
-
@include transition(false, false, .5s all ease);
|
339 |
-
}
|
340 |
-
.item-content,
|
341 |
-
.item-buttons {
|
342 |
-
@include transform(false, translateY(40px));
|
343 |
-
@include transition(false, false, .5s all ease);
|
344 |
-
}
|
345 |
-
}
|
346 |
-
&.overlay-zoom {
|
347 |
-
.item-hover-bg,
|
348 |
-
.item-caption-over {
|
349 |
-
@include transform(false, scale(0.8));
|
350 |
-
@include transition(false, false, .5s all ease);
|
351 |
-
}
|
352 |
-
}
|
353 |
-
&.overlay-none {
|
354 |
-
.item-hover-bg,
|
355 |
-
.item-caption-over {
|
356 |
-
display: none;
|
357 |
-
}
|
358 |
-
}
|
359 |
-
.item-caption-over {
|
360 |
-
width: 100%;
|
361 |
-
height: auto;
|
362 |
-
.item-title {
|
363 |
-
color: var(--jkit-txt-alt-color);
|
364 |
-
font-size: 20px;
|
365 |
-
margin-bottom: 5px;
|
366 |
-
line-height: 1;
|
367 |
-
}
|
368 |
-
.item-content {
|
369 |
-
color: var(--jkit-txt-alt-color);
|
370 |
-
font-size: 12px;
|
371 |
-
font-family: inherit;
|
372 |
-
}
|
373 |
-
.item-buttons {
|
374 |
-
color: var(--jkit-txt-alt-color);
|
375 |
-
font-size: 12px;
|
376 |
-
font-family: inherit;
|
377 |
-
}
|
378 |
-
}
|
379 |
-
}
|
380 |
-
&.style-card {
|
381 |
-
background: var(--jkit-element-lighten-bg-color);
|
382 |
-
padding: 10px;
|
383 |
-
-webkit-box-sizing: border-box;
|
384 |
-
box-sizing: border-box;
|
385 |
-
font-family: inherit;
|
386 |
-
.item-caption-over {
|
387 |
-
.item-title {
|
388 |
-
color: var(--jkit-txt-color);
|
389 |
-
font-size: 20px;
|
390 |
-
margin: 10px 0 10px;
|
391 |
-
line-height: 1;
|
392 |
-
}
|
393 |
-
.item-content {
|
394 |
-
color: var(--jkit-txt-color);
|
395 |
-
font-size: 12px;
|
396 |
-
font-family: inherit;
|
397 |
-
}
|
398 |
-
}
|
399 |
-
}
|
400 |
-
}
|
401 |
-
}
|
402 |
-
}
|
403 |
-
}
|
404 |
-
.load-more-items {
|
405 |
-
text-align: center;
|
406 |
-
margin-top: 15px;
|
407 |
-
.jkit-gallery-load-more {
|
408 |
-
background: var(--jkit-btn-bg-color);
|
409 |
-
color: var(--jkit-bg-color);
|
410 |
-
padding: 10px;
|
411 |
-
svg {
|
412 |
-
fill: var(--jkit-bg-color);
|
413 |
-
}
|
414 |
-
}
|
415 |
-
}
|
416 |
-
&.grid-desktop-1 {
|
417 |
-
.gallery-items .gallery-item-wrap {
|
418 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
419 |
-
width: 100%;
|
420 |
-
float: left;
|
421 |
-
}
|
422 |
-
}
|
423 |
-
}
|
424 |
-
&.grid-desktop-2 {
|
425 |
-
.gallery-items .gallery-item-wrap {
|
426 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
427 |
-
width: 50%;
|
428 |
-
float: left;
|
429 |
-
}
|
430 |
-
}
|
431 |
-
}
|
432 |
-
&.grid-desktop-3 {
|
433 |
-
.gallery-items .gallery-item-wrap {
|
434 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
435 |
-
width: 33.3333333333%;
|
436 |
-
float: left;
|
437 |
-
}
|
438 |
-
}
|
439 |
-
}
|
440 |
-
&.grid-desktop-4 {
|
441 |
-
.gallery-items .gallery-item-wrap {
|
442 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
443 |
-
width: 25%;
|
444 |
-
float: left;
|
445 |
-
}
|
446 |
-
}
|
447 |
-
}
|
448 |
-
&.grid-desktop-5 {
|
449 |
-
.gallery-items .gallery-item-wrap {
|
450 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
451 |
-
width: 20%;
|
452 |
-
float: left;
|
453 |
-
}
|
454 |
-
}
|
455 |
-
}
|
456 |
-
&.grid-desktop-6 {
|
457 |
-
.gallery-items .gallery-item-wrap {
|
458 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
459 |
-
width: 16.6666666667%;
|
460 |
-
float: left;
|
461 |
-
}
|
462 |
-
}
|
463 |
-
}
|
464 |
-
&.grid-tablet-1 {
|
465 |
-
.gallery-items .gallery-item-wrap {
|
466 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
467 |
-
width: 100%;
|
468 |
-
float: left;
|
469 |
-
}
|
470 |
-
}
|
471 |
-
}
|
472 |
-
&.grid-tablet-2 {
|
473 |
-
.gallery-items .gallery-item-wrap {
|
474 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
475 |
-
width: 50%;
|
476 |
-
float: left;
|
477 |
-
}
|
478 |
-
}
|
479 |
-
}
|
480 |
-
&.grid-tablet-3 {
|
481 |
-
.gallery-items .gallery-item-wrap {
|
482 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
483 |
-
width: 33.3333333333%;
|
484 |
-
float: left;
|
485 |
-
}
|
486 |
-
}
|
487 |
-
}
|
488 |
-
&.grid-tablet-4 {
|
489 |
-
.gallery-items .gallery-item-wrap {
|
490 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
491 |
-
width: 25%;
|
492 |
-
float: left;
|
493 |
-
}
|
494 |
-
}
|
495 |
-
}
|
496 |
-
&.grid-tablet-5 {
|
497 |
-
.gallery-items .gallery-item-wrap {
|
498 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
499 |
-
width: 20%;
|
500 |
-
float: left;
|
501 |
-
}
|
502 |
-
}
|
503 |
-
}
|
504 |
-
&.grid-tablet-6 {
|
505 |
-
.gallery-items .gallery-item-wrap {
|
506 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
507 |
-
width: 16.6666666667%;
|
508 |
-
float: left;
|
509 |
-
}
|
510 |
-
}
|
511 |
-
}
|
512 |
-
&.grid-mobile-1 {
|
513 |
-
.gallery-items .gallery-item-wrap {
|
514 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
515 |
-
width: 100%;
|
516 |
-
float: left;
|
517 |
-
}
|
518 |
-
}
|
519 |
-
}
|
520 |
-
&.grid-mobile-2 {
|
521 |
-
.gallery-items .gallery-item-wrap {
|
522 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
523 |
-
width: 50%;
|
524 |
-
float: left;
|
525 |
-
}
|
526 |
-
}
|
527 |
-
}
|
528 |
-
&.grid-mobile-3 {
|
529 |
-
.gallery-items .gallery-item-wrap {
|
530 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
531 |
-
width: 33.3333333333%;
|
532 |
-
float: left;
|
533 |
-
}
|
534 |
-
}
|
535 |
-
}
|
536 |
-
&.grid-mobile-4 {
|
537 |
-
.gallery-items .gallery-item-wrap {
|
538 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
539 |
-
width: 25%;
|
540 |
-
float: left;
|
541 |
-
}
|
542 |
-
}
|
543 |
-
}
|
544 |
-
&.grid-mobile-5 {
|
545 |
-
.gallery-items .gallery-item-wrap {
|
546 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
547 |
-
width: 20%;
|
548 |
-
float: left;
|
549 |
-
}
|
550 |
-
}
|
551 |
-
}
|
552 |
-
&.grid-mobile-6 {
|
553 |
-
.gallery-items .gallery-item-wrap {
|
554 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
555 |
-
width: 16.6666666667%;
|
556 |
-
float: left;
|
557 |
-
}
|
558 |
-
}
|
559 |
-
}
|
560 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/heading.scss
DELETED
@@ -1,158 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
.jeg-elementor-kit.jkit-heading {
|
3 |
-
position: relative;
|
4 |
-
&.title-float-left {
|
5 |
-
@include displayflex();
|
6 |
-
@include alignitemscenter();
|
7 |
-
}
|
8 |
-
.heading-title {
|
9 |
-
font-size: 28px;
|
10 |
-
font-weight: 500;
|
11 |
-
>span {
|
12 |
-
display: inline-block;
|
13 |
-
font-weight: 700;
|
14 |
-
}
|
15 |
-
}
|
16 |
-
.heading-section-title {
|
17 |
-
position: relative;
|
18 |
-
margin: 0;
|
19 |
-
margin-bottom: 20px;
|
20 |
-
&.border-enable {
|
21 |
-
position: relative;
|
22 |
-
&.start,
|
23 |
-
&.start~* {
|
24 |
-
&:before {
|
25 |
-
left: 0;
|
26 |
-
}
|
27 |
-
}
|
28 |
-
&.end,
|
29 |
-
&.end~* {
|
30 |
-
&:before {
|
31 |
-
right: 0;
|
32 |
-
}
|
33 |
-
}
|
34 |
-
&:before {
|
35 |
-
content: "";
|
36 |
-
display: block;
|
37 |
-
position: absolute;
|
38 |
-
background: var(--jkit-element-darken-bg-color);
|
39 |
-
background: linear-gradient(180deg, var(--jkit-element-lighten-bg-color) 0%, var(--jkit-element-darken-bg-color) 100%);
|
40 |
-
;
|
41 |
-
}
|
42 |
-
}
|
43 |
-
}
|
44 |
-
.heading-section-subtitle {
|
45 |
-
font-size: 18px;
|
46 |
-
font-weight: 700;
|
47 |
-
color: var(--jkit-txt-m-color);
|
48 |
-
&.border-enable {
|
49 |
-
display: inline-block;
|
50 |
-
position: relative;
|
51 |
-
vertical-align: middle;
|
52 |
-
&:before,
|
53 |
-
&:after {
|
54 |
-
content: "";
|
55 |
-
background-color: var(--jkit-txt-m-color);
|
56 |
-
display: inline-block;
|
57 |
-
vertical-align: middle;
|
58 |
-
}
|
59 |
-
&:before {
|
60 |
-
margin-right: 15px;
|
61 |
-
}
|
62 |
-
&:after {
|
63 |
-
margin-left: 15px;
|
64 |
-
}
|
65 |
-
}
|
66 |
-
&.outline-enable {
|
67 |
-
display: inline-block;
|
68 |
-
position: relative;
|
69 |
-
vertical-align: middle;
|
70 |
-
margin-left: 30px;
|
71 |
-
padding: 8px 32px 8px 32px;
|
72 |
-
border-radius: 2em 2em 2em 2em;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
.heading-section-description {
|
76 |
-
display: inline-block;
|
77 |
-
width: 100%;
|
78 |
-
}
|
79 |
-
.shadow-text {
|
80 |
-
z-index: 0;
|
81 |
-
font-size: 90px;
|
82 |
-
position: absolute;
|
83 |
-
font-weight: 700;
|
84 |
-
line-height: 120px;
|
85 |
-
white-space: nowrap;
|
86 |
-
letter-spacing: -6px;
|
87 |
-
font-family: Archivo, sans-serif;
|
88 |
-
color: transparent;
|
89 |
-
-webkit-text-fill-color: #fff;
|
90 |
-
-webkit-text-stroke-width: 1px;
|
91 |
-
-webkit-text-stroke-color: rgba(16, 16, 16, .1);
|
92 |
-
~* {
|
93 |
-
z-index: 1;
|
94 |
-
position: relative;
|
95 |
-
}
|
96 |
-
}
|
97 |
-
.separator-wrapper {
|
98 |
-
display: inline-block;
|
99 |
-
&:not(.style-custom) {
|
100 |
-
height: 4px;
|
101 |
-
position: relative;
|
102 |
-
}
|
103 |
-
&.style-dotted {
|
104 |
-
width: 30px;
|
105 |
-
background: var(--jkit-element-darken-bg-color);
|
106 |
-
border-radius: 2px;
|
107 |
-
margin-left: 27px;
|
108 |
-
&:after {
|
109 |
-
content: "";
|
110 |
-
position: absolute;
|
111 |
-
left: -27px;
|
112 |
-
top: 0;
|
113 |
-
display: inline-block;
|
114 |
-
height: 4px;
|
115 |
-
width: 4px;
|
116 |
-
border-radius: 50%;
|
117 |
-
background-color: var(--jkit-element-darken-bg-color);
|
118 |
-
box-shadow: 9px 0 0 0 var(--jkit-element-darken-bg-color), 18px 0 0 0 var(--jkit-element-darken-bg-color);
|
119 |
-
}
|
120 |
-
}
|
121 |
-
&.style-solid {
|
122 |
-
width: 150px;
|
123 |
-
border-radius: 0;
|
124 |
-
background: var(--jkit-element-darken-bg-color);
|
125 |
-
margin-left: 0;
|
126 |
-
}
|
127 |
-
&.style-solid-star,
|
128 |
-
&.style-solid-bullet {
|
129 |
-
width: 135px;
|
130 |
-
background: var(--jkit-element-darken-bg-color);
|
131 |
-
background: linear-gradient( 90deg, var(--jkit-element-darken-bg-color) 0, var(--jkit-element-darken-bg-color) 38%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 62%, var(--jkit-element-darken-bg-color) 62%, var(--jkit-element-darken-bg-color) 100%);
|
132 |
-
&:after {
|
133 |
-
position: absolute;
|
134 |
-
content: "";
|
135 |
-
top: 0;
|
136 |
-
left: 50%;
|
137 |
-
width: 14.3px;
|
138 |
-
height: 14.3px;
|
139 |
-
-webkit-transform: translateX(-50%) rotate( 45deg);
|
140 |
-
transform: translateX(-50%) rotate( 45deg);
|
141 |
-
background-color: var(--jkit-element-darken-bg-color);
|
142 |
-
top: -7.15px;
|
143 |
-
}
|
144 |
-
}
|
145 |
-
&.style-solid-bullet {
|
146 |
-
&:after {
|
147 |
-
border-radius: 50%;
|
148 |
-
-webkit-transform: translateX(-50%);
|
149 |
-
transform: translateX(-50%);
|
150 |
-
}
|
151 |
-
}
|
152 |
-
&.style-custom {
|
153 |
-
img {
|
154 |
-
display: inline-block;
|
155 |
-
}
|
156 |
-
}
|
157 |
-
}
|
158 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/icon-box.scss
DELETED
@@ -1,174 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-icon-box {
|
4 |
-
.jkit-icon-box-wrapper {
|
5 |
-
position: relative;
|
6 |
-
padding: 50px 40px 50px 40px;
|
7 |
-
text-align: center;
|
8 |
-
border: 1px solid var(--jkit-border-color);
|
9 |
-
border-radius: 5px;
|
10 |
-
@include transition(false, false, all .4s ease);
|
11 |
-
overflow: hidden;
|
12 |
-
background-repeat: no-repeat;
|
13 |
-
background-size: cover;
|
14 |
-
background-position: center center;
|
15 |
-
}
|
16 |
-
>a {
|
17 |
-
text-decoration: none;
|
18 |
-
}
|
19 |
-
.icon-box-link {
|
20 |
-
color: unset;
|
21 |
-
}
|
22 |
-
.jkit-background-filter {
|
23 |
-
background-color: var(--jkit-bg-color);
|
24 |
-
}
|
25 |
-
&.icon-position-left .jkit-icon-box-wrapper {
|
26 |
-
@include displayflex();
|
27 |
-
@include alignitemsstart();
|
28 |
-
.icon-box.icon-box-header {
|
29 |
-
margin-right: 15px;
|
30 |
-
}
|
31 |
-
}
|
32 |
-
&.icon-position-right .jkit-icon-box-wrapper {
|
33 |
-
@include displayflex();
|
34 |
-
-webkit-box-orient: horizontal;
|
35 |
-
-webkit-box-direction: reverse;
|
36 |
-
-ms-flex-direction: row-reverse;
|
37 |
-
flex-direction: row-reverse;
|
38 |
-
.icon-box.icon-box-header {
|
39 |
-
margin-left: 15px;
|
40 |
-
}
|
41 |
-
}
|
42 |
-
.icon-box {
|
43 |
-
&.icon-box-header {
|
44 |
-
position: relative;
|
45 |
-
z-index: 2;
|
46 |
-
line-height: 0;
|
47 |
-
> .icon {
|
48 |
-
display: inline-block;
|
49 |
-
margin-bottom: 13px;
|
50 |
-
color: var(--jkit-txt-color);
|
51 |
-
@include transition(false, false, all .4s ease);
|
52 |
-
i {
|
53 |
-
font-size: 40px;
|
54 |
-
}
|
55 |
-
svg {
|
56 |
-
@include transition(false, false, all .4s ease);
|
57 |
-
fill: var(--jkit-txt-color);
|
58 |
-
width: 40px;
|
59 |
-
}
|
60 |
-
}
|
61 |
-
}
|
62 |
-
&.icon-box-body {
|
63 |
-
position: relative;
|
64 |
-
z-index: 2;
|
65 |
-
.title {
|
66 |
-
padding: 0px 0px 0px 0px;
|
67 |
-
color: var(--jkit-txt-color);
|
68 |
-
font-size: 23px;
|
69 |
-
}
|
70 |
-
.icon-box-button {
|
71 |
-
position: relative;
|
72 |
-
z-index: 2;
|
73 |
-
.btn-wrapper {
|
74 |
-
position: relative;
|
75 |
-
z-index: 2;
|
76 |
-
.icon-box-link {
|
77 |
-
border-radius: 5px;
|
78 |
-
font-size: 15px;
|
79 |
-
padding: 15px 30px;
|
80 |
-
display: inline-block;
|
81 |
-
color: var(--jkit-bg-color);
|
82 |
-
position: relative;
|
83 |
-
display: inline-block;
|
84 |
-
line-height: 1;
|
85 |
-
white-space: nowrap;
|
86 |
-
vertical-align: middle;
|
87 |
-
text-align: center;
|
88 |
-
background-color: var(--jkit-btn-bg-color);
|
89 |
-
@include userselect('none');
|
90 |
-
@include transition(false, false, all .4s ease);
|
91 |
-
&:hover {
|
92 |
-
background-color: var(--jkit-btn-bg-hover-color);
|
93 |
-
}
|
94 |
-
svg {
|
95 |
-
@include transition(false, false, all .4s ease);
|
96 |
-
width: 15px;
|
97 |
-
fill: var(--jkit-bg-color);
|
98 |
-
}
|
99 |
-
}
|
100 |
-
}
|
101 |
-
&.hover .btn-wrapper .icon-box-link {
|
102 |
-
opacity: 0;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
.icon-box-description {
|
106 |
-
color: var(--jkit-txt-color);
|
107 |
-
}
|
108 |
-
}
|
109 |
-
}
|
110 |
-
&:hover {
|
111 |
-
.icon-box.icon-box-body .icon-box-button.hover .btn-wrapper .icon-box-link {
|
112 |
-
opacity: 100;
|
113 |
-
}
|
114 |
-
.hover-watermark {
|
115 |
-
bottom: 0;
|
116 |
-
opacity: 100;
|
117 |
-
}
|
118 |
-
}
|
119 |
-
.hover-watermark {
|
120 |
-
position: absolute;
|
121 |
-
bottom: -50px;
|
122 |
-
right: 0;
|
123 |
-
opacity: 0;
|
124 |
-
@include transition(false, false, all .4s ease);
|
125 |
-
z-index: 1;
|
126 |
-
i {
|
127 |
-
font-size: 100px;
|
128 |
-
}
|
129 |
-
svg {
|
130 |
-
@include transition(false, false, all .4s ease);
|
131 |
-
width: 100px;
|
132 |
-
}
|
133 |
-
}
|
134 |
-
.icon-box-badge {
|
135 |
-
position: absolute;
|
136 |
-
line-height: 1;
|
137 |
-
z-index: 2;
|
138 |
-
&.topleft {
|
139 |
-
top: 0;
|
140 |
-
left: 0;
|
141 |
-
}
|
142 |
-
&.topcenter {
|
143 |
-
top: 0;
|
144 |
-
left: 50%;
|
145 |
-
@include transform(false, translateX(-50%));
|
146 |
-
}
|
147 |
-
&.topright {
|
148 |
-
top: 0;
|
149 |
-
right: 0;
|
150 |
-
}
|
151 |
-
&.bottomleft {
|
152 |
-
left: 0;
|
153 |
-
bottom: 0;
|
154 |
-
}
|
155 |
-
&.bottomcenter {
|
156 |
-
bottom: 0;
|
157 |
-
left: 50%;
|
158 |
-
@include transform(false, translateX(-50%));
|
159 |
-
}
|
160 |
-
&.bottomright {
|
161 |
-
bottom: 0;
|
162 |
-
right: 0;
|
163 |
-
}
|
164 |
-
.badge-text {
|
165 |
-
padding: 10px 10px 10px 10px;
|
166 |
-
border-radius: 0px 0px 0px 0px;
|
167 |
-
background-color: var(--jkit-selection-bg-color);
|
168 |
-
font-size: .70588rem;
|
169 |
-
color: var(--jkit-bg-color);
|
170 |
-
font-weight: 500;
|
171 |
-
display: inline-block;
|
172 |
-
}
|
173 |
-
}
|
174 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/image-box.scss
DELETED
@@ -1,104 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-image-box {
|
4 |
-
@include transition(false, false, all .4s ease);
|
5 |
-
text-align: center;
|
6 |
-
.image-box-header {
|
7 |
-
@include transition(false, false, all .4s ease);
|
8 |
-
position: relative;
|
9 |
-
overflow: hidden;
|
10 |
-
line-height: 0;
|
11 |
-
img {
|
12 |
-
@include transition(false, false, all .4s ease);
|
13 |
-
-webkit-backface-visibility: hidden;
|
14 |
-
backface-visibility: hidden;
|
15 |
-
width: 100%;
|
16 |
-
height: auto;
|
17 |
-
margin: 0;
|
18 |
-
object-fit: cover;
|
19 |
-
}
|
20 |
-
}
|
21 |
-
.image-box-body {
|
22 |
-
.body-inner {
|
23 |
-
padding: 30px 35px;
|
24 |
-
position: relative;
|
25 |
-
overflow: hidden;
|
26 |
-
background: var(--jkit-bg-color);
|
27 |
-
@include boxshadow(0 0 20px 0 rgba(0, 0, 0, 0.25));
|
28 |
-
}
|
29 |
-
.body-title {
|
30 |
-
font-size: 18px;
|
31 |
-
margin-bottom: 20px;
|
32 |
-
color: var(--jkit-txt-h-color);
|
33 |
-
font-weight: 700;
|
34 |
-
svg {
|
35 |
-
fill: var(--jkit-txt-h-color);
|
36 |
-
}
|
37 |
-
}
|
38 |
-
}
|
39 |
-
.button-box {
|
40 |
-
.button-wrapper {
|
41 |
-
display: inline-block;
|
42 |
-
a {
|
43 |
-
border-radius: 5px;
|
44 |
-
font-size: 15px;
|
45 |
-
padding: 15px 30px;
|
46 |
-
color: #fff;
|
47 |
-
position: relative;
|
48 |
-
line-height: 1;
|
49 |
-
white-space: nowrap;
|
50 |
-
vertical-align: middle;
|
51 |
-
text-align: center;
|
52 |
-
background-color: var(--jkit-btn-bg-color);
|
53 |
-
@include transition(false, false, all .4s ease);
|
54 |
-
@include userselect('none');
|
55 |
-
@include displayflex();
|
56 |
-
@include alignitemscenter();
|
57 |
-
&:hover {
|
58 |
-
background-color: var(--jkit-btn-bg-hover-color);
|
59 |
-
}
|
60 |
-
svg {
|
61 |
-
@include transition(false, false, all .4s ease);
|
62 |
-
fill: #fff;
|
63 |
-
}
|
64 |
-
}
|
65 |
-
}
|
66 |
-
&.icon-position-before i,
|
67 |
-
&.icon-position-before svg {
|
68 |
-
margin-right: 5px;
|
69 |
-
}
|
70 |
-
&.icon-position-after i,
|
71 |
-
&.icon-position-after svg {
|
72 |
-
margin-left: 5px;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
&.style-floating {
|
76 |
-
.image-box-body .body-inner {
|
77 |
-
background-color: #fff;
|
78 |
-
@include boxshadow(0 2px 4px rgba(0, 0, 0, 0.08));
|
79 |
-
@include transition(false, false, all .4s ease);
|
80 |
-
width: 90%;
|
81 |
-
height: 90px;
|
82 |
-
position: relative;
|
83 |
-
margin-left: auto;
|
84 |
-
margin-right: auto;
|
85 |
-
margin-top: -50px;
|
86 |
-
.body-description,
|
87 |
-
.body-button {
|
88 |
-
@include transition(false, false, all .4s ease);
|
89 |
-
opacity: 0;
|
90 |
-
visibility: hidden;
|
91 |
-
}
|
92 |
-
}
|
93 |
-
&:hover {
|
94 |
-
.image-box-body .body-inner {
|
95 |
-
height: 220px;
|
96 |
-
.body-description,
|
97 |
-
.body-button {
|
98 |
-
opacity: 1;
|
99 |
-
visibility: visible;
|
100 |
-
}
|
101 |
-
}
|
102 |
-
}
|
103 |
-
}
|
104 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/mailchimp.scss
DELETED
@@ -1,141 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-mailchimp {
|
5 |
-
&.style-inline {
|
6 |
-
.jkit-form-wrapper {
|
7 |
-
@include displayflex();
|
8 |
-
@include flexwrap();
|
9 |
-
}
|
10 |
-
.jkit-input-wrapper:not(.jkit-submit-input-holder) {
|
11 |
-
-webkit-box-flex: 1;
|
12 |
-
-ms-flex: 1;
|
13 |
-
flex: 1;
|
14 |
-
margin-right: 30px;
|
15 |
-
}
|
16 |
-
.jkit-submit-input-holder {
|
17 |
-
align-self: flex-end;
|
18 |
-
}
|
19 |
-
}
|
20 |
-
&.style-full {
|
21 |
-
.jkit-input-wrapper:not(:last-child) {
|
22 |
-
margin-bottom: 20px;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
.jkit-form-group {
|
26 |
-
margin: 0;
|
27 |
-
}
|
28 |
-
.jkit-input-group {
|
29 |
-
position: relative;
|
30 |
-
@include displayflex();
|
31 |
-
@include flexwrap();
|
32 |
-
@include alignitemsstretch();
|
33 |
-
width: 100%;
|
34 |
-
}
|
35 |
-
.jkit-input-group-text {
|
36 |
-
@include displayflex();
|
37 |
-
@include alignitemscenter();
|
38 |
-
color: var(--jkit-txt-color);
|
39 |
-
text-align: center;
|
40 |
-
white-space: nowrap;
|
41 |
-
background-color: var(--jkit-border-color);
|
42 |
-
height: 100%;
|
43 |
-
padding: 15px;
|
44 |
-
font-size: 10px;
|
45 |
-
border: 1px solid var(--jkit-form-border-color);
|
46 |
-
border-radius: 5px 0 0 5px;
|
47 |
-
svg {
|
48 |
-
fill: var(--jkit-txt-color);
|
49 |
-
width: 10px;
|
50 |
-
}
|
51 |
-
}
|
52 |
-
.jkit-input-group-icon.position-before {
|
53 |
-
margin-right: -1px;
|
54 |
-
}
|
55 |
-
.jkit-input-group-icon.position-after {
|
56 |
-
margin-left: -1px;
|
57 |
-
}
|
58 |
-
.jkit-form-control {
|
59 |
-
position: relative;
|
60 |
-
-webkit-box-flex: 1;
|
61 |
-
-ms-flex: 1 1 auto;
|
62 |
-
flex: 1 1 auto;
|
63 |
-
width: 1%;
|
64 |
-
display: block;
|
65 |
-
height: auto;
|
66 |
-
min-height: 42px;
|
67 |
-
padding: .375rem .75rem;
|
68 |
-
font-size: 1rem;
|
69 |
-
font-weight: 400;
|
70 |
-
line-height: 1.5;
|
71 |
-
color: #495057;
|
72 |
-
background-color: #fff;
|
73 |
-
background-clip: padding-box;
|
74 |
-
border: 1px solid var(--jkit-form-border-color);
|
75 |
-
border-radius: 0 5px 5px 0;
|
76 |
-
-webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
|
77 |
-
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
|
78 |
-
}
|
79 |
-
.jkit-mailchimp-submit {
|
80 |
-
padding: 8px 20px 8px 20px;
|
81 |
-
color: var(--jkit-txt-alt-color);
|
82 |
-
width: 100%;
|
83 |
-
position: relative;
|
84 |
-
z-index: 1;
|
85 |
-
font-size: 16px;
|
86 |
-
border-style: solid;
|
87 |
-
border-width: 0;
|
88 |
-
background-color: var(--jkit-btn-bg-color);
|
89 |
-
box-shadow: none;
|
90 |
-
border-radius: 5px;
|
91 |
-
margin-top: 0;
|
92 |
-
margin-bottom: 0;
|
93 |
-
line-height: 26px;
|
94 |
-
> i,
|
95 |
-
> svg {
|
96 |
-
margin-right: 10px;
|
97 |
-
}
|
98 |
-
svg {
|
99 |
-
fill: var(--jkit-txt-alt-color);
|
100 |
-
}
|
101 |
-
&:hover {
|
102 |
-
background-color: var(--jkit-btn-bg-hover-color);
|
103 |
-
}
|
104 |
-
}
|
105 |
-
.jkit-input-label {
|
106 |
-
font-weight: 600;
|
107 |
-
}
|
108 |
-
.jkit-mailchimp-message {
|
109 |
-
display: none;
|
110 |
-
padding: 10px 15px;
|
111 |
-
margin-bottom: 10px;
|
112 |
-
border-radius: 5px;
|
113 |
-
&.error {
|
114 |
-
display: block;
|
115 |
-
color: var(--jkit-error-border-color);
|
116 |
-
background-color: var(--jkit-error-bg-color);
|
117 |
-
border: 1px solid var(--jkit-error-border-color);
|
118 |
-
}
|
119 |
-
&.success {
|
120 |
-
display: block;
|
121 |
-
color: var(--jkit-success-border-color);
|
122 |
-
background-color: var(--jkit-success-bg-color);
|
123 |
-
border: var(--jkit-success-border-color);
|
124 |
-
}
|
125 |
-
}
|
126 |
-
&.style-inline {
|
127 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
128 |
-
.jkit-form-wrapper.extra-fields {
|
129 |
-
.jkit-submit-input-holder {
|
130 |
-
-webkit-box-flex: 0;
|
131 |
-
-ms-flex: 0 0 100%;
|
132 |
-
flex: 0 0 100%;
|
133 |
-
max-width: 100%;
|
134 |
-
}
|
135 |
-
.jkit-input-wrapper:nth-last-child(2) {
|
136 |
-
margin-right: 0 !important;
|
137 |
-
}
|
138 |
-
}
|
139 |
-
}
|
140 |
-
}
|
141 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/main.scss
DELETED
@@ -1,345 +0,0 @@
|
|
1 |
-
@import '../helpers/animation';
|
2 |
-
@import '../helpers/mixin';
|
3 |
-
@import '../helpers/variable';
|
4 |
-
// Theme Colors CSS Variables
|
5 |
-
.jkit-color-scheme {
|
6 |
-
--jkit-bg-color: #{$color-white};
|
7 |
-
--jkit-border-color: #{$border-color};
|
8 |
-
--jkit-txt-color: #{$color-grey-700}; // Default text color
|
9 |
-
--jkit-txt-h-color: #{$color-black}; // Heading text color
|
10 |
-
--jkit-txt-a-color: #{$color-blue}; // Link text color
|
11 |
-
--jkit-txt-m-color: #{$color-grey-400}; // Post meta text color
|
12 |
-
--jkit-txt-alt-color: #{$color-white};
|
13 |
-
--jkit-form-border-color: #{$form-border-color};
|
14 |
-
--jkit-form-bg-color: #{$form-bg-color};
|
15 |
-
--jkit-form-txt-color: #{$form-bg-txt-color};
|
16 |
-
--jkit-btn-txt-color: #{$btn-txt-color};
|
17 |
-
--jkit-btn-bg-color: #{$btn-bg-color};
|
18 |
-
--jkit-btn-bg-hover-color: #{$btn-bg-hover-color};
|
19 |
-
--jkit-selection-bg-color: #{$selection-bg-color};
|
20 |
-
--jkit-element-bg-color: #{$element-bg-color};
|
21 |
-
--jkit-element-darken-bg-color: #{$element-darken-bg-color};
|
22 |
-
--jkit-element-lighten-bg-color: #{$element-lighten-bg-color};
|
23 |
-
--jkit-success-bg-color: #{$success-bg-color};
|
24 |
-
--jkit-success-border-color: #{$success-border-color};
|
25 |
-
--jkit-error-bg-color: #{$error-bg-color};
|
26 |
-
--jkit-error-border-color: #{$error-border-color};
|
27 |
-
}
|
28 |
-
|
29 |
-
.jkit-nav-menu-loaded {
|
30 |
-
overflow-x: hidden;
|
31 |
-
overflow-y: visible;
|
32 |
-
}
|
33 |
-
|
34 |
-
.jkit-magnific-popup {
|
35 |
-
.mfp-iframe-holder .mfp-close {
|
36 |
-
background: none;
|
37 |
-
}
|
38 |
-
button:focus {
|
39 |
-
outline: none;
|
40 |
-
}
|
41 |
-
}
|
42 |
-
|
43 |
-
.jkit-equal-height-enable {
|
44 |
-
.jeg-elementor-kit {
|
45 |
-
&.jkit-image-box {
|
46 |
-
display: flex;
|
47 |
-
flex-direction: column;
|
48 |
-
.image-box-body {
|
49 |
-
flex: 1;
|
50 |
-
}
|
51 |
-
}
|
52 |
-
}
|
53 |
-
}
|
54 |
-
|
55 |
-
.jeg-elementor-kit {
|
56 |
-
.hover-from-left,
|
57 |
-
.hover-from-right,
|
58 |
-
.hover-from-top,
|
59 |
-
.hover-from-bottom,
|
60 |
-
.hover-from-arise {
|
61 |
-
&:before {
|
62 |
-
position: absolute;
|
63 |
-
content: "";
|
64 |
-
height: 100%;
|
65 |
-
width: 100%;
|
66 |
-
background-size: 101% 101%;
|
67 |
-
@include transition(false, false, all .6s ease);
|
68 |
-
}
|
69 |
-
}
|
70 |
-
.hover-from-left,
|
71 |
-
&.hover-from-left {
|
72 |
-
&:before {
|
73 |
-
top: 0;
|
74 |
-
left: -101%;
|
75 |
-
}
|
76 |
-
&:hover:before {
|
77 |
-
left: 0;
|
78 |
-
}
|
79 |
-
}
|
80 |
-
.hover-from-right,
|
81 |
-
&.hover-from-right {
|
82 |
-
&:before {
|
83 |
-
top: 0;
|
84 |
-
right: -101%;
|
85 |
-
}
|
86 |
-
&:hover:before {
|
87 |
-
right: 0;
|
88 |
-
}
|
89 |
-
}
|
90 |
-
.hover-from-top,
|
91 |
-
&.hover-from-top {
|
92 |
-
&:before {
|
93 |
-
top: -101%;
|
94 |
-
left: 0;
|
95 |
-
}
|
96 |
-
&:hover:before {
|
97 |
-
top: 0;
|
98 |
-
}
|
99 |
-
}
|
100 |
-
.hover-from-bottom,
|
101 |
-
&.hover-from-bottom {
|
102 |
-
&:before {
|
103 |
-
bottom: -101%;
|
104 |
-
left: 0;
|
105 |
-
}
|
106 |
-
&:hover:before {
|
107 |
-
bottom: 0;
|
108 |
-
}
|
109 |
-
}
|
110 |
-
.hover-from-arise,
|
111 |
-
&.hover-from-arise {
|
112 |
-
&:before {
|
113 |
-
top: 0;
|
114 |
-
left: 0;
|
115 |
-
opacity: 0%;
|
116 |
-
}
|
117 |
-
&:hover:before {
|
118 |
-
opacity: 100%;
|
119 |
-
}
|
120 |
-
}
|
121 |
-
&.jkit-pagination-loadmore.loaded,
|
122 |
-
&.jkit-pagination-scrollload.loaded {
|
123 |
-
.jkit-ajax-loaded {
|
124 |
-
-webkit-animation-duration: .4s;
|
125 |
-
animation-duration: .4s;
|
126 |
-
-webkit-animation-fill-mode: both;
|
127 |
-
animation-fill-mode: both;
|
128 |
-
-webkit-animation-name: jkit-fadeinup;
|
129 |
-
animation-name: jkit-fadeinup;
|
130 |
-
}
|
131 |
-
.anim-1 {
|
132 |
-
-webkit-animation-delay: .05s;
|
133 |
-
animation-delay: .05s;
|
134 |
-
}
|
135 |
-
.anim-2 {
|
136 |
-
-webkit-animation-delay: .15s;
|
137 |
-
animation-delay: .15s;
|
138 |
-
}
|
139 |
-
.anim-3 {
|
140 |
-
-webkit-animation-delay: .25s;
|
141 |
-
animation-delay: .25s;
|
142 |
-
}
|
143 |
-
.anim-4 {
|
144 |
-
-webkit-animation-delay: .35s;
|
145 |
-
animation-delay: .35s;
|
146 |
-
}
|
147 |
-
.anim-5 {
|
148 |
-
-webkit-animation-delay: .45s;
|
149 |
-
animation-delay: .45s;
|
150 |
-
}
|
151 |
-
.anim-6 {
|
152 |
-
-webkit-animation-delay: .55s;
|
153 |
-
animation-delay: .55s;
|
154 |
-
}
|
155 |
-
.anim-7 {
|
156 |
-
-webkit-animation-delay: .65s;
|
157 |
-
animation-delay: .65s;
|
158 |
-
}
|
159 |
-
.anim-8 {
|
160 |
-
-webkit-animation-delay: .75s;
|
161 |
-
animation-delay: .75s;
|
162 |
-
}
|
163 |
-
.anim-9 {
|
164 |
-
-webkit-animation-delay: .85s;
|
165 |
-
animation-delay: .85s;
|
166 |
-
}
|
167 |
-
.anim-10 {
|
168 |
-
-webkit-animation-delay: .95s;
|
169 |
-
animation-delay: .95s;
|
170 |
-
}
|
171 |
-
.anim-11 {
|
172 |
-
-webkit-animation-delay: 1.05s;
|
173 |
-
animation-delay: 1.05s;
|
174 |
-
}
|
175 |
-
.anim-12 {
|
176 |
-
-webkit-animation-delay: 1.15s;
|
177 |
-
animation-delay: 1.15s;
|
178 |
-
}
|
179 |
-
.anim-13 {
|
180 |
-
-webkit-animation-delay: 1.25s;
|
181 |
-
animation-delay: 1.25s;
|
182 |
-
}
|
183 |
-
.anim-14 {
|
184 |
-
-webkit-animation-delay: 1.35s;
|
185 |
-
animation-delay: 1.35s;
|
186 |
-
}
|
187 |
-
.anim-15 {
|
188 |
-
-webkit-animation-delay: 1.45s;
|
189 |
-
animation-delay: 1.45s;
|
190 |
-
}
|
191 |
-
.anim-16 {
|
192 |
-
-webkit-animation-delay: 1.55s;
|
193 |
-
animation-delay: 1.55s;
|
194 |
-
}
|
195 |
-
.anim-17 {
|
196 |
-
-webkit-animation-delay: 1.65s;
|
197 |
-
animation-delay: 1.65s;
|
198 |
-
}
|
199 |
-
.anim-18 {
|
200 |
-
-webkit-animation-delay: 1.75s;
|
201 |
-
animation-delay: 1.75s;
|
202 |
-
}
|
203 |
-
.anim-19 {
|
204 |
-
-webkit-animation-delay: 1.85s;
|
205 |
-
animation-delay: 1.85s;
|
206 |
-
}
|
207 |
-
.anim-20 {
|
208 |
-
-webkit-animation-delay: 1.95s;
|
209 |
-
animation-delay: 1.95s;
|
210 |
-
}
|
211 |
-
.anim-21 {
|
212 |
-
-webkit-animation-delay: 2.05s;
|
213 |
-
animation-delay: 2.05s;
|
214 |
-
}
|
215 |
-
.anim-22 {
|
216 |
-
-webkit-animation-delay: 2.15s;
|
217 |
-
animation-delay: 2.15s;
|
218 |
-
}
|
219 |
-
.anim-23 {
|
220 |
-
-webkit-animation-delay: 2.25s;
|
221 |
-
animation-delay: 2.25s;
|
222 |
-
}
|
223 |
-
.anim-24 {
|
224 |
-
-webkit-animation-delay: 2.35s;
|
225 |
-
animation-delay: 2.35s;
|
226 |
-
}
|
227 |
-
.anim-25 {
|
228 |
-
-webkit-animation-delay: 2.45s;
|
229 |
-
animation-delay: 2.45s;
|
230 |
-
}
|
231 |
-
.anim-26 {
|
232 |
-
-webkit-animation-delay: 2.55s;
|
233 |
-
animation-delay: 2.55s;
|
234 |
-
}
|
235 |
-
.anim-27 {
|
236 |
-
-webkit-animation-delay: 2.65s;
|
237 |
-
animation-delay: 2.65s;
|
238 |
-
}
|
239 |
-
.anim-28 {
|
240 |
-
-webkit-animation-delay: 2.75s;
|
241 |
-
animation-delay: 2.75s;
|
242 |
-
}
|
243 |
-
.anim-29 {
|
244 |
-
-webkit-animation-delay: 2.85s;
|
245 |
-
animation-delay: 2.85s;
|
246 |
-
}
|
247 |
-
.anim-30 {
|
248 |
-
-webkit-animation-delay: 2.95s;
|
249 |
-
animation-delay: 2.95s;
|
250 |
-
}
|
251 |
-
}
|
252 |
-
.jkit-block-pagination {
|
253 |
-
margin: 0 0 30px 0;
|
254 |
-
text-align: center;
|
255 |
-
.jkit-block-loadmore {
|
256 |
-
display: inline-block;
|
257 |
-
text-align: center;
|
258 |
-
cursor: pointer;
|
259 |
-
border: 1px solid var(--jkit-border-color, #eaeaeb);
|
260 |
-
@include boxshadow(0 2px 4px rgba(0, 0, 0, 0.08));
|
261 |
-
padding: 0.625rem 0.875rem;
|
262 |
-
font-size: 0.875rem;
|
263 |
-
line-height: 1.5;
|
264 |
-
border-radius: 3px;
|
265 |
-
@include transition(false, false, .25s ease);
|
266 |
-
color: var(--jkit-txt-color);
|
267 |
-
a {
|
268 |
-
display: inline-block;
|
269 |
-
color: var(--jkit-txt-color);
|
270 |
-
}
|
271 |
-
svg {
|
272 |
-
fill: var(--jkit-txt-color);
|
273 |
-
}
|
274 |
-
}
|
275 |
-
}
|
276 |
-
.border-bottom {
|
277 |
-
position: absolute;
|
278 |
-
z-index: 3;
|
279 |
-
left: -101%;
|
280 |
-
bottom: 0;
|
281 |
-
height: 5px;
|
282 |
-
width: 100%;
|
283 |
-
background-color: var(--jkit-selection-bg-color);
|
284 |
-
&.left {
|
285 |
-
@include animation(false, slide-from-left-reverse 0.5s forwards);
|
286 |
-
}
|
287 |
-
&.right {
|
288 |
-
@include animation(false, slide-from-right-reverse 0.5s forwards);
|
289 |
-
}
|
290 |
-
}
|
291 |
-
&:hover {
|
292 |
-
.border-bottom.left {
|
293 |
-
@include animation(false, slide-from-left 0.5s forwards);
|
294 |
-
}
|
295 |
-
.border-bottom.right {
|
296 |
-
@include animation(false, slide-from-right 0.5s forwards);
|
297 |
-
}
|
298 |
-
}
|
299 |
-
button {
|
300 |
-
&:active,
|
301 |
-
&:hover {
|
302 |
-
background: none;
|
303 |
-
border: none;
|
304 |
-
}
|
305 |
-
&:focus {
|
306 |
-
outline: none;
|
307 |
-
}
|
308 |
-
}
|
309 |
-
.thumbnail-container {
|
310 |
-
line-height: 0;
|
311 |
-
}
|
312 |
-
.style-gradient {
|
313 |
-
background: var(--jkit-element-darken-bg-color);
|
314 |
-
background: linear-gradient(180deg, var(--jkit-element-lighten-bg-color) 0%, var(--jkit-element-darken-bg-color) 100%);
|
315 |
-
-moz-text-fill-color: transparent;
|
316 |
-
-o-text-fill-color: transparent;
|
317 |
-
-webkit-text-fill-color: transparent;
|
318 |
-
background-clip: text;
|
319 |
-
-webkit-background-clip: text;
|
320 |
-
}
|
321 |
-
svg {
|
322 |
-
width: 16px;
|
323 |
-
height: auto;
|
324 |
-
}
|
325 |
-
}
|
326 |
-
|
327 |
-
.jkit-social-shape:not(.shape-none) {
|
328 |
-
.social-icon,
|
329 |
-
.social-icon:hover {
|
330 |
-
font-size: var(--icon-size, 16px);
|
331 |
-
line-height: calc(0.875 * var(--icon-size, 16px));
|
332 |
-
width: calc(var(--icon-size, 16px) + var(--icon-padding-left, 0px) + var(--icon-padding-right, 0px));
|
333 |
-
height: calc(var(--icon-size, 16px) + var(--icon-padding-top, 0px) + var(--icon-padding-bottom, 0px));
|
334 |
-
background-color: var(--jkit-element-bg-color);
|
335 |
-
}
|
336 |
-
&.shape-rounded .social-icon {
|
337 |
-
border-radius: 10%;
|
338 |
-
}
|
339 |
-
&.shape-circle .social-icon {
|
340 |
-
border-radius: 50%;
|
341 |
-
}
|
342 |
-
&.shape-square .social-icon {
|
343 |
-
border-radius: 0;
|
344 |
-
}
|
345 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/nav-menu.scss
DELETED
@@ -1,311 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-nav-menu {
|
5 |
-
.jkit-hamburger-menu {
|
6 |
-
float: right;
|
7 |
-
display: none;
|
8 |
-
color: var(--jkit-txt-color);
|
9 |
-
border: solid 1px var(--jkit-border-color);
|
10 |
-
svg {
|
11 |
-
fill: var(--jkit-txt-color);
|
12 |
-
}
|
13 |
-
}
|
14 |
-
.jkit-menu-wrapper {
|
15 |
-
z-index: 1000;
|
16 |
-
.jkit-nav-identity-panel {
|
17 |
-
.jkit-nav-site-title {
|
18 |
-
display: none;
|
19 |
-
.jkit-nav-logo {
|
20 |
-
margin: 5px 0px 5px 0px;
|
21 |
-
padding: 5px 5px 5px 5px;
|
22 |
-
display: block;
|
23 |
-
img {
|
24 |
-
max-width: 120px;
|
25 |
-
height: auto;
|
26 |
-
}
|
27 |
-
}
|
28 |
-
}
|
29 |
-
.jkit-close-menu {
|
30 |
-
float: right;
|
31 |
-
display: none;
|
32 |
-
color: var(--jkit-txt-color);
|
33 |
-
border: solid 1px var(--jkit-border-color);
|
34 |
-
padding: 8px 8px 8px 8px;
|
35 |
-
margin: 12px 12px 12px 12px;
|
36 |
-
width: 45px;
|
37 |
-
border-radius: 3px;
|
38 |
-
position: relative;
|
39 |
-
z-index: 10;
|
40 |
-
svg {
|
41 |
-
fill: var(--jkit-txt-color);
|
42 |
-
}
|
43 |
-
}
|
44 |
-
}
|
45 |
-
.jkit-menu {
|
46 |
-
display: flex;
|
47 |
-
height: 100%;
|
48 |
-
padding-left: 0;
|
49 |
-
margin-bottom: 0;
|
50 |
-
list-style: none;
|
51 |
-
margin-left: 0;
|
52 |
-
>li {
|
53 |
-
margin: 0;
|
54 |
-
padding: 0;
|
55 |
-
list-style: none;
|
56 |
-
>a {
|
57 |
-
color: #707070;
|
58 |
-
padding: 0px 15px 0px 15px;
|
59 |
-
font-size: 15px;
|
60 |
-
@include transition(false, false, all .4s ease);
|
61 |
-
text-transform: none;
|
62 |
-
font-weight: 500;
|
63 |
-
letter-spacing: normal;
|
64 |
-
height: 100%;
|
65 |
-
@include displayflex();
|
66 |
-
align-items: center;
|
67 |
-
text-decoration: none;
|
68 |
-
}
|
69 |
-
}
|
70 |
-
li {
|
71 |
-
position: relative;
|
72 |
-
@include displayflex();
|
73 |
-
a {
|
74 |
-
padding: 15px 15px 15px 15px;
|
75 |
-
color: #000000;
|
76 |
-
font-size: 14px;
|
77 |
-
font-weight: 400;
|
78 |
-
width: 100%;
|
79 |
-
svg {
|
80 |
-
fill: #000000;
|
81 |
-
width: 14px;
|
82 |
-
}
|
83 |
-
}
|
84 |
-
}
|
85 |
-
li.menu-item-has-children {
|
86 |
-
.sub-menu {
|
87 |
-
box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
|
88 |
-
background: var(--jkit-bg-color);
|
89 |
-
position: absolute;
|
90 |
-
top: 100%;
|
91 |
-
left: 0;
|
92 |
-
max-height: none;
|
93 |
-
margin: 0px;
|
94 |
-
}
|
95 |
-
&:hover>.sub-menu {
|
96 |
-
opacity: 1;
|
97 |
-
visibility: visible;
|
98 |
-
}
|
99 |
-
>a i,
|
100 |
-
>a svg {
|
101 |
-
margin-left: 5px;
|
102 |
-
}
|
103 |
-
}
|
104 |
-
.sub-menu {
|
105 |
-
border-radius: 0px 0px 0px 0px;
|
106 |
-
padding: 0px 0px 0px 0px;
|
107 |
-
list-style: none;
|
108 |
-
@include transition(false, false, all .4s ease);
|
109 |
-
opacity: 0;
|
110 |
-
visibility: hidden;
|
111 |
-
z-index: 1000;
|
112 |
-
>li>.sub-menu {
|
113 |
-
left: 100%;
|
114 |
-
top: 0;
|
115 |
-
}
|
116 |
-
}
|
117 |
-
}
|
118 |
-
}
|
119 |
-
&.break-point-tablet {
|
120 |
-
@media screen and (max-width: $break-tablet) {
|
121 |
-
.jkit-hamburger-menu {
|
122 |
-
display: block;
|
123 |
-
}
|
124 |
-
.jkit-menu-wrapper {
|
125 |
-
width: 100%;
|
126 |
-
max-width: 360px;
|
127 |
-
border-radius: 0px 0px 0px 0px;
|
128 |
-
background-color: #f7f7f7;
|
129 |
-
width: 100%;
|
130 |
-
position: fixed;
|
131 |
-
top: 0;
|
132 |
-
left: -110%;
|
133 |
-
height: 100% !important;
|
134 |
-
box-shadow: 0 10px 30px 0 rgba(255, 165, 0, 0);
|
135 |
-
overflow-y: auto;
|
136 |
-
overflow-x: hidden;
|
137 |
-
padding-top: 0;
|
138 |
-
padding-left: 0;
|
139 |
-
padding-right: 0;
|
140 |
-
display: flex;
|
141 |
-
flex-direction: column-reverse;
|
142 |
-
justify-content: flex-end;
|
143 |
-
@include transition(false, false, (left .6s cubic-bezier(.6, .1, .68, .53)));
|
144 |
-
&.active {
|
145 |
-
left: 0;
|
146 |
-
}
|
147 |
-
.jkit-menu-container {
|
148 |
-
overflow-y: hidden;
|
149 |
-
}
|
150 |
-
.jkit-nav-identity-panel {
|
151 |
-
padding: 10px 0px 10px 0px;
|
152 |
-
display: block;
|
153 |
-
position: relative;
|
154 |
-
z-index: 5;
|
155 |
-
width: 100%;
|
156 |
-
.jkit-nav-site-title {
|
157 |
-
display: inline-block;
|
158 |
-
}
|
159 |
-
.jkit-close-menu {
|
160 |
-
display: block;
|
161 |
-
}
|
162 |
-
}
|
163 |
-
.jkit-menu {
|
164 |
-
display: block;
|
165 |
-
height: 100%;
|
166 |
-
overflow-y: auto;
|
167 |
-
li.menu-item-has-children {
|
168 |
-
>a i,
|
169 |
-
>a svg {
|
170 |
-
margin-left: auto;
|
171 |
-
border: 1px solid var(--jkit-border-color);
|
172 |
-
border-radius: 3px;
|
173 |
-
}
|
174 |
-
>a i {
|
175 |
-
padding: 4px 15px;
|
176 |
-
}
|
177 |
-
.sub-menu {
|
178 |
-
position: inherit;
|
179 |
-
box-shadow: none;
|
180 |
-
background: none;
|
181 |
-
}
|
182 |
-
}
|
183 |
-
li {
|
184 |
-
display: block;
|
185 |
-
width: 100%;
|
186 |
-
position: inherit;
|
187 |
-
.sub-menu {
|
188 |
-
display: none;
|
189 |
-
max-height: 2500px;
|
190 |
-
opacity: 0;
|
191 |
-
visibility: hidden;
|
192 |
-
transition: max-height 5s ease-out;
|
193 |
-
&.dropdown-open {
|
194 |
-
display: block;
|
195 |
-
opacity: 1;
|
196 |
-
visibility: visible;
|
197 |
-
}
|
198 |
-
}
|
199 |
-
a {
|
200 |
-
display: block;
|
201 |
-
i, svg {
|
202 |
-
float: right;
|
203 |
-
}
|
204 |
-
}
|
205 |
-
}
|
206 |
-
}
|
207 |
-
}
|
208 |
-
}
|
209 |
-
@media screen and (min-width: $break-tablet + 1) {
|
210 |
-
.jkit-menu-wrapper .jkit-menu-container {
|
211 |
-
height: 100%;
|
212 |
-
}
|
213 |
-
}
|
214 |
-
}
|
215 |
-
&.break-point-mobile {
|
216 |
-
@media screen and (max-width: $break-mobile - 1) {
|
217 |
-
.jkit-hamburger-menu {
|
218 |
-
display: block;
|
219 |
-
}
|
220 |
-
.jkit-menu-wrapper {
|
221 |
-
width: 100%;
|
222 |
-
max-width: 360px;
|
223 |
-
border-radius: 0px 0px 0px 0px;
|
224 |
-
background-color: #f7f7f7;
|
225 |
-
width: 100%;
|
226 |
-
position: fixed;
|
227 |
-
top: 0;
|
228 |
-
left: -110%;
|
229 |
-
height: 100% !important;
|
230 |
-
box-shadow: 0 10px 30px 0 rgba(255, 165, 0, 0);
|
231 |
-
overflow-y: auto;
|
232 |
-
overflow-x: hidden;
|
233 |
-
padding-top: 0;
|
234 |
-
padding-left: 0;
|
235 |
-
padding-right: 0;
|
236 |
-
display: flex;
|
237 |
-
flex-direction: column-reverse;
|
238 |
-
justify-content: flex-end;
|
239 |
-
@include transition(false, false, (left .6s cubic-bezier(.6, .1, .68, .53)));
|
240 |
-
&.active {
|
241 |
-
left: 0;
|
242 |
-
}
|
243 |
-
.jkit-menu-container {
|
244 |
-
overflow-y: hidden;
|
245 |
-
}
|
246 |
-
.jkit-nav-identity-panel {
|
247 |
-
padding: 10px 0px 10px 0px;
|
248 |
-
display: block;
|
249 |
-
position: relative;
|
250 |
-
z-index: 5;
|
251 |
-
width: 100%;
|
252 |
-
.jkit-nav-site-title {
|
253 |
-
display: inline-block;
|
254 |
-
}
|
255 |
-
.jkit-close-menu {
|
256 |
-
display: block;
|
257 |
-
}
|
258 |
-
}
|
259 |
-
.jkit-menu {
|
260 |
-
display: block;
|
261 |
-
height: 100%;
|
262 |
-
overflow-y: auto;
|
263 |
-
li.menu-item-has-children {
|
264 |
-
>a i,
|
265 |
-
>a svg {
|
266 |
-
margin-left: auto;
|
267 |
-
border: 1px solid var(--jkit-border-color);
|
268 |
-
border-radius: 3px;
|
269 |
-
}
|
270 |
-
>a i {
|
271 |
-
padding: 4px 15px;
|
272 |
-
}
|
273 |
-
.sub-menu {
|
274 |
-
position: inherit;
|
275 |
-
box-shadow: none;
|
276 |
-
background: none;
|
277 |
-
}
|
278 |
-
}
|
279 |
-
li {
|
280 |
-
display: block;
|
281 |
-
width: 100%;
|
282 |
-
position: inherit;
|
283 |
-
.sub-menu {
|
284 |
-
display: none;
|
285 |
-
max-height: 2500px;
|
286 |
-
opacity: 0;
|
287 |
-
visibility: hidden;
|
288 |
-
transition: max-height 5s ease-out;
|
289 |
-
&.dropdown-open {
|
290 |
-
display: block;
|
291 |
-
opacity: 1;
|
292 |
-
visibility: visible;
|
293 |
-
}
|
294 |
-
}
|
295 |
-
a {
|
296 |
-
display: block;
|
297 |
-
i, svg {
|
298 |
-
float: right;
|
299 |
-
}
|
300 |
-
}
|
301 |
-
}
|
302 |
-
}
|
303 |
-
}
|
304 |
-
}
|
305 |
-
@media screen and (min-width: $break-mobile) {
|
306 |
-
.jkit-menu-wrapper .jkit-menu-container {
|
307 |
-
height: 100%;
|
308 |
-
}
|
309 |
-
}
|
310 |
-
}
|
311 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/off-canvas.scss
DELETED
@@ -1,153 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-off-canvas {
|
5 |
-
.sidebar-widget {
|
6 |
-
position: fixed;
|
7 |
-
z-index: 999999;
|
8 |
-
overflow: hidden;
|
9 |
-
overflow-y: auto;
|
10 |
-
-webkit-overflow-scrolling: touch;
|
11 |
-
background-color: var(--jkit-bg-color);
|
12 |
-
@include transition(false, false, all .5s cubic-bezier(.9, .03, 0, .96) .6s);
|
13 |
-
visibility: hidden;
|
14 |
-
opacity: 0;
|
15 |
-
}
|
16 |
-
.widget-container {
|
17 |
-
position: relative;
|
18 |
-
top: 150px;
|
19 |
-
opacity: 0;
|
20 |
-
visibility: hidden;
|
21 |
-
@include transition(false, false, all .3s ease-in .3s);
|
22 |
-
-webkit-backface-visibility: hidden;
|
23 |
-
backface-visibility: hidden;
|
24 |
-
}
|
25 |
-
.offcanvas-sidebar {
|
26 |
-
&.position-right {
|
27 |
-
.sidebar-widget {
|
28 |
-
right: -100%;
|
29 |
-
top: 0;
|
30 |
-
width: 300px;
|
31 |
-
min-height: 100%;
|
32 |
-
}
|
33 |
-
.bg-overlay {
|
34 |
-
left: 100%;
|
35 |
-
top: 0;
|
36 |
-
}
|
37 |
-
}
|
38 |
-
&.position-left {
|
39 |
-
.sidebar-widget {
|
40 |
-
left: -100%;
|
41 |
-
top: 0;
|
42 |
-
width: 300px;
|
43 |
-
min-height: 100%;
|
44 |
-
}
|
45 |
-
.bg-overlay {
|
46 |
-
right: 100%;
|
47 |
-
top: 0;
|
48 |
-
}
|
49 |
-
}
|
50 |
-
&.position-top {
|
51 |
-
.sidebar-widget {
|
52 |
-
left: 0;
|
53 |
-
top: -100%;
|
54 |
-
width: 100%;
|
55 |
-
height: 300px;
|
56 |
-
}
|
57 |
-
.bg-overlay {
|
58 |
-
bottom: 100%;
|
59 |
-
left: 0;
|
60 |
-
}
|
61 |
-
}
|
62 |
-
&.position-bottom {
|
63 |
-
.sidebar-widget {
|
64 |
-
left: 0;
|
65 |
-
bottom: -100%;
|
66 |
-
width: 100%;
|
67 |
-
height: 300px;
|
68 |
-
}
|
69 |
-
.bg-overlay {
|
70 |
-
top: 100%;
|
71 |
-
left: 0;
|
72 |
-
}
|
73 |
-
}
|
74 |
-
&.position-left,
|
75 |
-
&.position-right {
|
76 |
-
.widget-content {
|
77 |
-
position: absolute;
|
78 |
-
width: 100%;
|
79 |
-
}
|
80 |
-
}
|
81 |
-
.bg-overlay {
|
82 |
-
position: fixed;
|
83 |
-
z-index: 1002;
|
84 |
-
height: 100%;
|
85 |
-
opacity: 0;
|
86 |
-
width: 100%;
|
87 |
-
visibility: hidden;
|
88 |
-
@include transition(false, false, all .4s ease-in .8s);
|
89 |
-
cursor: url(../../img/letter-x.svg), pointer;
|
90 |
-
background-color: rgba(0, 0, 0, .9);
|
91 |
-
}
|
92 |
-
&.active {
|
93 |
-
&.position-left {
|
94 |
-
.bg-overlay {
|
95 |
-
right: 0;
|
96 |
-
}
|
97 |
-
.sidebar-widget {
|
98 |
-
left: 0;
|
99 |
-
}
|
100 |
-
}
|
101 |
-
&.position-right {
|
102 |
-
.bg-overlay {
|
103 |
-
left: 0;
|
104 |
-
}
|
105 |
-
.sidebar-widget {
|
106 |
-
right: 0;
|
107 |
-
}
|
108 |
-
}
|
109 |
-
&.position-top {
|
110 |
-
.bg-overlay {
|
111 |
-
bottom: 0;
|
112 |
-
}
|
113 |
-
.sidebar-widget {
|
114 |
-
top: 0;
|
115 |
-
}
|
116 |
-
}
|
117 |
-
&.position-bottom {
|
118 |
-
.bg-overlay {
|
119 |
-
top: 0;
|
120 |
-
}
|
121 |
-
.sidebar-widget {
|
122 |
-
bottom: 0;
|
123 |
-
}
|
124 |
-
}
|
125 |
-
.sidebar-widget {
|
126 |
-
visibility: visible;
|
127 |
-
opacity: 1;
|
128 |
-
}
|
129 |
-
.widget-container {
|
130 |
-
top: 0;
|
131 |
-
opacity: 1;
|
132 |
-
visibility: visible;
|
133 |
-
}
|
134 |
-
.bg-overlay {
|
135 |
-
visibility: visible;
|
136 |
-
-webkit-transition: all .8s ease-out 0s;
|
137 |
-
transition: all .8s ease-out 0s;
|
138 |
-
left: 0;
|
139 |
-
opacity: 1;
|
140 |
-
}
|
141 |
-
}
|
142 |
-
}
|
143 |
-
.offcanvas-sidebar-button,
|
144 |
-
.offcanvas-close-button {
|
145 |
-
display: inline-block;
|
146 |
-
color: var(--jkit-txt-color);
|
147 |
-
line-height: 1;
|
148 |
-
text-align: center;
|
149 |
-
svg {
|
150 |
-
fill: var(--jkit-txt-color);
|
151 |
-
}
|
152 |
-
}
|
153 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/pie-chart.scss
DELETED
@@ -1,75 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-pie-chart {
|
4 |
-
text-align: center;
|
5 |
-
position: relative;
|
6 |
-
overflow: hidden;
|
7 |
-
canvas {
|
8 |
-
display: inline-block;
|
9 |
-
position: relative;
|
10 |
-
z-index: 2;
|
11 |
-
}
|
12 |
-
canvas.background-canvas {
|
13 |
-
position: absolute;
|
14 |
-
top: 0;
|
15 |
-
left: 0;
|
16 |
-
z-index: 1;
|
17 |
-
}
|
18 |
-
.pie-chart-wrapper {
|
19 |
-
position: relative;
|
20 |
-
display: inline-block;
|
21 |
-
}
|
22 |
-
.pie-chart-content {
|
23 |
-
display: inline-block;
|
24 |
-
position: absolute;
|
25 |
-
top: 50%;
|
26 |
-
@include transform(false, translateY(-50%));
|
27 |
-
width: 100%;
|
28 |
-
text-align: center;
|
29 |
-
font-size: 28px;
|
30 |
-
font-weight: 700;
|
31 |
-
line-height: 1;
|
32 |
-
z-index: 3;
|
33 |
-
svg {
|
34 |
-
width: 28px;
|
35 |
-
}
|
36 |
-
}
|
37 |
-
.chart-front,
|
38 |
-
.content-back {
|
39 |
-
@include transition(false, false, all .4s ease);
|
40 |
-
@include displayflex();
|
41 |
-
flex-direction: column;
|
42 |
-
justify-content: center;
|
43 |
-
-webkit-backface-visibility: hidden;
|
44 |
-
backface-visibility: hidden;
|
45 |
-
}
|
46 |
-
.content-back {
|
47 |
-
position: absolute;
|
48 |
-
top: 0;
|
49 |
-
left: 0;
|
50 |
-
height: 100%;
|
51 |
-
width: 100%;
|
52 |
-
padding: 15px 50px;
|
53 |
-
@include transform(false, translateY(100%));
|
54 |
-
opacity: 0;
|
55 |
-
visibility: hidden;
|
56 |
-
overflow: hidden;
|
57 |
-
background: var(--jkit-element-bg-color);
|
58 |
-
}
|
59 |
-
&:hover {
|
60 |
-
.chart-front {
|
61 |
-
@include transform(false, translateY(100%));
|
62 |
-
opacity: 0;
|
63 |
-
visibility: hidden;
|
64 |
-
}
|
65 |
-
.content-back {
|
66 |
-
@include transform(false, translateY(0));
|
67 |
-
opacity: 1;
|
68 |
-
visibility: visible;
|
69 |
-
}
|
70 |
-
}
|
71 |
-
.chart-float {
|
72 |
-
@include displayflex();
|
73 |
-
justify-content: center;
|
74 |
-
}
|
75 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/portfolio-gallery.scss
DELETED
@@ -1,110 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-portfolio-gallery {
|
4 |
-
.portfolio-gallery-container {
|
5 |
-
position: relative;
|
6 |
-
overflow: hidden;
|
7 |
-
}
|
8 |
-
.row-items {
|
9 |
-
@include displayflex();
|
10 |
-
flex-wrap: wrap;
|
11 |
-
}
|
12 |
-
.gallery-items {
|
13 |
-
@include displayflex();
|
14 |
-
}
|
15 |
-
.row-item {
|
16 |
-
height: 90vh;
|
17 |
-
padding: 0;
|
18 |
-
position: relative;
|
19 |
-
z-index: 2;
|
20 |
-
border-right: 1px solid rgba(255, 255, 255, 0.3);
|
21 |
-
@include transition(false, false, all .4s ease);
|
22 |
-
-ms-flex: 0 0 20%;
|
23 |
-
flex: 0 0 20%;
|
24 |
-
max-width: 20%;
|
25 |
-
&:hover {
|
26 |
-
.row-item-info:after {
|
27 |
-
height: 100%;
|
28 |
-
}
|
29 |
-
.row-item-more {
|
30 |
-
@include transform(false, translateY(0));
|
31 |
-
opacity: 1;
|
32 |
-
}
|
33 |
-
}
|
34 |
-
&.current-item:before {
|
35 |
-
position: absolute;
|
36 |
-
content: "";
|
37 |
-
top: 0;
|
38 |
-
left: 0;
|
39 |
-
height: 100%;
|
40 |
-
width: 100%;
|
41 |
-
z-index: 1;
|
42 |
-
background: rgba(0, 0, 0, .1);
|
43 |
-
}
|
44 |
-
}
|
45 |
-
.row-item-info {
|
46 |
-
padding: 40px 10px 40px 20px;
|
47 |
-
position: relative;
|
48 |
-
z-index: 2;
|
49 |
-
@include transition(false, false, all .4s);
|
50 |
-
overflow: hidden;
|
51 |
-
.info-title {
|
52 |
-
font-size: 21px;
|
53 |
-
}
|
54 |
-
.info-subtitle {
|
55 |
-
font-size: 11px;
|
56 |
-
font-weight: 400;
|
57 |
-
letter-spacing: 4px;
|
58 |
-
text-transform: uppercase;
|
59 |
-
margin-bottom: 10px;
|
60 |
-
}
|
61 |
-
&:after {
|
62 |
-
content: '';
|
63 |
-
position: absolute;
|
64 |
-
top: 0;
|
65 |
-
left: 0;
|
66 |
-
width: 100%;
|
67 |
-
height: 0;
|
68 |
-
background: #fff;
|
69 |
-
z-index: -1;
|
70 |
-
@include transition(false, false, all .4s);
|
71 |
-
}
|
72 |
-
}
|
73 |
-
.row-item-more {
|
74 |
-
position: absolute;
|
75 |
-
bottom: 0;
|
76 |
-
left: 0;
|
77 |
-
color: #fff;
|
78 |
-
width: 100%;
|
79 |
-
padding: 25px;
|
80 |
-
font-size: 13px;
|
81 |
-
letter-spacing: 1px;
|
82 |
-
text-transform: uppercase;
|
83 |
-
opacity: 0;
|
84 |
-
@include transform(false, translateY(20%));
|
85 |
-
@include transition(false, false, all .4s ease);
|
86 |
-
z-index: 2;
|
87 |
-
a {
|
88 |
-
text-decoration: none;
|
89 |
-
}
|
90 |
-
svg {
|
91 |
-
width: 13px;
|
92 |
-
}
|
93 |
-
}
|
94 |
-
.image-item {
|
95 |
-
position: absolute;
|
96 |
-
top: 0;
|
97 |
-
left: 0;
|
98 |
-
width: 100%;
|
99 |
-
height: 100%;
|
100 |
-
opacity: 0;
|
101 |
-
@include transform(false, scale(1.1, 1.1));
|
102 |
-
@include transition(false, false, all .7s ease);
|
103 |
-
background-size: cover;
|
104 |
-
background-position: center center;
|
105 |
-
&.current-item {
|
106 |
-
@include transform(false, scale(1, 1));
|
107 |
-
opacity: 1;
|
108 |
-
}
|
109 |
-
}
|
110 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-author.scss
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-post-author {
|
2 |
-
.post-author {
|
3 |
-
display: inline-block;
|
4 |
-
}
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-block.scss
DELETED
@@ -1,328 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-postblock {
|
5 |
-
.jkit-edit-post {
|
6 |
-
position: absolute;
|
7 |
-
top: 0;
|
8 |
-
z-index: 5;
|
9 |
-
color: var(--jkit-txt-alt-color, #ffffff);
|
10 |
-
padding: 4px 10px;
|
11 |
-
font-size: 12px;
|
12 |
-
line-height: 1.5em;
|
13 |
-
background-color: rgba(0, 0, 0, 0.4);
|
14 |
-
opacity: 0;
|
15 |
-
visibility: hidden;
|
16 |
-
@include transform(false, translate3d(0, -15px, 0));
|
17 |
-
@include transition(false, false, .25s ease);
|
18 |
-
i {
|
19 |
-
margin-right: 2px;
|
20 |
-
opacity: 0.6;
|
21 |
-
}
|
22 |
-
}
|
23 |
-
.jkit-post-category {
|
24 |
-
font-size: 0.75rem;
|
25 |
-
font-weight: bold;
|
26 |
-
letter-spacing: 0.04em;
|
27 |
-
margin-top: 0.5rem;
|
28 |
-
margin-bottom: 0.5rem;
|
29 |
-
display: inline-block;
|
30 |
-
a {
|
31 |
-
color: var(--jkit-txt-a-color);
|
32 |
-
}
|
33 |
-
}
|
34 |
-
.jkit-post-title {
|
35 |
-
font-size: 1rem;
|
36 |
-
line-height: 1.3;
|
37 |
-
margin-top: 0.5rem;
|
38 |
-
margin-bottom: 0.5rem;
|
39 |
-
a {
|
40 |
-
color: var(--jkit-txt-h-color, #181D23);
|
41 |
-
}
|
42 |
-
}
|
43 |
-
.jkit-post-excerpt {
|
44 |
-
font-size: 0.875rem;
|
45 |
-
margin-top: 0.5rem;
|
46 |
-
margin-bottom: 0.5rem;
|
47 |
-
p:last-child {
|
48 |
-
margin-bottom: 0px;
|
49 |
-
}
|
50 |
-
}
|
51 |
-
.jkit-post-meta {
|
52 |
-
display: -webkit-inline-box;
|
53 |
-
display: -ms-inline-flexbox;
|
54 |
-
display: inline-flex;
|
55 |
-
-webkit-box-pack: center;
|
56 |
-
-ms-flex-pack: center;
|
57 |
-
justify-content: center;
|
58 |
-
margin-top: 0.5rem;
|
59 |
-
margin-bottom: 0.5rem;
|
60 |
-
color: var(--jkit-txt-m-color, #96989B);
|
61 |
-
font-size: 0.75rem;
|
62 |
-
a {
|
63 |
-
color: var(--jkit-txt-h-color, #181D23);
|
64 |
-
text-transform: uppercase;
|
65 |
-
}
|
66 |
-
>div:not(:only-child):not(:last-child):after {
|
67 |
-
content: '\2022';
|
68 |
-
margin: 0 0.5rem;
|
69 |
-
}
|
70 |
-
svg {
|
71 |
-
fill: var(--jkit-txt-m-color, #96989B);
|
72 |
-
width: 0.75rem;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
.jkit-post-meta-bottom {
|
76 |
-
@include displayflex();
|
77 |
-
@include alignitemscenter();
|
78 |
-
font-size: .75rem;
|
79 |
-
-webkit-box-pack: justify;
|
80 |
-
-ms-flex-pack: justify;
|
81 |
-
justify-content: space-between;
|
82 |
-
margin-top: 1.5rem;
|
83 |
-
}
|
84 |
-
.jkit-readmore {
|
85 |
-
display: inline-block;
|
86 |
-
color: var(--jkit-btn-txt-color, #ffffff);
|
87 |
-
text-align: center;
|
88 |
-
vertical-align: middle;
|
89 |
-
background-color: var(--jkit-btn-bg-color, #0058E6);
|
90 |
-
border: 1px solid transparent;
|
91 |
-
padding: .5rem .875rem;
|
92 |
-
line-height: 1.5;
|
93 |
-
border-radius: 3px;
|
94 |
-
@include userselect('none');
|
95 |
-
@include transition(false, false, .2s ease);
|
96 |
-
svg {
|
97 |
-
fill: var(--jkit-btn-txt-color, #ffffff);
|
98 |
-
}
|
99 |
-
}
|
100 |
-
.jkit-meta-comment a {
|
101 |
-
color: var(--jkit-txt-h-color, #181D23);
|
102 |
-
svg {
|
103 |
-
fill: var(--jkit-txt-h-color, #181D23);
|
104 |
-
}
|
105 |
-
}
|
106 |
-
.jkit-posts {
|
107 |
-
display: grid;
|
108 |
-
}
|
109 |
-
.jkit-post {
|
110 |
-
margin-bottom: 2rem;
|
111 |
-
&:hover .jkit-edit-post {
|
112 |
-
@include transform(false, translate3d(0, 0, 0));
|
113 |
-
opacity: 1;
|
114 |
-
visibility: visible;
|
115 |
-
}
|
116 |
-
}
|
117 |
-
.jkit-thumb {
|
118 |
-
position: relative;
|
119 |
-
overflow: hidden;
|
120 |
-
.thumbnail-container {
|
121 |
-
display: block;
|
122 |
-
position: relative;
|
123 |
-
overflow: hidden;
|
124 |
-
z-index: 0;
|
125 |
-
background: var(--jkit-border-color, #eaeaeb);
|
126 |
-
background-position: 50%;
|
127 |
-
background-size: cover;
|
128 |
-
img {
|
129 |
-
position: absolute;
|
130 |
-
top: 50%;
|
131 |
-
left: 50%;
|
132 |
-
min-width: 100%;
|
133 |
-
min-height: 100%;
|
134 |
-
@include transform(false, translate(-50%, -50%));
|
135 |
-
object-fit: cover;
|
136 |
-
color: var(--jkit-txt-alt-color, #FAFCFF);
|
137 |
-
z-index: -1;
|
138 |
-
}
|
139 |
-
&:before {
|
140 |
-
content: "";
|
141 |
-
display: block;
|
142 |
-
position: absolute;
|
143 |
-
top: 0;
|
144 |
-
left: 0;
|
145 |
-
right: 0;
|
146 |
-
width: 100%;
|
147 |
-
height: 100%;
|
148 |
-
z-index: 1;
|
149 |
-
background-color: transparent;
|
150 |
-
@include transition(false, false, all .2s ease);
|
151 |
-
}
|
152 |
-
}
|
153 |
-
}
|
154 |
-
&.postblock-type-1 {
|
155 |
-
.jkit-post {
|
156 |
-
@include displayflex();
|
157 |
-
@include alignitemscenter();
|
158 |
-
}
|
159 |
-
.jkit-thumb {
|
160 |
-
-webkit-box-flex: 1;
|
161 |
-
-ms-flex: 1 0 50%;
|
162 |
-
flex: 1 0 50%;
|
163 |
-
}
|
164 |
-
.jkit-postblock-content {
|
165 |
-
-webkit-box-flex: 1;
|
166 |
-
-ms-flex: 1 1 auto;
|
167 |
-
flex: 1 1 auto;
|
168 |
-
padding-left: 2rem;
|
169 |
-
}
|
170 |
-
&.break-point-tablet {
|
171 |
-
@media screen and (max-width: $break-tablet) {
|
172 |
-
.jkit-post {
|
173 |
-
display: block;
|
174 |
-
-webkit-box-align: stretch;
|
175 |
-
-ms-flex-align: stretch;
|
176 |
-
align-items: stretch;
|
177 |
-
}
|
178 |
-
.jkit-thumb {
|
179 |
-
-webkit-box-flex: 1;
|
180 |
-
-ms-flex: 1 0 auto;
|
181 |
-
flex: 1 0 auto;
|
182 |
-
max-width: 100%;
|
183 |
-
}
|
184 |
-
}
|
185 |
-
}
|
186 |
-
&.break-point-mobile {
|
187 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
188 |
-
.jkit-post {
|
189 |
-
display: block;
|
190 |
-
-webkit-box-align: stretch;
|
191 |
-
-ms-flex-align: stretch;
|
192 |
-
align-items: stretch;
|
193 |
-
}
|
194 |
-
.jkit-thumb {
|
195 |
-
-webkit-box-flex: 1;
|
196 |
-
-ms-flex: 1 0 auto;
|
197 |
-
flex: 1 0 auto;
|
198 |
-
max-width: 100%;
|
199 |
-
}
|
200 |
-
}
|
201 |
-
}
|
202 |
-
}
|
203 |
-
&.postblock-type-2 {
|
204 |
-
.jkit-post-category {
|
205 |
-
a {
|
206 |
-
color: var(--jkit-txt-a-color);
|
207 |
-
}
|
208 |
-
}
|
209 |
-
.jkit-postblock-content {
|
210 |
-
position: relative;
|
211 |
-
}
|
212 |
-
}
|
213 |
-
&.postblock-type-3 {
|
214 |
-
.jkit-thumb {
|
215 |
-
margin-bottom: 1.5rem;
|
216 |
-
}
|
217 |
-
.jkit-post-category {
|
218 |
-
position: absolute;
|
219 |
-
bottom: 0;
|
220 |
-
line-height: 1;
|
221 |
-
background: var(--jkit-bg-color, #fff);
|
222 |
-
padding: 1rem 1.5rem 0;
|
223 |
-
margin-bottom: 0;
|
224 |
-
max-width: 50%;
|
225 |
-
&.position-left {
|
226 |
-
left: 0;
|
227 |
-
text-align: left;
|
228 |
-
}
|
229 |
-
&.position-center {
|
230 |
-
left: 50%;
|
231 |
-
@include transform(false, translateX(-50%));
|
232 |
-
text-align: center;
|
233 |
-
}
|
234 |
-
&.position-right {
|
235 |
-
right: 0;
|
236 |
-
text-align: right;
|
237 |
-
}
|
238 |
-
}
|
239 |
-
}
|
240 |
-
&.postblock-type-4 {
|
241 |
-
.jkit-post {
|
242 |
-
@include displayflex();
|
243 |
-
}
|
244 |
-
.jkit-thumb {
|
245 |
-
-webkit-box-flex: 1;
|
246 |
-
-ms-flex: 1 0 64%;
|
247 |
-
flex: 1 0 64%;
|
248 |
-
-webkit-box-ordinal-group: 2;
|
249 |
-
-ms-flex-order: 1;
|
250 |
-
order: 1;
|
251 |
-
}
|
252 |
-
.jkit-postblock-content {
|
253 |
-
-webkit-box-flex: 1;
|
254 |
-
-ms-flex: 1 1 auto;
|
255 |
-
flex: 1 1 auto;
|
256 |
-
-webkit-box-ordinal-group: 1;
|
257 |
-
-ms-flex-order: 0;
|
258 |
-
order: 0;
|
259 |
-
}
|
260 |
-
.jkit-post-title {
|
261 |
-
margin-right: -120px;
|
262 |
-
position: relative;
|
263 |
-
z-index: 1;
|
264 |
-
a {
|
265 |
-
line-height: inherit;
|
266 |
-
display: inline;
|
267 |
-
padding: 2px 2px 2px 0;
|
268 |
-
background: var(--jeg-bg-color, #fff);
|
269 |
-
white-space: pre-wrap;
|
270 |
-
-webkit-box-decoration-break: clone;
|
271 |
-
box-decoration-break: clone;
|
272 |
-
}
|
273 |
-
}
|
274 |
-
&.break-point-tablet {
|
275 |
-
@media screen and (max-width: $break-tablet) {
|
276 |
-
.jkit-post {
|
277 |
-
display: block;
|
278 |
-
}
|
279 |
-
.jkit-thumb {
|
280 |
-
-webkit-box-ordinal-group: 1;
|
281 |
-
-ms-flex-order: 0;
|
282 |
-
order: 0;
|
283 |
-
-webkit-box-flex: 1;
|
284 |
-
-ms-flex: 1 0 auto;
|
285 |
-
flex: 1 0 auto;
|
286 |
-
max-width: 100%;
|
287 |
-
}
|
288 |
-
}
|
289 |
-
}
|
290 |
-
&.break-point-mobile {
|
291 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
292 |
-
.jkit-post {
|
293 |
-
display: block;
|
294 |
-
}
|
295 |
-
.jkit-thumb {
|
296 |
-
-webkit-box-ordinal-group: 1;
|
297 |
-
-ms-flex-order: 0;
|
298 |
-
order: 0;
|
299 |
-
-webkit-box-flex: 1;
|
300 |
-
-ms-flex: 1 0 auto;
|
301 |
-
flex: 1 0 auto;
|
302 |
-
max-width: 100%;
|
303 |
-
}
|
304 |
-
}
|
305 |
-
}
|
306 |
-
}
|
307 |
-
&.postblock-type-5 {
|
308 |
-
.jkit-post-category {
|
309 |
-
a {
|
310 |
-
color: var(--jkit-txt-a-color);
|
311 |
-
}
|
312 |
-
}
|
313 |
-
.jkit-post {
|
314 |
-
position: relative;
|
315 |
-
overflow: hidden;
|
316 |
-
}
|
317 |
-
.jkit-post-category {
|
318 |
-
margin-top: 0;
|
319 |
-
margin-bottom: 0;
|
320 |
-
}
|
321 |
-
.jkit-postblock-content {
|
322 |
-
position: absolute;
|
323 |
-
bottom: 0;
|
324 |
-
left: 0;
|
325 |
-
padding: 30px;
|
326 |
-
}
|
327 |
-
}
|
328 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-date.scss
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-post-date {
|
2 |
-
.post-date {
|
3 |
-
display: inline-block;
|
4 |
-
}
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-excerpt.scss
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-post-excerpt {
|
2 |
-
.post-excerpt {
|
3 |
-
display: inline-block;
|
4 |
-
}
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-list.scss
DELETED
@@ -1,74 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-postlist {
|
4 |
-
article {
|
5 |
-
overflow: hidden;
|
6 |
-
position: relative;
|
7 |
-
a {
|
8 |
-
display: inline-flex;
|
9 |
-
@include alignitemscenter();
|
10 |
-
@include transition(false, false, all .4s ease);
|
11 |
-
position: relative;
|
12 |
-
color: var(--jkit-txt-h-color);
|
13 |
-
&:hover {
|
14 |
-
color: var(--jkit-txt-h-color);
|
15 |
-
}
|
16 |
-
img {
|
17 |
-
margin-right: 15px;
|
18 |
-
z-index: 2;
|
19 |
-
position: relative;
|
20 |
-
line-height: 0;
|
21 |
-
}
|
22 |
-
svg {
|
23 |
-
fill: var(--jkit-txt-h-color);
|
24 |
-
}
|
25 |
-
.jkit-postlist-content {
|
26 |
-
z-index: 2;
|
27 |
-
width: 100%;
|
28 |
-
}
|
29 |
-
.jkit-postlist-title {
|
30 |
-
display: block;
|
31 |
-
margin-bottom: 0;
|
32 |
-
}
|
33 |
-
.meta-lists span {
|
34 |
-
color: var(--jkit-txt-m-color);
|
35 |
-
font-size: 12px;
|
36 |
-
display: inline-block;
|
37 |
-
@include transition(false, false, all .4s ease);
|
38 |
-
svg {
|
39 |
-
fill: var(--jkit-txt-m-color);
|
40 |
-
width: 12px;
|
41 |
-
}
|
42 |
-
}
|
43 |
-
.icon-list {
|
44 |
-
text-align: center;
|
45 |
-
}
|
46 |
-
}
|
47 |
-
}
|
48 |
-
&.layout-horizontal {
|
49 |
-
article a {
|
50 |
-
@include displayflex();
|
51 |
-
}
|
52 |
-
.jkit-posts {
|
53 |
-
display: grid;
|
54 |
-
}
|
55 |
-
}
|
56 |
-
&.bg-image article a {
|
57 |
-
background-size: cover;
|
58 |
-
background-repeat: no-repeat;
|
59 |
-
position: relative;
|
60 |
-
background-position: center center;
|
61 |
-
overflow: hidden;
|
62 |
-
&:after {
|
63 |
-
content: "";
|
64 |
-
background-color: rgba(34, 34, 34, .7);
|
65 |
-
position: absolute;
|
66 |
-
left: 0;
|
67 |
-
top: 0;
|
68 |
-
width: 100%;
|
69 |
-
height: 100%;
|
70 |
-
display: block;
|
71 |
-
@include transition(false, false, all .4s ease);
|
72 |
-
}
|
73 |
-
}
|
74 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-terms.scss
DELETED
@@ -1,10 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-post-terms {
|
2 |
-
.post-terms,
|
3 |
-
.term-list {
|
4 |
-
font-size: 16px;
|
5 |
-
font-weight: 400;
|
6 |
-
}
|
7 |
-
.term-list {
|
8 |
-
display: inline-block;
|
9 |
-
}
|
10 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/post-title.scss
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-post-title {
|
2 |
-
.post-title {
|
3 |
-
display: inline-block;
|
4 |
-
}
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/progress-bar.scss
DELETED
@@ -1,275 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-progress-bar {
|
4 |
-
.progress-group {
|
5 |
-
.progress-skill-bar {
|
6 |
-
.skill-bar-content {
|
7 |
-
margin-bottom: 7px;
|
8 |
-
.skill-title {
|
9 |
-
font-weight: 700;
|
10 |
-
color: var(--jkit-txt-color);
|
11 |
-
}
|
12 |
-
}
|
13 |
-
.skill-bar {
|
14 |
-
height: 3px;
|
15 |
-
background-color: var(--jkit-element-bg-color);
|
16 |
-
.skill-track {
|
17 |
-
width: 0;
|
18 |
-
background-color: var(--jkit-element-darken-bg-color);
|
19 |
-
display: block;
|
20 |
-
height: 100%;
|
21 |
-
overflow: visible !important;
|
22 |
-
position: relative;
|
23 |
-
.number-percentage-wrapper {
|
24 |
-
position: absolute;
|
25 |
-
right: 0;
|
26 |
-
top: -33px;
|
27 |
-
z-index: 1;
|
28 |
-
}
|
29 |
-
}
|
30 |
-
}
|
31 |
-
.number-percentage {
|
32 |
-
color: var(--jkit-txt-color);
|
33 |
-
}
|
34 |
-
}
|
35 |
-
&.inner-content {
|
36 |
-
.progress-skill-bar {
|
37 |
-
position: relative;
|
38 |
-
.skill-bar-content {
|
39 |
-
position: absolute;
|
40 |
-
z-index: 1;
|
41 |
-
left: 0;
|
42 |
-
top: 50%;
|
43 |
-
@include transform(false, translateY(-50%));
|
44 |
-
margin-bottom: 0;
|
45 |
-
padding-left: 30px;
|
46 |
-
.skill-title {
|
47 |
-
color: var(--jkit-bg-color);
|
48 |
-
}
|
49 |
-
}
|
50 |
-
.skill-bar {
|
51 |
-
height: 35px;
|
52 |
-
.skill-track {
|
53 |
-
.skill-track-icon {
|
54 |
-
position: absolute;
|
55 |
-
right: 19px;
|
56 |
-
top: 50%;
|
57 |
-
@include transform(false, translateY(-50%));
|
58 |
-
color: var(--jkit-bg-color);
|
59 |
-
+.number-percentage-wrapper {
|
60 |
-
padding-right: 57px;
|
61 |
-
}
|
62 |
-
svg {
|
63 |
-
fill: var(--jkit-bg-color);
|
64 |
-
}
|
65 |
-
}
|
66 |
-
.number-percentage-wrapper {
|
67 |
-
top: 50%;
|
68 |
-
@include transform(false, translateY(-50%));
|
69 |
-
color: var(--jkit-bg-color);
|
70 |
-
padding-right: 30px;
|
71 |
-
}
|
72 |
-
}
|
73 |
-
}
|
74 |
-
.number-percentage {
|
75 |
-
color: var(--jkit-bg-color);
|
76 |
-
}
|
77 |
-
}
|
78 |
-
}
|
79 |
-
&.bar-shadow {
|
80 |
-
.progress-skill-bar {
|
81 |
-
.skill-bar {
|
82 |
-
height: 30px;
|
83 |
-
background-color: var(--jkit-form-bg-color);
|
84 |
-
padding: 10px;
|
85 |
-
@include boxshadow(0 0 20px 0 rgba(0, 0, 0, 0.25));
|
86 |
-
border-radius: 15px;
|
87 |
-
.skill-track {
|
88 |
-
height: 100%;
|
89 |
-
border-radius: 5px;
|
90 |
-
.number-percentage-wrapper {
|
91 |
-
top: -39px;
|
92 |
-
}
|
93 |
-
}
|
94 |
-
}
|
95 |
-
}
|
96 |
-
}
|
97 |
-
&.tooltip-style {
|
98 |
-
.progress-skill-bar {
|
99 |
-
.skill-bar .skill-track .number-percentage-wrapper {
|
100 |
-
height: 24px;
|
101 |
-
line-height: 24px;
|
102 |
-
display: inline-block;
|
103 |
-
color: var(--jkit-bg-color);
|
104 |
-
font-size: 13px;
|
105 |
-
background-color: var(--jkit-txt-color);
|
106 |
-
text-align: center;
|
107 |
-
padding: 0 11px;
|
108 |
-
border-radius: 4.32px;
|
109 |
-
border-bottom-right-radius: 0;
|
110 |
-
&:before {
|
111 |
-
position: absolute;
|
112 |
-
content: "";
|
113 |
-
right: 0;
|
114 |
-
bottom: -8px;
|
115 |
-
color: var(--jkit-txt-color);
|
116 |
-
border-top: solid currentColor;
|
117 |
-
border-right: solid currentColor;
|
118 |
-
border-left: solid transparent;
|
119 |
-
border-bottom: solid transparent;
|
120 |
-
border-width: 4px;
|
121 |
-
}
|
122 |
-
}
|
123 |
-
.number-percentage {
|
124 |
-
color: var(--jkit-bg-color);
|
125 |
-
}
|
126 |
-
}
|
127 |
-
}
|
128 |
-
&.tooltip-box,
|
129 |
-
&.tooltip-rounded,
|
130 |
-
&.stripe {
|
131 |
-
.progress-skill-bar {
|
132 |
-
.skill-bar .skill-track .number-percentage-wrapper {
|
133 |
-
height: 22px;
|
134 |
-
padding: 0 8px;
|
135 |
-
background-color: var(--jkit-txt-color);
|
136 |
-
text-align: center;
|
137 |
-
font-size: 13px;
|
138 |
-
color: #FFF;
|
139 |
-
z-index: 1;
|
140 |
-
right: -20px;
|
141 |
-
top: -31px;
|
142 |
-
&:before {
|
143 |
-
position: absolute;
|
144 |
-
content: "";
|
145 |
-
bottom: -6px;
|
146 |
-
left: 50%;
|
147 |
-
@include transform(false, translateX(-50%) rotate(45deg));
|
148 |
-
width: 14px;
|
149 |
-
height: 14px;
|
150 |
-
background-color: var(--jkit-txt-color);
|
151 |
-
z-index: -1;
|
152 |
-
}
|
153 |
-
}
|
154 |
-
.number-percentage {
|
155 |
-
color: var(--jkit-bg-color);
|
156 |
-
}
|
157 |
-
}
|
158 |
-
}
|
159 |
-
&.tooltip-rounded,
|
160 |
-
&.stripe {
|
161 |
-
.progress-skill-bar .skill-bar .skill-track .number-percentage-wrapper {
|
162 |
-
border-radius: 8px;
|
163 |
-
}
|
164 |
-
}
|
165 |
-
&.tooltip-circle {
|
166 |
-
.progress-skill-bar {
|
167 |
-
.skill-bar .skill-track .number-percentage-wrapper {
|
168 |
-
width: 35px;
|
169 |
-
height: 35px;
|
170 |
-
line-height: 35px;
|
171 |
-
border-radius: 50%;
|
172 |
-
background-color: var(--jkit-txt-color);
|
173 |
-
color: #FFF;
|
174 |
-
text-align: center;
|
175 |
-
font-size: 13px;
|
176 |
-
right: calc(0% - 15.5px);
|
177 |
-
top: -39.9px;
|
178 |
-
&:before {
|
179 |
-
position: absolute;
|
180 |
-
content: "";
|
181 |
-
bottom: -5px;
|
182 |
-
left: 50%;
|
183 |
-
@include transform(false, translateX(-50%));
|
184 |
-
width: 3px;
|
185 |
-
height: 5px;
|
186 |
-
background-color: var(--jkit-txt-color);
|
187 |
-
}
|
188 |
-
}
|
189 |
-
.number-percentage {
|
190 |
-
color: var(--jkit-bg-color);
|
191 |
-
}
|
192 |
-
}
|
193 |
-
}
|
194 |
-
&.switch {
|
195 |
-
.progress-skill-bar {
|
196 |
-
.skill-bar-content {
|
197 |
-
margin-bottom: 18px;
|
198 |
-
}
|
199 |
-
.content-group {
|
200 |
-
width: calc(100% - 50px);
|
201 |
-
display: inline-block;
|
202 |
-
.skill-bar .skill-track {
|
203 |
-
&:after {
|
204 |
-
position: absolute;
|
205 |
-
content: "";
|
206 |
-
border-radius: 50%;
|
207 |
-
color: var(--jkit-txt-color);
|
208 |
-
width: 8px;
|
209 |
-
height: 8px;
|
210 |
-
background-color: var(--jkit-txt-color);
|
211 |
-
top: -3px;
|
212 |
-
right: 8px;
|
213 |
-
}
|
214 |
-
&:before {
|
215 |
-
position: absolute;
|
216 |
-
content: "";
|
217 |
-
right: 0;
|
218 |
-
border-radius: 50%;
|
219 |
-
color: var(--jkit-txt-color);
|
220 |
-
top: -12.5px;
|
221 |
-
width: 25px;
|
222 |
-
height: 25px;
|
223 |
-
@include boxshadow((-1.216px 6.894px 15px 0 rgba(0, 0, 0, 0.07), inset 0 2px 3px 0 rgba(0, 0, 0, 0.2)));
|
224 |
-
background-color: #FFF;
|
225 |
-
border: 1px solid var(--jkit-txt-color);
|
226 |
-
}
|
227 |
-
}
|
228 |
-
}
|
229 |
-
.number-percentage-wrapper {
|
230 |
-
float: right;
|
231 |
-
position: relative;
|
232 |
-
top: 31px;
|
233 |
-
}
|
234 |
-
}
|
235 |
-
}
|
236 |
-
&.ribbon {
|
237 |
-
.progress-skill-bar {
|
238 |
-
.skill-bar .skill-track .number-percentage-wrapper {
|
239 |
-
height: 35px;
|
240 |
-
line-height: 35px;
|
241 |
-
color: #FFF;
|
242 |
-
background-color: var(--jkit-txt-color);
|
243 |
-
text-align: center;
|
244 |
-
padding: 0 8px;
|
245 |
-
top: -10px;
|
246 |
-
z-index: 1;
|
247 |
-
&:before {
|
248 |
-
position: absolute;
|
249 |
-
content: "";
|
250 |
-
top: 0;
|
251 |
-
left: -10px;
|
252 |
-
color: #1a1a1a;
|
253 |
-
border-top: solid #00000000;
|
254 |
-
border-left: solid #00000000;
|
255 |
-
border-right: solid currentColor;
|
256 |
-
border-bottom: solid currentColor;
|
257 |
-
border-width: 5px;
|
258 |
-
}
|
259 |
-
}
|
260 |
-
.number-percentage {
|
261 |
-
color: var(--jkit-bg-color);
|
262 |
-
}
|
263 |
-
}
|
264 |
-
}
|
265 |
-
&.stripe {
|
266 |
-
.progress-skill-bar .skill-bar {
|
267 |
-
height: 10px;
|
268 |
-
.skill-track {
|
269 |
-
background: -o-repeating-linear-gradient(left, var(--jkit-txt-color), var(--jkit-txt-color) 4px, var(--jkit-bg-color) 4px, var(--jkit-bg-color) 8px);
|
270 |
-
background: repeating-linear-gradient(to right, var(--jkit-txt-color), var(--jkit-txt-color) 4px, var(--jkit-bg-color) 4px, var(--jkit-bg-color) 8px);
|
271 |
-
}
|
272 |
-
}
|
273 |
-
}
|
274 |
-
}
|
275 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/search.scss
DELETED
@@ -1,84 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-search {
|
2 |
-
.jkit-search-modal {
|
3 |
-
display: inline-block;
|
4 |
-
}
|
5 |
-
|
6 |
-
.mfp-close,
|
7 |
-
.jkit-modal-search-panel {
|
8 |
-
opacity: 0;
|
9 |
-
-webkit-transition: all 1s ease .8s;
|
10 |
-
transition: all 1s ease .8s;
|
11 |
-
-webkit-transform: translateY(-500px);
|
12 |
-
transform: translateY(-500px);
|
13 |
-
|
14 |
-
.jkit-search-panel {
|
15 |
-
max-width: 800px;
|
16 |
-
margin: 1.75rem auto;
|
17 |
-
|
18 |
-
input:not([type=submit]) {
|
19 |
-
border-radius: 50px;
|
20 |
-
color: var(--jkit-border-color);
|
21 |
-
}
|
22 |
-
}
|
23 |
-
}
|
24 |
-
|
25 |
-
> .jkit-search-panel {
|
26 |
-
display: inline-block;
|
27 |
-
max-width: 100%;
|
28 |
-
}
|
29 |
-
|
30 |
-
.jkit-search-panel {
|
31 |
-
.jkit-search-group {
|
32 |
-
position: relative;
|
33 |
-
}
|
34 |
-
|
35 |
-
input:not([type=submit]) {
|
36 |
-
height: 70px;
|
37 |
-
background-color: transparent;
|
38 |
-
border: 2px solid var(--jkit-border-color);
|
39 |
-
padding: 0 30px;
|
40 |
-
width: 100%;
|
41 |
-
}
|
42 |
-
|
43 |
-
.jkit-search-button {
|
44 |
-
background-color: transparent;
|
45 |
-
border: 0;
|
46 |
-
padding: 0;
|
47 |
-
color: var(--jkit-border-color);
|
48 |
-
cursor: pointer;
|
49 |
-
height: 100%;
|
50 |
-
width: 70px;
|
51 |
-
position: absolute;
|
52 |
-
right: 0;
|
53 |
-
top: 50%;
|
54 |
-
-webkit-transform: translateY(-50%);
|
55 |
-
transform: translateY(-50%);
|
56 |
-
}
|
57 |
-
}
|
58 |
-
|
59 |
-
.mfp-close {
|
60 |
-
position: fixed;
|
61 |
-
}
|
62 |
-
|
63 |
-
.mfp-ready {
|
64 |
-
.mfp-close,
|
65 |
-
.jkit-modal-search-panel {
|
66 |
-
opacity: 1;
|
67 |
-
-webkit-transform: translateY(0);
|
68 |
-
transform: translateY(0);
|
69 |
-
}
|
70 |
-
|
71 |
-
.mfp-close {
|
72 |
-
margin-top: 45px;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
|
76 |
-
.mfp-bg {
|
77 |
-
background-color: rgba(0,0,0,.87);
|
78 |
-
overflow: hidden;
|
79 |
-
padding-bottom: 100%;
|
80 |
-
border-radius: 100%;
|
81 |
-
-webkit-animation: jkit-search-background .8s ease-out forwards;
|
82 |
-
animation: jkit-search-background .8s ease-out forwards;
|
83 |
-
}
|
84 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/social-share.scss
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
.jeg-elementor-kit.jkit-social-share {
|
2 |
-
width: 100%;
|
3 |
-
--icon-size: 16px;
|
4 |
-
.social-share-list {
|
5 |
-
margin-left: 0;
|
6 |
-
padding-left: 0;
|
7 |
-
list-style: none;
|
8 |
-
> li {
|
9 |
-
a {
|
10 |
-
display: block;
|
11 |
-
cursor: pointer;
|
12 |
-
overflow: hidden;
|
13 |
-
i {
|
14 |
-
font-size: var(--icon-size);
|
15 |
-
}
|
16 |
-
svg {
|
17 |
-
width: var(--icon-size);
|
18 |
-
}
|
19 |
-
}
|
20 |
-
i, svg {
|
21 |
-
vertical-align: middle;
|
22 |
-
display: inline-block;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
}
|
26 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/tabs.scss
DELETED
@@ -1,175 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-tabs {
|
5 |
-
.tab-nav-list {
|
6 |
-
position: relative;
|
7 |
-
padding: 0px;
|
8 |
-
margin: 0px;
|
9 |
-
list-style-type: none;
|
10 |
-
@include displayflex();
|
11 |
-
@include alignitemscenter();
|
12 |
-
-webkit-box-pack: start;
|
13 |
-
-ms-flex-pack: start;
|
14 |
-
justify-content: flex-start;
|
15 |
-
z-index: 1;
|
16 |
-
@media screen and (max-width: $break-mobile - 1) {
|
17 |
-
-ms-flex-wrap: wrap;
|
18 |
-
flex-wrap: wrap;
|
19 |
-
-webkit-box-orient: horizontal;
|
20 |
-
-webkit-box-direction: normal;
|
21 |
-
-ms-flex-flow: row wrap;
|
22 |
-
flex-flow: row wrap;
|
23 |
-
}
|
24 |
-
.tab-nav {
|
25 |
-
position: relative;
|
26 |
-
padding: 1em 1.5em;
|
27 |
-
cursor: pointer;
|
28 |
-
@include displayflex();
|
29 |
-
@include alignitemscenter();
|
30 |
-
-webkit-box-pack: center;
|
31 |
-
-ms-flex-pack: center;
|
32 |
-
justify-content: center;
|
33 |
-
text-align: center;
|
34 |
-
background-color: var(--jkit-border-color);
|
35 |
-
@media screen and (max-width: $break-mobile - 1) {
|
36 |
-
-webkit-box-flex: 1;
|
37 |
-
-ms-flex: 1 1 auto;
|
38 |
-
flex: 1 1 auto;
|
39 |
-
}
|
40 |
-
&:hover {
|
41 |
-
background-color: var(--jkit-element-bg-color);
|
42 |
-
color: var(--jkit-txt-alt-color);
|
43 |
-
> i {
|
44 |
-
color: var(--jkit-txt-alt-color);
|
45 |
-
}
|
46 |
-
> svg {
|
47 |
-
fill: var(--jkit-txt-alt-color);
|
48 |
-
}
|
49 |
-
}
|
50 |
-
&.active {
|
51 |
-
background-color: var(--jkit-element-darken-bg-color);
|
52 |
-
color: var(--jkit-txt-alt-color);
|
53 |
-
> i {
|
54 |
-
color: var(--jkit-txt-alt-color);
|
55 |
-
}
|
56 |
-
> svg {
|
57 |
-
fill: var(--jkit-txt-alt-color);
|
58 |
-
}
|
59 |
-
}
|
60 |
-
img,
|
61 |
-
svg {
|
62 |
-
width: 16px;
|
63 |
-
height: auto;
|
64 |
-
}
|
65 |
-
}
|
66 |
-
&.icon-position-top {
|
67 |
-
.tab-nav {
|
68 |
-
display: -webkit-box;
|
69 |
-
display: -ms-flexbox;
|
70 |
-
display: flex;
|
71 |
-
-ms-flex-wrap: wrap;
|
72 |
-
flex-wrap: wrap;
|
73 |
-
}
|
74 |
-
.tab-title {
|
75 |
-
-webkit-box-flex: 1;
|
76 |
-
-ms-flex: 1 1 100%;
|
77 |
-
flex: 1 1 100%;
|
78 |
-
line-height: 1;
|
79 |
-
}
|
80 |
-
}
|
81 |
-
&.caret-on {
|
82 |
-
.tab-nav.active::after {
|
83 |
-
content: "";
|
84 |
-
position: absolute;
|
85 |
-
bottom: -10px;
|
86 |
-
left: 0px;
|
87 |
-
right: 0px;
|
88 |
-
margin: 0 auto;
|
89 |
-
z-index: 1;
|
90 |
-
width: 0px;
|
91 |
-
height: 0px;
|
92 |
-
border-left: 10px solid transparent;
|
93 |
-
border-right: 10px solid transparent;
|
94 |
-
border-top: 10px solid var(--jkit-element-darken-bg-color);
|
95 |
-
border-bottom: 0px;
|
96 |
-
@media screen and (max-width: $break-mobile - 1) {
|
97 |
-
display: none;
|
98 |
-
}
|
99 |
-
}
|
100 |
-
}
|
101 |
-
}
|
102 |
-
.tab-content-list {
|
103 |
-
@include displayflex();
|
104 |
-
-webkit-box-flex: 1;
|
105 |
-
-ms-flex: 1 1 auto;
|
106 |
-
flex: 1 1 auto;
|
107 |
-
overflow: hidden;
|
108 |
-
.tab-content {
|
109 |
-
display: none;
|
110 |
-
opacity: 0;
|
111 |
-
width: 100%;
|
112 |
-
padding: 1em;
|
113 |
-
-webkit-animation: fadeIn linear .3s;
|
114 |
-
animation: fadeIn linear .3s;
|
115 |
-
&.active {
|
116 |
-
display: block;
|
117 |
-
opacity: 1;
|
118 |
-
}
|
119 |
-
}
|
120 |
-
}
|
121 |
-
&.layout-vertical {
|
122 |
-
@include displayflex();
|
123 |
-
@media screen and (max-width: $break-mobile - 1) {
|
124 |
-
-ms-flex-wrap: wrap;
|
125 |
-
flex-wrap: wrap;
|
126 |
-
}
|
127 |
-
.tab-navigation {
|
128 |
-
-webkit-box-flex: 0;
|
129 |
-
-ms-flex: 0 0 auto;
|
130 |
-
flex: 0 0 auto;
|
131 |
-
@media screen and (max-width: $break-mobile - 1) {
|
132 |
-
-webkit-box-flex: 1;
|
133 |
-
-ms-flex: 1 100%;
|
134 |
-
flex: 1 100%;
|
135 |
-
}
|
136 |
-
}
|
137 |
-
.tab-nav-list {
|
138 |
-
-webkit-box-orient: vertical;
|
139 |
-
-webkit-box-direction: normal;
|
140 |
-
flex-direction: column;
|
141 |
-
height: 100%;
|
142 |
-
@media screen and (max-width: $break-mobile - 1) {
|
143 |
-
-webkit-box-flex: 1;
|
144 |
-
-ms-flex: 1 100%;
|
145 |
-
flex: 1 100%;
|
146 |
-
}
|
147 |
-
.tab-nav {
|
148 |
-
width: 100%;
|
149 |
-
-webkit-box-pack: center;
|
150 |
-
-ms-flex-pack: center;
|
151 |
-
justify-content: center;
|
152 |
-
@media screen and (max-width: $break-mobile - 1) {
|
153 |
-
width: 100%;
|
154 |
-
height: auto !important;
|
155 |
-
-webkit-box-pack: center;
|
156 |
-
-ms-flex-pack: center;
|
157 |
-
justify-content: center;
|
158 |
-
}
|
159 |
-
}
|
160 |
-
&.caret-on .tab-nav.active::after {
|
161 |
-
bottom: auto !important;
|
162 |
-
right: -10px;
|
163 |
-
top: calc(50% - 10px);
|
164 |
-
left: auto !important;
|
165 |
-
border-left: 10px solid var(--jkit-element-darken-bg-color);
|
166 |
-
border-right: 0;
|
167 |
-
border-top: 10px solid transparent;
|
168 |
-
border-bottom: 10px solid transparent;
|
169 |
-
@media screen and (max-width: $break-mobile - 1) {
|
170 |
-
display: none;
|
171 |
-
}
|
172 |
-
}
|
173 |
-
}
|
174 |
-
}
|
175 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/team.scss
DELETED
@@ -1,497 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
.jeg-elementor-kit.jkit-team {
|
3 |
-
text-align: center;
|
4 |
-
&.style-default,
|
5 |
-
&.style-hover-social {
|
6 |
-
.profile-card {
|
7 |
-
background-color: var(--jkit-bg-color);
|
8 |
-
box-shadow: 0 28px 40px 0 var(--jkit-form-border-color);
|
9 |
-
padding: 40px 20px;
|
10 |
-
@include transition(false, false, all .4s ease);
|
11 |
-
position: relative;
|
12 |
-
overflow: hidden;
|
13 |
-
.profile-header {
|
14 |
-
margin-bottom: 38px;
|
15 |
-
position: relative;
|
16 |
-
display: inline-block;
|
17 |
-
max-width: 100%;
|
18 |
-
line-height: 0;
|
19 |
-
img {
|
20 |
-
object-fit: cover;
|
21 |
-
width: 160px;
|
22 |
-
height: 160px;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
&:before {
|
26 |
-
position: absolute;
|
27 |
-
content: "";
|
28 |
-
top: 0;
|
29 |
-
left: 0;
|
30 |
-
height: 100%;
|
31 |
-
width: 100%;
|
32 |
-
opacity: 0;
|
33 |
-
@include transition(false, false, all .4s ease);
|
34 |
-
z-index: -1;
|
35 |
-
background-size: 101% 102%;
|
36 |
-
-webkit-backface-visibility: hidden;
|
37 |
-
backface-visibility: hidden;
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
41 |
-
&.style-default {
|
42 |
-
.profile-body,
|
43 |
-
.profile-footer {
|
44 |
-
position: relative;
|
45 |
-
z-index: 2;
|
46 |
-
}
|
47 |
-
}
|
48 |
-
&.style-hover-social {
|
49 |
-
.profile-body {
|
50 |
-
padding: 35px 20px;
|
51 |
-
position: relative;
|
52 |
-
@include transition(false, false, all 0.4s ease);
|
53 |
-
&:before {
|
54 |
-
position: absolute;
|
55 |
-
content: "";
|
56 |
-
top: 0;
|
57 |
-
left: 0;
|
58 |
-
height: 100%;
|
59 |
-
width: 100%;
|
60 |
-
background-color: var(--jkit-element-lighten-bg-color);
|
61 |
-
opacity: 0;
|
62 |
-
@include transition(false, false, all 0.4s ease);
|
63 |
-
z-index: -1;
|
64 |
-
background-size: 101% 102%;
|
65 |
-
-webkit-backface-visibility: hidden;
|
66 |
-
backface-visibility: hidden;
|
67 |
-
}
|
68 |
-
}
|
69 |
-
.social-list {
|
70 |
-
@include transition(false, false, all 0.4s ease);
|
71 |
-
visibility: hidden;
|
72 |
-
opacity: 0;
|
73 |
-
}
|
74 |
-
&:hover {
|
75 |
-
.profile-body {
|
76 |
-
@include transform(false, translateY(-50px));
|
77 |
-
&:before {
|
78 |
-
opacity: 1;
|
79 |
-
}
|
80 |
-
}
|
81 |
-
.social-list {
|
82 |
-
visibility: visible;
|
83 |
-
opacity: 1;
|
84 |
-
}
|
85 |
-
}
|
86 |
-
}
|
87 |
-
&.style-overlay {
|
88 |
-
&.overlay-scale {
|
89 |
-
.profile-card {
|
90 |
-
&:before {
|
91 |
-
top: 0;
|
92 |
-
}
|
93 |
-
&:hover:before {
|
94 |
-
@include transform(false, scale(0.9));
|
95 |
-
}
|
96 |
-
}
|
97 |
-
}
|
98 |
-
.profile-card {
|
99 |
-
position: relative;
|
100 |
-
overflow: hidden;
|
101 |
-
display: inline-block;
|
102 |
-
>img {
|
103 |
-
width: 100%;
|
104 |
-
height: auto;
|
105 |
-
object-fit: cover;
|
106 |
-
display: block;
|
107 |
-
}
|
108 |
-
.hover-area {
|
109 |
-
position: absolute;
|
110 |
-
z-index: 2;
|
111 |
-
width: 100%;
|
112 |
-
opacity: 0;
|
113 |
-
visibility: hidden;
|
114 |
-
@include transition(false, false, all .4s ease);
|
115 |
-
&.alignment-center {
|
116 |
-
top: 50%;
|
117 |
-
@include transform(false, translateY(-20%));
|
118 |
-
}
|
119 |
-
&.alignment-bottom {
|
120 |
-
bottom: 0;
|
121 |
-
@include transform(false, translateY(30%));
|
122 |
-
}
|
123 |
-
}
|
124 |
-
&:before {
|
125 |
-
position: absolute;
|
126 |
-
content: "";
|
127 |
-
top: 100%;
|
128 |
-
left: 0;
|
129 |
-
height: 100%;
|
130 |
-
width: 100%;
|
131 |
-
background-color: rgba(0, 0, 0, .7);
|
132 |
-
@include transition(false, false, all .4s ease);
|
133 |
-
z-index: 1;
|
134 |
-
-webkit-backface-visibility: hidden;
|
135 |
-
backface-visibility: hidden;
|
136 |
-
opacity: 0;
|
137 |
-
visibility: hidden;
|
138 |
-
}
|
139 |
-
&:hover:before {
|
140 |
-
top: 0;
|
141 |
-
opacity: 1;
|
142 |
-
visibility: visible;
|
143 |
-
}
|
144 |
-
&:hover .hover-area {
|
145 |
-
opacity: 1;
|
146 |
-
visibility: visible;
|
147 |
-
&.alignment-center {
|
148 |
-
@include transform(false, translateY(-50%));
|
149 |
-
}
|
150 |
-
&.alignment-bottom {
|
151 |
-
@include transform(false, translateY(0));
|
152 |
-
}
|
153 |
-
}
|
154 |
-
.profile-title {
|
155 |
-
color: var(--jkit-bg-color);
|
156 |
-
a {
|
157 |
-
color: var(--jkit-bg-color);
|
158 |
-
}
|
159 |
-
}
|
160 |
-
}
|
161 |
-
}
|
162 |
-
&.style-title-horizontal {
|
163 |
-
.profile-card {
|
164 |
-
line-height: 0;
|
165 |
-
position: relative;
|
166 |
-
overflow: hidden;
|
167 |
-
text-align: center;
|
168 |
-
img {
|
169 |
-
width: 100%;
|
170 |
-
height: 100%;
|
171 |
-
object-fit: cover;
|
172 |
-
}
|
173 |
-
.image-hover-bg {
|
174 |
-
position: absolute;
|
175 |
-
top: 0;
|
176 |
-
left: 0;
|
177 |
-
width: 100%;
|
178 |
-
height: 100%;
|
179 |
-
background-color: rgba(0, 0, 0, .5);
|
180 |
-
@include transition(false, false, all .4s ease);
|
181 |
-
opacity: 0;
|
182 |
-
visibility: hidden;
|
183 |
-
z-index: 0;
|
184 |
-
}
|
185 |
-
&:hover .image-hover-bg {
|
186 |
-
opacity: 1;
|
187 |
-
visibility: visible;
|
188 |
-
}
|
189 |
-
}
|
190 |
-
.profile-body {
|
191 |
-
position: absolute;
|
192 |
-
top: 0;
|
193 |
-
left: 0;
|
194 |
-
width: 100%;
|
195 |
-
height: 100%;
|
196 |
-
padding: 30px 15px;
|
197 |
-
-js-display: flex;
|
198 |
-
display: -webkit-box;
|
199 |
-
display: -webkit-flex;
|
200 |
-
display: -moz-box;
|
201 |
-
display: -ms-flexbox;
|
202 |
-
display: flex;
|
203 |
-
-webkit-box-orient: vertical;
|
204 |
-
-webkit-box-direction: normal;
|
205 |
-
-webkit-flex-direction: column;
|
206 |
-
-moz-box-orient: vertical;
|
207 |
-
-moz-box-direction: normal;
|
208 |
-
-ms-flex-direction: column;
|
209 |
-
flex-direction: column;
|
210 |
-
-webkit-box-pack: justify;
|
211 |
-
-webkit-justify-content: space-between;
|
212 |
-
-moz-box-pack: justify;
|
213 |
-
-ms-flex-pack: justify;
|
214 |
-
justify-content: space-between;
|
215 |
-
.title-wrapper {
|
216 |
-
position: relative;
|
217 |
-
-js-display: flex;
|
218 |
-
display: -webkit-box;
|
219 |
-
display: -webkit-flex;
|
220 |
-
display: -moz-box;
|
221 |
-
display: -ms-flexbox;
|
222 |
-
display: flex;
|
223 |
-
-webkit-box-orient: horizontal;
|
224 |
-
-webkit-box-direction: reverse;
|
225 |
-
-webkit-flex-direction: row-reverse;
|
226 |
-
-moz-box-orient: horizontal;
|
227 |
-
-moz-box-direction: reverse;
|
228 |
-
-ms-flex-direction: row-reverse;
|
229 |
-
flex-direction: row-reverse;
|
230 |
-
-webkit-box-pack: justify;
|
231 |
-
-webkit-justify-content: space-between;
|
232 |
-
-moz-box-pack: justify;
|
233 |
-
-ms-flex-pack: justify;
|
234 |
-
justify-content: space-between;
|
235 |
-
-webkit-box-align: start;
|
236 |
-
-webkit-align-items: flex-start;
|
237 |
-
-moz-box-align: start;
|
238 |
-
-ms-flex-align: start;
|
239 |
-
align-items: flex-start;
|
240 |
-
}
|
241 |
-
.profile-designation {
|
242 |
-
writing-mode: vertical-rl;
|
243 |
-
font-size: 1.5rem;
|
244 |
-
line-height: 1;
|
245 |
-
margin: 0;
|
246 |
-
opacity: 0;
|
247 |
-
}
|
248 |
-
.profile-content {
|
249 |
-
line-height: 1.5;
|
250 |
-
}
|
251 |
-
.profile-title {
|
252 |
-
font-size: 2rem;
|
253 |
-
font-weight: 700;
|
254 |
-
line-height: 1;
|
255 |
-
}
|
256 |
-
.name-wrapper {
|
257 |
-
-js-display: flex;
|
258 |
-
display: -webkit-box;
|
259 |
-
display: -webkit-flex;
|
260 |
-
display: -moz-box;
|
261 |
-
display: -ms-flexbox;
|
262 |
-
display: flex;
|
263 |
-
-webkit-box-pack: justify;
|
264 |
-
-webkit-justify-content: space-between;
|
265 |
-
-moz-box-pack: justify;
|
266 |
-
-ms-flex-pack: justify;
|
267 |
-
justify-content: space-between;
|
268 |
-
-webkit-box-align: end;
|
269 |
-
-webkit-align-items: flex-end;
|
270 |
-
-moz-box-align: end;
|
271 |
-
-ms-flex-align: end;
|
272 |
-
align-items: flex-end;
|
273 |
-
.social-list {
|
274 |
-
-js-display: flex;
|
275 |
-
display: -webkit-box;
|
276 |
-
display: -webkit-flex;
|
277 |
-
display: -moz-box;
|
278 |
-
display: -ms-flexbox;
|
279 |
-
display: flex;
|
280 |
-
-webkit-box-orient: vertical;
|
281 |
-
-webkit-box-direction: normal;
|
282 |
-
-webkit-flex-direction: column;
|
283 |
-
-moz-box-orient: vertical;
|
284 |
-
-moz-box-direction: normal;
|
285 |
-
-ms-flex-direction: column;
|
286 |
-
flex-direction: column;
|
287 |
-
-webkit-transform: translateY(20px);
|
288 |
-
-ms-transform: translateY(20px);
|
289 |
-
transform: translateY(20px);
|
290 |
-
-webkit-transition: all .3s ease;
|
291 |
-
transition: all .3s ease;
|
292 |
-
opacity: 0;
|
293 |
-
.social-icon:not(:last-child) {
|
294 |
-
margin-right: 0;
|
295 |
-
margin-bottom: 10px;
|
296 |
-
}
|
297 |
-
}
|
298 |
-
}
|
299 |
-
}
|
300 |
-
&:hover {
|
301 |
-
.profile-body .profile-designation {
|
302 |
-
opacity: 1;
|
303 |
-
}
|
304 |
-
.name-wrapper .social-list {
|
305 |
-
opacity: 1;
|
306 |
-
-webkit-transform: translateY(0);
|
307 |
-
-ms-transform: translateY(0);
|
308 |
-
transform: translateY(0);
|
309 |
-
}
|
310 |
-
}
|
311 |
-
}
|
312 |
-
.profile-box .profile-card {
|
313 |
-
padding: 20px 20px 40px;
|
314 |
-
z-index: 1;
|
315 |
-
.profile-header {
|
316 |
-
width: auto;
|
317 |
-
height: 100%;
|
318 |
-
border-radius: 0;
|
319 |
-
position: relative;
|
320 |
-
>a {
|
321 |
-
display: inline-block;
|
322 |
-
position: relative;
|
323 |
-
}
|
324 |
-
.image-hover-bg {
|
325 |
-
position: absolute;
|
326 |
-
top: 0;
|
327 |
-
left: 0;
|
328 |
-
width: 100%;
|
329 |
-
height: 100%;
|
330 |
-
background-color: rgba(0, 0, 0, .5);
|
331 |
-
@include transition(false, false, all .4s ease);
|
332 |
-
opacity: 0;
|
333 |
-
visibility: hidden;
|
334 |
-
z-index: 0;
|
335 |
-
}
|
336 |
-
&:hover .image-hover-bg {
|
337 |
-
opacity: 1;
|
338 |
-
visibility: visible;
|
339 |
-
}
|
340 |
-
}
|
341 |
-
}
|
342 |
-
.profile-body {
|
343 |
-
padding-bottom: 20px;
|
344 |
-
.profile-title {
|
345 |
-
font-size: 22px;
|
346 |
-
margin: 0;
|
347 |
-
color: var(--jkit-txt-h-color);
|
348 |
-
a {
|
349 |
-
color: var(--jkit-txt-h-color);
|
350 |
-
text-decoration: none;
|
351 |
-
}
|
352 |
-
}
|
353 |
-
.profile-designation {
|
354 |
-
font-size: 13px;
|
355 |
-
@include transition(false, false, all .4s ease);
|
356 |
-
margin-bottom: 15px;
|
357 |
-
}
|
358 |
-
}
|
359 |
-
.social-list {
|
360 |
-
list-style: none;
|
361 |
-
padding: 0px;
|
362 |
-
margin: 0px;
|
363 |
-
.social-icon {
|
364 |
-
display: inline-block;
|
365 |
-
&:not(:last-child) {
|
366 |
-
margin-right: 10px;
|
367 |
-
}
|
368 |
-
a {
|
369 |
-
display: inline-block;
|
370 |
-
width: 30px;
|
371 |
-
height: 30px;
|
372 |
-
font-size: 12px;
|
373 |
-
line-height: 32px;
|
374 |
-
text-align: center;
|
375 |
-
color: var(--jkit-btn-txt-color);
|
376 |
-
background-color: var(--jkit-element-bg-color);
|
377 |
-
border-radius: 50%;
|
378 |
-
svg {
|
379 |
-
fill: var(--jkit-btn-txt-color);
|
380 |
-
width: 12px;
|
381 |
-
}
|
382 |
-
}
|
383 |
-
i:before {
|
384 |
-
display: inline-block;
|
385 |
-
}
|
386 |
-
&:hover i:before {
|
387 |
-
-webkit-animation-duration: .3s;
|
388 |
-
animation-duration: .3s;
|
389 |
-
-webkit-animation-name: jkit-scrolling-vertical;
|
390 |
-
animation-name: jkit-scrolling-vertical;
|
391 |
-
}
|
392 |
-
}
|
393 |
-
}
|
394 |
-
.jkit-modal-dialog {
|
395 |
-
@include displayflex();
|
396 |
-
@include alignitemscenter();
|
397 |
-
min-height: calc(100% - (0.5rem * 2));
|
398 |
-
.team-modal-content {
|
399 |
-
position: relative;
|
400 |
-
box-shadow: 0 28px 40px 0 rgba(0, 0, 0, .1);
|
401 |
-
background-color: var(--jkit-bg-color);
|
402 |
-
border: 0;
|
403 |
-
border-radius: 0;
|
404 |
-
}
|
405 |
-
.team-modal-close {
|
406 |
-
position: absolute;
|
407 |
-
top: 10px;
|
408 |
-
right: 10px;
|
409 |
-
width: 40px;
|
410 |
-
height: 40px;
|
411 |
-
padding: 0;
|
412 |
-
color: var(--jkit-txt-color);
|
413 |
-
background-color: transparent;
|
414 |
-
border-width: 0;
|
415 |
-
border-radius: 0;
|
416 |
-
font-size: 18px;
|
417 |
-
line-height: 1;
|
418 |
-
outline: 0;
|
419 |
-
z-index: 1200;
|
420 |
-
svg {
|
421 |
-
fill: var(--jkit-txt-color);
|
422 |
-
width: 18px;
|
423 |
-
}
|
424 |
-
}
|
425 |
-
.team-modal-body {
|
426 |
-
padding: 60px 40px;
|
427 |
-
flex-wrap: wrap;
|
428 |
-
@include displayflex();
|
429 |
-
}
|
430 |
-
.team-modal-img {
|
431 |
-
width: 100%;
|
432 |
-
margin-bottom: 30px;
|
433 |
-
}
|
434 |
-
.team-modal-info {
|
435 |
-
width: 100%;
|
436 |
-
}
|
437 |
-
.team-modal-title {
|
438 |
-
margin-top: 0;
|
439 |
-
margin-bottom: 8px;
|
440 |
-
color: var(--jkit-txt-h-color);
|
441 |
-
font-size: 22px;
|
442 |
-
}
|
443 |
-
.team-modal-position {
|
444 |
-
margin-bottom: 35px;
|
445 |
-
color: var(--jkit-txt-color);
|
446 |
-
font-size: 13px;
|
447 |
-
}
|
448 |
-
.team-modal-description {
|
449 |
-
margin-bottom: 22px;
|
450 |
-
}
|
451 |
-
.team-modal-list {
|
452 |
-
margin: 0px;
|
453 |
-
margin-bottom: 25px;
|
454 |
-
padding-left: 0;
|
455 |
-
list-style: none;
|
456 |
-
color: var(--jkit-txt-color);
|
457 |
-
font-size: 15px;
|
458 |
-
a {
|
459 |
-
text-decoration: none;
|
460 |
-
outline: 0;
|
461 |
-
color: var(--jkit-txt-color);
|
462 |
-
}
|
463 |
-
li {
|
464 |
-
padding: 19px 0;
|
465 |
-
border-top: 1px solid var(--jkit-border-color);
|
466 |
-
}
|
467 |
-
strong {
|
468 |
-
font-weight: 600;
|
469 |
-
padding-right: 18px;
|
470 |
-
}
|
471 |
-
}
|
472 |
-
}
|
473 |
-
.jkit-modal-dialog {
|
474 |
-
@media (min-width: 481px) {
|
475 |
-
.team-modal-img {
|
476 |
-
flex: 0 0 33.333333%;
|
477 |
-
max-width: 33.333333%;
|
478 |
-
margin-bottom: 0;
|
479 |
-
}
|
480 |
-
.team-modal-info.has-img {
|
481 |
-
flex: 0 0 66.666667%;
|
482 |
-
max-width: 66.666667%;
|
483 |
-
padding-left: 30px;
|
484 |
-
}
|
485 |
-
}
|
486 |
-
@media (min-width: 576px) {
|
487 |
-
max-width: 500px;
|
488 |
-
margin: 1.75rem auto;
|
489 |
-
min-height: calc(100% - (1.75rem * 2));
|
490 |
-
}
|
491 |
-
@media (min-width: 992px) {
|
492 |
-
.team-modal-info.has-img {
|
493 |
-
padding-left: 50px;
|
494 |
-
}
|
495 |
-
}
|
496 |
-
}
|
497 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/testimonials.scss
DELETED
@@ -1,730 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
@import '../helpers/variable';
|
3 |
-
|
4 |
-
.jeg-elementor-kit.jkit-testimonials {
|
5 |
-
.testimonials-track {
|
6 |
-
.testimonial-item .testimonial-box {
|
7 |
-
.icon-content,
|
8 |
-
.comment-bio,
|
9 |
-
.comment-content,
|
10 |
-
.profile-info,
|
11 |
-
.rating-stars {
|
12 |
-
position: relative;
|
13 |
-
z-index: 2;
|
14 |
-
}
|
15 |
-
}
|
16 |
-
}
|
17 |
-
.tns-nav {
|
18 |
-
text-align: center;
|
19 |
-
button {
|
20 |
-
width: 9px;
|
21 |
-
height: 9px;
|
22 |
-
padding: 0;
|
23 |
-
margin: 0 5px;
|
24 |
-
border-radius: 50%;
|
25 |
-
background: var(--jkit-txt-m-color);
|
26 |
-
border: 0;
|
27 |
-
&.tns-nav-active {
|
28 |
-
background: var(--jkit-txt-color);
|
29 |
-
}
|
30 |
-
}
|
31 |
-
}
|
32 |
-
.tns-controls button {
|
33 |
-
color: var(--jkit-txt-color);
|
34 |
-
border: 0px;
|
35 |
-
background: none;
|
36 |
-
i,
|
37 |
-
svg {
|
38 |
-
@include transition(false, false, all .25s ease);
|
39 |
-
}
|
40 |
-
svg {
|
41 |
-
fill: var(--jkit-txt-color);
|
42 |
-
}
|
43 |
-
}
|
44 |
-
&.arrow-bottom-middle {
|
45 |
-
.tns-controls {
|
46 |
-
text-align: center;
|
47 |
-
button[data-controls="prev"],
|
48 |
-
button[data-controls="next"] {
|
49 |
-
color: var(--jkit-txt-color);
|
50 |
-
display: inline-block;
|
51 |
-
margin: 0;
|
52 |
-
padding: 0;
|
53 |
-
}
|
54 |
-
}
|
55 |
-
}
|
56 |
-
&.arrow-bottom-edge {
|
57 |
-
.tns-controls {
|
58 |
-
button[data-controls="next"] {
|
59 |
-
display: inline-block;
|
60 |
-
position: absolute;
|
61 |
-
right: 0;
|
62 |
-
}
|
63 |
-
}
|
64 |
-
}
|
65 |
-
&.arrow-middle-edge {
|
66 |
-
.tns-controls {
|
67 |
-
button {
|
68 |
-
display: inline-block;
|
69 |
-
position: absolute;
|
70 |
-
top: 50%;
|
71 |
-
@include transform(false, translate(0%, -50%));
|
72 |
-
z-index: 2;
|
73 |
-
&[data-controls="prev"] {
|
74 |
-
left: 0;
|
75 |
-
}
|
76 |
-
&[data-controls="next"] {
|
77 |
-
right: 0;
|
78 |
-
}
|
79 |
-
}
|
80 |
-
}
|
81 |
-
}
|
82 |
-
&.arrow-top-right {
|
83 |
-
.tns-controls {
|
84 |
-
text-align: right;
|
85 |
-
button[data-controls="prev"],
|
86 |
-
button[data-controls="next"] {
|
87 |
-
color: var(--jkit-txt-color);
|
88 |
-
display: inline-block;
|
89 |
-
margin: 0;
|
90 |
-
padding: 0;
|
91 |
-
}
|
92 |
-
}
|
93 |
-
}
|
94 |
-
&.arrow-top-left {
|
95 |
-
.tns-controls {
|
96 |
-
text-align: left;
|
97 |
-
button[data-controls="prev"],
|
98 |
-
button[data-controls="next"] {
|
99 |
-
color: var(--jkit-txt-color);
|
100 |
-
display: inline-block;
|
101 |
-
margin: 0;
|
102 |
-
padding: 0;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
}
|
106 |
-
&.style-1 {
|
107 |
-
&.quote-override .testimonials-track .testimonial-item .testimonial-box .testimonial-slider .icon-content {
|
108 |
-
position: absolute;
|
109 |
-
left: 0;
|
110 |
-
top: 0;
|
111 |
-
font-size: 40px;
|
112 |
-
}
|
113 |
-
.testimonials-track {
|
114 |
-
.testimonial-item .testimonial-box {
|
115 |
-
padding: $grid-module-padding;
|
116 |
-
box-shadow: 0px 3px 15px 0px $blockpopular-shadow-color1;
|
117 |
-
border-radius: $border-radius-default;
|
118 |
-
position: relative;
|
119 |
-
margin-top: 25px;
|
120 |
-
margin-bottom: 105px;
|
121 |
-
.testimonial-slider {
|
122 |
-
overflow: hidden;
|
123 |
-
&.hover-from-bottom:before,
|
124 |
-
&.hover-from-top:before,
|
125 |
-
&.hover-from-left:before,
|
126 |
-
&.hover-from-right:before {
|
127 |
-
left: 0;
|
128 |
-
bottom: 0;
|
129 |
-
right: 0;
|
130 |
-
top: 0;
|
131 |
-
}
|
132 |
-
&.hover-from-bottom:before,
|
133 |
-
&.hover-from-top:before {
|
134 |
-
@include transform(false, scaleY(0));
|
135 |
-
}
|
136 |
-
&.hover-from-left:before,
|
137 |
-
&.hover-from-right:before {
|
138 |
-
@include transform(false, scaleX(0));
|
139 |
-
}
|
140 |
-
&.hover-from-top:before {
|
141 |
-
@include transform(origin, top);
|
142 |
-
}
|
143 |
-
&.hover-from-bottom:before {
|
144 |
-
@include transform(origin, bottom);
|
145 |
-
}
|
146 |
-
&.hover-from-left:before {
|
147 |
-
@include transform(origin, left);
|
148 |
-
}
|
149 |
-
&.hover-from-right:before {
|
150 |
-
@include transform(origin, right);
|
151 |
-
}
|
152 |
-
&.hover-from-bottom:hover:before,
|
153 |
-
&.hover-from-top:hover:before {
|
154 |
-
@include transform(false, scaleY(1));
|
155 |
-
}
|
156 |
-
&.hover-from-left:hover:before,
|
157 |
-
&.hover-from-right:hover:before {
|
158 |
-
@include transform(false, scaleX(1));
|
159 |
-
}
|
160 |
-
.comment-content {
|
161 |
-
.icon-content {
|
162 |
-
position: static;
|
163 |
-
font-size: 40px;
|
164 |
-
color: var(--jkit-txt-m-color);
|
165 |
-
display: inline-flex;
|
166 |
-
svg {
|
167 |
-
fill: var(--jkit-txt-m-color);
|
168 |
-
}
|
169 |
-
}
|
170 |
-
p {
|
171 |
-
color: var(--jkit-txt-m-color);
|
172 |
-
font-size: $font-size-base;
|
173 |
-
margin-bottom: 35px;
|
174 |
-
position: relative;
|
175 |
-
z-index: 2;
|
176 |
-
}
|
177 |
-
}
|
178 |
-
.comment-bio {
|
179 |
-
position: absolute;
|
180 |
-
left: 0;
|
181 |
-
bottom: -115px;
|
182 |
-
width: 100%;
|
183 |
-
text-align: center;
|
184 |
-
z-index: 5;
|
185 |
-
.profile-image {
|
186 |
-
display: inline-flex;
|
187 |
-
img {
|
188 |
-
border-radius: 50%;
|
189 |
-
max-width: 100%;
|
190 |
-
width: 60px;
|
191 |
-
height: auto;
|
192 |
-
}
|
193 |
-
}
|
194 |
-
.profile-info {
|
195 |
-
.profile-name {
|
196 |
-
display: block;
|
197 |
-
color: var(--jkit-txt-h-color);
|
198 |
-
}
|
199 |
-
.profile-des {
|
200 |
-
color: var(--jkit-txt-m-color);
|
201 |
-
font-size: $meta-font-size;
|
202 |
-
}
|
203 |
-
}
|
204 |
-
.rating-stars {
|
205 |
-
margin: 0px;
|
206 |
-
padding: 0px;
|
207 |
-
li {
|
208 |
-
display: inline-block;
|
209 |
-
color: $color-yellow;
|
210 |
-
svg {
|
211 |
-
fill: $color-yellow;
|
212 |
-
}
|
213 |
-
}
|
214 |
-
li:not(:last-child) {
|
215 |
-
margin-right: 5px;
|
216 |
-
}
|
217 |
-
}
|
218 |
-
}
|
219 |
-
}
|
220 |
-
}
|
221 |
-
}
|
222 |
-
}
|
223 |
-
&.style-2 {
|
224 |
-
&.quote-override .testimonials-track .testimonial-item .testimonial-box .icon-content {
|
225 |
-
position: absolute;
|
226 |
-
left: 0;
|
227 |
-
top: 0;
|
228 |
-
font-size: 40px;
|
229 |
-
}
|
230 |
-
.testimonials-track {
|
231 |
-
.testimonial-item .testimonial-box {
|
232 |
-
padding: $grid-module-padding;
|
233 |
-
box-shadow: 0px 3px 15px 0px $blockpopular-shadow-color1;
|
234 |
-
border-radius: $border-radius-default;
|
235 |
-
position: relative;
|
236 |
-
.comment-header {
|
237 |
-
@include displayflex();
|
238 |
-
@include alignitemscenter();
|
239 |
-
-webkit-box-pack: justify;
|
240 |
-
-ms-flex-pack: justify;
|
241 |
-
justify-content: space-between;
|
242 |
-
.rating-stars {
|
243 |
-
margin: 0px;
|
244 |
-
margin-bottom: 15px;
|
245 |
-
padding: 0px;
|
246 |
-
li {
|
247 |
-
display: inline-block;
|
248 |
-
color: $color-yellow;
|
249 |
-
svg {
|
250 |
-
fill: $color-yellow;
|
251 |
-
}
|
252 |
-
}
|
253 |
-
li:not(:last-child) {
|
254 |
-
margin-right: 5px;
|
255 |
-
}
|
256 |
-
}
|
257 |
-
}
|
258 |
-
.comment-bio {
|
259 |
-
@include displayflex();
|
260 |
-
-webkit-box-pack: justify;
|
261 |
-
-ms-flex-pack: justify;
|
262 |
-
justify-content: space-between;
|
263 |
-
.bio-details {
|
264 |
-
@include alignitemscenter();
|
265 |
-
@include displayflex();
|
266 |
-
-webkit-box-pack: justify;
|
267 |
-
-ms-flex-pack: justify;
|
268 |
-
justify-content: space-between;
|
269 |
-
.profile-image {
|
270 |
-
margin-right: 20px;
|
271 |
-
margin-bottom: 0px;
|
272 |
-
display: inline-flex;
|
273 |
-
img {
|
274 |
-
border-radius: 50%;
|
275 |
-
max-width: 100%;
|
276 |
-
width: 60px;
|
277 |
-
height: auto;
|
278 |
-
}
|
279 |
-
}
|
280 |
-
.profile-info {
|
281 |
-
text-align: left;
|
282 |
-
.profile-name {
|
283 |
-
display: block;
|
284 |
-
font-size: $font-size-base;
|
285 |
-
color: var(--jkit-txt-h-color);
|
286 |
-
}
|
287 |
-
.profile-des {
|
288 |
-
color: var(--jkit-txt-m-color);
|
289 |
-
font-size: $meta-font-size;
|
290 |
-
}
|
291 |
-
}
|
292 |
-
}
|
293 |
-
.icon-content {
|
294 |
-
position: static;
|
295 |
-
font-size: 40px;
|
296 |
-
color: $color-grey-200;
|
297 |
-
line-height: 1;
|
298 |
-
display: inline-flex;
|
299 |
-
svg {
|
300 |
-
fill: $color-grey-200;
|
301 |
-
}
|
302 |
-
}
|
303 |
-
}
|
304 |
-
.comment-content {
|
305 |
-
position: relative;
|
306 |
-
margin-top: 30px;
|
307 |
-
margin-bottom: 30px;
|
308 |
-
z-index: 2;
|
309 |
-
p {
|
310 |
-
color: var(--jkit-txt-m-color);
|
311 |
-
}
|
312 |
-
}
|
313 |
-
}
|
314 |
-
}
|
315 |
-
}
|
316 |
-
&.style-3 {
|
317 |
-
&.quote-override .testimonials-track .testimonial-item .testimonial-box .icon-content {
|
318 |
-
right: unset;
|
319 |
-
left: 0;
|
320 |
-
top: 0;
|
321 |
-
}
|
322 |
-
.testimonials-track {
|
323 |
-
.testimonial-item .testimonial-box {
|
324 |
-
padding: $grid-module-padding;
|
325 |
-
box-shadow: 0px 3px 15px 0px $blockpopular-shadow-color1;
|
326 |
-
border-radius: $border-radius-default;
|
327 |
-
position: relative;
|
328 |
-
.icon-content {
|
329 |
-
margin-bottom: 23px;
|
330 |
-
position: absolute;
|
331 |
-
right: 20px;
|
332 |
-
top: 20px;
|
333 |
-
font-size: 40px;
|
334 |
-
color: var(--jkit-txt-m-color);
|
335 |
-
line-height: 1;
|
336 |
-
z-index: 1;
|
337 |
-
display: inline-flex;
|
338 |
-
svg {
|
339 |
-
fill: var(--jkit-txt-m-color);
|
340 |
-
}
|
341 |
-
}
|
342 |
-
.comment-bio {
|
343 |
-
text-align: center;
|
344 |
-
margin-bottom: 20px;
|
345 |
-
.profile-image {
|
346 |
-
display: inline-flex;
|
347 |
-
img {
|
348 |
-
border-radius: 50%;
|
349 |
-
max-width: 100%;
|
350 |
-
width: 60px;
|
351 |
-
height: auto;
|
352 |
-
}
|
353 |
-
}
|
354 |
-
}
|
355 |
-
.comment-content {
|
356 |
-
p {
|
357 |
-
margin-bottom: 35px;
|
358 |
-
color: rgba(0, 0, 0, 0.5);
|
359 |
-
font-size: $font-size-base;
|
360 |
-
}
|
361 |
-
}
|
362 |
-
.profile-info {
|
363 |
-
.profile-name {
|
364 |
-
display: block;
|
365 |
-
font-size: $font-size-base;
|
366 |
-
color: var(--jkit-txt-h-color);
|
367 |
-
}
|
368 |
-
.profile-des {
|
369 |
-
color: var(--jkit-txt-m-color);
|
370 |
-
font-size: $meta-font-size;
|
371 |
-
}
|
372 |
-
}
|
373 |
-
.rating-stars {
|
374 |
-
margin: 0px;
|
375 |
-
padding: 0px;
|
376 |
-
text-align: center;
|
377 |
-
margin-bottom: 15px;
|
378 |
-
li {
|
379 |
-
display: inline-block;
|
380 |
-
color: $color-yellow;
|
381 |
-
svg {
|
382 |
-
fill: $color-yellow;
|
383 |
-
}
|
384 |
-
}
|
385 |
-
li:not(:last-child) {
|
386 |
-
margin-right: 5px;
|
387 |
-
}
|
388 |
-
}
|
389 |
-
}
|
390 |
-
}
|
391 |
-
}
|
392 |
-
&.style-4 {
|
393 |
-
&.quote-override .testimonials-track .testimonial-item .testimonial-box .icon-content {
|
394 |
-
right: unset;
|
395 |
-
left: 0;
|
396 |
-
top: 0;
|
397 |
-
}
|
398 |
-
.testimonials-track {
|
399 |
-
.testimonial-item .testimonial-box {
|
400 |
-
padding: $grid-module-padding;
|
401 |
-
box-shadow: 0px 3px 15px 0px $blockpopular-shadow-color1;
|
402 |
-
border-radius: $border-radius-default;
|
403 |
-
position: relative;
|
404 |
-
.icon-content {
|
405 |
-
margin-bottom: 23px;
|
406 |
-
position: absolute;
|
407 |
-
right: 20px;
|
408 |
-
top: 20px;
|
409 |
-
font-size: 40px;
|
410 |
-
color: var(--jkit-txt-m-color);
|
411 |
-
line-height: 1;
|
412 |
-
z-index: 1;
|
413 |
-
display: inline-flex;
|
414 |
-
svg {
|
415 |
-
fill: var(--jkit-txt-m-color);
|
416 |
-
}
|
417 |
-
}
|
418 |
-
.comment-bio {
|
419 |
-
text-align: center;
|
420 |
-
margin-bottom: 20px;
|
421 |
-
.profile-image {
|
422 |
-
display: inline-flex;
|
423 |
-
img {
|
424 |
-
border-radius: 50%;
|
425 |
-
max-width: 100%;
|
426 |
-
width: 60px;
|
427 |
-
height: auto;
|
428 |
-
}
|
429 |
-
}
|
430 |
-
.profile-info {
|
431 |
-
.profile-name {
|
432 |
-
display: block;
|
433 |
-
font-size: $font-size-base;
|
434 |
-
color: var(--jkit-txt-h-color);
|
435 |
-
}
|
436 |
-
.profile-des {
|
437 |
-
color: var(--jkit-txt-m-color);
|
438 |
-
font-size: $meta-font-size;
|
439 |
-
}
|
440 |
-
}
|
441 |
-
.rating-stars {
|
442 |
-
margin: 0px;
|
443 |
-
padding: 0px;
|
444 |
-
text-align: center;
|
445 |
-
margin-bottom: 15px;
|
446 |
-
li {
|
447 |
-
display: inline-block;
|
448 |
-
color: $color-yellow;
|
449 |
-
svg {
|
450 |
-
fill: $color-yellow;
|
451 |
-
}
|
452 |
-
}
|
453 |
-
li:not(:last-child) {
|
454 |
-
margin-right: 5px;
|
455 |
-
}
|
456 |
-
}
|
457 |
-
}
|
458 |
-
.comment-content {
|
459 |
-
p {
|
460 |
-
margin-bottom: 35px;
|
461 |
-
color: rgba(0, 0, 0, 0.5);
|
462 |
-
font-size: $font-size-base;
|
463 |
-
}
|
464 |
-
}
|
465 |
-
}
|
466 |
-
}
|
467 |
-
}
|
468 |
-
&:not(.style-1) {
|
469 |
-
.testimonials-track {
|
470 |
-
.testimonial-item .testimonial-box {
|
471 |
-
overflow: hidden;
|
472 |
-
}
|
473 |
-
}
|
474 |
-
}
|
475 |
-
&.grid-desktop-1 {
|
476 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
477 |
-
.testimonials-track:not(.tns-slider) {
|
478 |
-
display: flex;
|
479 |
-
flex-direction: row;
|
480 |
-
.testimonial-item {
|
481 |
-
width: 100%;
|
482 |
-
&:nth-child(n+2) {
|
483 |
-
display: none;
|
484 |
-
}
|
485 |
-
}
|
486 |
-
}
|
487 |
-
.testimonials-track:not(:nth-child(1)) {
|
488 |
-
margin-right: 10px;
|
489 |
-
}
|
490 |
-
}
|
491 |
-
}
|
492 |
-
&.grid-desktop-2 {
|
493 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
494 |
-
.testimonials-track:not(.tns-slider) {
|
495 |
-
display: flex;
|
496 |
-
flex-direction: row;
|
497 |
-
.testimonial-item {
|
498 |
-
width: 50%;
|
499 |
-
&:nth-child(n+3) {
|
500 |
-
display: none;
|
501 |
-
}
|
502 |
-
}
|
503 |
-
}
|
504 |
-
.testimonials-track:not(:nth-child(2)) {
|
505 |
-
margin-right: 10px;
|
506 |
-
}
|
507 |
-
}
|
508 |
-
}
|
509 |
-
&.grid-desktop-3 {
|
510 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
511 |
-
.testimonials-track:not(.tns-slider) {
|
512 |
-
display: flex;
|
513 |
-
flex-direction: row;
|
514 |
-
.testimonial-item {
|
515 |
-
width: 33.3333333333%;
|
516 |
-
&:nth-child(n+4) {
|
517 |
-
display: none;
|
518 |
-
}
|
519 |
-
}
|
520 |
-
}
|
521 |
-
.testimonials-track:not(:nth-child(3)) {
|
522 |
-
margin-right: 10px;
|
523 |
-
}
|
524 |
-
}
|
525 |
-
}
|
526 |
-
&.grid-desktop-4 {
|
527 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
528 |
-
.testimonials-track:not(.tns-slider) {
|
529 |
-
display: flex;
|
530 |
-
flex-direction: row;
|
531 |
-
.testimonial-item {
|
532 |
-
width: 25%;
|
533 |
-
&:nth-child(n+5) {
|
534 |
-
display: none;
|
535 |
-
}
|
536 |
-
}
|
537 |
-
}
|
538 |
-
.testimonials-track:not(:nth-child(4)) {
|
539 |
-
margin-right: 10px;
|
540 |
-
}
|
541 |
-
}
|
542 |
-
}
|
543 |
-
&.grid-desktop-5 {
|
544 |
-
@media screen and (min-width: $break-tablet + 1px) {
|
545 |
-
.testimonials-track:not(.tns-slider) {
|
546 |
-
display: flex;
|
547 |
-
flex-direction: row;
|
548 |
-
.testimonial-item {
|
549 |
-
width: 20%;
|
550 |
-
&:nth-child(n+6) {
|
551 |
-
display: none;
|
552 |
-
}
|
553 |
-
}
|
554 |
-
}
|
555 |
-
.testimonials-track:not(:nth-child(5)) {
|
556 |
-
margin-right: 10px;
|
557 |
-
}
|
558 |
-
}
|
559 |
-
}
|
560 |
-
&.grid-tablet-1 {
|
561 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
562 |
-
.testimonials-track:not(.tns-slider) {
|
563 |
-
display: flex;
|
564 |
-
flex-direction: row;
|
565 |
-
.testimonial-item {
|
566 |
-
width: 100%;
|
567 |
-
&:nth-child(n+11) {
|
568 |
-
display: none;
|
569 |
-
}
|
570 |
-
}
|
571 |
-
}
|
572 |
-
.testimonials-track:not(:nth-child(1)) {
|
573 |
-
margin-right: 10px;
|
574 |
-
}
|
575 |
-
}
|
576 |
-
}
|
577 |
-
&.grid-tablet-2 {
|
578 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
579 |
-
.testimonials-track:not(.tns-slider) {
|
580 |
-
display: flex;
|
581 |
-
flex-direction: row;
|
582 |
-
.testimonial-item {
|
583 |
-
width: 50%;
|
584 |
-
&:nth-child(n+3) {
|
585 |
-
display: none;
|
586 |
-
}
|
587 |
-
}
|
588 |
-
}
|
589 |
-
.testimonials-track:not(:nth-child(2)) {
|
590 |
-
margin-right: 10px;
|
591 |
-
}
|
592 |
-
}
|
593 |
-
}
|
594 |
-
&.grid-tablet-3 {
|
595 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
596 |
-
.testimonials-track:not(.tns-slider) {
|
597 |
-
display: flex;
|
598 |
-
flex-direction: row;
|
599 |
-
.testimonial-item {
|
600 |
-
width: 33.3333333333%;
|
601 |
-
&:nth-child(n+4) {
|
602 |
-
display: none;
|
603 |
-
}
|
604 |
-
}
|
605 |
-
}
|
606 |
-
.testimonials-track:not(:nth-child(3)) {
|
607 |
-
margin-right: 10px;
|
608 |
-
}
|
609 |
-
}
|
610 |
-
}
|
611 |
-
&.grid-tablet-4 {
|
612 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
613 |
-
.testimonials-track:not(.tns-slider) {
|
614 |
-
display: flex;
|
615 |
-
flex-direction: row;
|
616 |
-
.testimonial-item {
|
617 |
-
width: 25%;
|
618 |
-
&:nth-child(n+5) {
|
619 |
-
display: none;
|
620 |
-
}
|
621 |
-
}
|
622 |
-
}
|
623 |
-
.testimonials-track:not(:nth-child(4)) {
|
624 |
-
margin-right: 10px;
|
625 |
-
}
|
626 |
-
}
|
627 |
-
}
|
628 |
-
&.grid-tablet-5 {
|
629 |
-
@media screen and (min-width: $break-mobile) and (max-width: $break-tablet) {
|
630 |
-
.testimonials-track:not(.tns-slider) {
|
631 |
-
display: flex;
|
632 |
-
flex-direction: row;
|
633 |
-
.testimonial-item {
|
634 |
-
width: 20%;
|
635 |
-
&:nth-child(n+6) {
|
636 |
-
display: none;
|
637 |
-
}
|
638 |
-
}
|
639 |
-
}
|
640 |
-
.testimonials-track:not(:nth-child(5)) {
|
641 |
-
margin-right: 10px;
|
642 |
-
}
|
643 |
-
}
|
644 |
-
}
|
645 |
-
&.grid-mobile-1 {
|
646 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
647 |
-
.testimonials-track:not(.tns-slider) {
|
648 |
-
display: flex;
|
649 |
-
flex-direction: row;
|
650 |
-
.testimonial-item {
|
651 |
-
width: 100%;
|
652 |
-
&:nth-child(n+2) {
|
653 |
-
display: none;
|
654 |
-
}
|
655 |
-
}
|
656 |
-
}
|
657 |
-
.testimonials-track:not(:nth-child(1)) {
|
658 |
-
margin-right: 10px;
|
659 |
-
}
|
660 |
-
}
|
661 |
-
}
|
662 |
-
&.grid-mobile-2 {
|
663 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
664 |
-
.testimonials-track:not(.tns-slider) {
|
665 |
-
display: flex;
|
666 |
-
flex-direction: row;
|
667 |
-
.testimonial-item {
|
668 |
-
width: 50%;
|
669 |
-
&:nth-child(n+3) {
|
670 |
-
display: none;
|
671 |
-
}
|
672 |
-
}
|
673 |
-
}
|
674 |
-
.testimonials-track:not(:nth-child(2)) {
|
675 |
-
margin-right: 10px;
|
676 |
-
}
|
677 |
-
}
|
678 |
-
}
|
679 |
-
&.grid-mobile-3 {
|
680 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
681 |
-
.testimonials-track:not(.tns-slider) {
|
682 |
-
display: flex;
|
683 |
-
flex-direction: row;
|
684 |
-
.testimonial-item {
|
685 |
-
width: 33.3333333333%;
|
686 |
-
&:nth-child(n+4) {
|
687 |
-
display: none;
|
688 |
-
}
|
689 |
-
}
|
690 |
-
}
|
691 |
-
.testimonials-track:not(:nth-child(3)) {
|
692 |
-
margin-right: 10px;
|
693 |
-
}
|
694 |
-
}
|
695 |
-
}
|
696 |
-
&.grid-mobile-4 {
|
697 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
698 |
-
.testimonials-track:not(.tns-slider) {
|
699 |
-
display: flex;
|
700 |
-
flex-direction: row;
|
701 |
-
.testimonial-item {
|
702 |
-
width: 25%;
|
703 |
-
&:nth-child(n+5) {
|
704 |
-
display: none;
|
705 |
-
}
|
706 |
-
}
|
707 |
-
}
|
708 |
-
.testimonials-track:not(:nth-child(4)) {
|
709 |
-
margin-right: 10px;
|
710 |
-
}
|
711 |
-
}
|
712 |
-
}
|
713 |
-
&.grid-mobile-5 {
|
714 |
-
@media screen and (max-width: $break-mobile - 1px) {
|
715 |
-
.testimonials-track:not(.tns-slider) {
|
716 |
-
display: flex;
|
717 |
-
flex-direction: row;
|
718 |
-
.testimonial-item {
|
719 |
-
width: 20%;
|
720 |
-
&:nth-child(n+6) {
|
721 |
-
display: none;
|
722 |
-
}
|
723 |
-
}
|
724 |
-
}
|
725 |
-
.testimonials-track:not(:nth-child(5)) {
|
726 |
-
margin-right: 10px;
|
727 |
-
}
|
728 |
-
}
|
729 |
-
}
|
730 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/elements/video-button.scss
DELETED
@@ -1,43 +0,0 @@
|
|
1 |
-
@import '../helpers/mixin';
|
2 |
-
|
3 |
-
.jeg-elementor-kit.jkit-video-button {
|
4 |
-
.jkit-video-popup-btn {
|
5 |
-
display: inline-block;
|
6 |
-
text-align: center;
|
7 |
-
font-size: 18px;
|
8 |
-
background-color: var(--jkit-btn-bg-color);
|
9 |
-
border-radius: 50%;
|
10 |
-
position: relative;
|
11 |
-
z-index: 6;
|
12 |
-
@include transition(false, false, all .4s ease);
|
13 |
-
&.glow-enable {
|
14 |
-
&:before,
|
15 |
-
&:after {
|
16 |
-
content: " ";
|
17 |
-
position: absolute;
|
18 |
-
top: 0;
|
19 |
-
left: 0;
|
20 |
-
width: 100%;
|
21 |
-
height: 100%;
|
22 |
-
color: var(--jkit-element-bg-color);
|
23 |
-
border-radius: 50%;
|
24 |
-
box-shadow: 0 0 0 0 currentColor;
|
25 |
-
-webkit-animation: jkit-ripple 3s infinite;
|
26 |
-
animation: jkit-ripple 3s infinite;
|
27 |
-
opacity: .6;
|
28 |
-
z-index: -1;
|
29 |
-
}
|
30 |
-
&:after {
|
31 |
-
-webkit-animation-delay: .3s;
|
32 |
-
animation-delay: .3s;
|
33 |
-
}
|
34 |
-
}
|
35 |
-
}
|
36 |
-
i,
|
37 |
-
span {
|
38 |
-
color: var(--jkit-txt-alt-color);
|
39 |
-
}
|
40 |
-
svg {
|
41 |
-
fill: var(--jkit-txt-alt-color);
|
42 |
-
}
|
43 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/helpers/_animation.scss
DELETED
@@ -1,1165 +0,0 @@
|
|
1 |
-
@-webkit-keyframes slide-from-left {
|
2 |
-
0% {
|
3 |
-
left: 0
|
4 |
-
}
|
5 |
-
100% {
|
6 |
-
left: 101%;
|
7 |
-
}
|
8 |
-
}
|
9 |
-
|
10 |
-
@keyframes slide-from-left {
|
11 |
-
0% {
|
12 |
-
left: 0
|
13 |
-
}
|
14 |
-
100% {
|
15 |
-
left: 101%;
|
16 |
-
}
|
17 |
-
}
|
18 |
-
|
19 |
-
@-webkit-keyframes slide-from-right {
|
20 |
-
0% {
|
21 |
-
left: 0
|
22 |
-
}
|
23 |
-
100% {
|
24 |
-
left: -101%;
|
25 |
-
}
|
26 |
-
}
|
27 |
-
|
28 |
-
@keyframes slide-from-right {
|
29 |
-
0% {
|
30 |
-
left: 0
|
31 |
-
}
|
32 |
-
100% {
|
33 |
-
left: -101%;
|
34 |
-
}
|
35 |
-
}
|
36 |
-
|
37 |
-
@-webkit-keyframes slide-from-left-reverse {
|
38 |
-
0% {
|
39 |
-
left: -101%
|
40 |
-
}
|
41 |
-
100% {
|
42 |
-
left: 0;
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
@keyframes slide-from-left-reverse {
|
47 |
-
0% {
|
48 |
-
left: -101%
|
49 |
-
}
|
50 |
-
100% {
|
51 |
-
left: 0;
|
52 |
-
}
|
53 |
-
}
|
54 |
-
|
55 |
-
@-webkit-keyframes slide-from-right-reverse {
|
56 |
-
0% {
|
57 |
-
left: 101%
|
58 |
-
}
|
59 |
-
100% {
|
60 |
-
left: 0;
|
61 |
-
}
|
62 |
-
}
|
63 |
-
|
64 |
-
@keyframes slide-from-right-reverse {
|
65 |
-
0% {
|
66 |
-
left: 101%
|
67 |
-
}
|
68 |
-
100% {
|
69 |
-
left: 0;
|
70 |
-
}
|
71 |
-
}
|
72 |
-
|
73 |
-
@-webkit-keyframes jkit-fadeinup {
|
74 |
-
from {
|
75 |
-
opacity: 0;
|
76 |
-
-webkit-transform: translate3d(0, 30px, 0);
|
77 |
-
transform: translate3d(0, 30px, 0);
|
78 |
-
}
|
79 |
-
to {
|
80 |
-
opacity: 1;
|
81 |
-
-webkit-transform: none;
|
82 |
-
transform: none;
|
83 |
-
}
|
84 |
-
}
|
85 |
-
|
86 |
-
@keyframes jkit-fadeinup {
|
87 |
-
from {
|
88 |
-
opacity: 0;
|
89 |
-
-webkit-transform: translate3d(0, 30px, 0);
|
90 |
-
transform: translate3d(0, 30px, 0);
|
91 |
-
}
|
92 |
-
to {
|
93 |
-
opacity: 1;
|
94 |
-
-webkit-transform: none;
|
95 |
-
transform: none;
|
96 |
-
}
|
97 |
-
}
|
98 |
-
|
99 |
-
@-webkit-keyframes jkit-scrolling-vertical {
|
100 |
-
0% {
|
101 |
-
transform: translateY(0%);
|
102 |
-
opacity: 1;
|
103 |
-
}
|
104 |
-
49% {
|
105 |
-
transform: translateY(100%);
|
106 |
-
opacity: 0;
|
107 |
-
}
|
108 |
-
50% {
|
109 |
-
transform: translateY(-100%);
|
110 |
-
opacity: 0;
|
111 |
-
}
|
112 |
-
100% {
|
113 |
-
transform: translateY(0);
|
114 |
-
opacity: 1;
|
115 |
-
}
|
116 |
-
}
|
117 |
-
|
118 |
-
@keyframes jkit-scrolling-vertical {
|
119 |
-
0% {
|
120 |
-
transform: translateY(0%);
|
121 |
-
opacity: 1;
|
122 |
-
}
|
123 |
-
49% {
|
124 |
-
transform: translateY(100%);
|
125 |
-
opacity: 0;
|
126 |
-
}
|
127 |
-
50% {
|
128 |
-
transform: translateY(-100%);
|
129 |
-
opacity: 0;
|
130 |
-
}
|
131 |
-
100% {
|
132 |
-
transform: translateY(0);
|
133 |
-
opacity: 1;
|
134 |
-
}
|
135 |
-
}
|
136 |
-
|
137 |
-
@-webkit-keyframes jkit-animated-dash {
|
138 |
-
0% {
|
139 |
-
stroke-dasharray: 0 1500;
|
140 |
-
}
|
141 |
-
15% {
|
142 |
-
stroke-dasharray: 1500 1500;
|
143 |
-
}
|
144 |
-
85% {
|
145 |
-
opacity: 1;
|
146 |
-
}
|
147 |
-
90% {
|
148 |
-
stroke-dasharray: 1500 1500;
|
149 |
-
opacity: 0;
|
150 |
-
}
|
151 |
-
100% {
|
152 |
-
stroke-dasharray: 0 1500;
|
153 |
-
opacity: 0;
|
154 |
-
}
|
155 |
-
}
|
156 |
-
|
157 |
-
@keyframes jkit-animated-dash {
|
158 |
-
0% {
|
159 |
-
stroke-dasharray: 0 1500;
|
160 |
-
}
|
161 |
-
15% {
|
162 |
-
stroke-dasharray: 1500 1500;
|
163 |
-
}
|
164 |
-
85% {
|
165 |
-
opacity: 1;
|
166 |
-
}
|
167 |
-
90% {
|
168 |
-
stroke-dasharray: 1500 1500;
|
169 |
-
opacity: 0;
|
170 |
-
}
|
171 |
-
100% {
|
172 |
-
stroke-dasharray: 0 1500;
|
173 |
-
opacity: 0;
|
174 |
-
}
|
175 |
-
}
|
176 |
-
|
177 |
-
@-webkit-keyframes jkit-animated-pulse {
|
178 |
-
0% {
|
179 |
-
-webkit-transform: translateY(-50%) scale(1);
|
180 |
-
transform: translateY(-50%) scale(1);
|
181 |
-
opacity: 1;
|
182 |
-
}
|
183 |
-
40% {
|
184 |
-
-webkit-transform: translateY(-50%) scale(0.9);
|
185 |
-
transform: translateY(-50%) scale(0.9);
|
186 |
-
opacity: 0;
|
187 |
-
}
|
188 |
-
100% {
|
189 |
-
-webkit-transform: translateY(-50%) scale(0);
|
190 |
-
transform: translateY(-50%) scale(0);
|
191 |
-
opacity: 0;
|
192 |
-
}
|
193 |
-
}
|
194 |
-
|
195 |
-
@keyframes jkit-animated-pulse {
|
196 |
-
0% {
|
197 |
-
-webkit-transform: translateY(-50%) scale(1);
|
198 |
-
transform: translateY(-50%) scale(1);
|
199 |
-
opacity: 1;
|
200 |
-
}
|
201 |
-
40% {
|
202 |
-
-webkit-transform: translateY(-50%) scale(0.9);
|
203 |
-
transform: translateY(-50%) scale(0.9);
|
204 |
-
opacity: 0;
|
205 |
-
}
|
206 |
-
100% {
|
207 |
-
-webkit-transform: translateY(-50%) scale(0);
|
208 |
-
transform: translateY(-50%) scale(0);
|
209 |
-
opacity: 0;
|
210 |
-
}
|
211 |
-
}
|
212 |
-
|
213 |
-
@-webkit-keyframes jkit-animated-swirl-in {
|
214 |
-
0% {
|
215 |
-
opacity: 0;
|
216 |
-
-webkit-transform: translateZ(-20px) rotateX(90deg);
|
217 |
-
transform: translateZ(-20px) rotateX(90deg);
|
218 |
-
}
|
219 |
-
60% {
|
220 |
-
opacity: 1;
|
221 |
-
-webkit-transform: translateZ(-20px) rotateX(-10deg);
|
222 |
-
transform: translateZ(-20px) rotateX(-10deg);
|
223 |
-
}
|
224 |
-
100% {
|
225 |
-
opacity: 1;
|
226 |
-
-webkit-transform: translateZ(-20px) rotateX(0deg);
|
227 |
-
transform: translateZ(-20px) rotateX(0deg);
|
228 |
-
}
|
229 |
-
}
|
230 |
-
|
231 |
-
@keyframes jkit-animated-swirl-in {
|
232 |
-
0% {
|
233 |
-
opacity: 0;
|
234 |
-
-webkit-transform: translateZ(-20px) rotateX(90deg);
|
235 |
-
transform: translateZ(-20px) rotateX(90deg);
|
236 |
-
}
|
237 |
-
60% {
|
238 |
-
opacity: 1;
|
239 |
-
-webkit-transform: translateZ(-20px) rotateX(-10deg);
|
240 |
-
transform: translateZ(-20px) rotateX(-10deg);
|
241 |
-
}
|
242 |
-
100% {
|
243 |
-
opacity: 1;
|
244 |
-
-webkit-transform: translateZ(-20px) rotateX(0deg);
|
245 |
-
transform: translateZ(-20px) rotateX(0deg);
|
246 |
-
}
|
247 |
-
}
|
248 |
-
|
249 |
-
@-webkit-keyframes jkit-animated-blinds-in {
|
250 |
-
0% {
|
251 |
-
-webkit-transform: rotateY(180deg);
|
252 |
-
transform: rotateY(180deg);
|
253 |
-
}
|
254 |
-
100% {
|
255 |
-
-webkit-transform: rotateY(0deg);
|
256 |
-
transform: rotateY(0deg);
|
257 |
-
}
|
258 |
-
}
|
259 |
-
|
260 |
-
@keyframes jkit-animated-blinds-in {
|
261 |
-
0% {
|
262 |
-
-webkit-transform: rotateY(180deg);
|
263 |
-
transform: rotateY(180deg);
|
264 |
-
}
|
265 |
-
100% {
|
266 |
-
-webkit-transform: rotateY(0deg);
|
267 |
-
transform: rotateY(0deg);
|
268 |
-
}
|
269 |
-
}
|
270 |
-
|
271 |
-
@-webkit-keyframes jkit-animated-wave-up {
|
272 |
-
0% {
|
273 |
-
-webkit-transform: scale(0);
|
274 |
-
transform: scale(0);
|
275 |
-
opacity: 0;
|
276 |
-
}
|
277 |
-
60% {
|
278 |
-
-webkit-transform: scale(1.2);
|
279 |
-
transform: scale(1.2);
|
280 |
-
opacity: 1;
|
281 |
-
}
|
282 |
-
100% {
|
283 |
-
-webkit-transform: scale(1);
|
284 |
-
transform: scale(1);
|
285 |
-
opacity: 1;
|
286 |
-
}
|
287 |
-
}
|
288 |
-
|
289 |
-
@keyframes jkit-animated-wave-up {
|
290 |
-
0% {
|
291 |
-
-webkit-transform: scale(0);
|
292 |
-
transform: scale(0);
|
293 |
-
opacity: 0;
|
294 |
-
}
|
295 |
-
60% {
|
296 |
-
-webkit-transform: scale(1.2);
|
297 |
-
transform: scale(1.2);
|
298 |
-
opacity: 1;
|
299 |
-
}
|
300 |
-
100% {
|
301 |
-
-webkit-transform: scale(1);
|
302 |
-
transform: scale(1);
|
303 |
-
opacity: 1;
|
304 |
-
}
|
305 |
-
}
|
306 |
-
|
307 |
-
@-webkit-keyframes jkit-animated-flip-in {
|
308 |
-
0% {
|
309 |
-
-webkit-transform: rotateX(180deg);
|
310 |
-
transform: rotateX(180deg);
|
311 |
-
opacity: 0;
|
312 |
-
}
|
313 |
-
35% {
|
314 |
-
-webkit-transform: rotateX(120deg);
|
315 |
-
transform: rotateX(120deg);
|
316 |
-
opacity: 0;
|
317 |
-
}
|
318 |
-
65% {
|
319 |
-
opacity: 0;
|
320 |
-
}
|
321 |
-
100% {
|
322 |
-
-webkit-transform: rotateX(360deg);
|
323 |
-
transform: rotateX(360deg);
|
324 |
-
opacity: 1;
|
325 |
-
}
|
326 |
-
}
|
327 |
-
|
328 |
-
@keyframes jkit-animated-flip-in {
|
329 |
-
0% {
|
330 |
-
-webkit-transform: rotateX(180deg);
|
331 |
-
transform: rotateX(180deg);
|
332 |
-
opacity: 0;
|
333 |
-
}
|
334 |
-
35% {
|
335 |
-
-webkit-transform: rotateX(120deg);
|
336 |
-
transform: rotateX(120deg);
|
337 |
-
opacity: 0;
|
338 |
-
}
|
339 |
-
65% {
|
340 |
-
opacity: 0;
|
341 |
-
}
|
342 |
-
100% {
|
343 |
-
-webkit-transform: rotateX(360deg);
|
344 |
-
transform: rotateX(360deg);
|
345 |
-
opacity: 1;
|
346 |
-
}
|
347 |
-
}
|
348 |
-
|
349 |
-
@-webkit-keyframes jkit-animated-flip-out {
|
350 |
-
0% {
|
351 |
-
-webkit-transform: rotateX(0deg);
|
352 |
-
transform: rotateX(0deg);
|
353 |
-
opacity: 1;
|
354 |
-
}
|
355 |
-
35% {
|
356 |
-
-webkit-transform: rotateX(-40deg);
|
357 |
-
transform: rotateX(-40deg);
|
358 |
-
opacity: 0;
|
359 |
-
}
|
360 |
-
65% {
|
361 |
-
opacity: 0;
|
362 |
-
}
|
363 |
-
100% {
|
364 |
-
-webkit-transform: rotateX(180deg);
|
365 |
-
transform: rotateX(180deg);
|
366 |
-
opacity: 0;
|
367 |
-
}
|
368 |
-
}
|
369 |
-
|
370 |
-
@keyframes jkit-animated-flip-out {
|
371 |
-
0% {
|
372 |
-
-webkit-transform: rotateX(0deg);
|
373 |
-
transform: rotateX(0deg);
|
374 |
-
opacity: 1;
|
375 |
-
}
|
376 |
-
35% {
|
377 |
-
-webkit-transform: rotateX(-40deg);
|
378 |
-
transform: rotateX(-40deg);
|
379 |
-
opacity: 0;
|
380 |
-
}
|
381 |
-
65% {
|
382 |
-
opacity: 0;
|
383 |
-
}
|
384 |
-
100% {
|
385 |
-
-webkit-transform: rotateX(180deg);
|
386 |
-
transform: rotateX(180deg);
|
387 |
-
opacity: 0;
|
388 |
-
}
|
389 |
-
}
|
390 |
-
|
391 |
-
@-webkit-keyframes jkit-animated-drop-in-in {
|
392 |
-
0% {
|
393 |
-
opacity: 0;
|
394 |
-
-webkit-transform: translateZ(100px);
|
395 |
-
transform: translateZ(100px);
|
396 |
-
}
|
397 |
-
100% {
|
398 |
-
opacity: 1;
|
399 |
-
-webkit-transform: translateZ(0);
|
400 |
-
transform: translateZ(0);
|
401 |
-
}
|
402 |
-
}
|
403 |
-
|
404 |
-
@keyframes jkit-animated-drop-in-in {
|
405 |
-
0% {
|
406 |
-
opacity: 0;
|
407 |
-
-webkit-transform: translateZ(100px);
|
408 |
-
transform: translateZ(100px);
|
409 |
-
}
|
410 |
-
100% {
|
411 |
-
opacity: 1;
|
412 |
-
-webkit-transform: translateZ(0);
|
413 |
-
transform: translateZ(0);
|
414 |
-
}
|
415 |
-
}
|
416 |
-
|
417 |
-
@-webkit-keyframes jkit-animated-drop-in-out {
|
418 |
-
0% {
|
419 |
-
opacity: 1;
|
420 |
-
-webkit-transform: translateZ(0);
|
421 |
-
transform: translateZ(0);
|
422 |
-
}
|
423 |
-
100% {
|
424 |
-
opacity: 0;
|
425 |
-
-webkit-transform: translateZ(-100px);
|
426 |
-
transform: translateZ(-100px);
|
427 |
-
}
|
428 |
-
}
|
429 |
-
|
430 |
-
@keyframes jkit-animated-drop-in-out {
|
431 |
-
0% {
|
432 |
-
opacity: 1;
|
433 |
-
-webkit-transform: translateZ(0);
|
434 |
-
transform: translateZ(0);
|
435 |
-
}
|
436 |
-
100% {
|
437 |
-
opacity: 0;
|
438 |
-
-webkit-transform: translateZ(-100px);
|
439 |
-
transform: translateZ(-100px);
|
440 |
-
}
|
441 |
-
}
|
442 |
-
|
443 |
-
@-webkit-keyframes jkit-animated-slide-right-in {
|
444 |
-
0% {
|
445 |
-
opacity: 0;
|
446 |
-
-webkit-transform: translateX(-100%);
|
447 |
-
transform: translateX(-100%);
|
448 |
-
}
|
449 |
-
60% {
|
450 |
-
opacity: 1;
|
451 |
-
-webkit-transform: translateX(10%);
|
452 |
-
transform: translateX(10%);
|
453 |
-
}
|
454 |
-
100% {
|
455 |
-
opacity: 1;
|
456 |
-
-webkit-transform: translateX(0);
|
457 |
-
transform: translateX(0);
|
458 |
-
}
|
459 |
-
}
|
460 |
-
|
461 |
-
@keyframes jkit-animated-slide-right-in {
|
462 |
-
0% {
|
463 |
-
opacity: 0;
|
464 |
-
-webkit-transform: translateX(-100%);
|
465 |
-
transform: translateX(-100%);
|
466 |
-
}
|
467 |
-
60% {
|
468 |
-
opacity: 1;
|
469 |
-
-webkit-transform: translateX(10%);
|
470 |
-
transform: translateX(10%);
|
471 |
-
}
|
472 |
-
100% {
|
473 |
-
opacity: 1;
|
474 |
-
-webkit-transform: translateX(0);
|
475 |
-
transform: translateX(0);
|
476 |
-
}
|
477 |
-
}
|
478 |
-
|
479 |
-
@-webkit-keyframes jkit-animated-slide-right-out {
|
480 |
-
0% {
|
481 |
-
opacity: 1;
|
482 |
-
-webkit-transform: translateX(0);
|
483 |
-
transform: translateX(0);
|
484 |
-
}
|
485 |
-
60% {
|
486 |
-
opacity: 0;
|
487 |
-
-webkit-transform: translateX(110%);
|
488 |
-
transform: translateX(110%);
|
489 |
-
}
|
490 |
-
100% {
|
491 |
-
opacity: 0;
|
492 |
-
-webkit-transform: translateX(100%);
|
493 |
-
transform: translateX(100%);
|
494 |
-
}
|
495 |
-
}
|
496 |
-
|
497 |
-
@keyframes jkit-animated-slide-right-out {
|
498 |
-
0% {
|
499 |
-
opacity: 1;
|
500 |
-
-webkit-transform: translateX(0);
|
501 |
-
transform: translateX(0);
|
502 |
-
}
|
503 |
-
60% {
|
504 |
-
opacity: 0;
|
505 |
-
-webkit-transform: translateX(110%);
|
506 |
-
transform: translateX(110%);
|
507 |
-
}
|
508 |
-
100% {
|
509 |
-
opacity: 0;
|
510 |
-
-webkit-transform: translateX(100%);
|
511 |
-
transform: translateX(100%);
|
512 |
-
}
|
513 |
-
}
|
514 |
-
|
515 |
-
@-webkit-keyframes jkit-animated-slide-left-in {
|
516 |
-
0% {
|
517 |
-
opacity: 0;
|
518 |
-
-webkit-transform: translateX(100%);
|
519 |
-
transform: translateX(100%);
|
520 |
-
}
|
521 |
-
60% {
|
522 |
-
opacity: 1;
|
523 |
-
-webkit-transform: translateX(-10%);
|
524 |
-
transform: translateX(-10%);
|
525 |
-
}
|
526 |
-
100% {
|
527 |
-
opacity: 1;
|
528 |
-
-webkit-transform: translateX(0);
|
529 |
-
transform: translateX(0);
|
530 |
-
}
|
531 |
-
}
|
532 |
-
|
533 |
-
@keyframes jkit-animated-slide-left-in {
|
534 |
-
0% {
|
535 |
-
opacity: 0;
|
536 |
-
-webkit-transform: translateX(100%);
|
537 |
-
transform: translateX(100%);
|
538 |
-
}
|
539 |
-
60% {
|
540 |
-
opacity: 1;
|
541 |
-
-webkit-transform: translateX(-10%);
|
542 |
-
transform: translateX(-10%);
|
543 |
-
}
|
544 |
-
100% {
|
545 |
-
opacity: 1;
|
546 |
-
-webkit-transform: translateX(0);
|
547 |
-
transform: translateX(0);
|
548 |
-
}
|
549 |
-
}
|
550 |
-
|
551 |
-
@-webkit-keyframes jkit-animated-slide-left-out {
|
552 |
-
0% {
|
553 |
-
opacity: 1;
|
554 |
-
-webkit-transform: translateX(0);
|
555 |
-
transform: translateX(0);
|
556 |
-
}
|
557 |
-
60% {
|
558 |
-
opacity: 0;
|
559 |
-
-webkit-transform: translateX(-110%);
|
560 |
-
transform: translateX(-110%);
|
561 |
-
}
|
562 |
-
100% {
|
563 |
-
opacity: 0;
|
564 |
-
-webkit-transform: translateX(-100%);
|
565 |
-
transform: translateX(-100%);
|
566 |
-
}
|
567 |
-
}
|
568 |
-
|
569 |
-
@keyframes jkit-animated-slide-left-out {
|
570 |
-
0% {
|
571 |
-
opacity: 1;
|
572 |
-
-webkit-transform: translateX(0);
|
573 |
-
transform: translateX(0);
|
574 |
-
}
|
575 |
-
60% {
|
576 |
-
opacity: 0;
|
577 |
-
-webkit-transform: translateX(-110%);
|
578 |
-
transform: translateX(-110%);
|
579 |
-
}
|
580 |
-
100% {
|
581 |
-
opacity: 0;
|
582 |
-
-webkit-transform: translateX(-100%);
|
583 |
-
transform: translateX(-100%);
|
584 |
-
}
|
585 |
-
}
|
586 |
-
|
587 |
-
@-webkit-keyframes jkit-animated-slide-up-in {
|
588 |
-
0% {
|
589 |
-
opacity: 0;
|
590 |
-
-webkit-transform: translateY(100%);
|
591 |
-
transform: translateY(100%);
|
592 |
-
}
|
593 |
-
60% {
|
594 |
-
opacity: 1;
|
595 |
-
-webkit-transform: translateY(-20%);
|
596 |
-
transform: translateY(-20%);
|
597 |
-
}
|
598 |
-
100% {
|
599 |
-
opacity: 1;
|
600 |
-
-webkit-transform: translateY(0);
|
601 |
-
transform: translateY(0);
|
602 |
-
}
|
603 |
-
}
|
604 |
-
|
605 |
-
@keyframes jkit-animated-slide-up-in {
|
606 |
-
0% {
|
607 |
-
opacity: 0;
|
608 |
-
-webkit-transform: translateY(100%);
|
609 |
-
transform: translateY(100%);
|
610 |
-
}
|
611 |
-
60% {
|
612 |
-
opacity: 1;
|
613 |
-
-webkit-transform: translateY(-20%);
|
614 |
-
transform: translateY(-20%);
|
615 |
-
}
|
616 |
-
100% {
|
617 |
-
opacity: 1;
|
618 |
-
-webkit-transform: translateY(0);
|
619 |
-
transform: translateY(0);
|
620 |
-
}
|
621 |
-
}
|
622 |
-
|
623 |
-
@-webkit-keyframes jkit-animated-slide-up-out {
|
624 |
-
0% {
|
625 |
-
opacity: 1;
|
626 |
-
-webkit-transform: translateY(0);
|
627 |
-
transform: translateY(0);
|
628 |
-
}
|
629 |
-
60% {
|
630 |
-
opacity: 0;
|
631 |
-
-webkit-transform: translateY(-120%);
|
632 |
-
transform: translateY(-120%);
|
633 |
-
}
|
634 |
-
100% {
|
635 |
-
opacity: 0;
|
636 |
-
-webkit-transform: translateY(-100%);
|
637 |
-
transform: translateY(-100%);
|
638 |
-
}
|
639 |
-
}
|
640 |
-
|
641 |
-
@keyframes jkit-animated-slide-up-out {
|
642 |
-
0% {
|
643 |
-
opacity: 1;
|
644 |
-
-webkit-transform: translateY(0);
|
645 |
-
transform: translateY(0);
|
646 |
-
}
|
647 |
-
60% {
|
648 |
-
opacity: 0;
|
649 |
-
-webkit-transform: translateY(-120%);
|
650 |
-
transform: translateY(-120%);
|
651 |
-
}
|
652 |
-
100% {
|
653 |
-
opacity: 0;
|
654 |
-
-webkit-transform: translateY(-100%);
|
655 |
-
transform: translateY(-100%);
|
656 |
-
}
|
657 |
-
}
|
658 |
-
|
659 |
-
@-webkit-keyframes jkit-animated-slide-down-in {
|
660 |
-
0% {
|
661 |
-
opacity: 0;
|
662 |
-
-webkit-transform: translateY(-100%);
|
663 |
-
transform: translateY(-100%);
|
664 |
-
}
|
665 |
-
60% {
|
666 |
-
opacity: 1;
|
667 |
-
-webkit-transform: translateY(20%);
|
668 |
-
transform: translateY(20%);
|
669 |
-
}
|
670 |
-
100% {
|
671 |
-
opacity: 1;
|
672 |
-
-webkit-transform: translateY(0);
|
673 |
-
transform: translateY(0);
|
674 |
-
}
|
675 |
-
}
|
676 |
-
|
677 |
-
@keyframes jkit-animated-slide-down-in {
|
678 |
-
0% {
|
679 |
-
opacity: 0;
|
680 |
-
-webkit-transform: translateY(-100%);
|
681 |
-
transform: translateY(-100%);
|
682 |
-
}
|
683 |
-
60% {
|
684 |
-
opacity: 1;
|
685 |
-
-webkit-transform: translateY(20%);
|
686 |
-
transform: translateY(20%);
|
687 |
-
}
|
688 |
-
100% {
|
689 |
-
opacity: 1;
|
690 |
-
-webkit-transform: translateY(0);
|
691 |
-
transform: translateY(0);
|
692 |
-
}
|
693 |
-
}
|
694 |
-
|
695 |
-
@-webkit-keyframes jkit-animated-slide-down-out {
|
696 |
-
0% {
|
697 |
-
opacity: 1;
|
698 |
-
-webkit-transform: translateY(0);
|
699 |
-
transform: translateY(0);
|
700 |
-
}
|
701 |
-
60% {
|
702 |
-
opacity: 0;
|
703 |
-
-webkit-transform: translateY(120%);
|
704 |
-
transform: translateY(120%);
|
705 |
-
}
|
706 |
-
100% {
|
707 |
-
opacity: 0;
|
708 |
-
-webkit-transform: translateY(100%);
|
709 |
-
transform: translateY(100%);
|
710 |
-
}
|
711 |
-
}
|
712 |
-
|
713 |
-
@keyframes jkit-animated-slide-down-out {
|
714 |
-
0% {
|
715 |
-
opacity: 1;
|
716 |
-
-webkit-transform: translateY(0);
|
717 |
-
transform: translateY(0);
|
718 |
-
}
|
719 |
-
60% {
|
720 |
-
opacity: 0;
|
721 |
-
-webkit-transform: translateY(120%);
|
722 |
-
transform: translateY(120%);
|
723 |
-
}
|
724 |
-
100% {
|
725 |
-
opacity: 0;
|
726 |
-
-webkit-transform: translateY(100%);
|
727 |
-
transform: translateY(100%);
|
728 |
-
}
|
729 |
-
}
|
730 |
-
|
731 |
-
@-webkit-keyframes jkit-animated-bounce-in {
|
732 |
-
0%,
|
733 |
-
20%,
|
734 |
-
40%,
|
735 |
-
60%,
|
736 |
-
80%,
|
737 |
-
to {
|
738 |
-
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
|
739 |
-
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
|
740 |
-
}
|
741 |
-
0% {
|
742 |
-
opacity: 0;
|
743 |
-
-webkit-transform: scale3d(.3, .3, .3);
|
744 |
-
transform: scale3d(.3, .3, .3)
|
745 |
-
}
|
746 |
-
20% {
|
747 |
-
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
748 |
-
transform: scale3d(1.1, 1.1, 1.1)
|
749 |
-
}
|
750 |
-
40% {
|
751 |
-
-webkit-transform: scale3d(.9, .9, .9);
|
752 |
-
transform: scale3d(.9, .9, .9)
|
753 |
-
}
|
754 |
-
60% {
|
755 |
-
opacity: 1;
|
756 |
-
-webkit-transform: scale3d(1.03, 1.03, 1.03);
|
757 |
-
transform: scale3d(1.03, 1.03, 1.03)
|
758 |
-
}
|
759 |
-
80% {
|
760 |
-
-webkit-transform: scale3d(.97, .97, .97);
|
761 |
-
transform: scale3d(.97, .97, .97)
|
762 |
-
}
|
763 |
-
to {
|
764 |
-
opacity: 1;
|
765 |
-
-webkit-transform: scaleX(1);
|
766 |
-
transform: scaleX(1)
|
767 |
-
}
|
768 |
-
}
|
769 |
-
|
770 |
-
@keyframes jkit-animated-bounce-in {
|
771 |
-
0%,
|
772 |
-
20%,
|
773 |
-
40%,
|
774 |
-
60%,
|
775 |
-
80%,
|
776 |
-
to {
|
777 |
-
-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
|
778 |
-
animation-timing-function: cubic-bezier(.215, .61, .355, 1)
|
779 |
-
}
|
780 |
-
0% {
|
781 |
-
opacity: 0;
|
782 |
-
-webkit-transform: scale3d(.3, .3, .3);
|
783 |
-
transform: scale3d(.3, .3, .3)
|
784 |
-
}
|
785 |
-
20% {
|
786 |
-
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
787 |
-
transform: scale3d(1.1, 1.1, 1.1)
|
788 |
-
}
|
789 |
-
40% {
|
790 |
-
-webkit-transform: scale3d(.9, .9, .9);
|
791 |
-
transform: scale3d(.9, .9, .9)
|
792 |
-
}
|
793 |
-
60% {
|
794 |
-
opacity: 1;
|
795 |
-
-webkit-transform: scale3d(1.03, 1.03, 1.03);
|
796 |
-
transform: scale3d(1.03, 1.03, 1.03)
|
797 |
-
}
|
798 |
-
80% {
|
799 |
-
-webkit-transform: scale3d(.97, .97, .97);
|
800 |
-
transform: scale3d(.97, .97, .97)
|
801 |
-
}
|
802 |
-
to {
|
803 |
-
opacity: 1;
|
804 |
-
-webkit-transform: scaleX(1);
|
805 |
-
transform: scaleX(1)
|
806 |
-
}
|
807 |
-
}
|
808 |
-
|
809 |
-
@-webkit-keyframes jkit-animated-bounce-out {
|
810 |
-
20% {
|
811 |
-
-webkit-transform: scale3d(.9, .9, .9);
|
812 |
-
transform: scale3d(.9, .9, .9)
|
813 |
-
}
|
814 |
-
50%,
|
815 |
-
55% {
|
816 |
-
opacity: 0;
|
817 |
-
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
818 |
-
transform: scale3d(1.1, 1.1, 1.1)
|
819 |
-
}
|
820 |
-
to {
|
821 |
-
opacity: 0;
|
822 |
-
-webkit-transform: scale3d(.3, .3, .3);
|
823 |
-
transform: scale3d(.3, .3, .3)
|
824 |
-
}
|
825 |
-
}
|
826 |
-
|
827 |
-
@keyframes jkit-animated-bounce-out {
|
828 |
-
20% {
|
829 |
-
-webkit-transform: scale3d(.9, .9, .9);
|
830 |
-
transform: scale3d(.9, .9, .9)
|
831 |
-
}
|
832 |
-
50%,
|
833 |
-
55% {
|
834 |
-
opacity: 0;
|
835 |
-
-webkit-transform: scale3d(1.1, 1.1, 1.1);
|
836 |
-
transform: scale3d(1.1, 1.1, 1.1)
|
837 |
-
}
|
838 |
-
to {
|
839 |
-
opacity: 0;
|
840 |
-
-webkit-transform: scale3d(.3, .3, .3);
|
841 |
-
transform: scale3d(.3, .3, .3)
|
842 |
-
}
|
843 |
-
}
|
844 |
-
|
845 |
-
@-webkit-keyframes jkit-animated-swing-in {
|
846 |
-
20% {
|
847 |
-
-webkit-transform: rotate(15deg);
|
848 |
-
transform: rotate(15deg)
|
849 |
-
}
|
850 |
-
40% {
|
851 |
-
-webkit-transform: rotate(-10deg);
|
852 |
-
transform: rotate(-10deg)
|
853 |
-
}
|
854 |
-
60% {
|
855 |
-
-webkit-transform: rotate(5deg);
|
856 |
-
transform: rotate(5deg)
|
857 |
-
}
|
858 |
-
80% {
|
859 |
-
-webkit-transform: rotate(-5deg);
|
860 |
-
transform: rotate(-5deg)
|
861 |
-
}
|
862 |
-
to {
|
863 |
-
-webkit-transform: rotate(0deg);
|
864 |
-
transform: rotate(0deg)
|
865 |
-
}
|
866 |
-
}
|
867 |
-
|
868 |
-
@keyframes jkit-animated-swing-in {
|
869 |
-
20% {
|
870 |
-
-webkit-transform: rotate(15deg);
|
871 |
-
transform: rotate(15deg)
|
872 |
-
}
|
873 |
-
40% {
|
874 |
-
-webkit-transform: rotate(-10deg);
|
875 |
-
transform: rotate(-10deg)
|
876 |
-
}
|
877 |
-
60% {
|
878 |
-
-webkit-transform: rotate(5deg);
|
879 |
-
transform: rotate(5deg)
|
880 |
-
}
|
881 |
-
80% {
|
882 |
-
-webkit-transform: rotate(-5deg);
|
883 |
-
transform: rotate(-5deg)
|
884 |
-
}
|
885 |
-
to {
|
886 |
-
-webkit-transform: rotate(0deg);
|
887 |
-
transform: rotate(0deg)
|
888 |
-
}
|
889 |
-
}
|
890 |
-
|
891 |
-
@-webkit-keyframes jkit-animated-swing-out {
|
892 |
-
20% {
|
893 |
-
-webkit-transform: rotate(0deg);
|
894 |
-
transform: rotate(0deg)
|
895 |
-
}
|
896 |
-
40% {
|
897 |
-
-webkit-transform: rotate(-5deg);
|
898 |
-
transform: rotate(-5deg)
|
899 |
-
}
|
900 |
-
60% {
|
901 |
-
-webkit-transform: rotate(10deg);
|
902 |
-
transform: rotate(10deg)
|
903 |
-
}
|
904 |
-
80% {
|
905 |
-
-webkit-transform: rotate(-15deg);
|
906 |
-
transform: rotate(-15deg)
|
907 |
-
}
|
908 |
-
to {
|
909 |
-
-webkit-transform: rotate(15deg);
|
910 |
-
transform: rotate(15deg)
|
911 |
-
}
|
912 |
-
}
|
913 |
-
|
914 |
-
@keyframes jkit-animated-swing-out {
|
915 |
-
20% {
|
916 |
-
-webkit-transform: rotate(0deg);
|
917 |
-
transform: rotate(0deg)
|
918 |
-
}
|
919 |
-
40% {
|
920 |
-
-webkit-transform: rotate(-5deg);
|
921 |
-
transform: rotate(-5deg)
|
922 |
-
}
|
923 |
-
60% {
|
924 |
-
-webkit-transform: rotate(10deg);
|
925 |
-
transform: rotate(10deg)
|
926 |
-
}
|
927 |
-
80% {
|
928 |
-
-webkit-transform: rotate(-15deg);
|
929 |
-
transform: rotate(-15deg)
|
930 |
-
}
|
931 |
-
to {
|
932 |
-
-webkit-transform: rotate(15deg);
|
933 |
-
transform: rotate(15deg)
|
934 |
-
}
|
935 |
-
}
|
936 |
-
|
937 |
-
@-webkit-keyframes jkit-animated-rubber-band-in {
|
938 |
-
0% {
|
939 |
-
-webkit-transform: scaleX(1);
|
940 |
-
transform: scaleX(1)
|
941 |
-
}
|
942 |
-
30% {
|
943 |
-
-webkit-transform: scale3d(1.25, .75, 1);
|
944 |
-
transform: scale3d(1.25, .75, 1)
|
945 |
-
}
|
946 |
-
40% {
|
947 |
-
-webkit-transform: scale3d(.75, 1.25, 1);
|
948 |
-
transform: scale3d(.75, 1.25, 1)
|
949 |
-
}
|
950 |
-
50% {
|
951 |
-
-webkit-transform: scale3d(1.15, .85, 1);
|
952 |
-
transform: scale3d(1.15, .85, 1)
|
953 |
-
}
|
954 |
-
65% {
|
955 |
-
-webkit-transform: scale3d(.95, 1.05, 1);
|
956 |
-
transform: scale3d(.95, 1.05, 1)
|
957 |
-
}
|
958 |
-
75% {
|
959 |
-
-webkit-transform: scale3d(1.05, .95, 1);
|
960 |
-
transform: scale3d(1.05, .95, 1)
|
961 |
-
}
|
962 |
-
to {
|
963 |
-
-webkit-transform: scaleX(1);
|
964 |
-
transform: scaleX(1)
|
965 |
-
}
|
966 |
-
}
|
967 |
-
|
968 |
-
@keyframes jkit-animated-rubber-band-in {
|
969 |
-
0% {
|
970 |
-
-webkit-transform: scaleX(1);
|
971 |
-
transform: scaleX(1)
|
972 |
-
}
|
973 |
-
30% {
|
974 |
-
-webkit-transform: scale3d(1.25, .75, 1);
|
975 |
-
transform: scale3d(1.25, .75, 1)
|
976 |
-
}
|
977 |
-
40% {
|
978 |
-
-webkit-transform: scale3d(.75, 1.25, 1);
|
979 |
-
transform: scale3d(.75, 1.25, 1)
|
980 |
-
}
|
981 |
-
50% {
|
982 |
-
-webkit-transform: scale3d(1.15, .85, 1);
|
983 |
-
transform: scale3d(1.15, .85, 1)
|
984 |
-
}
|
985 |
-
65% {
|
986 |
-
-webkit-transform: scale3d(.95, 1.05, 1);
|
987 |
-
transform: scale3d(.95, 1.05, 1)
|
988 |
-
}
|
989 |
-
75% {
|
990 |
-
-webkit-transform: scale3d(1.05, .95, 1);
|
991 |
-
transform: scale3d(1.05, .95, 1)
|
992 |
-
}
|
993 |
-
to {
|
994 |
-
-webkit-transform: scaleX(1);
|
995 |
-
transform: scaleX(1)
|
996 |
-
}
|
997 |
-
}
|
998 |
-
|
999 |
-
@-webkit-keyframes jkit-animated-rubber-band-out {
|
1000 |
-
0% {
|
1001 |
-
-webkit-transform: scaleX(1);
|
1002 |
-
transform: scaleX(1)
|
1003 |
-
}
|
1004 |
-
30% {
|
1005 |
-
-webkit-transform: scale3d(1.05, .95, 1);
|
1006 |
-
transform: scale3d(1.05, .95, 1)
|
1007 |
-
}
|
1008 |
-
40% {
|
1009 |
-
-webkit-transform: scale3d(.95, 1.05, 1);
|
1010 |
-
transform: scale3d(.95, 1.05, 1)
|
1011 |
-
}
|
1012 |
-
50% {
|
1013 |
-
-webkit-transform: scale3d(1.15, .85, 1);
|
1014 |
-
transform: scale3d(1.15, .85, 1)
|
1015 |
-
}
|
1016 |
-
65% {
|
1017 |
-
-webkit-transform: scale3d(.75, 1.25, 1);
|
1018 |
-
transform: scale3d(.75, 1.25, 1)
|
1019 |
-
}
|
1020 |
-
75% {
|
1021 |
-
-webkit-transform: scale3d(1.25, .75, 1);
|
1022 |
-
transform: scale3d(1.25, .75, 1)
|
1023 |
-
}
|
1024 |
-
to {
|
1025 |
-
-webkit-transform: scaleX(1);
|
1026 |
-
transform: scaleX(1)
|
1027 |
-
}
|
1028 |
-
}
|
1029 |
-
|
1030 |
-
@keyframes jkit-animated-rubber-band-out {
|
1031 |
-
0% {
|
1032 |
-
-webkit-transform: scaleX(1);
|
1033 |
-
transform: scaleX(1)
|
1034 |
-
}
|
1035 |
-
30% {
|
1036 |
-
-webkit-transform: scale3d(1.05, .95, 1);
|
1037 |
-
transform: scale3d(1.05, .95, 1)
|
1038 |
-
}
|
1039 |
-
40% {
|
1040 |
-
-webkit-transform: scale3d(.95, 1.05, 1);
|
1041 |
-
transform: scale3d(.95, 1.05, 1)
|
1042 |
-
}
|
1043 |
-
50% {
|
1044 |
-
-webkit-transform: scale3d(1.15, .85, 1);
|
1045 |
-
transform: scale3d(1.15, .85, 1)
|
1046 |
-
}
|
1047 |
-
65% {
|
1048 |
-
-webkit-transform: scale3d(.75, 1.25, 1);
|
1049 |
-
transform: scale3d(.75, 1.25, 1)
|
1050 |
-
}
|
1051 |
-
75% {
|
1052 |
-
-webkit-transform: scale3d(1.25, .75, 1);
|
1053 |
-
transform: scale3d(1.25, .75, 1)
|
1054 |
-
}
|
1055 |
-
to {
|
1056 |
-
-webkit-transform: scaleX(1);
|
1057 |
-
transform: scaleX(1)
|
1058 |
-
}
|
1059 |
-
}
|
1060 |
-
|
1061 |
-
@-webkit-keyframes jkit-ripple {
|
1062 |
-
70% {
|
1063 |
-
box-shadow: 0 0 0 15px currentColor;
|
1064 |
-
opacity: 0;
|
1065 |
-
}
|
1066 |
-
100% {
|
1067 |
-
box-shadow: 0 0 0 0 currentColor;
|
1068 |
-
opacity: 0;
|
1069 |
-
}
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
@keyframes jkit-ripple {
|
1073 |
-
70% {
|
1074 |
-
box-shadow: 0 0 0 15px currentColor;
|
1075 |
-
opacity: 0;
|
1076 |
-
}
|
1077 |
-
100% {
|
1078 |
-
box-shadow: 0 0 0 0 currentColor;
|
1079 |
-
opacity: 0;
|
1080 |
-
}
|
1081 |
-
}
|
1082 |
-
|
1083 |
-
@-webkit-keyframes jkit-search-background {
|
1084 |
-
0% {
|
1085 |
-
opacity: 0;
|
1086 |
-
-webkit-transform: scale(.04) translateY(300%);
|
1087 |
-
transform: scale(.04) translateY(300%);
|
1088 |
-
}
|
1089 |
-
40% {
|
1090 |
-
-webkit-transform: scale(.04) translateY(0);
|
1091 |
-
transform: scale(.04) translateY(0);
|
1092 |
-
-webkit-transition: ease-out;
|
1093 |
-
transition: ease-out;
|
1094 |
-
}
|
1095 |
-
40% {
|
1096 |
-
-webkit-transform: scale(.04) translateY(0);
|
1097 |
-
transform: scale(.04) translateY(0);
|
1098 |
-
}
|
1099 |
-
60% {
|
1100 |
-
opacity: 1;
|
1101 |
-
-webkit-transform: scale(.02) translateY(0);
|
1102 |
-
transform: scale(.02) translateY(0);
|
1103 |
-
}
|
1104 |
-
61% {
|
1105 |
-
opacity: 1;
|
1106 |
-
-webkit-transform: scale(.04) translateY(0);
|
1107 |
-
transform: scale(.04) translateY(0);
|
1108 |
-
}
|
1109 |
-
99.9% {
|
1110 |
-
opacity: 1;
|
1111 |
-
height: 0;
|
1112 |
-
padding-bottom: 100%;
|
1113 |
-
border-radius: 100%;
|
1114 |
-
}
|
1115 |
-
100% {
|
1116 |
-
opacity: 1;
|
1117 |
-
-webkit-transform: scale(2) translateY(0);
|
1118 |
-
transform: scale(2) translateY(0);
|
1119 |
-
height: 100%;
|
1120 |
-
padding-bottom: 0;
|
1121 |
-
border-radius: 0;
|
1122 |
-
}
|
1123 |
-
}
|
1124 |
-
|
1125 |
-
@keyframes jkit-search-background {
|
1126 |
-
0% {
|
1127 |
-
opacity: 0;
|
1128 |
-
-webkit-transform: scale(.04) translateY(300%);
|
1129 |
-
transform: scale(.04) translateY(300%);
|
1130 |
-
}
|
1131 |
-
40% {
|
1132 |
-
-webkit-transform: scale(.04) translateY(0);
|
1133 |
-
transform: scale(.04) translateY(0);
|
1134 |
-
-webkit-transition: ease-out;
|
1135 |
-
transition: ease-out;
|
1136 |
-
}
|
1137 |
-
40% {
|
1138 |
-
-webkit-transform: scale(.04) translateY(0);
|
1139 |
-
transform: scale(.04) translateY(0);
|
1140 |
-
}
|
1141 |
-
60% {
|
1142 |
-
opacity: 1;
|
1143 |
-
-webkit-transform: scale(.02) translateY(0);
|
1144 |
-
transform: scale(.02) translateY(0);
|
1145 |
-
}
|
1146 |
-
61% {
|
1147 |
-
opacity: 1;
|
1148 |
-
-webkit-transform: scale(.04) translateY(0);
|
1149 |
-
transform: scale(.04) translateY(0);
|
1150 |
-
}
|
1151 |
-
99.9% {
|
1152 |
-
opacity: 1;
|
1153 |
-
height: 0;
|
1154 |
-
padding-bottom: 100%;
|
1155 |
-
border-radius: 100%;
|
1156 |
-
}
|
1157 |
-
100% {
|
1158 |
-
opacity: 1;
|
1159 |
-
-webkit-transform: scale(2) translateY(0);
|
1160 |
-
transform: scale(2) translateY(0);
|
1161 |
-
height: 100%;
|
1162 |
-
padding-bottom: 0;
|
1163 |
-
border-radius: 0;
|
1164 |
-
}
|
1165 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/helpers/_mixin.scss
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
@mixin transform($var, $value) {
|
2 |
-
$prefixes: ("-moz-", "-webkit-", "-o-", "-ms-", "");
|
3 |
-
@if $var == false {
|
4 |
-
@each $prefix in $prefixes {
|
5 |
-
#{$prefix}transform: $value;
|
6 |
-
}
|
7 |
-
} @else {
|
8 |
-
@each $prefix in $prefixes {
|
9 |
-
#{$prefix}transform-#{$var}: $value;
|
10 |
-
}
|
11 |
-
}
|
12 |
-
}
|
13 |
-
|
14 |
-
@mixin animation($var, $value) {
|
15 |
-
$prefixes: ("-moz-", "-webkit-", "-o-", "-ms-", "");
|
16 |
-
@if $var == false {
|
17 |
-
@each $prefix in $prefixes {
|
18 |
-
#{$prefix}animation: $value;
|
19 |
-
}
|
20 |
-
} @else {
|
21 |
-
@each $prefix in $prefixes {
|
22 |
-
#{$prefix}animation-#{$var}: $value;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
@mixin boxshadow($value) {
|
28 |
-
$prefixes: ("-moz-", "-webkit-", "-o-", "");
|
29 |
-
@each $prefix in $prefixes {
|
30 |
-
#{$prefix}box-shadow: $value;
|
31 |
-
}
|
32 |
-
}
|
33 |
-
|
34 |
-
@mixin transition($var, $property, $value) {
|
35 |
-
$prefixes: ("-moz-", "-webkit-", "-o-", "-ms-", "");
|
36 |
-
@if $property == transform {
|
37 |
-
@if $var == false {
|
38 |
-
@each $prefix in $prefixes {
|
39 |
-
#{$prefix}transition: #{if($value == false, #{$prefix}#{'transform'}, #{$prefix}#{'transform '}$value)};
|
40 |
-
}
|
41 |
-
} @else {
|
42 |
-
@each $prefix in $prefixes {
|
43 |
-
#{$prefix}transition-#{$var}: #{if($value == false, #{$prefix}#{'transform'}, #{$prefix}#{'transform '}$value)};
|
44 |
-
}
|
45 |
-
}
|
46 |
-
} @else if $property == false {
|
47 |
-
@if $var == false {
|
48 |
-
@each $prefix in $prefixes {
|
49 |
-
#{$prefix}transition: $value;
|
50 |
-
}
|
51 |
-
} @else {
|
52 |
-
@each $prefix in $prefixes {
|
53 |
-
#{$prefix}transition-#{$var}: $value;
|
54 |
-
}
|
55 |
-
}
|
56 |
-
} @else {
|
57 |
-
@if $var == false {
|
58 |
-
@each $prefix in $prefixes {
|
59 |
-
#{$prefix}transition: $property#{' '}$value;
|
60 |
-
}
|
61 |
-
} @else {
|
62 |
-
@each $prefix in $prefixes {
|
63 |
-
#{$prefix}transition-#{$var}: $property#{' '}$value;
|
64 |
-
}
|
65 |
-
}
|
66 |
-
}
|
67 |
-
}
|
68 |
-
|
69 |
-
@mixin displayflex {
|
70 |
-
display: -webkit-box;
|
71 |
-
display: -ms-flexbox;
|
72 |
-
display: flex;
|
73 |
-
}
|
74 |
-
|
75 |
-
@mixin flexwrap {
|
76 |
-
-ms-flex-wrap: wrap;
|
77 |
-
flex-wrap: wrap;
|
78 |
-
}
|
79 |
-
|
80 |
-
@mixin alignitemscenter {
|
81 |
-
-webkit-box-align: center;
|
82 |
-
-ms-flex-align: center;
|
83 |
-
align-items: center;
|
84 |
-
}
|
85 |
-
|
86 |
-
@mixin alignitemsstart {
|
87 |
-
-webkit-box-align: start;
|
88 |
-
-ms-flex-align: start;
|
89 |
-
align-items: flex-start;
|
90 |
-
}
|
91 |
-
|
92 |
-
@mixin alignitemsstretch {
|
93 |
-
-webkit-box-align: stretch;
|
94 |
-
-ms-flex-align: stretch;
|
95 |
-
align-items: stretch;
|
96 |
-
}
|
97 |
-
|
98 |
-
@mixin userselect($value) {
|
99 |
-
-webkit-user-select: $value;
|
100 |
-
-moz-user-select: $value;
|
101 |
-
-ms-user-select: $value;
|
102 |
-
user-select: $value;
|
103 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/dev/scss/helpers/_variable.scss
DELETED
@@ -1,79 +0,0 @@
|
|
1 |
-
$break-tablet: 1024px;
|
2 |
-
$break-mobile: 768px;
|
3 |
-
|
4 |
-
// Colors
|
5 |
-
$color-black: #181D23;
|
6 |
-
$color-grey-900: #2D3137;
|
7 |
-
$color-grey-800: #42464B;
|
8 |
-
$color-grey-700: #575A5F;
|
9 |
-
$color-grey-600: #6C6F73;
|
10 |
-
$color-grey-500: #818387;
|
11 |
-
$color-grey-400: #96989B;
|
12 |
-
$color-grey-300: #ABACAF;
|
13 |
-
$color-grey-200: #D5D5D7;
|
14 |
-
$color-grey-100: #FAFCFF;
|
15 |
-
$color-white: #ffffff;
|
16 |
-
$color-blue: #0058E6;
|
17 |
-
$color-yellow: #FFC402;
|
18 |
-
$color-green: #00A878;
|
19 |
-
$color-orange: #FC4E19;
|
20 |
-
$color-red: #FF0000;
|
21 |
-
|
22 |
-
$border-color: lighten($color-grey-200, 8);
|
23 |
-
$form-border-color: $color-grey-200;
|
24 |
-
$form-bg-color: transparent;
|
25 |
-
$form-bg-txt-color: $color-black;
|
26 |
-
$selection-bg-color: darken($color-yellow, 8%);
|
27 |
-
$element-bg-color: lighten($color-blue, 30);
|
28 |
-
$element-darken-bg-color: $color-blue;
|
29 |
-
$element-lighten-bg-color: lighten($color-blue, 50);
|
30 |
-
$success-border-color: darken($color-green, 8%);
|
31 |
-
$success-bg-color: lighten($color-green, 40%);
|
32 |
-
$error-border-color: darken($color-red, 8%);
|
33 |
-
$error-bg-color: lighten($color-red, 40%);
|
34 |
-
|
35 |
-
// Typography
|
36 |
-
$font-size-base: 15px !default;
|
37 |
-
$line-height-base: 1.5 !default;
|
38 |
-
$meta-font-size: 0.75rem !default;
|
39 |
-
|
40 |
-
// Forms
|
41 |
-
$form-font-size: $font-size-base;
|
42 |
-
|
43 |
-
// Button
|
44 |
-
$btn-txt-color: $color-white;
|
45 |
-
$btn-bg-color: $color-blue;
|
46 |
-
$btn-bg-hover-color: darken($btn-bg-color, 8%);
|
47 |
-
$btn-bg-disable-color: lighten($btn-bg-color, 10%);
|
48 |
-
$btn-border-width: 1px;
|
49 |
-
$btn-font-size: $font-size-base;
|
50 |
-
$btn-padding-y: 0.6875rem !default;
|
51 |
-
$btn-padding-x: 1.25rem !default;
|
52 |
-
$btn-line-height: $line-height-base !default;
|
53 |
-
$btn-border-radius: 3px !default;
|
54 |
-
|
55 |
-
$transition-base: .25s ease;
|
56 |
-
|
57 |
-
// Grid
|
58 |
-
$grid-sm-breakpoints: 576px !default;
|
59 |
-
$grid-md-breakpoints: 768px !default;
|
60 |
-
$grid-lg-breakpoints: 1024px !default;
|
61 |
-
$grid-xl-breakpoints: 1200px !default;
|
62 |
-
|
63 |
-
$grid-gutter-width: 40px !default;
|
64 |
-
$grid-column-padding: 40px / 2 !default;
|
65 |
-
$grid-module-padding: 40px 40px 20px 40px;
|
66 |
-
|
67 |
-
// Block
|
68 |
-
$module-margin: 2rem !default;
|
69 |
-
$widget-margin: 2.5rem !default;
|
70 |
-
$item-margin: 15px !default;
|
71 |
-
|
72 |
-
$blocklink-overlay-color: rgba(255, 255, 255, 0.3);
|
73 |
-
$blocklink-shadow-color: rgba(0, 0, 0, .15);
|
74 |
-
|
75 |
-
$blockpopular-shadow-color1: rgba(0,0,0,0.16);
|
76 |
-
$blockpopular-shadow-color2: rgba(0,0,0,0.12);
|
77 |
-
|
78 |
-
// Border
|
79 |
-
$border-radius-default: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/tiny-slider/tiny-slider.css
CHANGED
File without changes
|
class/elements/options/class-category-list-option.php
CHANGED
@@ -324,7 +324,7 @@ class Category_List_Option extends Option_Abstract {
|
|
324 |
'type' => 'typography',
|
325 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
326 |
'segment' => 'style_text',
|
327 |
-
'selectors' => '.jeg-elementor-kit.jkit-categorylist .category-list-item',
|
328 |
);
|
329 |
|
330 |
$this->options['st_icon_color'] = array(
|
324 |
'type' => 'typography',
|
325 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
326 |
'segment' => 'style_text',
|
327 |
+
'selectors' => '.jeg-elementor-kit.jkit-categorylist .category-list-item > a',
|
328 |
);
|
329 |
|
330 |
$this->options['st_icon_color'] = array(
|
class/elements/options/class-nav-menu-option.php
CHANGED
@@ -345,7 +345,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
345 |
'type' => 'typography',
|
346 |
'title' => esc_html__( 'Menu Item Typography', 'jeg-elementor-kit' ),
|
347 |
'segment' => 'style_menu_item',
|
348 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
349 |
);
|
350 |
|
351 |
$this->options['st_menu_item_icon_size'] = array(
|
@@ -361,8 +361,8 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
361 |
'responsive' => true,
|
362 |
'selectors' => array(
|
363 |
'custom' => array(
|
364 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
365 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
366 |
),
|
367 |
),
|
368 |
);
|
@@ -371,7 +371,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
371 |
'type' => 'dimension',
|
372 |
'title' => esc_html__( 'Item Spacing', 'jeg-elementor-kit' ),
|
373 |
'segment' => 'style_menu_item',
|
374 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
375 |
'attribute' => 'padding',
|
376 |
);
|
377 |
|
@@ -393,8 +393,8 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
393 |
'segment' => 'style_menu_item',
|
394 |
'selectors' => array(
|
395 |
'custom' => array(
|
396 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
397 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
398 |
),
|
399 |
),
|
400 |
);
|
@@ -403,7 +403,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
403 |
'type' => 'background',
|
404 |
'title' => esc_html__( 'Item Text Normal Background', 'jeg-elementor-kit' ),
|
405 |
'segment' => 'style_menu_item',
|
406 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
407 |
'options' => array(
|
408 |
'classic',
|
409 |
'gradient',
|
@@ -414,7 +414,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
414 |
'type' => 'border',
|
415 |
'title' => esc_html__( 'Item Text Normal Border', 'jeg-elementor-kit' ),
|
416 |
'segment' => 'style_menu_item',
|
417 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
418 |
);
|
419 |
|
420 |
$this->options['st_menu_item_text_normal_tab_end'] = array(
|
@@ -435,8 +435,8 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
435 |
'segment' => 'style_menu_item',
|
436 |
'selectors' => array(
|
437 |
'custom' => array(
|
438 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
439 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
440 |
),
|
441 |
),
|
442 |
);
|
@@ -445,7 +445,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
445 |
'type' => 'background',
|
446 |
'title' => esc_html__( 'Item Text Hover Background', 'jeg-elementor-kit' ),
|
447 |
'segment' => 'style_menu_item',
|
448 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
449 |
'options' => array(
|
450 |
'classic',
|
451 |
'gradient',
|
@@ -456,7 +456,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
456 |
'type' => 'border',
|
457 |
'title' => esc_html__( 'Item Text Hover Border', 'jeg-elementor-kit' ),
|
458 |
'segment' => 'style_menu_item',
|
459 |
-
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
460 |
);
|
461 |
|
462 |
$this->options['st_menu_item_text_hover_tab_end'] = array(
|
@@ -477,8 +477,8 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
477 |
'segment' => 'style_menu_item',
|
478 |
'selectors' => array(
|
479 |
'custom' => array(
|
480 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
481 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
482 |
),
|
483 |
),
|
484 |
);
|
@@ -488,7 +488,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
488 |
'title' => esc_html__( 'Item Text Active Background', 'jeg-elementor-kit' ),
|
489 |
'segment' => 'style_menu_item',
|
490 |
'selectors' => array(
|
491 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
492 |
),
|
493 |
'options' => array(
|
494 |
'classic',
|
@@ -501,7 +501,7 @@ class Nav_Menu_Option extends Option_Abstract {
|
|
501 |
'title' => esc_html__( 'Item Text Active Border', 'jeg-elementor-kit' ),
|
502 |
'segment' => 'style_menu_item',
|
503 |
'selectors' => array(
|
504 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu
|
505 |
),
|
506 |
);
|
507 |
|
345 |
'type' => 'typography',
|
346 |
'title' => esc_html__( 'Menu Item Typography', 'jeg-elementor-kit' ),
|
347 |
'segment' => 'style_menu_item',
|
348 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a',
|
349 |
);
|
350 |
|
351 |
$this->options['st_menu_item_icon_size'] = array(
|
361 |
'responsive' => true,
|
362 |
'selectors' => array(
|
363 |
'custom' => array(
|
364 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a i' => 'font-size: {{SIZE}}{{UNIT}};',
|
365 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a svg' => 'width: {{SIZE}}{{UNIT}};',
|
366 |
),
|
367 |
),
|
368 |
);
|
371 |
'type' => 'dimension',
|
372 |
'title' => esc_html__( 'Item Spacing', 'jeg-elementor-kit' ),
|
373 |
'segment' => 'style_menu_item',
|
374 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a',
|
375 |
'attribute' => 'padding',
|
376 |
);
|
377 |
|
393 |
'segment' => 'style_menu_item',
|
394 |
'selectors' => array(
|
395 |
'custom' => array(
|
396 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a' => 'color: {{VALUE}};',
|
397 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a svg' => 'fill: {{VALUE}};',
|
398 |
),
|
399 |
),
|
400 |
);
|
403 |
'type' => 'background',
|
404 |
'title' => esc_html__( 'Item Text Normal Background', 'jeg-elementor-kit' ),
|
405 |
'segment' => 'style_menu_item',
|
406 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a',
|
407 |
'options' => array(
|
408 |
'classic',
|
409 |
'gradient',
|
414 |
'type' => 'border',
|
415 |
'title' => esc_html__( 'Item Text Normal Border', 'jeg-elementor-kit' ),
|
416 |
'segment' => 'style_menu_item',
|
417 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li > a',
|
418 |
);
|
419 |
|
420 |
$this->options['st_menu_item_text_normal_tab_end'] = array(
|
435 |
'segment' => 'style_menu_item',
|
436 |
'selectors' => array(
|
437 |
'custom' => array(
|
438 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li:hover > a' => 'color: {{VALUE}};',
|
439 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li:hover > a svg' => 'fill: {{VALUE}};',
|
440 |
),
|
441 |
),
|
442 |
);
|
445 |
'type' => 'background',
|
446 |
'title' => esc_html__( 'Item Text Hover Background', 'jeg-elementor-kit' ),
|
447 |
'segment' => 'style_menu_item',
|
448 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li:hover > a',
|
449 |
'options' => array(
|
450 |
'classic',
|
451 |
'gradient',
|
456 |
'type' => 'border',
|
457 |
'title' => esc_html__( 'Item Text Hover Border', 'jeg-elementor-kit' ),
|
458 |
'segment' => 'style_menu_item',
|
459 |
+
'selectors' => '.jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li:hover > a',
|
460 |
);
|
461 |
|
462 |
$this->options['st_menu_item_text_hover_tab_end'] = array(
|
477 |
'segment' => 'style_menu_item',
|
478 |
'selectors' => array(
|
479 |
'custom' => array(
|
480 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-item > a, {{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-ancestor > a' => 'color: {{VALUE}};',
|
481 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-item > a svg, {{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-ancestor > a svg' => 'fill: {{VALUE}};',
|
482 |
),
|
483 |
),
|
484 |
);
|
488 |
'title' => esc_html__( 'Item Text Active Background', 'jeg-elementor-kit' ),
|
489 |
'segment' => 'style_menu_item',
|
490 |
'selectors' => array(
|
491 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-item > a, {{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-ancestor > a',
|
492 |
),
|
493 |
'options' => array(
|
494 |
'classic',
|
501 |
'title' => esc_html__( 'Item Text Active Border', 'jeg-elementor-kit' ),
|
502 |
'segment' => 'style_menu_item',
|
503 |
'selectors' => array(
|
504 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-item > a, {{WRAPPER}} .jeg-elementor-kit.jkit-nav-menu .jkit-menu-wrapper .jkit-menu li.current-menu-ancestor > a',
|
505 |
),
|
506 |
);
|
507 |
|
class/elements/options/class-post-block-option.php
CHANGED
@@ -1126,7 +1126,7 @@ class Post_Block_Option extends Option_Abstract {
|
|
1126 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
1127 |
'segment' => 'style_category',
|
1128 |
'selectors' => array(
|
1129 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-category, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-3 .jkit-post-category',
|
1130 |
),
|
1131 |
);
|
1132 |
|
@@ -1254,7 +1254,7 @@ class Post_Block_Option extends Option_Abstract {
|
|
1254 |
'title' => esc_html__( 'Normal Typography', 'jeg-elementor-kit' ),
|
1255 |
'segment' => 'style_title',
|
1256 |
'selectors' => array(
|
1257 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-title, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-4 .jkit-post-title',
|
1258 |
),
|
1259 |
);
|
1260 |
|
@@ -1282,7 +1282,7 @@ class Post_Block_Option extends Option_Abstract {
|
|
1282 |
'title' => esc_html__( 'Hover Typography', 'jeg-elementor-kit' ),
|
1283 |
'segment' => 'style_title',
|
1284 |
'selectors' => array(
|
1285 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-title:hover, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-4 .jkit-post-title:hover',
|
1286 |
),
|
1287 |
);
|
1288 |
|
@@ -1541,7 +1541,7 @@ class Post_Block_Option extends Option_Abstract {
|
|
1541 |
'responsive' => true,
|
1542 |
'selectors' => array(
|
1543 |
'custom' => array(
|
1544 |
-
'{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-meta-bottom .jkit-meta-comment' => 'font-size: {{SIZE}}{{UNIT}};',
|
1545 |
'{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-meta-bottom .jkit-meta-comment svg' => 'width: {{SIZE}}{{UNIT}};',
|
1546 |
),
|
1547 |
),
|
1126 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
1127 |
'segment' => 'style_category',
|
1128 |
'selectors' => array(
|
1129 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-category span a, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-3 .jkit-post-category span a',
|
1130 |
),
|
1131 |
);
|
1132 |
|
1254 |
'title' => esc_html__( 'Normal Typography', 'jeg-elementor-kit' ),
|
1255 |
'segment' => 'style_title',
|
1256 |
'selectors' => array(
|
1257 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-title a, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-4 .jkit-post-title a',
|
1258 |
),
|
1259 |
);
|
1260 |
|
1282 |
'title' => esc_html__( 'Hover Typography', 'jeg-elementor-kit' ),
|
1283 |
'segment' => 'style_title',
|
1284 |
'selectors' => array(
|
1285 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-title a:hover, {{WRAPPER}} .jeg-elementor-kit.jkit-postblock.postblock-type-4 .jkit-post-title a:hover',
|
1286 |
),
|
1287 |
);
|
1288 |
|
1541 |
'responsive' => true,
|
1542 |
'selectors' => array(
|
1543 |
'custom' => array(
|
1544 |
+
'{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-meta-bottom .jkit-meta-comment a' => 'font-size: {{SIZE}}{{UNIT}};',
|
1545 |
'{{WRAPPER}} .jeg-elementor-kit.jkit-postblock .jkit-post-meta-bottom .jkit-meta-comment svg' => 'width: {{SIZE}}{{UNIT}};',
|
1546 |
),
|
1547 |
),
|
class/elements/options/class-post-terms-option.php
CHANGED
@@ -179,7 +179,7 @@ class Post_Terms_Option extends Option_Abstract {
|
|
179 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
180 |
'segment' => 'style_term',
|
181 |
'selectors' => array(
|
182 |
-
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-post-terms .post-terms, {{WRAPPER}} .jeg-elementor-kit.jkit-post-terms .term-list',
|
183 |
),
|
184 |
);
|
185 |
|
179 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
180 |
'segment' => 'style_term',
|
181 |
'selectors' => array(
|
182 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-post-terms .post-terms, {{WRAPPER}} .jeg-elementor-kit.jkit-post-terms .term-list, {{WRAPPER}} .jeg-elementor-kit.jkit-post-terms .term-list a',
|
183 |
),
|
184 |
);
|
185 |
|
class/elements/options/class-post-title-option.php
CHANGED
@@ -223,7 +223,7 @@ class Post_Title_Option extends Option_Abstract {
|
|
223 |
'type' => 'background',
|
224 |
'title' => esc_html__( 'Normal Gradient', 'jeg-elementor-kit' ),
|
225 |
'segment' => 'style_title',
|
226 |
-
'selectors' => 'jeg-elementor-kit.jkit-post-title .post-title.style-gradient',
|
227 |
'options' => array( 'gradient' ),
|
228 |
'dependency' => array(
|
229 |
array(
|
223 |
'type' => 'background',
|
224 |
'title' => esc_html__( 'Normal Gradient', 'jeg-elementor-kit' ),
|
225 |
'segment' => 'style_title',
|
226 |
+
'selectors' => '.jeg-elementor-kit.jkit-post-title .post-title.style-gradient',
|
227 |
'options' => array( 'gradient' ),
|
228 |
'dependency' => array(
|
229 |
array(
|
class/elements/options/class-team-option.php
CHANGED
@@ -1061,7 +1061,9 @@ class Team_Option extends Option_Abstract {
|
|
1061 |
'type' => 'typography',
|
1062 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
1063 |
'segment' => 'style_name',
|
1064 |
-
'selectors' =>
|
|
|
|
|
1065 |
);
|
1066 |
|
1067 |
$this->options['st_name_normal_color'] = array(
|
1061 |
'type' => 'typography',
|
1062 |
'title' => esc_html__( 'Typography', 'jeg-elementor-kit' ),
|
1063 |
'segment' => 'style_name',
|
1064 |
+
'selectors' => array(
|
1065 |
+
'custom' => '{{WRAPPER}} .jeg-elementor-kit.jkit-team .profile-body .profile-title, {{WRAPPER}} .jeg-elementor-kit.jkit-team .profile-body .profile-title a',
|
1066 |
+
),
|
1067 |
);
|
1068 |
|
1069 |
$this->options['st_name_normal_color'] = array(
|
class/elements/views/class-animated-text-view.php
CHANGED
@@ -109,10 +109,12 @@ class Animated_Text_View extends View_Abstract {
|
|
109 |
|
110 |
if ( in_array( $rotate_style, array( 'typing', 'swirl', 'blinds', 'wave' ), true ) ) {
|
111 |
foreach ( $lists as $list ) {
|
112 |
-
$
|
|
|
|
|
113 |
|
114 |
-
|
115 |
-
$text_list = $text_list . '<span class="dynamic-text-letter">' . $
|
116 |
}
|
117 |
|
118 |
$text_list = $text_list . '</span>';
|
109 |
|
110 |
if ( in_array( $rotate_style, array( 'typing', 'swirl', 'blinds', 'wave' ), true ) ) {
|
111 |
foreach ( $lists as $list ) {
|
112 |
+
$text_string = $list['sg_text_rotating_list_text'];
|
113 |
+
$text_length = mb_strlen( $text_string, 'UTF-8' );
|
114 |
+
$text_list = $text_list . '<span class="dynamic-text">';
|
115 |
|
116 |
+
for ( $i = 0; $i < $text_length; $i++ ) {
|
117 |
+
$text_list = $text_list . '<span class="dynamic-text-letter">' . mb_substr( $text_string, $i, 1, 'UTF-8' ) . '</span>';
|
118 |
}
|
119 |
|
120 |
$text_list = $text_list . '</span>';
|
jeg-elementor-kit.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: Jeg Elementor Kit
|
4 |
* Plugin URI: http://jegtheme.com/
|
5 |
* Description: Additional highly customizable widgets for Elementor page builder
|
6 |
-
* Version: 1.11.
|
7 |
* Author: Jegstudio
|
8 |
* Author URI: http://jegtheme.com
|
9 |
* License: GPLv3
|
10 |
* Text Domain: jeg-elementor-kit
|
11 |
*
|
12 |
-
* Elementor tested up to: 3.
|
13 |
-
* Elementor Pro tested up to: 3.3.
|
14 |
*
|
15 |
* @author: Jegstudio
|
16 |
* @since 1.0.0
|
@@ -25,7 +25,7 @@ add_action(
|
|
25 |
function() {
|
26 |
defined( 'JEG_ELEMENTOR_KIT' ) || define( 'JEG_ELEMENTOR_KIT', 'jeg-elementor-kit' );
|
27 |
defined( 'JEG_ELEMENTOR_KIT_NAME' ) || define( 'JEG_ELEMENTOR_KIT_NAME', 'Jeg Elementor Kit' );
|
28 |
-
defined( 'JEG_ELEMENTOR_KIT_VERSION' ) || define( 'JEG_ELEMENTOR_KIT_VERSION', '1.11.
|
29 |
defined( 'JEG_ELEMENTOR_KIT_URL' ) || define( 'JEG_ELEMENTOR_KIT_URL', plugins_url( JEG_ELEMENTOR_KIT ) );
|
30 |
defined( 'JEG_ELEMENTOR_KIT_FILE' ) || define( 'JEG_ELEMENTOR_KIT_FILE', __FILE__ );
|
31 |
defined( 'JEG_ELEMENTOR_KIT_DIR' ) || define( 'JEG_ELEMENTOR_KIT_DIR', plugin_dir_path( __FILE__ ) );
|
3 |
* Plugin Name: Jeg Elementor Kit
|
4 |
* Plugin URI: http://jegtheme.com/
|
5 |
* Description: Additional highly customizable widgets for Elementor page builder
|
6 |
+
* Version: 1.11.3
|
7 |
* Author: Jegstudio
|
8 |
* Author URI: http://jegtheme.com
|
9 |
* License: GPLv3
|
10 |
* Text Domain: jeg-elementor-kit
|
11 |
*
|
12 |
+
* Elementor tested up to: 3.4.2
|
13 |
+
* Elementor Pro tested up to: 3.3.7
|
14 |
*
|
15 |
* @author: Jegstudio
|
16 |
* @since 1.0.0
|
25 |
function() {
|
26 |
defined( 'JEG_ELEMENTOR_KIT' ) || define( 'JEG_ELEMENTOR_KIT', 'jeg-elementor-kit' );
|
27 |
defined( 'JEG_ELEMENTOR_KIT_NAME' ) || define( 'JEG_ELEMENTOR_KIT_NAME', 'Jeg Elementor Kit' );
|
28 |
+
defined( 'JEG_ELEMENTOR_KIT_VERSION' ) || define( 'JEG_ELEMENTOR_KIT_VERSION', '1.11.3' );
|
29 |
defined( 'JEG_ELEMENTOR_KIT_URL' ) || define( 'JEG_ELEMENTOR_KIT_URL', plugins_url( JEG_ELEMENTOR_KIT ) );
|
30 |
defined( 'JEG_ELEMENTOR_KIT_FILE' ) || define( 'JEG_ELEMENTOR_KIT_FILE', __FILE__ );
|
31 |
defined( 'JEG_ELEMENTOR_KIT_DIR' ) || define( 'JEG_ELEMENTOR_KIT_DIR', plugin_dir_path( __FILE__ ) );
|
languages/jeg-elementor-kit.pot
CHANGED
@@ -14,15 +14,6 @@ msgstr ""
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
|
17 |
-
#: jeg-elementor-kit/helper.php:44
|
18 |
-
msgid "edit post"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#. translators: 1: Time from now.
|
22 |
-
#: jeg-elementor-kit/helper.php:100
|
23 |
-
msgid "%s ago"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
#: jeg-elementor-kit/class/ajax/class-ajax.php:120, jeg-elementor-kit/class/ajax/class-ajax.php:110
|
27 |
msgid "Success Save Data"
|
28 |
msgstr ""
|
@@ -71,18 +62,6 @@ msgstr ""
|
|
71 |
msgid "The blur effect will be set on the widget container. Make sure to set background to transparent to see the blur effect."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:19
|
75 |
-
msgid "Enable All"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:22
|
79 |
-
msgid "Disable All"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:51, jeg-elementor-kit/templates/dashboard/dashboard-user-data.php:33
|
83 |
-
msgid "Save Changes"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:48
|
87 |
msgid "JKit - Accordion"
|
88 |
msgstr ""
|
@@ -99,11 +78,11 @@ msgstr ""
|
|
99 |
msgid "Title"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:98, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:850, jeg-elementor-kit/class/elements/options/class-heading-option.php:85, jeg-elementor-kit/class/elements/options/class-heading-option.php:138, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:328, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:667, jeg-elementor-kit/class/elements/options/class-image-box-option.php:259, jeg-elementor-kit/class/elements/options/class-image-box-option.php:716, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:289, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:585, jeg-elementor-kit/class/elements/options/class-team-option.php:121, jeg-elementor-kit/class/elements/options/class-team-option.php:280, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
103 |
msgid "Description"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:104, jeg-elementor-kit/class/elements/options/class-accordion-option.php:473, jeg-elementor-kit/class/elements/options/class-button-option.php:93, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:204, jeg-elementor-kit/class/elements/options/class-countdown-option.php:525, jeg-elementor-kit/class/elements/options/class-countdown-option.php:606, jeg-elementor-kit/class/elements/options/class-countdown-option.php:665, jeg-elementor-kit/class/elements/options/class-countdown-option.php:881, jeg-elementor-kit/class/elements/options/class-countdown-option.php:962, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1021, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1237, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1318, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1377, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1593, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1674, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1733, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:785, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:623, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:684, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:723, jeg-elementor-kit/class/elements/options/class-gallery-option.php:931, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1113, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1182, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1739, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1775, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2263, jeg-elementor-kit/class/elements/options/class-heading-option.php:616, jeg-elementor-kit/class/elements/options/class-heading-option.php:637, jeg-elementor-kit/class/elements/options/class-heading-option.php:946, jeg-elementor-kit/class/elements/options/class-heading-option.php:1170, jeg-elementor-kit/class/elements/options/class-image-box-option.php:550, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:707, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:902, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1100, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1185, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1218, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:764, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:256, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:298, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:465, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:507, jeg-elementor-kit/class/elements/options/class-option-abstract.php:356, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:673, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:317, jeg-elementor-kit/class/elements/options/class-post-author-option.php:415, jeg-elementor-kit/class/elements/options/class-post-block-option.php:780, jeg-elementor-kit/class/elements/options/class-post-block-option.php:847, jeg-elementor-kit/class/elements/options/class-post-block-option.php:910, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1070, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1198, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:219, jeg-elementor-kit/class/elements/options/class-post-list-option.php:552, jeg-elementor-kit/class/elements/options/class-post-list-option.php:597, jeg-elementor-kit/class/elements/options/class-search-option.php:327, jeg-elementor-kit/class/elements/options/class-search-option.php:529, jeg-elementor-kit/class/elements/options/class-search-option.php:573, jeg-elementor-kit/class/elements/options/class-search-option.php:768, jeg-elementor-kit/class/elements/options/class-search-option.php:817, jeg-elementor-kit/class/elements/options/class-tabs-option.php:312, jeg-elementor-kit/class/elements/options/class-tabs-option.php:784, jeg-elementor-kit/class/elements/options/class-tabs-option.php:850, jeg-elementor-kit/class/elements/options/class-tabs-option.php:916, jeg-elementor-kit/class/elements/options/class-tabs-option.php:975, jeg-elementor-kit/class/elements/options/class-team-option.php:669, jeg-elementor-kit/class/elements/options/class-team-option.php:958, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
107 |
msgid "Border"
|
108 |
msgstr ""
|
109 |
|
@@ -163,7 +142,7 @@ msgstr ""
|
|
163 |
msgid "Box Icon"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:177, jeg-elementor-kit/class/elements/options/class-accordion-option.php:489, jeg-elementor-kit/class/elements/options/class-button-option.php:397, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:211, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:894, jeg-elementor-kit/class/elements/options/class-countdown-option.php:532, jeg-elementor-kit/class/elements/options/class-countdown-option.php:613, jeg-elementor-kit/class/elements/options/class-countdown-option.php:672, jeg-elementor-kit/class/elements/options/class-countdown-option.php:888, jeg-elementor-kit/class/elements/options/class-countdown-option.php:969, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1028, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1244, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1325, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1384, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1600, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1681, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1740, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:813, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:528, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:716, jeg-elementor-kit/class/elements/options/class-gallery-option.php:938, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1131, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1782, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2128, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2222, jeg-elementor-kit/class/elements/options/class-heading-option.php:623, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1344, jeg-elementor-kit/class/elements/options/class-image-box-option.php:557, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:714, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:909, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:805, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:396, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:583, jeg-elementor-kit/class/elements/options/class-option-abstract.php:363, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:680, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:324, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:693, jeg-elementor-kit/class/elements/options/class-post-author-option.php:401, jeg-elementor-kit/class/elements/options/class-post-block-option.php:787, jeg-elementor-kit/class/elements/options/class-post-block-option.php:854, jeg-elementor-kit/class/elements/options/class-post-block-option.php:917, jeg-elementor-kit/class/elements/options/class-post-block-option.php:987, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1084, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1205, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:212, jeg-elementor-kit/class/elements/options/class-post-list-option.php:568, jeg-elementor-kit/class/elements/options/class-post-list-option.php:613, jeg-elementor-kit/class/elements/options/class-search-option.php:335, jeg-elementor-kit/class/elements/options/class-search-option.php:536, jeg-elementor-kit/class/elements/options/class-search-option.php:580, jeg-elementor-kit/class/elements/options/class-search-option.php:775, jeg-elementor-kit/class/elements/options/class-search-option.php:824, jeg-elementor-kit/class/elements/options/class-tabs-option.php:305, jeg-elementor-kit/class/elements/options/class-tabs-option.php:968, jeg-elementor-kit/class/elements/options/class-team-option.php:972, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
167 |
msgid "Box Shadow"
|
168 |
msgstr ""
|
169 |
|
@@ -171,11 +150,11 @@ msgstr ""
|
|
171 |
msgid "Icon Position"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:187, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:399, jeg-elementor-kit/class/elements/options/class-button-option.php:176, jeg-elementor-kit/class/elements/options/class-category-list-option.php:229, jeg-elementor-kit/class/elements/options/class-category-list-option.php:264, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:173, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:249, jeg-elementor-kit/class/elements/options/class-countdown-option.php:447, jeg-elementor-kit/class/elements/options/class-countdown-option.php:719, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1075, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1431, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1787, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1842, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:155, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:550, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:751, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:406, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:140, jeg-elementor-kit/class/elements/options/class-gallery-option.php:861, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1195, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1793, jeg-elementor-kit/class/elements/options/class-heading-option.php:531, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:191, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:202, jeg-elementor-kit/class/elements/options/class-image-box-option.php:269, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:841, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:148, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:816, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:319, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:528, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:638, jeg-elementor-kit/class/elements/options/class-option-abstract.php:310, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:332, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:356, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:352, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:485, jeg-elementor-kit/class/elements/options/class-post-author-option.php:173, jeg-elementor-kit/class/elements/options/class-post-block-option.php:998, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1102, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1810, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1958, jeg-elementor-kit/class/elements/options/class-post-date-option.php:194, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:154, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:144, jeg-elementor-kit/class/elements/options/class-post-list-option.php:470, jeg-elementor-kit/class/elements/options/class-post-list-option.php:686, jeg-elementor-kit/class/elements/options/class-post-list-option.php:767, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1170, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:159, jeg-elementor-kit/class/elements/options/class-post-title-option.php:154, jeg-elementor-kit/class/elements/options/class-search-option.php:223, jeg-elementor-kit/class/elements/options/class-search-option.php:390, jeg-elementor-kit/class/elements/options/class-social-share-option.php:182, jeg-elementor-kit/class/elements/options/class-social-share-option.php:411, jeg-elementor-kit/class/elements/options/class-tabs-option.php:388, jeg-elementor-kit/class/elements/options/class-tabs-option.php:510, jeg-elementor-kit/class/elements/options/class-tabs-option.php:546, jeg-elementor-kit/class/elements/options/class-tabs-option.php:597, jeg-elementor-kit/class/elements/options/class-team-option.php:581, jeg-elementor-kit/class/elements/options/class-team-option.php:616, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
175 |
msgid "Left"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:188, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:407, jeg-elementor-kit/class/elements/options/class-button-option.php:184, jeg-elementor-kit/class/elements/options/class-category-list-option.php:237, jeg-elementor-kit/class/elements/options/class-category-list-option.php:272, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:181, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:257, jeg-elementor-kit/class/elements/options/class-countdown-option.php:455, jeg-elementor-kit/class/elements/options/class-countdown-option.php:727, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1083, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1439, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1795, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1850, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:163, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:558, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:759, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:414, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:148, jeg-elementor-kit/class/elements/options/class-gallery-option.php:869, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1203, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1801, jeg-elementor-kit/class/elements/options/class-heading-option.php:539, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:192, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:210, jeg-elementor-kit/class/elements/options/class-image-box-option.php:277, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:849, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:156, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:820, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:327, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:536, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:642, jeg-elementor-kit/class/elements/options/class-option-abstract.php:318, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:340, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:364, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:360, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:493, jeg-elementor-kit/class/elements/options/class-post-author-option.php:181, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1006, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1110, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1818, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1960, jeg-elementor-kit/class/elements/options/class-post-date-option.php:202, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:162, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:152, jeg-elementor-kit/class/elements/options/class-post-list-option.php:478, jeg-elementor-kit/class/elements/options/class-post-list-option.php:694, jeg-elementor-kit/class/elements/options/class-post-list-option.php:775, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1178, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:167, jeg-elementor-kit/class/elements/options/class-post-title-option.php:162, jeg-elementor-kit/class/elements/options/class-search-option.php:231, jeg-elementor-kit/class/elements/options/class-search-option.php:398, jeg-elementor-kit/class/elements/options/class-social-share-option.php:190, jeg-elementor-kit/class/elements/options/class-social-share-option.php:419, jeg-elementor-kit/class/elements/options/class-tabs-option.php:396, jeg-elementor-kit/class/elements/options/class-tabs-option.php:518, jeg-elementor-kit/class/elements/options/class-tabs-option.php:554, jeg-elementor-kit/class/elements/options/class-tabs-option.php:605, jeg-elementor-kit/class/elements/options/class-team-option.php:585, jeg-elementor-kit/class/elements/options/class-team-option.php:624, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
179 |
msgid "Right"
|
180 |
msgstr ""
|
181 |
|
@@ -203,7 +182,7 @@ msgstr ""
|
|
203 |
msgid "Left Icon Active"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:281, jeg-elementor-kit/class/elements/options/class-accordion-option.php:437, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:424, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:548, jeg-elementor-kit/class/elements/options/class-button-option.php:239, jeg-elementor-kit/class/elements/options/class-category-list-option.php:325, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:269, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:300, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:576, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:583, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:643, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:859, jeg-elementor-kit/class/elements/options/class-countdown-option.php:539, jeg-elementor-kit/class/elements/options/class-countdown-option.php:588, jeg-elementor-kit/class/elements/options/class-countdown-option.php:798, jeg-elementor-kit/class/elements/options/class-countdown-option.php:895, jeg-elementor-kit/class/elements/options/class-countdown-option.php:944, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1154, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1251, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1300, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1510, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1607, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1656, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1876, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1907, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:368, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:569, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:778, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:841, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:865, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:644, jeg-elementor-kit/class/elements/options/class-gallery-option.php:963, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1249, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1289, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1835, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1864, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1895, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1930, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1964, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2015, jeg-elementor-kit/class/elements/options/class-heading-option.php:563, jeg-elementor-kit/class/elements/options/class-heading-option.php:855, jeg-elementor-kit/class/elements/options/class-heading-option.php:930, jeg-elementor-kit/class/elements/options/class-heading-option.php:1260, jeg-elementor-kit/class/elements/options/class-heading-option.php:1376, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:660, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:690, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1068, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1351, jeg-elementor-kit/class/elements/options/class-image-box-option.php:598, jeg-elementor-kit/class/elements/options/class-image-box-option.php:732, jeg-elementor-kit/class/elements/options/class-image-box-option.php:793, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:639, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:663, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:788, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:868, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1152, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:340, jeg-elementor-kit/class/elements/options/class-option-abstract.php:330, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:514, jeg-elementor-kit/class/elements/options/class-post-author-option.php:193, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1126, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1309, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1333, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1589, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1744, jeg-elementor-kit/class/elements/options/class-post-date-option.php:214, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:174, jeg-elementor-kit/class/elements/options/class-post-list-option.php:731, jeg-elementor-kit/class/elements/options/class-post-list-option.php:787, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1104, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:179, jeg-elementor-kit/class/elements/options/class-post-title-option.php:174, jeg-elementor-kit/class/elements/options/class-search-option.php:719, jeg-elementor-kit/class/elements/options/class-social-share-option.php:393, jeg-elementor-kit/class/elements/options/class-tabs-option.php:633, jeg-elementor-kit/class/elements/options/class-tabs-option.php:942, jeg-elementor-kit/class/elements/options/class-team-option.php:1062, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
207 |
msgid "Typography"
|
208 |
msgstr ""
|
209 |
|
@@ -255,27 +234,27 @@ msgstr ""
|
|
255 |
msgid "Close Box Shadow"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:405, jeg-elementor-kit/class/elements/options/class-accordion-option.php:464, jeg-elementor-kit/class/elements/options/class-button-option.php:230, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:359, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:227, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:315, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:395, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:659, jeg-elementor-kit/class/elements/options/class-countdown-option.php:555, jeg-elementor-kit/class/elements/options/class-countdown-option.php:629, jeg-elementor-kit/class/elements/options/class-countdown-option.php:911, jeg-elementor-kit/class/elements/options/class-countdown-option.php:985, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1267, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1341, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1623, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1697, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:526, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:727, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:736, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:519, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:627, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:707, jeg-elementor-kit/class/elements/options/class-gallery-option.php:904, jeg-elementor-kit/class/elements/options/class-gallery-option.php:945, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1086, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1169, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1757, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1871, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1991, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2270, jeg-elementor-kit/class/elements/options/class-heading-option.php:598, jeg-elementor-kit/class/elements/options/class-heading-option.php:878, jeg-elementor-kit/class/elements/options/class-heading-option.php:1189, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:635, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1315, jeg-elementor-kit/class/elements/options/class-image-box-option.php:399, jeg-elementor-kit/class/elements/options/class-image-box-option.php:564, jeg-elementor-kit/class/elements/options/class-image-box-option.php:838, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:698, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:884, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1107, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1125, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:319, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:756, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:993, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1162, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1223, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:412, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:607, jeg-elementor-kit/class/elements/options/class-option-abstract.php:377, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:387, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:655, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:288, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:372, jeg-elementor-kit/class/elements/options/class-post-block-option.php:753, jeg-elementor-kit/class/elements/options/class-post-block-option.php:820, jeg-elementor-kit/class/elements/options/class-post-block-option.php:883, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1036, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1162, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1340, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1571, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1735, jeg-elementor-kit/class/elements/options/class-post-list-option.php:490, jeg-elementor-kit/class/elements/options/class-post-list-option.php:722, jeg-elementor-kit/class/elements/options/class-post-list-option.php:831, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1095, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:251, jeg-elementor-kit/class/elements/options/class-search-option.php:368, jeg-elementor-kit/class/elements/options/class-search-option.php:641, jeg-elementor-kit/class/elements/options/class-search-option.php:851, jeg-elementor-kit/class/elements/options/class-social-share-option.php:444, jeg-elementor-kit/class/elements/options/class-tabs-option.php:319, jeg-elementor-kit/class/elements/options/class-tabs-option.php:716, jeg-elementor-kit/class/elements/options/class-tabs-option.php:982, jeg-elementor-kit/class/elements/options/class-team-option.php:639, jeg-elementor-kit/class/elements/options/class-team-option.php:923, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
259 |
msgid "Padding"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:415, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:767, jeg-elementor-kit/class/elements/options/class-team-option.php:986, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
263 |
msgid "Margin Bottom"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:429, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:687, jeg-elementor-kit/class/elements/options/class-category-list-option.php:309, jeg-elementor-kit/class/elements/options/class-category-list-option.php:332, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:945, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:276, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:307, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:592, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:631, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:866, jeg-elementor-kit/class/elements/options/class-countdown-option.php:506, jeg-elementor-kit/class/elements/options/class-countdown-option.php:580, jeg-elementor-kit/class/elements/options/class-countdown-option.php:783, jeg-elementor-kit/class/elements/options/class-countdown-option.php:862, jeg-elementor-kit/class/elements/options/class-countdown-option.php:936, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1139, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1218, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1292, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1495, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1574, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1648, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1868, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1899, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:770, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:610, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:671, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:829, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:857, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:636, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1225, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1265, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1353, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1887, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1909, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1956, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2097, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2190, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2236, jeg-elementor-kit/class/elements/options/class-heading-option.php:570, jeg-elementor-kit/class/elements/options/class-heading-option.php:805, jeg-elementor-kit/class/elements/options/class-heading-option.php:838, jeg-elementor-kit/class/elements/options/class-heading-option.php:898, jeg-elementor-kit/class/elements/options/class-heading-option.php:913, jeg-elementor-kit/class/elements/options/class-heading-option.php:1025, jeg-elementor-kit/class/elements/options/class-heading-option.php:1095, jeg-elementor-kit/class/elements/options/class-heading-option.php:1252, jeg-elementor-kit/class/elements/options/class-heading-option.php:1333, jeg-elementor-kit/class/elements/options/class-heading-option.php:1383, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:644, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:674, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:646, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:670, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:795, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:946, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:981, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1058, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1166, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1199, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:232, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:274, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:441, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:483, jeg-elementor-kit/class/elements/options/class-option-abstract.php:337, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1135, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1316, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1521, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1596, jeg-elementor-kit/class/elements/options/class-post-list-option.php:706, jeg-elementor-kit/class/elements/options/class-post-list-option.php:860, jeg-elementor-kit/class/elements/options/class-post-list-option.php:904, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1042, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:378, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:400, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:442, jeg-elementor-kit/class/elements/options/class-search-option.php:521, jeg-elementor-kit/class/elements/options/class-search-option.php:565, jeg-elementor-kit/class/elements/options/class-search-option.php:744, jeg-elementor-kit/class/elements/options/class-search-option.php:793, jeg-elementor-kit/class/elements/options/class-tabs-option.php:1042, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
267 |
msgid "Color"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:444, jeg-elementor-kit/class/elements/options/class-accordion-option.php:599, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:348, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:193, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:874, jeg-elementor-kit/class/elements/options/class-countdown-option.php:514, jeg-elementor-kit/class/elements/options/class-countdown-option.php:595, jeg-elementor-kit/class/elements/options/class-countdown-option.php:647, jeg-elementor-kit/class/elements/options/class-countdown-option.php:654, jeg-elementor-kit/class/elements/options/class-countdown-option.php:870, jeg-elementor-kit/class/elements/options/class-countdown-option.php:951, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1003, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1010, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1226, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1307, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1359, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1366, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1582, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1663, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1715, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1722, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:801, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:122, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:696, jeg-elementor-kit/class/elements/options/class-gallery-option.php:893, jeg-elementor-kit/class/elements/options/class-gallery-option.php:989, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1120, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1138, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1746, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1971, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2172, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2252, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1333, jeg-elementor-kit/class/elements/options/class-image-box-option.php:539, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:678, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:959, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:994, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1071, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1174, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1207, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:771, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:245, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:287, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:454, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:496, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:650, jeg-elementor-kit/class/elements/options/class-option-abstract.php:345, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:644, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:306, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:381, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:717, jeg-elementor-kit/class/elements/options/class-post-block-option.php:742, jeg-elementor-kit/class/elements/options/class-post-block-option.php:809, jeg-elementor-kit/class/elements/options/class-post-block-option.php:861, jeg-elementor-kit/class/elements/options/class-post-block-option.php:967, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1018, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1149, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1212, jeg-elementor-kit/class/elements/options/class-post-list-option.php:541, jeg-elementor-kit/class/elements/options/class-post-list-option.php:586, jeg-elementor-kit/class/elements/options/class-post-list-option.php:873, jeg-elementor-kit/class/elements/options/class-post-list-option.php:917, jeg-elementor-kit/class/elements/options/class-post-list-option.php:971, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:203, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:276, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:408, jeg-elementor-kit/class/elements/options/class-search-option.php:757, jeg-elementor-kit/class/elements/options/class-search-option.php:806, jeg-elementor-kit/class/elements/options/class-tabs-option.php:745, jeg-elementor-kit/class/elements/options/class-tabs-option.php:811, jeg-elementor-kit/class/elements/options/class-tabs-option.php:877, jeg-elementor-kit/class/elements/options/class-tabs-option.php:949, jeg-elementor-kit/class/elements/options/class-team-option.php:905, jeg-elementor-kit/class/elements/options/class-team-option.php:1024, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
271 |
msgid "Background"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:455, jeg-elementor-kit/class/elements/options/class-accordion-option.php:480, jeg-elementor-kit/class/elements/options/class-button-option.php:351, jeg-elementor-kit/class/elements/options/class-button-option.php:378, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:936, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:236, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:650, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:885, jeg-elementor-kit/class/elements/options/class-countdown-option.php:564, jeg-elementor-kit/class/elements/options/class-countdown-option.php:638, jeg-elementor-kit/class/elements/options/class-countdown-option.php:679, jeg-elementor-kit/class/elements/options/class-countdown-option.php:920, jeg-elementor-kit/class/elements/options/class-countdown-option.php:994, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1035, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1276, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1350, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1391, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1632, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1706, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1747, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:792, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:753, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:730, jeg-elementor-kit/class/elements/options/class-gallery-option.php:922, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1000, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1104, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1730, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1766, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2000, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2110, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2213, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2279, jeg-elementor-kit/class/elements/options/class-heading-option.php:607, jeg-elementor-kit/class/elements/options/class-heading-option.php:1231, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1324, jeg-elementor-kit/class/elements/options/class-image-box-option.php:408, jeg-elementor-kit/class/elements/options/class-image-box-option.php:573, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:689, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:875, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1116, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1143, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:337, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:782, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:421, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:616, jeg-elementor-kit/class/elements/options/class-option-abstract.php:395, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:405, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:664, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:297, jeg-elementor-kit/class/elements/options/class-post-author-option.php:429, jeg-elementor-kit/class/elements/options/class-post-block-option.php:771, jeg-elementor-kit/class/elements/options/class-post-block-option.php:838, jeg-elementor-kit/class/elements/options/class-post-block-option.php:901, jeg-elementor-kit/class/elements/options/class-post-block-option.php:978, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1054, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1189, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:226, jeg-elementor-kit/class/elements/options/class-post-list-option.php:559, jeg-elementor-kit/class/elements/options/class-post-list-option.php:604, jeg-elementor-kit/class/elements/options/class-post-list-option.php:754, jeg-elementor-kit/class/elements/options/class-post-list-option.php:884, jeg-elementor-kit/class/elements/options/class-post-list-option.php:928, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1033, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:242, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:369, jeg-elementor-kit/class/elements/options/class-search-option.php:342, jeg-elementor-kit/class/elements/options/class-search-option.php:632, jeg-elementor-kit/class/elements/options/class-search-option.php:841, jeg-elementor-kit/class/elements/options/class-social-share-option.php:474, jeg-elementor-kit/class/elements/options/class-tabs-option.php:337, jeg-elementor-kit/class/elements/options/class-tabs-option.php:791, jeg-elementor-kit/class/elements/options/class-tabs-option.php:857, jeg-elementor-kit/class/elements/options/class-tabs-option.php:923, jeg-elementor-kit/class/elements/options/class-tabs-option.php:1000, jeg-elementor-kit/class/elements/options/class-team-option.php:657, jeg-elementor-kit/class/elements/options/class-team-option.php:939, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
275 |
msgid "Border Radius"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:496, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:368, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:218, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:284, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:327, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:668, jeg-elementor-kit/class/elements/options/class-countdown-option.php:546, jeg-elementor-kit/class/elements/options/class-countdown-option.php:620, jeg-elementor-kit/class/elements/options/class-countdown-option.php:902, jeg-elementor-kit/class/elements/options/class-countdown-option.php:976, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1258, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1332, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1614, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1688, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1883, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1914, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:536, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:737, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:510, jeg-elementor-kit/class/elements/options/class-gallery-option.php:913, jeg-elementor-kit/class/elements/options/class-gallery-option.php:954, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1095, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1982, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2119, jeg-elementor-kit/class/elements/options/class-heading-option.php:589, jeg-elementor-kit/class/elements/options/class-heading-option.php:937, jeg-elementor-kit/class/elements/options/class-heading-option.php:1065, jeg-elementor-kit/class/elements/options/class-heading-option.php:1135, jeg-elementor-kit/class/elements/options/class-heading-option.php:1210, jeg-elementor-kit/class/elements/options/class-heading-option.php:1267, jeg-elementor-kit/class/elements/options/class-heading-option.php:1324, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:626, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:697, jeg-elementor-kit/class/elements/options/class-image-box-option.php:589, jeg-elementor-kit/class/elements/options/class-image-box-option.php:723, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:654, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:893, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1134, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:328, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:985, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1154, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1215, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:403, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:590, jeg-elementor-kit/class/elements/options/class-option-abstract.php:386, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:396, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:279, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:505, jeg-elementor-kit/class/elements/options/class-post-block-option.php:762, jeg-elementor-kit/class/elements/options/class-post-block-option.php:829, jeg-elementor-kit/class/elements/options/class-post-block-option.php:892, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1045, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1175, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1230, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1324, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1349, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1580, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1643, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1726, jeg-elementor-kit/class/elements/options/class-post-list-option.php:499, jeg-elementor-kit/class/elements/options/class-post-list-option.php:840, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1024, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1086, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:267, jeg-elementor-kit/class/elements/options/class-search-option.php:351, jeg-elementor-kit/class/elements/options/class-search-option.php:650, jeg-elementor-kit/class/elements/options/class-search-option.php:860, jeg-elementor-kit/class/elements/options/class-social-share-option.php:457, jeg-elementor-kit/class/elements/options/class-tabs-option.php:328, jeg-elementor-kit/class/elements/options/class-tabs-option.php:725, jeg-elementor-kit/class/elements/options/class-tabs-option.php:991, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
279 |
msgid "Margin"
|
280 |
msgstr ""
|
281 |
|
@@ -379,11 +358,11 @@ msgstr ""
|
|
379 |
msgid "HTML Tag"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:395, jeg-elementor-kit/class/elements/options/class-button-option.php:171, jeg-elementor-kit/class/elements/options/class-category-list-option.php:225, jeg-elementor-kit/class/elements/options/class-category-list-option.php:260, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:169, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:245, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1837, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:150, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:545, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:746, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:136, jeg-elementor-kit/class/elements/options/class-gallery-option.php:857, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1191, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1789, jeg-elementor-kit/class/elements/options/class-heading-option.php:527, jeg-elementor-kit/class/elements/options/class-image-box-option.php:265, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:143, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:315, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:524, jeg-elementor-kit/class/elements/options/class-option-abstract.php:306, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:328, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:348, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:481, jeg-elementor-kit/class/elements/options/class-post-author-option.php:169, jeg-elementor-kit/class/elements/options/class-post-block-option.php:994, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1806, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1955, jeg-elementor-kit/class/elements/options/class-post-date-option.php:190, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:150, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:140, jeg-elementor-kit/class/elements/options/class-post-list-option.php:466, jeg-elementor-kit/class/elements/options/class-post-list-option.php:682, jeg-elementor-kit/class/elements/options/class-post-list-option.php:763, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1166, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:155, jeg-elementor-kit/class/elements/options/class-post-title-option.php:150, jeg-elementor-kit/class/elements/options/class-search-option.php:219, jeg-elementor-kit/class/elements/options/class-search-option.php:385, jeg-elementor-kit/class/elements/options/class-social-share-option.php:178, jeg-elementor-kit/class/elements/options/class-social-share-option.php:407, jeg-elementor-kit/class/elements/options/class-team-option.php:577, jeg-elementor-kit/class/elements/options/class-team-option.php:612, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
383 |
msgid "Alignment"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:403, jeg-elementor-kit/class/elements/options/class-button-option.php:180, jeg-elementor-kit/class/elements/options/class-category-list-option.php:233, jeg-elementor-kit/class/elements/options/class-category-list-option.php:268, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:177, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:253, jeg-elementor-kit/class/elements/options/class-countdown-option.php:424, jeg-elementor-kit/class/elements/options/class-countdown-option.php:451, jeg-elementor-kit/class/elements/options/class-countdown-option.php:697, jeg-elementor-kit/class/elements/options/class-countdown-option.php:723, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1053, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1079, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1409, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1435, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1765, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1791, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1846, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:159, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:554, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:755, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:144, jeg-elementor-kit/class/elements/options/class-gallery-option.php:865, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1199, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1797, jeg-elementor-kit/class/elements/options/class-heading-option.php:535, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:206, jeg-elementor-kit/class/elements/options/class-image-box-option.php:273, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:812, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:845, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:152, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:323, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:532, jeg-elementor-kit/class/elements/options/class-option-abstract.php:314, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:336, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:360, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:356, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:489, jeg-elementor-kit/class/elements/options/class-post-author-option.php:177, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1002, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1106, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1814, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1959, jeg-elementor-kit/class/elements/options/class-post-date-option.php:198, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:158, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:148, jeg-elementor-kit/class/elements/options/class-post-list-option.php:474, jeg-elementor-kit/class/elements/options/class-post-list-option.php:690, jeg-elementor-kit/class/elements/options/class-post-list-option.php:771, jeg-elementor-kit/class/elements/options/class-post-list-option.php:955, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1174, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:163, jeg-elementor-kit/class/elements/options/class-post-title-option.php:158, jeg-elementor-kit/class/elements/options/class-search-option.php:227, jeg-elementor-kit/class/elements/options/class-search-option.php:394, jeg-elementor-kit/class/elements/options/class-social-share-option.php:186, jeg-elementor-kit/class/elements/options/class-social-share-option.php:415, jeg-elementor-kit/class/elements/options/class-tabs-option.php:392, jeg-elementor-kit/class/elements/options/class-tabs-option.php:431, jeg-elementor-kit/class/elements/options/class-tabs-option.php:470, jeg-elementor-kit/class/elements/options/class-tabs-option.php:514, jeg-elementor-kit/class/elements/options/class-tabs-option.php:550, jeg-elementor-kit/class/elements/options/class-tabs-option.php:601, jeg-elementor-kit/class/elements/options/class-team-option.php:215, jeg-elementor-kit/class/elements/options/class-team-option.php:620, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
387 |
msgid "Center"
|
388 |
msgstr ""
|
389 |
|
@@ -391,11 +370,11 @@ msgstr ""
|
|
391 |
msgid "Color Style"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:447, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:571, jeg-elementor-kit/class/elements/options/class-button-option.php:258, jeg-elementor-kit/class/elements/options/class-button-option.php:338, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:449, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:637, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:409, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:752, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:405, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:606, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:183, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:575, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:342, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:757, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1371, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1563, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:501, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:761, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1118, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1244, jeg-elementor-kit/class/elements/options/class-image-box-option.php:454, jeg-elementor-kit/class/elements/options/class-image-box-option.php:647, jeg-elementor-kit/class/elements/options/class-image-box-option.php:744, jeg-elementor-kit/class/elements/options/class-image-box-option.php:852, jeg-elementor-kit/class/elements/options/class-image-box-option.php:1010, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:940, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:385, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:624, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:878, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1047, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:226, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:435, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:443, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:754, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:564, jeg-elementor-kit/class/elements/options/class-post-author-option.php:221, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1248, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1400, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1835, jeg-elementor-kit/class/elements/options/class-post-date-option.php:228, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:188, jeg-elementor-kit/class/elements/options/class-post-list-option.php:535, jeg-elementor-kit/class/elements/options/class-post-list-option.php:854, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1195, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:193, jeg-elementor-kit/class/elements/options/class-post-title-option.php:199, jeg-elementor-kit/class/elements/options/class-search-option.php:252, jeg-elementor-kit/class/elements/options/class-search-option.php:504, jeg-elementor-kit/class/elements/options/class-search-option.php:738, jeg-elementor-kit/class/elements/options/class-social-share-option.php:264, jeg-elementor-kit/class/elements/options/class-social-share-option.php:584, jeg-elementor-kit/class/elements/options/class-tabs-option.php:739, jeg-elementor-kit/class/elements/options/class-team-option.php:384, jeg-elementor-kit/class/elements/options/class-team-option.php:731, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
395 |
msgid "Normal"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:453, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:577, jeg-elementor-kit/class/elements/options/class-button-option.php:264, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:643, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:758, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:411, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:612, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:348, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1390, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:767, jeg-elementor-kit/class/elements/options/class-image-box-option.php:653, jeg-elementor-kit/class/elements/options/class-image-box-option.php:750, jeg-elementor-kit/class/elements/options/class-image-box-option.php:858, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:570, jeg-elementor-kit/class/elements/options/class-post-author-option.php:234, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1263, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1417, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1840, jeg-elementor-kit/class/elements/options/class-post-date-option.php:234, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:194, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1200, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:199, jeg-elementor-kit/class/elements/options/class-post-title-option.php:205, jeg-elementor-kit/class/elements/options/class-search-option.php:258, jeg-elementor-kit/class/elements/options/class-social-share-option.php:269, jeg-elementor-kit/class/elements/options/class-social-share-option.php:590, jeg-elementor-kit/class/elements/options/class-team-option.php:389, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
399 |
msgid "Normal Color"
|
400 |
msgstr ""
|
401 |
|
@@ -407,11 +386,11 @@ msgstr ""
|
|
407 |
msgid "Normal Text Shadow"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:495, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:621, jeg-elementor-kit/class/elements/options/class-button-option.php:293, jeg-elementor-kit/class/elements/options/class-button-option.php:365, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:529, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:748, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:463, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:803, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:463, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:664, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:240, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:636, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:391, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:779, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1477, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1674, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:555, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:850, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1176, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1266, jeg-elementor-kit/class/elements/options/class-image-box-option.php:482, jeg-elementor-kit/class/elements/options/class-image-box-option.php:679, jeg-elementor-kit/class/elements/options/class-image-box-option.php:763, jeg-elementor-kit/class/elements/options/class-image-box-option.php:910, jeg-elementor-kit/class/elements/options/class-image-box-option.php:1036, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:975, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:427, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:659, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:929, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1098, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:268, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:477, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:479, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:638, jeg-elementor-kit/class/elements/options/class-post-author-option.php:274, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1276, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1458, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1892, jeg-elementor-kit/class/elements/options/class-post-date-option.php:260, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:220, jeg-elementor-kit/class/elements/options/class-post-list-option.php:580, jeg-elementor-kit/class/elements/options/class-post-list-option.php:898, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1252, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:223, jeg-elementor-kit/class/elements/options/class-post-title-option.php:253, jeg-elementor-kit/class/elements/options/class-search-option.php:287, jeg-elementor-kit/class/elements/options/class-search-option.php:787, jeg-elementor-kit/class/elements/options/class-social-share-option.php:312, jeg-elementor-kit/class/elements/options/class-social-share-option.php:619, jeg-elementor-kit/class/elements/options/class-tabs-option.php:805, jeg-elementor-kit/class/elements/options/class-team-option.php:432, jeg-elementor-kit/class/elements/options/class-team-option.php:769, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
411 |
msgid "Hover"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:501, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:627, jeg-elementor-kit/class/elements/options/class-button-option.php:299, jeg-elementor-kit/class/elements/options/class-category-list-option.php:317, jeg-elementor-kit/class/elements/options/class-category-list-option.php:345, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:754, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:809, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:469, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:670, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:397, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1237, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1277, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1496, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2244, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:856, jeg-elementor-kit/class/elements/options/class-image-box-option.php:685, jeg-elementor-kit/class/elements/options/class-image-box-option.php:769, jeg-elementor-kit/class/elements/options/class-image-box-option.php:916, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:644, jeg-elementor-kit/class/elements/options/class-post-author-option.php:287, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1291, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1475, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1898, jeg-elementor-kit/class/elements/options/class-post-date-option.php:266, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:226, jeg-elementor-kit/class/elements/options/class-post-list-option.php:714, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1055, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1258, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:229, jeg-elementor-kit/class/elements/options/class-post-title-option.php:259, jeg-elementor-kit/class/elements/options/class-search-option.php:293, jeg-elementor-kit/class/elements/options/class-social-share-option.php:317, jeg-elementor-kit/class/elements/options/class-social-share-option.php:625, jeg-elementor-kit/class/elements/options/class-team-option.php:437, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
415 |
msgid "Hover Color"
|
416 |
msgstr ""
|
417 |
|
@@ -419,7 +398,7 @@ msgstr ""
|
|
419 |
msgid "Hover Gradient"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:531, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:659, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:700, jeg-elementor-kit/class/elements/options/class-post-author-option.php:306, jeg-elementor-kit/class/elements/options/class-post-date-option.php:278, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:238, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:241, jeg-elementor-kit/class/elements/options/class-post-title-option.php:293, jeg-elementor-kit/class/elements/options/class-social-share-option.php:345, jeg-elementor-kit/class/elements/options/class-team-option.php:470, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
423 |
msgid "Hover Text Shadow"
|
424 |
msgstr ""
|
425 |
|
@@ -431,7 +410,7 @@ msgstr ""
|
|
431 |
msgid "Gradient Color 2"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:735, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:823, jeg-elementor-kit/class/elements/options/class-button-option.php:215, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:908, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:339, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:683, jeg-elementor-kit/class/elements/options/class-countdown-option.php:739, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1095, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1451, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1807, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:820, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2082, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2198, jeg-elementor-kit/class/elements/options/class-heading-option.php:668, jeg-elementor-kit/class/elements/options/class-heading-option.php:1043, jeg-elementor-kit/class/elements/options/class-heading-option.php:1113, jeg-elementor-kit/class/elements/options/class-heading-option.php:1276, jeg-elementor-kit/class/elements/options/class-image-box-option.php:988, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:721, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:916, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:839, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1008, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1170, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:381, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:548, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:661, jeg-elementor-kit/class/elements/options/class-post-block-option.php:924, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1751, jeg-elementor-kit/class/elements/options/class-post-list-option.php:508, jeg-elementor-kit/class/elements/options/class-post-list-option.php:738, jeg-elementor-kit/class/elements/options/class-post-list-option.php:996, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1111, jeg-elementor-kit/class/elements/options/class-search-option.php:416, jeg-elementor-kit/class/elements/options/class-search-option.php:869, jeg-elementor-kit/class/elements/options/class-social-share-option.php:489, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
435 |
msgid "Width"
|
436 |
msgstr ""
|
437 |
|
@@ -523,15 +502,15 @@ msgstr ""
|
|
523 |
msgid "Hover Background Color"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: jeg-elementor-kit/class/elements/options/class-button-option.php:344, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:500, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:714, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:440, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:777, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:435, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:636, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:370, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1009, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1444, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1602, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:534, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:822, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1148, jeg-elementor-kit/class/elements/options/class-image-box-option.php:882, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:467, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:612, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1439, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1873, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1233, jeg-elementor-kit/class/elements/options/class-social-share-option.php:290, jeg-elementor-kit/class/elements/options/class-team-option.php:410, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
527 |
msgid "Normal Border"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: jeg-elementor-kit/class/elements/options/class-button-option.php:371, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:580, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:826, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:494, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:828, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:493, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:694, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:419, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1525, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1713, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:588, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:911, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1206, jeg-elementor-kit/class/elements/options/class-image-box-option.php:940, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:503, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:686, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1497, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1931, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1291, jeg-elementor-kit/class/elements/options/class-social-share-option.php:333, jeg-elementor-kit/class/elements/options/class-team-option.php:458, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
531 |
msgid "Hover Border"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: jeg-elementor-kit/class/elements/options/class-button-option.php:404, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:375, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:576, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:721, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:451, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1298, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2063, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:950, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1040, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:854, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1023, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:855, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:540, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1377, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1787, jeg-elementor-kit/class/elements/options/class-post-list-option.php:794, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1147, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:455, jeg-elementor-kit/class/elements/options/class-search-option.php:192, jeg-elementor-kit/class/elements/options/class-search-option.php:693, jeg-elementor-kit/class/elements/options/class-social-share-option.php:558, jeg-elementor-kit/class/elements/options/class-tabs-option.php:662, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
535 |
msgid "Icon Size"
|
536 |
msgstr ""
|
537 |
|
@@ -599,11 +578,11 @@ msgstr ""
|
|
599 |
msgid "Number Post Desc"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:188, jeg-elementor-kit/class/elements/options/class-post-list-option.php:188, jeg-elementor-kit/class/elements/options/class-tabs-option.php:129, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
603 |
msgid "Vertical"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:189, jeg-elementor-kit/class/elements/options/class-post-list-option.php:189, jeg-elementor-kit/class/elements/options/class-tabs-option.php:128, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
607 |
msgid "Horizontal"
|
608 |
msgstr ""
|
609 |
|
@@ -623,7 +602,7 @@ msgstr ""
|
|
623 |
msgid "Size"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:376, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:726, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1010, jeg-elementor-kit/class/elements/options/class-search-option.php:464, jeg-elementor-kit/class/elements/options/class-social-share-option.php:532, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
627 |
msgid "Line Height"
|
628 |
msgstr ""
|
629 |
|
@@ -675,7 +654,7 @@ msgstr ""
|
|
675 |
msgid "Show Arrow"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:194, jeg-elementor-kit/class/elements/options/class-heading-option.php:1355, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:468, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:812, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:625, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1098, jeg-elementor-kit/class/elements/options/class-team-option.php:115, jeg-elementor-kit/class/elements/options/class-team-option.php:267, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
679 |
msgid "Position"
|
680 |
msgstr ""
|
681 |
|
@@ -743,7 +722,7 @@ msgstr ""
|
|
743 |
msgid "Fix Height"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:398, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:922, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:355, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:380, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:705, jeg-elementor-kit/class/elements/options/class-countdown-option.php:754, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1110, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1466, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1822, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:835, jeg-elementor-kit/class/elements/options/class-heading-option.php:691, jeg-elementor-kit/class/elements/options/class-heading-option.php:960, jeg-elementor-kit/class/elements/options/class-heading-option.php:1300, jeg-elementor-kit/class/elements/options/class-image-box-option.php:417, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1184, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:686, jeg-elementor-kit/class/elements/options/class-post-list-option.php:982, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:214, jeg-elementor-kit/class/elements/options/class-search-option.php:440, jeg-elementor-kit/class/elements/options/class-search-option.php:678, jeg-elementor-kit/class/elements/options/class-search-option.php:884, jeg-elementor-kit/class/elements/options/class-social-share-option.php:511, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
747 |
msgid "Height"
|
748 |
msgstr ""
|
749 |
|
@@ -771,7 +750,7 @@ msgstr ""
|
|
771 |
msgid "None"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:455, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:656, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:415, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:766, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:424, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:625, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:763, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1377, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1569, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:507, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1137, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1250, jeg-elementor-kit/class/elements/options/class-image-box-option.php:871, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:449, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:583, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1406, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1853, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1213, jeg-elementor-kit/class/elements/options/class-search-option.php:271, jeg-elementor-kit/class/elements/options/class-social-share-option.php:603, jeg-elementor-kit/class/elements/options/class-team-option.php:744, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
775 |
msgid "Normal Background"
|
776 |
msgstr ""
|
777 |
|
@@ -783,15 +762,15 @@ msgstr ""
|
|
783 |
msgid "Normal Margin"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:484, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:693, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:428, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:449, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:650, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:377, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1431, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1593, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:541, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:829, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1155, jeg-elementor-kit/class/elements/options/class-image-box-option.php:896, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:603, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1430, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1864, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1224, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
787 |
msgid "Normal Border Radius"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:493, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:705, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:449, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:784, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:442, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:643, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1016, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1662, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:527, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:838, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1164, jeg-elementor-kit/class/elements/options/class-image-box-option.php:889, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:460, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:619, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1446, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1880, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1240, jeg-elementor-kit/class/elements/options/class-social-share-option.php:296, jeg-elementor-kit/class/elements/options/class-team-option.php:416, jeg-elementor-kit/class/elements/options/class-team-option.php:757, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
791 |
msgid "Normal Box Shadow"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:535, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:767, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:469, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:817, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:482, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:683, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:785, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1483, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1680, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:561, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1195, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1272, jeg-elementor-kit/class/elements/options/class-image-box-option.php:929, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:485, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:657, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1464, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1911, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1271, jeg-elementor-kit/class/elements/options/class-search-option.php:306, jeg-elementor-kit/class/elements/options/class-social-share-option.php:638, jeg-elementor-kit/class/elements/options/class-team-option.php:782, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
795 |
msgid "Hover Background"
|
796 |
msgstr ""
|
797 |
|
@@ -803,11 +782,11 @@ msgstr ""
|
|
803 |
msgid "Hover Margin"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:564, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:805, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:482, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:507, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:708, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:426, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1511, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1704, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:595, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:924, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1213, jeg-elementor-kit/class/elements/options/class-image-box-option.php:954, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:677, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1488, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1922, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1282, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
807 |
msgid "Hover Border Radius"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:573, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:817, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:503, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:835, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:500, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:701, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:581, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:933, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1222, jeg-elementor-kit/class/elements/options/class-image-box-option.php:947, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:496, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1504, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1938, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1298, jeg-elementor-kit/class/elements/options/class-social-share-option.php:339, jeg-elementor-kit/class/elements/options/class-team-option.php:464, jeg-elementor-kit/class/elements/options/class-team-option.php:795, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
811 |
msgid "Hover Box Shadow"
|
812 |
msgstr ""
|
813 |
|
@@ -815,7 +794,7 @@ msgstr ""
|
|
815 |
msgid "Hover Opacity"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:614, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:611, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1082, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
819 |
msgid "Font Size"
|
820 |
msgstr ""
|
821 |
|
@@ -1139,7 +1118,7 @@ msgstr ""
|
|
1139 |
msgid "Icon Type"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: jeg-elementor-kit/class/elements/options/class-feature-list-option.php:128, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:136, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:232, jeg-elementor-kit/class/elements/options/class-gallery-option.php:689, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:270, jeg-elementor-kit/class/elements/options/class-image-box-option.php:75, jeg-elementor-kit/class/elements/options/class-image-box-option.php:97, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:146, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:233, jeg-elementor-kit/class/elements/options/class-post-list-option.php:118, jeg-elementor-kit/class/elements/options/class-tabs-option.php:185, jeg-elementor-kit/class/elements/options/class-team-option.php:103, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
1143 |
msgid "Image"
|
1144 |
msgstr ""
|
1145 |
|
@@ -2159,7 +2138,7 @@ msgstr ""
|
|
2159 |
msgid "Successfully listed this email"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:746, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
2163 |
msgid "Margin Right"
|
2164 |
msgstr ""
|
2165 |
|
@@ -3399,7 +3378,7 @@ msgstr ""
|
|
3399 |
msgid "Line"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: jeg-elementor-kit/class/elements/options/class-social-share-option.php:430, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3403 |
msgid "Display"
|
3404 |
msgstr ""
|
3405 |
|
@@ -3487,7 +3466,7 @@ msgstr ""
|
|
3487 |
msgid "Team Member"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:80, jeg-elementor-kit/class/elements/options/class-team-option.php:127, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3491 |
msgid "Social Profiles"
|
3492 |
msgstr ""
|
3493 |
|
@@ -3495,7 +3474,7 @@ msgstr ""
|
|
3495 |
msgid "Pop Up Detail"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:109, jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3499 |
msgid "Name"
|
3500 |
msgstr ""
|
3501 |
|
@@ -3575,31 +3554,31 @@ msgstr ""
|
|
3575 |
msgid "Enable Overlay"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3579 |
msgid "Text Direction"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3583 |
msgid "Up"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3587 |
msgid "Down"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3591 |
msgid "Break Each Word"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3595 |
msgid "Fix Height & Width"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3599 |
msgid "Modal"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: jeg-elementor-kit/class/elements/options/class-team-option.php:
|
3603 |
msgid "Phone and Email"
|
3604 |
msgstr ""
|
3605 |
|
@@ -3818,3 +3797,24 @@ msgstr ""
|
|
3818 |
#: jeg-elementor-kit/class/elements/views/class-post-block-view.php:357, jeg-elementor-kit/class/elements/views/class-post-date-view.php:30, jeg-elementor-kit/class/elements/views/class-post-list-view.php:144
|
3819 |
msgid " - Updated on "
|
3820 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
#: jeg-elementor-kit/class/ajax/class-ajax.php:120, jeg-elementor-kit/class/ajax/class-ajax.php:110
|
18 |
msgid "Success Save Data"
|
19 |
msgstr ""
|
62 |
msgid "The blur effect will be set on the widget container. Make sure to set background to transparent to see the blur effect."
|
63 |
msgstr ""
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:48
|
66 |
msgid "JKit - Accordion"
|
67 |
msgstr ""
|
78 |
msgid "Title"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:98, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:850, jeg-elementor-kit/class/elements/options/class-heading-option.php:85, jeg-elementor-kit/class/elements/options/class-heading-option.php:138, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:328, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:667, jeg-elementor-kit/class/elements/options/class-image-box-option.php:259, jeg-elementor-kit/class/elements/options/class-image-box-option.php:716, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:289, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:585, jeg-elementor-kit/class/elements/options/class-team-option.php:121, jeg-elementor-kit/class/elements/options/class-team-option.php:280, jeg-elementor-kit/class/elements/options/class-team-option.php:1539, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:103
|
82 |
msgid "Description"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:104, jeg-elementor-kit/class/elements/options/class-accordion-option.php:473, jeg-elementor-kit/class/elements/options/class-button-option.php:93, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:204, jeg-elementor-kit/class/elements/options/class-countdown-option.php:525, jeg-elementor-kit/class/elements/options/class-countdown-option.php:606, jeg-elementor-kit/class/elements/options/class-countdown-option.php:665, jeg-elementor-kit/class/elements/options/class-countdown-option.php:881, jeg-elementor-kit/class/elements/options/class-countdown-option.php:962, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1021, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1237, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1318, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1377, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1593, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1674, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1733, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:785, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:623, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:684, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:723, jeg-elementor-kit/class/elements/options/class-gallery-option.php:931, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1113, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1182, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1739, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1775, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2263, jeg-elementor-kit/class/elements/options/class-heading-option.php:616, jeg-elementor-kit/class/elements/options/class-heading-option.php:637, jeg-elementor-kit/class/elements/options/class-heading-option.php:946, jeg-elementor-kit/class/elements/options/class-heading-option.php:1170, jeg-elementor-kit/class/elements/options/class-image-box-option.php:550, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:707, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:902, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1100, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1185, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1218, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:764, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:256, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:298, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:465, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:507, jeg-elementor-kit/class/elements/options/class-option-abstract.php:356, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:673, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:317, jeg-elementor-kit/class/elements/options/class-post-author-option.php:415, jeg-elementor-kit/class/elements/options/class-post-block-option.php:780, jeg-elementor-kit/class/elements/options/class-post-block-option.php:847, jeg-elementor-kit/class/elements/options/class-post-block-option.php:910, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1070, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1198, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:219, jeg-elementor-kit/class/elements/options/class-post-list-option.php:552, jeg-elementor-kit/class/elements/options/class-post-list-option.php:597, jeg-elementor-kit/class/elements/options/class-search-option.php:327, jeg-elementor-kit/class/elements/options/class-search-option.php:529, jeg-elementor-kit/class/elements/options/class-search-option.php:573, jeg-elementor-kit/class/elements/options/class-search-option.php:768, jeg-elementor-kit/class/elements/options/class-search-option.php:817, jeg-elementor-kit/class/elements/options/class-tabs-option.php:312, jeg-elementor-kit/class/elements/options/class-tabs-option.php:784, jeg-elementor-kit/class/elements/options/class-tabs-option.php:850, jeg-elementor-kit/class/elements/options/class-tabs-option.php:916, jeg-elementor-kit/class/elements/options/class-tabs-option.php:975, jeg-elementor-kit/class/elements/options/class-team-option.php:669, jeg-elementor-kit/class/elements/options/class-team-option.php:958, jeg-elementor-kit/class/elements/options/class-team-option.php:1920, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:589, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1189, jeg-elementor-kit/class/elements/options/class-video-button-option.php:99, jeg-elementor-kit/class/elements/options/class-video-button-option.php:622, jeg-elementor-kit/class/elements/options/class-video-button-option.php:652
|
86 |
msgid "Border"
|
87 |
msgstr ""
|
88 |
|
142 |
msgid "Box Icon"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:177, jeg-elementor-kit/class/elements/options/class-accordion-option.php:489, jeg-elementor-kit/class/elements/options/class-button-option.php:397, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:211, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:894, jeg-elementor-kit/class/elements/options/class-countdown-option.php:532, jeg-elementor-kit/class/elements/options/class-countdown-option.php:613, jeg-elementor-kit/class/elements/options/class-countdown-option.php:672, jeg-elementor-kit/class/elements/options/class-countdown-option.php:888, jeg-elementor-kit/class/elements/options/class-countdown-option.php:969, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1028, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1244, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1325, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1384, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1600, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1681, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1740, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:813, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:528, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:716, jeg-elementor-kit/class/elements/options/class-gallery-option.php:938, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1131, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1782, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2128, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2222, jeg-elementor-kit/class/elements/options/class-heading-option.php:623, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1344, jeg-elementor-kit/class/elements/options/class-image-box-option.php:557, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:714, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:909, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:805, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:396, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:583, jeg-elementor-kit/class/elements/options/class-option-abstract.php:363, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:680, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:324, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:693, jeg-elementor-kit/class/elements/options/class-post-author-option.php:401, jeg-elementor-kit/class/elements/options/class-post-block-option.php:787, jeg-elementor-kit/class/elements/options/class-post-block-option.php:854, jeg-elementor-kit/class/elements/options/class-post-block-option.php:917, jeg-elementor-kit/class/elements/options/class-post-block-option.php:987, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1084, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1205, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:212, jeg-elementor-kit/class/elements/options/class-post-list-option.php:568, jeg-elementor-kit/class/elements/options/class-post-list-option.php:613, jeg-elementor-kit/class/elements/options/class-search-option.php:335, jeg-elementor-kit/class/elements/options/class-search-option.php:536, jeg-elementor-kit/class/elements/options/class-search-option.php:580, jeg-elementor-kit/class/elements/options/class-search-option.php:775, jeg-elementor-kit/class/elements/options/class-search-option.php:824, jeg-elementor-kit/class/elements/options/class-tabs-option.php:305, jeg-elementor-kit/class/elements/options/class-tabs-option.php:968, jeg-elementor-kit/class/elements/options/class-team-option.php:972, jeg-elementor-kit/class/elements/options/class-team-option.php:1617, jeg-elementor-kit/class/elements/options/class-team-option.php:1927, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:582, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1205, jeg-elementor-kit/class/elements/options/class-video-button-option.php:681
|
146 |
msgid "Box Shadow"
|
147 |
msgstr ""
|
148 |
|
150 |
msgid "Icon Position"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:187, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:399, jeg-elementor-kit/class/elements/options/class-button-option.php:176, jeg-elementor-kit/class/elements/options/class-category-list-option.php:229, jeg-elementor-kit/class/elements/options/class-category-list-option.php:264, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:173, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:249, jeg-elementor-kit/class/elements/options/class-countdown-option.php:447, jeg-elementor-kit/class/elements/options/class-countdown-option.php:719, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1075, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1431, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1787, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1842, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:155, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:550, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:751, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:406, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:140, jeg-elementor-kit/class/elements/options/class-gallery-option.php:861, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1195, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1793, jeg-elementor-kit/class/elements/options/class-heading-option.php:531, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:191, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:202, jeg-elementor-kit/class/elements/options/class-image-box-option.php:269, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:841, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:148, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:816, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:319, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:528, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:638, jeg-elementor-kit/class/elements/options/class-option-abstract.php:310, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:332, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:356, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:352, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:485, jeg-elementor-kit/class/elements/options/class-post-author-option.php:173, jeg-elementor-kit/class/elements/options/class-post-block-option.php:998, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1102, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1810, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1958, jeg-elementor-kit/class/elements/options/class-post-date-option.php:194, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:154, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:144, jeg-elementor-kit/class/elements/options/class-post-list-option.php:470, jeg-elementor-kit/class/elements/options/class-post-list-option.php:686, jeg-elementor-kit/class/elements/options/class-post-list-option.php:767, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1170, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:159, jeg-elementor-kit/class/elements/options/class-post-title-option.php:154, jeg-elementor-kit/class/elements/options/class-search-option.php:223, jeg-elementor-kit/class/elements/options/class-search-option.php:390, jeg-elementor-kit/class/elements/options/class-social-share-option.php:182, jeg-elementor-kit/class/elements/options/class-social-share-option.php:411, jeg-elementor-kit/class/elements/options/class-tabs-option.php:388, jeg-elementor-kit/class/elements/options/class-tabs-option.php:510, jeg-elementor-kit/class/elements/options/class-tabs-option.php:546, jeg-elementor-kit/class/elements/options/class-tabs-option.php:597, jeg-elementor-kit/class/elements/options/class-team-option.php:581, jeg-elementor-kit/class/elements/options/class-team-option.php:616, jeg-elementor-kit/class/elements/options/class-team-option.php:1287, jeg-elementor-kit/class/elements/options/class-team-option.php:1635, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:521, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:724, jeg-elementor-kit/class/elements/options/class-video-button-option.php:347
|
154 |
msgid "Left"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:188, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:407, jeg-elementor-kit/class/elements/options/class-button-option.php:184, jeg-elementor-kit/class/elements/options/class-category-list-option.php:237, jeg-elementor-kit/class/elements/options/class-category-list-option.php:272, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:181, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:257, jeg-elementor-kit/class/elements/options/class-countdown-option.php:455, jeg-elementor-kit/class/elements/options/class-countdown-option.php:727, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1083, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1439, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1795, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1850, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:163, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:558, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:759, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:414, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:148, jeg-elementor-kit/class/elements/options/class-gallery-option.php:869, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1203, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1801, jeg-elementor-kit/class/elements/options/class-heading-option.php:539, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:192, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:210, jeg-elementor-kit/class/elements/options/class-image-box-option.php:277, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:849, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:156, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:820, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:327, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:536, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:642, jeg-elementor-kit/class/elements/options/class-option-abstract.php:318, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:340, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:364, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:360, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:493, jeg-elementor-kit/class/elements/options/class-post-author-option.php:181, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1006, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1110, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1818, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1960, jeg-elementor-kit/class/elements/options/class-post-date-option.php:202, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:162, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:152, jeg-elementor-kit/class/elements/options/class-post-list-option.php:478, jeg-elementor-kit/class/elements/options/class-post-list-option.php:694, jeg-elementor-kit/class/elements/options/class-post-list-option.php:775, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1178, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:167, jeg-elementor-kit/class/elements/options/class-post-title-option.php:162, jeg-elementor-kit/class/elements/options/class-search-option.php:231, jeg-elementor-kit/class/elements/options/class-search-option.php:398, jeg-elementor-kit/class/elements/options/class-social-share-option.php:190, jeg-elementor-kit/class/elements/options/class-social-share-option.php:419, jeg-elementor-kit/class/elements/options/class-tabs-option.php:396, jeg-elementor-kit/class/elements/options/class-tabs-option.php:518, jeg-elementor-kit/class/elements/options/class-tabs-option.php:554, jeg-elementor-kit/class/elements/options/class-tabs-option.php:605, jeg-elementor-kit/class/elements/options/class-team-option.php:585, jeg-elementor-kit/class/elements/options/class-team-option.php:624, jeg-elementor-kit/class/elements/options/class-team-option.php:1295, jeg-elementor-kit/class/elements/options/class-team-option.php:1643, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:529, jeg-elementor-kit/class/elements/options/class-video-button-option.php:355
|
158 |
msgid "Right"
|
159 |
msgstr ""
|
160 |
|
182 |
msgid "Left Icon Active"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:281, jeg-elementor-kit/class/elements/options/class-accordion-option.php:437, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:424, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:548, jeg-elementor-kit/class/elements/options/class-button-option.php:239, jeg-elementor-kit/class/elements/options/class-category-list-option.php:325, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:269, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:300, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:576, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:583, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:643, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:859, jeg-elementor-kit/class/elements/options/class-countdown-option.php:539, jeg-elementor-kit/class/elements/options/class-countdown-option.php:588, jeg-elementor-kit/class/elements/options/class-countdown-option.php:798, jeg-elementor-kit/class/elements/options/class-countdown-option.php:895, jeg-elementor-kit/class/elements/options/class-countdown-option.php:944, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1154, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1251, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1300, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1510, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1607, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1656, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1876, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1907, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:368, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:569, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:778, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:841, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:865, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:644, jeg-elementor-kit/class/elements/options/class-gallery-option.php:963, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1249, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1289, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1835, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1864, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1895, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1930, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1964, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2015, jeg-elementor-kit/class/elements/options/class-heading-option.php:563, jeg-elementor-kit/class/elements/options/class-heading-option.php:855, jeg-elementor-kit/class/elements/options/class-heading-option.php:930, jeg-elementor-kit/class/elements/options/class-heading-option.php:1260, jeg-elementor-kit/class/elements/options/class-heading-option.php:1376, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:660, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:690, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1068, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1351, jeg-elementor-kit/class/elements/options/class-image-box-option.php:598, jeg-elementor-kit/class/elements/options/class-image-box-option.php:732, jeg-elementor-kit/class/elements/options/class-image-box-option.php:793, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:639, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:663, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:788, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:868, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1152, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:340, jeg-elementor-kit/class/elements/options/class-option-abstract.php:330, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:514, jeg-elementor-kit/class/elements/options/class-post-author-option.php:193, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1126, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1309, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1333, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1589, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1744, jeg-elementor-kit/class/elements/options/class-post-date-option.php:214, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:174, jeg-elementor-kit/class/elements/options/class-post-list-option.php:731, jeg-elementor-kit/class/elements/options/class-post-list-option.php:787, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1104, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:179, jeg-elementor-kit/class/elements/options/class-post-title-option.php:174, jeg-elementor-kit/class/elements/options/class-search-option.php:719, jeg-elementor-kit/class/elements/options/class-social-share-option.php:393, jeg-elementor-kit/class/elements/options/class-tabs-option.php:633, jeg-elementor-kit/class/elements/options/class-tabs-option.php:942, jeg-elementor-kit/class/elements/options/class-team-option.php:1062, jeg-elementor-kit/class/elements/options/class-team-option.php:1112, jeg-elementor-kit/class/elements/options/class-team-option.php:1215, jeg-elementor-kit/class/elements/options/class-team-option.php:1482, jeg-elementor-kit/class/elements/options/class-team-option.php:1518, jeg-elementor-kit/class/elements/options/class-team-option.php:1554, jeg-elementor-kit/class/elements/options/class-team-option.php:1582, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:665
|
186 |
msgid "Typography"
|
187 |
msgstr ""
|
188 |
|
234 |
msgid "Close Box Shadow"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:405, jeg-elementor-kit/class/elements/options/class-accordion-option.php:464, jeg-elementor-kit/class/elements/options/class-button-option.php:230, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:359, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:227, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:315, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:395, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:659, jeg-elementor-kit/class/elements/options/class-countdown-option.php:555, jeg-elementor-kit/class/elements/options/class-countdown-option.php:629, jeg-elementor-kit/class/elements/options/class-countdown-option.php:911, jeg-elementor-kit/class/elements/options/class-countdown-option.php:985, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1267, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1341, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1623, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1697, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:526, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:727, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:736, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:519, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:627, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:707, jeg-elementor-kit/class/elements/options/class-gallery-option.php:904, jeg-elementor-kit/class/elements/options/class-gallery-option.php:945, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1086, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1169, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1757, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1871, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1991, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2270, jeg-elementor-kit/class/elements/options/class-heading-option.php:598, jeg-elementor-kit/class/elements/options/class-heading-option.php:878, jeg-elementor-kit/class/elements/options/class-heading-option.php:1189, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:635, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1315, jeg-elementor-kit/class/elements/options/class-image-box-option.php:399, jeg-elementor-kit/class/elements/options/class-image-box-option.php:564, jeg-elementor-kit/class/elements/options/class-image-box-option.php:838, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:698, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:884, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1107, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1125, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:319, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:756, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:993, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1162, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1223, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:412, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:607, jeg-elementor-kit/class/elements/options/class-option-abstract.php:377, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:387, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:655, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:288, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:372, jeg-elementor-kit/class/elements/options/class-post-block-option.php:753, jeg-elementor-kit/class/elements/options/class-post-block-option.php:820, jeg-elementor-kit/class/elements/options/class-post-block-option.php:883, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1036, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1162, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1340, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1571, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1735, jeg-elementor-kit/class/elements/options/class-post-list-option.php:490, jeg-elementor-kit/class/elements/options/class-post-list-option.php:722, jeg-elementor-kit/class/elements/options/class-post-list-option.php:831, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1095, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:251, jeg-elementor-kit/class/elements/options/class-search-option.php:368, jeg-elementor-kit/class/elements/options/class-search-option.php:641, jeg-elementor-kit/class/elements/options/class-search-option.php:851, jeg-elementor-kit/class/elements/options/class-social-share-option.php:444, jeg-elementor-kit/class/elements/options/class-tabs-option.php:319, jeg-elementor-kit/class/elements/options/class-tabs-option.php:716, jeg-elementor-kit/class/elements/options/class-tabs-option.php:982, jeg-elementor-kit/class/elements/options/class-team-option.php:639, jeg-elementor-kit/class/elements/options/class-team-option.php:923, jeg-elementor-kit/class/elements/options/class-team-option.php:1344, jeg-elementor-kit/class/elements/options/class-team-option.php:1696, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:204, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:560, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1221, jeg-elementor-kit/class/elements/options/class-video-button-option.php:367
|
238 |
msgid "Padding"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:415, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:767, jeg-elementor-kit/class/elements/options/class-team-option.php:986, jeg-elementor-kit/class/elements/options/class-team-option.php:1097, jeg-elementor-kit/class/elements/options/class-team-option.php:1149, jeg-elementor-kit/class/elements/options/class-team-option.php:1238, jeg-elementor-kit/class/elements/options/class-team-option.php:1489, jeg-elementor-kit/class/elements/options/class-team-option.php:1525, jeg-elementor-kit/class/elements/options/class-team-option.php:1561
|
242 |
msgid "Margin Bottom"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:429, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:687, jeg-elementor-kit/class/elements/options/class-category-list-option.php:309, jeg-elementor-kit/class/elements/options/class-category-list-option.php:332, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:945, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:276, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:307, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:592, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:631, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:866, jeg-elementor-kit/class/elements/options/class-countdown-option.php:506, jeg-elementor-kit/class/elements/options/class-countdown-option.php:580, jeg-elementor-kit/class/elements/options/class-countdown-option.php:783, jeg-elementor-kit/class/elements/options/class-countdown-option.php:862, jeg-elementor-kit/class/elements/options/class-countdown-option.php:936, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1139, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1218, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1292, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1495, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1574, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1648, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1868, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1899, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:770, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:610, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:671, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:829, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:857, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:636, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1225, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1265, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1353, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1887, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1909, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1956, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2097, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2190, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2236, jeg-elementor-kit/class/elements/options/class-heading-option.php:570, jeg-elementor-kit/class/elements/options/class-heading-option.php:805, jeg-elementor-kit/class/elements/options/class-heading-option.php:838, jeg-elementor-kit/class/elements/options/class-heading-option.php:898, jeg-elementor-kit/class/elements/options/class-heading-option.php:913, jeg-elementor-kit/class/elements/options/class-heading-option.php:1025, jeg-elementor-kit/class/elements/options/class-heading-option.php:1095, jeg-elementor-kit/class/elements/options/class-heading-option.php:1252, jeg-elementor-kit/class/elements/options/class-heading-option.php:1333, jeg-elementor-kit/class/elements/options/class-heading-option.php:1383, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:644, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:674, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:646, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:670, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:795, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:946, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:981, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1058, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1166, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1199, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:232, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:274, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:441, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:483, jeg-elementor-kit/class/elements/options/class-option-abstract.php:337, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1135, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1316, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1521, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1596, jeg-elementor-kit/class/elements/options/class-post-list-option.php:706, jeg-elementor-kit/class/elements/options/class-post-list-option.php:860, jeg-elementor-kit/class/elements/options/class-post-list-option.php:904, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1042, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:378, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:400, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:442, jeg-elementor-kit/class/elements/options/class-search-option.php:521, jeg-elementor-kit/class/elements/options/class-search-option.php:565, jeg-elementor-kit/class/elements/options/class-search-option.php:744, jeg-elementor-kit/class/elements/options/class-search-option.php:793, jeg-elementor-kit/class/elements/options/class-tabs-option.php:1042, jeg-elementor-kit/class/elements/options/class-team-option.php:1119, jeg-elementor-kit/class/elements/options/class-team-option.php:1474, jeg-elementor-kit/class/elements/options/class-team-option.php:1510, jeg-elementor-kit/class/elements/options/class-team-option.php:1546, jeg-elementor-kit/class/elements/options/class-team-option.php:1589, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:681, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:925, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1618, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1675
|
246 |
msgid "Color"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:444, jeg-elementor-kit/class/elements/options/class-accordion-option.php:599, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:348, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:193, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:874, jeg-elementor-kit/class/elements/options/class-countdown-option.php:514, jeg-elementor-kit/class/elements/options/class-countdown-option.php:595, jeg-elementor-kit/class/elements/options/class-countdown-option.php:647, jeg-elementor-kit/class/elements/options/class-countdown-option.php:654, jeg-elementor-kit/class/elements/options/class-countdown-option.php:870, jeg-elementor-kit/class/elements/options/class-countdown-option.php:951, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1003, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1010, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1226, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1307, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1359, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1366, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1582, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1663, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1715, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1722, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:801, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:122, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:696, jeg-elementor-kit/class/elements/options/class-gallery-option.php:893, jeg-elementor-kit/class/elements/options/class-gallery-option.php:989, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1120, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1138, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1746, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1971, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2172, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2252, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1333, jeg-elementor-kit/class/elements/options/class-image-box-option.php:539, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:678, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:959, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:994, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1071, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1174, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1207, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:771, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:245, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:287, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:454, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:496, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:650, jeg-elementor-kit/class/elements/options/class-option-abstract.php:345, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:644, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:306, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:381, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:717, jeg-elementor-kit/class/elements/options/class-post-block-option.php:742, jeg-elementor-kit/class/elements/options/class-post-block-option.php:809, jeg-elementor-kit/class/elements/options/class-post-block-option.php:861, jeg-elementor-kit/class/elements/options/class-post-block-option.php:967, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1018, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1149, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1212, jeg-elementor-kit/class/elements/options/class-post-list-option.php:541, jeg-elementor-kit/class/elements/options/class-post-list-option.php:586, jeg-elementor-kit/class/elements/options/class-post-list-option.php:873, jeg-elementor-kit/class/elements/options/class-post-list-option.php:917, jeg-elementor-kit/class/elements/options/class-post-list-option.php:971, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:203, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:276, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:408, jeg-elementor-kit/class/elements/options/class-search-option.php:757, jeg-elementor-kit/class/elements/options/class-search-option.php:806, jeg-elementor-kit/class/elements/options/class-tabs-option.php:745, jeg-elementor-kit/class/elements/options/class-tabs-option.php:811, jeg-elementor-kit/class/elements/options/class-tabs-option.php:877, jeg-elementor-kit/class/elements/options/class-tabs-option.php:949, jeg-elementor-kit/class/elements/options/class-team-option.php:905, jeg-elementor-kit/class/elements/options/class-team-option.php:1024, jeg-elementor-kit/class/elements/options/class-team-option.php:1456, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:472, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:540, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:610, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1178, jeg-elementor-kit/class/elements/options/class-video-button-option.php:536, jeg-elementor-kit/class/elements/options/class-video-button-option.php:590
|
250 |
msgid "Background"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:455, jeg-elementor-kit/class/elements/options/class-accordion-option.php:480, jeg-elementor-kit/class/elements/options/class-button-option.php:351, jeg-elementor-kit/class/elements/options/class-button-option.php:378, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:936, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:236, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:650, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:885, jeg-elementor-kit/class/elements/options/class-countdown-option.php:564, jeg-elementor-kit/class/elements/options/class-countdown-option.php:638, jeg-elementor-kit/class/elements/options/class-countdown-option.php:679, jeg-elementor-kit/class/elements/options/class-countdown-option.php:920, jeg-elementor-kit/class/elements/options/class-countdown-option.php:994, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1035, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1276, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1350, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1391, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1632, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1706, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1747, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:792, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:753, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:730, jeg-elementor-kit/class/elements/options/class-gallery-option.php:922, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1000, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1104, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1730, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1766, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2000, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2110, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2213, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2279, jeg-elementor-kit/class/elements/options/class-heading-option.php:607, jeg-elementor-kit/class/elements/options/class-heading-option.php:1231, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1324, jeg-elementor-kit/class/elements/options/class-image-box-option.php:408, jeg-elementor-kit/class/elements/options/class-image-box-option.php:573, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:689, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:875, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1116, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1143, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:337, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:782, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:421, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:616, jeg-elementor-kit/class/elements/options/class-option-abstract.php:395, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:405, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:664, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:297, jeg-elementor-kit/class/elements/options/class-post-author-option.php:429, jeg-elementor-kit/class/elements/options/class-post-block-option.php:771, jeg-elementor-kit/class/elements/options/class-post-block-option.php:838, jeg-elementor-kit/class/elements/options/class-post-block-option.php:901, jeg-elementor-kit/class/elements/options/class-post-block-option.php:978, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1054, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1189, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:226, jeg-elementor-kit/class/elements/options/class-post-list-option.php:559, jeg-elementor-kit/class/elements/options/class-post-list-option.php:604, jeg-elementor-kit/class/elements/options/class-post-list-option.php:754, jeg-elementor-kit/class/elements/options/class-post-list-option.php:884, jeg-elementor-kit/class/elements/options/class-post-list-option.php:928, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1033, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:242, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:369, jeg-elementor-kit/class/elements/options/class-search-option.php:342, jeg-elementor-kit/class/elements/options/class-search-option.php:632, jeg-elementor-kit/class/elements/options/class-search-option.php:841, jeg-elementor-kit/class/elements/options/class-social-share-option.php:474, jeg-elementor-kit/class/elements/options/class-tabs-option.php:337, jeg-elementor-kit/class/elements/options/class-tabs-option.php:791, jeg-elementor-kit/class/elements/options/class-tabs-option.php:857, jeg-elementor-kit/class/elements/options/class-tabs-option.php:923, jeg-elementor-kit/class/elements/options/class-tabs-option.php:1000, jeg-elementor-kit/class/elements/options/class-team-option.php:657, jeg-elementor-kit/class/elements/options/class-team-option.php:939, jeg-elementor-kit/class/elements/options/class-team-option.php:1353, jeg-elementor-kit/class/elements/options/class-team-option.php:1911, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:569, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1196, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1230, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1609, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1666, jeg-elementor-kit/class/elements/options/class-video-button-option.php:629, jeg-elementor-kit/class/elements/options/class-video-button-option.php:659
|
254 |
msgid "Border Radius"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: jeg-elementor-kit/class/elements/options/class-accordion-option.php:496, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:368, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:218, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:284, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:327, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:668, jeg-elementor-kit/class/elements/options/class-countdown-option.php:546, jeg-elementor-kit/class/elements/options/class-countdown-option.php:620, jeg-elementor-kit/class/elements/options/class-countdown-option.php:902, jeg-elementor-kit/class/elements/options/class-countdown-option.php:976, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1258, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1332, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1614, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1688, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1883, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1914, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:536, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:737, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:510, jeg-elementor-kit/class/elements/options/class-gallery-option.php:913, jeg-elementor-kit/class/elements/options/class-gallery-option.php:954, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1095, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1982, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2119, jeg-elementor-kit/class/elements/options/class-heading-option.php:589, jeg-elementor-kit/class/elements/options/class-heading-option.php:937, jeg-elementor-kit/class/elements/options/class-heading-option.php:1065, jeg-elementor-kit/class/elements/options/class-heading-option.php:1135, jeg-elementor-kit/class/elements/options/class-heading-option.php:1210, jeg-elementor-kit/class/elements/options/class-heading-option.php:1267, jeg-elementor-kit/class/elements/options/class-heading-option.php:1324, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:626, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:697, jeg-elementor-kit/class/elements/options/class-image-box-option.php:589, jeg-elementor-kit/class/elements/options/class-image-box-option.php:723, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:654, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:893, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1134, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:328, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:985, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1154, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1215, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:403, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:590, jeg-elementor-kit/class/elements/options/class-option-abstract.php:386, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:396, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:279, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:505, jeg-elementor-kit/class/elements/options/class-post-block-option.php:762, jeg-elementor-kit/class/elements/options/class-post-block-option.php:829, jeg-elementor-kit/class/elements/options/class-post-block-option.php:892, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1045, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1175, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1230, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1324, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1349, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1580, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1643, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1726, jeg-elementor-kit/class/elements/options/class-post-list-option.php:499, jeg-elementor-kit/class/elements/options/class-post-list-option.php:840, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1024, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1086, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:267, jeg-elementor-kit/class/elements/options/class-search-option.php:351, jeg-elementor-kit/class/elements/options/class-search-option.php:650, jeg-elementor-kit/class/elements/options/class-search-option.php:860, jeg-elementor-kit/class/elements/options/class-social-share-option.php:457, jeg-elementor-kit/class/elements/options/class-tabs-option.php:328, jeg-elementor-kit/class/elements/options/class-tabs-option.php:725, jeg-elementor-kit/class/elements/options/class-tabs-option.php:991, jeg-elementor-kit/class/elements/options/class-team-option.php:1335, jeg-elementor-kit/class/elements/options/class-team-option.php:1669, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:551, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:672, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:983, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1212
|
258 |
msgid "Margin"
|
259 |
msgstr ""
|
260 |
|
358 |
msgid "HTML Tag"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:395, jeg-elementor-kit/class/elements/options/class-button-option.php:171, jeg-elementor-kit/class/elements/options/class-category-list-option.php:225, jeg-elementor-kit/class/elements/options/class-category-list-option.php:260, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:169, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:245, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1837, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:150, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:545, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:746, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:136, jeg-elementor-kit/class/elements/options/class-gallery-option.php:857, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1191, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1789, jeg-elementor-kit/class/elements/options/class-heading-option.php:527, jeg-elementor-kit/class/elements/options/class-image-box-option.php:265, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:143, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:315, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:524, jeg-elementor-kit/class/elements/options/class-option-abstract.php:306, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:328, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:348, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:481, jeg-elementor-kit/class/elements/options/class-post-author-option.php:169, jeg-elementor-kit/class/elements/options/class-post-block-option.php:994, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1806, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1955, jeg-elementor-kit/class/elements/options/class-post-date-option.php:190, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:150, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:140, jeg-elementor-kit/class/elements/options/class-post-list-option.php:466, jeg-elementor-kit/class/elements/options/class-post-list-option.php:682, jeg-elementor-kit/class/elements/options/class-post-list-option.php:763, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1166, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:155, jeg-elementor-kit/class/elements/options/class-post-title-option.php:150, jeg-elementor-kit/class/elements/options/class-search-option.php:219, jeg-elementor-kit/class/elements/options/class-search-option.php:385, jeg-elementor-kit/class/elements/options/class-social-share-option.php:178, jeg-elementor-kit/class/elements/options/class-social-share-option.php:407, jeg-elementor-kit/class/elements/options/class-team-option.php:577, jeg-elementor-kit/class/elements/options/class-team-option.php:612, jeg-elementor-kit/class/elements/options/class-team-option.php:1283, jeg-elementor-kit/class/elements/options/class-team-option.php:1631, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:517, jeg-elementor-kit/class/elements/options/class-video-button-option.php:343
|
362 |
msgid "Alignment"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:403, jeg-elementor-kit/class/elements/options/class-button-option.php:180, jeg-elementor-kit/class/elements/options/class-category-list-option.php:233, jeg-elementor-kit/class/elements/options/class-category-list-option.php:268, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:177, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:253, jeg-elementor-kit/class/elements/options/class-countdown-option.php:424, jeg-elementor-kit/class/elements/options/class-countdown-option.php:451, jeg-elementor-kit/class/elements/options/class-countdown-option.php:697, jeg-elementor-kit/class/elements/options/class-countdown-option.php:723, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1053, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1079, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1409, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1435, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1765, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1791, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1846, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:159, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:554, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:755, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:144, jeg-elementor-kit/class/elements/options/class-gallery-option.php:865, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1199, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1797, jeg-elementor-kit/class/elements/options/class-heading-option.php:535, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:206, jeg-elementor-kit/class/elements/options/class-image-box-option.php:273, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:812, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:845, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:152, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:323, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:532, jeg-elementor-kit/class/elements/options/class-option-abstract.php:314, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:336, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:360, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:356, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:489, jeg-elementor-kit/class/elements/options/class-post-author-option.php:177, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1002, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1106, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1814, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1959, jeg-elementor-kit/class/elements/options/class-post-date-option.php:198, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:158, jeg-elementor-kit/class/elements/options/class-post-featured-image-option.php:148, jeg-elementor-kit/class/elements/options/class-post-list-option.php:474, jeg-elementor-kit/class/elements/options/class-post-list-option.php:690, jeg-elementor-kit/class/elements/options/class-post-list-option.php:771, jeg-elementor-kit/class/elements/options/class-post-list-option.php:955, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1174, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:163, jeg-elementor-kit/class/elements/options/class-post-title-option.php:158, jeg-elementor-kit/class/elements/options/class-search-option.php:227, jeg-elementor-kit/class/elements/options/class-search-option.php:394, jeg-elementor-kit/class/elements/options/class-social-share-option.php:186, jeg-elementor-kit/class/elements/options/class-social-share-option.php:415, jeg-elementor-kit/class/elements/options/class-tabs-option.php:392, jeg-elementor-kit/class/elements/options/class-tabs-option.php:431, jeg-elementor-kit/class/elements/options/class-tabs-option.php:470, jeg-elementor-kit/class/elements/options/class-tabs-option.php:514, jeg-elementor-kit/class/elements/options/class-tabs-option.php:550, jeg-elementor-kit/class/elements/options/class-tabs-option.php:601, jeg-elementor-kit/class/elements/options/class-team-option.php:215, jeg-elementor-kit/class/elements/options/class-team-option.php:620, jeg-elementor-kit/class/elements/options/class-team-option.php:1291, jeg-elementor-kit/class/elements/options/class-team-option.php:1639, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:525, jeg-elementor-kit/class/elements/options/class-video-button-option.php:351
|
366 |
msgid "Center"
|
367 |
msgstr ""
|
368 |
|
370 |
msgid "Color Style"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:447, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:571, jeg-elementor-kit/class/elements/options/class-button-option.php:258, jeg-elementor-kit/class/elements/options/class-button-option.php:338, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:449, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:637, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:409, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:752, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:405, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:606, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:183, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:575, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:342, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:757, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1371, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1563, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:501, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:761, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1118, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1244, jeg-elementor-kit/class/elements/options/class-image-box-option.php:454, jeg-elementor-kit/class/elements/options/class-image-box-option.php:647, jeg-elementor-kit/class/elements/options/class-image-box-option.php:744, jeg-elementor-kit/class/elements/options/class-image-box-option.php:852, jeg-elementor-kit/class/elements/options/class-image-box-option.php:1010, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:940, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:385, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:624, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:878, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1047, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:226, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:435, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:443, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:754, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:564, jeg-elementor-kit/class/elements/options/class-post-author-option.php:221, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1248, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1400, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1835, jeg-elementor-kit/class/elements/options/class-post-date-option.php:228, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:188, jeg-elementor-kit/class/elements/options/class-post-list-option.php:535, jeg-elementor-kit/class/elements/options/class-post-list-option.php:854, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1195, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:193, jeg-elementor-kit/class/elements/options/class-post-title-option.php:199, jeg-elementor-kit/class/elements/options/class-search-option.php:252, jeg-elementor-kit/class/elements/options/class-search-option.php:504, jeg-elementor-kit/class/elements/options/class-search-option.php:738, jeg-elementor-kit/class/elements/options/class-social-share-option.php:264, jeg-elementor-kit/class/elements/options/class-social-share-option.php:584, jeg-elementor-kit/class/elements/options/class-tabs-option.php:739, jeg-elementor-kit/class/elements/options/class-team-option.php:384, jeg-elementor-kit/class/elements/options/class-team-option.php:731, jeg-elementor-kit/class/elements/options/class-team-option.php:1779, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:750, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:997, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1087, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1312, jeg-elementor-kit/class/elements/options/class-video-button-option.php:498, jeg-elementor-kit/class/elements/options/class-video-button-option.php:616
|
374 |
msgid "Normal"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:453, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:577, jeg-elementor-kit/class/elements/options/class-button-option.php:264, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:643, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:758, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:411, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:612, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:348, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1390, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:767, jeg-elementor-kit/class/elements/options/class-image-box-option.php:653, jeg-elementor-kit/class/elements/options/class-image-box-option.php:750, jeg-elementor-kit/class/elements/options/class-image-box-option.php:858, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:570, jeg-elementor-kit/class/elements/options/class-post-author-option.php:234, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1263, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1417, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1840, jeg-elementor-kit/class/elements/options/class-post-date-option.php:234, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:194, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1200, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:199, jeg-elementor-kit/class/elements/options/class-post-title-option.php:205, jeg-elementor-kit/class/elements/options/class-search-option.php:258, jeg-elementor-kit/class/elements/options/class-social-share-option.php:269, jeg-elementor-kit/class/elements/options/class-social-share-option.php:590, jeg-elementor-kit/class/elements/options/class-team-option.php:389, jeg-elementor-kit/class/elements/options/class-team-option.php:1071, jeg-elementor-kit/class/elements/options/class-team-option.php:1222, jeg-elementor-kit/class/elements/options/class-team-option.php:1785, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:756, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1003, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1093, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1318
|
378 |
msgid "Normal Color"
|
379 |
msgstr ""
|
380 |
|
386 |
msgid "Normal Text Shadow"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:495, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:621, jeg-elementor-kit/class/elements/options/class-button-option.php:293, jeg-elementor-kit/class/elements/options/class-button-option.php:365, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:529, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:748, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:463, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:803, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:463, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:664, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:240, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:636, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:391, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:779, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1477, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1674, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:555, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:850, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1176, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1266, jeg-elementor-kit/class/elements/options/class-image-box-option.php:482, jeg-elementor-kit/class/elements/options/class-image-box-option.php:679, jeg-elementor-kit/class/elements/options/class-image-box-option.php:763, jeg-elementor-kit/class/elements/options/class-image-box-option.php:910, jeg-elementor-kit/class/elements/options/class-image-box-option.php:1036, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:975, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:427, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:659, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:929, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1098, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:268, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:477, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:479, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:638, jeg-elementor-kit/class/elements/options/class-post-author-option.php:274, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1276, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1458, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1892, jeg-elementor-kit/class/elements/options/class-post-date-option.php:260, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:220, jeg-elementor-kit/class/elements/options/class-post-list-option.php:580, jeg-elementor-kit/class/elements/options/class-post-list-option.php:898, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1252, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:223, jeg-elementor-kit/class/elements/options/class-post-title-option.php:253, jeg-elementor-kit/class/elements/options/class-search-option.php:287, jeg-elementor-kit/class/elements/options/class-search-option.php:787, jeg-elementor-kit/class/elements/options/class-social-share-option.php:312, jeg-elementor-kit/class/elements/options/class-social-share-option.php:619, jeg-elementor-kit/class/elements/options/class-tabs-option.php:805, jeg-elementor-kit/class/elements/options/class-team-option.php:432, jeg-elementor-kit/class/elements/options/class-team-option.php:769, jeg-elementor-kit/class/elements/options/class-team-option.php:1837, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:835, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1037, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1127, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1423, jeg-elementor-kit/class/elements/options/class-video-button-option.php:552, jeg-elementor-kit/class/elements/options/class-video-button-option.php:646
|
390 |
msgid "Hover"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:501, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:627, jeg-elementor-kit/class/elements/options/class-button-option.php:299, jeg-elementor-kit/class/elements/options/class-category-list-option.php:317, jeg-elementor-kit/class/elements/options/class-category-list-option.php:345, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:754, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:809, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:469, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:670, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:397, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1237, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1277, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1496, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2244, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:856, jeg-elementor-kit/class/elements/options/class-image-box-option.php:685, jeg-elementor-kit/class/elements/options/class-image-box-option.php:769, jeg-elementor-kit/class/elements/options/class-image-box-option.php:916, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:644, jeg-elementor-kit/class/elements/options/class-post-author-option.php:287, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1291, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1475, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1898, jeg-elementor-kit/class/elements/options/class-post-date-option.php:266, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:226, jeg-elementor-kit/class/elements/options/class-post-list-option.php:714, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1055, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1258, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:229, jeg-elementor-kit/class/elements/options/class-post-title-option.php:259, jeg-elementor-kit/class/elements/options/class-search-option.php:293, jeg-elementor-kit/class/elements/options/class-social-share-option.php:317, jeg-elementor-kit/class/elements/options/class-social-share-option.php:625, jeg-elementor-kit/class/elements/options/class-team-option.php:437, jeg-elementor-kit/class/elements/options/class-team-option.php:1084, jeg-elementor-kit/class/elements/options/class-team-option.php:1127, jeg-elementor-kit/class/elements/options/class-team-option.php:1230, jeg-elementor-kit/class/elements/options/class-team-option.php:1602, jeg-elementor-kit/class/elements/options/class-team-option.php:1843, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:689, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:841, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:938, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1043, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1133, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1429
|
394 |
msgid "Hover Color"
|
395 |
msgstr ""
|
396 |
|
398 |
msgid "Hover Gradient"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:531, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:659, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:700, jeg-elementor-kit/class/elements/options/class-post-author-option.php:306, jeg-elementor-kit/class/elements/options/class-post-date-option.php:278, jeg-elementor-kit/class/elements/options/class-post-excerpt-option.php:238, jeg-elementor-kit/class/elements/options/class-post-terms-option.php:241, jeg-elementor-kit/class/elements/options/class-post-title-option.php:293, jeg-elementor-kit/class/elements/options/class-social-share-option.php:345, jeg-elementor-kit/class/elements/options/class-team-option.php:470, jeg-elementor-kit/class/elements/options/class-team-option.php:1142
|
402 |
msgid "Hover Text Shadow"
|
403 |
msgstr ""
|
404 |
|
410 |
msgid "Gradient Color 2"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: jeg-elementor-kit/class/elements/options/class-animated-text-option.php:735, jeg-elementor-kit/class/elements/options/class-animated-text-option.php:823, jeg-elementor-kit/class/elements/options/class-button-option.php:215, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:908, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:339, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:683, jeg-elementor-kit/class/elements/options/class-countdown-option.php:739, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1095, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1451, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1807, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:820, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2082, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2198, jeg-elementor-kit/class/elements/options/class-heading-option.php:668, jeg-elementor-kit/class/elements/options/class-heading-option.php:1043, jeg-elementor-kit/class/elements/options/class-heading-option.php:1113, jeg-elementor-kit/class/elements/options/class-heading-option.php:1276, jeg-elementor-kit/class/elements/options/class-image-box-option.php:988, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:721, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:916, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:839, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1008, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1170, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:381, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:548, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:661, jeg-elementor-kit/class/elements/options/class-post-block-option.php:924, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1751, jeg-elementor-kit/class/elements/options/class-post-list-option.php:508, jeg-elementor-kit/class/elements/options/class-post-list-option.php:738, jeg-elementor-kit/class/elements/options/class-post-list-option.php:996, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1111, jeg-elementor-kit/class/elements/options/class-search-option.php:416, jeg-elementor-kit/class/elements/options/class-search-option.php:869, jeg-elementor-kit/class/elements/options/class-social-share-option.php:489, jeg-elementor-kit/class/elements/options/class-team-option.php:1407, jeg-elementor-kit/class/elements/options/class-team-option.php:1732, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1239, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1581, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1638, jeg-elementor-kit/class/elements/options/class-video-button-option.php:447
|
414 |
msgid "Width"
|
415 |
msgstr ""
|
416 |
|
502 |
msgid "Hover Background Color"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: jeg-elementor-kit/class/elements/options/class-button-option.php:344, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:500, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:714, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:440, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:777, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:435, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:636, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:370, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1009, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1444, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1602, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:534, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:822, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1148, jeg-elementor-kit/class/elements/options/class-image-box-option.php:882, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:467, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:612, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1439, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1873, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1233, jeg-elementor-kit/class/elements/options/class-social-share-option.php:290, jeg-elementor-kit/class/elements/options/class-team-option.php:410, jeg-elementor-kit/class/elements/options/class-team-option.php:1809, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1389
|
506 |
msgid "Normal Border"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: jeg-elementor-kit/class/elements/options/class-button-option.php:371, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:580, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:826, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:494, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:828, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:493, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:694, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:419, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1525, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1713, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:588, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:911, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1206, jeg-elementor-kit/class/elements/options/class-image-box-option.php:940, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:503, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:686, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1497, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1931, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1291, jeg-elementor-kit/class/elements/options/class-social-share-option.php:333, jeg-elementor-kit/class/elements/options/class-team-option.php:458, jeg-elementor-kit/class/elements/options/class-team-option.php:1867, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:596, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1500
|
510 |
msgid "Hover Border"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: jeg-elementor-kit/class/elements/options/class-button-option.php:404, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:375, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:576, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:721, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:451, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1298, jeg-elementor-kit/class/elements/options/class-gallery-option.php:2063, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:950, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1040, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:854, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1023, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:855, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:540, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1377, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1787, jeg-elementor-kit/class/elements/options/class-post-list-option.php:794, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1147, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:455, jeg-elementor-kit/class/elements/options/class-search-option.php:192, jeg-elementor-kit/class/elements/options/class-search-option.php:693, jeg-elementor-kit/class/elements/options/class-social-share-option.php:558, jeg-elementor-kit/class/elements/options/class-tabs-option.php:662, jeg-elementor-kit/class/elements/options/class-team-option.php:1362, jeg-elementor-kit/class/elements/options/class-video-button-option.php:376
|
514 |
msgid "Icon Size"
|
515 |
msgstr ""
|
516 |
|
578 |
msgid "Number Post Desc"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:188, jeg-elementor-kit/class/elements/options/class-post-list-option.php:188, jeg-elementor-kit/class/elements/options/class-tabs-option.php:129, jeg-elementor-kit/class/elements/options/class-team-option.php:1319, jeg-elementor-kit/class/elements/options/class-team-option.php:1660
|
582 |
msgid "Vertical"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:189, jeg-elementor-kit/class/elements/options/class-post-list-option.php:189, jeg-elementor-kit/class/elements/options/class-tabs-option.php:128, jeg-elementor-kit/class/elements/options/class-team-option.php:1318, jeg-elementor-kit/class/elements/options/class-team-option.php:1659
|
586 |
msgid "Horizontal"
|
587 |
msgstr ""
|
588 |
|
602 |
msgid "Size"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: jeg-elementor-kit/class/elements/options/class-category-list-option.php:376, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:726, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1010, jeg-elementor-kit/class/elements/options/class-search-option.php:464, jeg-elementor-kit/class/elements/options/class-social-share-option.php:532, jeg-elementor-kit/class/elements/options/class-team-option.php:1428, jeg-elementor-kit/class/elements/options/class-team-option.php:1753, jeg-elementor-kit/class/elements/options/class-video-button-option.php:470
|
606 |
msgid "Line Height"
|
607 |
msgstr ""
|
608 |
|
654 |
msgid "Show Arrow"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:194, jeg-elementor-kit/class/elements/options/class-heading-option.php:1355, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:468, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:812, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:625, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1098, jeg-elementor-kit/class/elements/options/class-team-option.php:115, jeg-elementor-kit/class/elements/options/class-team-option.php:267, jeg-elementor-kit/class/elements/options/class-team-option.php:1503, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:257
|
658 |
msgid "Position"
|
659 |
msgstr ""
|
660 |
|
722 |
msgid "Fix Height"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:398, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:922, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:355, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:380, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:705, jeg-elementor-kit/class/elements/options/class-countdown-option.php:754, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1110, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1466, jeg-elementor-kit/class/elements/options/class-countdown-option.php:1822, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:835, jeg-elementor-kit/class/elements/options/class-heading-option.php:691, jeg-elementor-kit/class/elements/options/class-heading-option.php:960, jeg-elementor-kit/class/elements/options/class-heading-option.php:1300, jeg-elementor-kit/class/elements/options/class-image-box-option.php:417, jeg-elementor-kit/class/elements/options/class-nav-menu-option.php:1184, jeg-elementor-kit/class/elements/options/class-off-canvas-option.php:686, jeg-elementor-kit/class/elements/options/class-post-list-option.php:982, jeg-elementor-kit/class/elements/options/class-progress-bar-option.php:214, jeg-elementor-kit/class/elements/options/class-search-option.php:440, jeg-elementor-kit/class/elements/options/class-search-option.php:678, jeg-elementor-kit/class/elements/options/class-search-option.php:884, jeg-elementor-kit/class/elements/options/class-social-share-option.php:511, jeg-elementor-kit/class/elements/options/class-team-option.php:1386, jeg-elementor-kit/class/elements/options/class-team-option.php:1711, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:643, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1595, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1652, jeg-elementor-kit/class/elements/options/class-video-button-option.php:424
|
726 |
msgid "Height"
|
727 |
msgstr ""
|
728 |
|
750 |
msgid "None"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:455, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:656, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:415, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:766, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:424, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:625, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:763, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1377, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1569, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:507, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1137, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1250, jeg-elementor-kit/class/elements/options/class-image-box-option.php:871, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:449, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:583, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1406, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1853, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1213, jeg-elementor-kit/class/elements/options/class-search-option.php:271, jeg-elementor-kit/class/elements/options/class-social-share-option.php:603, jeg-elementor-kit/class/elements/options/class-team-option.php:744, jeg-elementor-kit/class/elements/options/class-team-option.php:1798, jeg-elementor-kit/class/elements/options/class-team-option.php:1900, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:810, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1331
|
754 |
msgid "Normal Background"
|
755 |
msgstr ""
|
756 |
|
762 |
msgid "Normal Margin"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:484, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:693, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:428, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:449, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:650, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:377, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1431, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1593, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:541, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:829, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1155, jeg-elementor-kit/class/elements/options/class-image-box-option.php:896, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:603, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1430, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1864, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1224, jeg-elementor-kit/class/elements/options/class-team-option.php:1816, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:821, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1368
|
766 |
msgid "Normal Border Radius"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:493, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:705, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:449, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:784, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:442, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:643, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1016, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1662, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:527, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:838, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1164, jeg-elementor-kit/class/elements/options/class-image-box-option.php:889, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:460, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:619, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1446, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1880, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1240, jeg-elementor-kit/class/elements/options/class-social-share-option.php:296, jeg-elementor-kit/class/elements/options/class-team-option.php:416, jeg-elementor-kit/class/elements/options/class-team-option.php:757, jeg-elementor-kit/class/elements/options/class-team-option.php:1825, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1380
|
770 |
msgid "Normal Box Shadow"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:535, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:767, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:469, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:817, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:482, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:683, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:785, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1483, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1680, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:561, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1195, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1272, jeg-elementor-kit/class/elements/options/class-image-box-option.php:929, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:485, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:657, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1464, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1911, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1271, jeg-elementor-kit/class/elements/options/class-search-option.php:306, jeg-elementor-kit/class/elements/options/class-social-share-option.php:638, jeg-elementor-kit/class/elements/options/class-team-option.php:782, jeg-elementor-kit/class/elements/options/class-team-option.php:1856, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:895, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1442
|
774 |
msgid "Hover Background"
|
775 |
msgstr ""
|
776 |
|
782 |
msgid "Hover Margin"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:564, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:805, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:482, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:507, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:708, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:426, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1511, jeg-elementor-kit/class/elements/options/class-gallery-option.php:1704, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:595, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:924, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1213, jeg-elementor-kit/class/elements/options/class-image-box-option.php:954, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:677, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1488, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1922, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1282, jeg-elementor-kit/class/elements/options/class-team-option.php:1874, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:906, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1479
|
786 |
msgid "Hover Border Radius"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:573, jeg-elementor-kit/class/elements/options/class-client-logo-option.php:817, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:503, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:835, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:500, jeg-elementor-kit/class/elements/options/class-dual-button-option.php:701, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:581, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:933, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:1222, jeg-elementor-kit/class/elements/options/class-image-box-option.php:947, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:496, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1504, jeg-elementor-kit/class/elements/options/class-post-block-option.php:1938, jeg-elementor-kit/class/elements/options/class-post-list-option.php:1298, jeg-elementor-kit/class/elements/options/class-social-share-option.php:339, jeg-elementor-kit/class/elements/options/class-team-option.php:464, jeg-elementor-kit/class/elements/options/class-team-option.php:795, jeg-elementor-kit/class/elements/options/class-team-option.php:1883, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1491
|
790 |
msgid "Hover Box Shadow"
|
791 |
msgstr ""
|
792 |
|
794 |
msgid "Hover Opacity"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: jeg-elementor-kit/class/elements/options/class-client-logo-option.php:614, jeg-elementor-kit/class/elements/options/class-contact-form-7-option.php:611, jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:1082, jeg-elementor-kit/class/elements/options/class-team-option.php:1678, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:951, jeg-elementor-kit/class/elements/options/class-testimonials-option.php:1289
|
798 |
msgid "Font Size"
|
799 |
msgstr ""
|
800 |
|
1118 |
msgid "Icon Type"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: jeg-elementor-kit/class/elements/options/class-feature-list-option.php:128, jeg-elementor-kit/class/elements/options/class-feature-list-option.php:136, jeg-elementor-kit/class/elements/options/class-fun-fact-option.php:232, jeg-elementor-kit/class/elements/options/class-gallery-option.php:689, jeg-elementor-kit/class/elements/options/class-icon-box-option.php:270, jeg-elementor-kit/class/elements/options/class-image-box-option.php:75, jeg-elementor-kit/class/elements/options/class-image-box-option.php:97, jeg-elementor-kit/class/elements/options/class-pie-chart-option.php:146, jeg-elementor-kit/class/elements/options/class-portfolio-gallery-option.php:233, jeg-elementor-kit/class/elements/options/class-post-list-option.php:118, jeg-elementor-kit/class/elements/options/class-tabs-option.php:185, jeg-elementor-kit/class/elements/options/class-team-option.php:103, jeg-elementor-kit/class/elements/options/class-team-option.php:1610
|
1122 |
msgid "Image"
|
1123 |
msgstr ""
|
1124 |
|
2138 |
msgid "Successfully listed this email"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: jeg-elementor-kit/class/elements/options/class-mailchimp-option.php:746, jeg-elementor-kit/class/elements/options/class-team-option.php:1260
|
2142 |
msgid "Margin Right"
|
2143 |
msgstr ""
|
2144 |
|
3378 |
msgid "Line"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: jeg-elementor-kit/class/elements/options/class-social-share-option.php:430, jeg-elementor-kit/class/elements/options/class-team-option.php:1314, jeg-elementor-kit/class/elements/options/class-team-option.php:1655
|
3382 |
msgid "Display"
|
3383 |
msgstr ""
|
3384 |
|
3466 |
msgid "Team Member"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:80, jeg-elementor-kit/class/elements/options/class-team-option.php:127, jeg-elementor-kit/class/elements/options/class-team-option.php:1624
|
3470 |
msgid "Social Profiles"
|
3471 |
msgstr ""
|
3472 |
|
3474 |
msgid "Pop Up Detail"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:109, jeg-elementor-kit/class/elements/options/class-team-option.php:1467
|
3478 |
msgid "Name"
|
3479 |
msgstr ""
|
3480 |
|
3554 |
msgid "Enable Overlay"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1171
|
3558 |
msgid "Text Direction"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1175
|
3562 |
msgid "Up"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1176
|
3566 |
msgid "Down"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1196
|
3570 |
msgid "Break Each Word"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1380, jeg-elementor-kit/class/elements/options/class-team-option.php:1705
|
3574 |
msgid "Fix Height & Width"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1449
|
3578 |
msgid "Modal"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: jeg-elementor-kit/class/elements/options/class-team-option.php:1575
|
3582 |
msgid "Phone and Email"
|
3583 |
msgstr ""
|
3584 |
|
3797 |
#: jeg-elementor-kit/class/elements/views/class-post-block-view.php:357, jeg-elementor-kit/class/elements/views/class-post-date-view.php:30, jeg-elementor-kit/class/elements/views/class-post-list-view.php:144
|
3798 |
msgid " - Updated on "
|
3799 |
msgstr ""
|
3800 |
+
|
3801 |
+
#: jeg-elementor-kit/helper.php:44
|
3802 |
+
msgid "edit post"
|
3803 |
+
msgstr ""
|
3804 |
+
|
3805 |
+
#. translators: 1: Time from now.
|
3806 |
+
#: jeg-elementor-kit/helper.php:100
|
3807 |
+
msgid "%s ago"
|
3808 |
+
msgstr ""
|
3809 |
+
|
3810 |
+
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:19
|
3811 |
+
msgid "Enable All"
|
3812 |
+
msgstr ""
|
3813 |
+
|
3814 |
+
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:22
|
3815 |
+
msgid "Disable All"
|
3816 |
+
msgstr ""
|
3817 |
+
|
3818 |
+
#: jeg-elementor-kit/templates/dashboard/dashboard-elements.php:51, jeg-elementor-kit/templates/dashboard/dashboard-user-data.php:33
|
3819 |
+
msgid "Save Changes"
|
3820 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: Jegstudio
|
3 |
Tags: elementor, element, addon, widget, extension, blog, post, elementor addon, elementor widget, elementor extension, elementor element, blog post, landing page, template, template kit
|
4 |
Requires at least: 5.0
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 1.11.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -49,9 +49,6 @@ We include widgets that you can customize to your as you want.
|
|
49 |
- **Tabs**. Divide your contents into several tabs with the title in vertical or horizontal style. Show content by click the title.
|
50 |
- **Dual Button**. Add two buttons side by side. Also you can add middle text.
|
51 |
- **Search**. Add search functionality with popup form. Let your visitors find what they are searching on your site.
|
52 |
-
|
53 |
-
New Widget
|
54 |
-
|
55 |
- **Feature List**. Add feature lists with icons.
|
56 |
|
57 |
== Frequently Asked Questions ==
|
@@ -75,103 +72,108 @@ https://elementor.com/help/requirements/ Also you can disable some widgets that
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
-
= 1.11.
|
|
|
|
|
|
|
|
|
|
|
79 |
* Fix: Remove unnecessary stop button in client logo widget
|
80 |
|
81 |
-
= 1.11.1 -
|
82 |
* Improvement: Update logo assets
|
83 |
|
84 |
-
= 1.11.0 -
|
85 |
* Add new widget: Feature List
|
86 |
|
87 |
-
= 1.10.2 -
|
88 |
* Improvement: Add border style in menu item
|
89 |
|
90 |
-
= 1.10.1 -
|
91 |
* Improvement: Add form style option in search widget
|
92 |
|
93 |
-
= 1.10.0 -
|
94 |
* Add new widget: Dual Button and Search
|
95 |
* Fix team popup overflow on tablet and mobile
|
96 |
|
97 |
-
= 1.9.0 -
|
98 |
* Add new feature: Enable / disable elements option
|
99 |
* Improvement: Change deprecated function for Elementor 3.2.0 or later
|
100 |
* Improvement: Add equal height option in image box widget
|
101 |
* Improvement: Add icon shape and global color in social share widget
|
102 |
* Improvement: Add background overlay on post block widget
|
103 |
|
104 |
-
= 1.8.3 -
|
105 |
* Fix bootstrap modal conflict
|
106 |
* Fix animated text line height
|
107 |
* Improvement: Add tabs widget title box alignment
|
108 |
|
109 |
-
= 1.8.2 -
|
110 |
* Fix heading title center alignment
|
111 |
|
112 |
-
= 1.8.1 -
|
113 |
* Fix inline style mailchimp form and button width
|
114 |
|
115 |
-
= 1.8.0 -
|
116 |
* Add new widget: Tabs
|
117 |
* Improvement: Add title inline background option in heading widget
|
118 |
* Fix inline style mailchimp button width
|
119 |
* Fix SVG icon
|
120 |
|
121 |
-
= 1.7.0 -
|
122 |
* Add new widget: Off Canvas
|
123 |
* Improvement: Elementor tested up to: 3.2.1
|
124 |
|
125 |
-
= 1.6.2 -
|
126 |
* Improvement: Change rotate transform CSS to avoid conflict with entrance animation
|
127 |
|
128 |
-
= 1.6.1 -
|
129 |
* Improvement: Add tooltip background color option to the progress bar
|
130 |
* Improvement: Add switch color and background color option to the progress bar with switch style
|
131 |
* Improvement: Add stripe color option to the progress bar with stripe style
|
132 |
* Improvement: Add icon style option to the progress bar with inner content style
|
133 |
|
134 |
-
= 1.6.0 -
|
135 |
* Add new widget: Social Share
|
136 |
* Fix custom css on Elementor editor
|
137 |
* Fix dashboard javascript error
|
138 |
|
139 |
-
= 1.5.0 -
|
140 |
* Add single post widget: Post Title, Post Feature Image, Post Comment, Post Terms, Post Excerpt, Post Date, and Post Author
|
141 |
* Improvement: Add new style to team widget
|
142 |
* Fix mailchimp form submit error
|
143 |
* Fix deprecation warning php 8
|
144 |
|
145 |
-
= 1.4.5 -
|
146 |
* Improvement: Add responsive style pie chart size
|
147 |
|
148 |
-
= 1.4.4 -
|
149 |
* Improvement: Icon box button hover style
|
150 |
* Fix pie chart size
|
151 |
* Fix pie chart content z-index
|
152 |
|
153 |
-
= 1.4.3 -
|
154 |
* Improvement: Adjust mailchimp responsive style
|
155 |
* Improvement: Add mailchimp message typography
|
156 |
|
157 |
-
= 1.4.2 -
|
158 |
* Fix active menu item background
|
159 |
* Fix not full active sub menu background
|
160 |
* Fix double nav menu indicator icon in elementor editor
|
161 |
|
162 |
-
= 1.4.1 -
|
163 |
* Fix category style post block widget type 3 on pagination load
|
164 |
* Fix icon style icon box widget
|
165 |
|
166 |
-
= 1.4.0 -
|
167 |
* Add new widget: Heading
|
168 |
* Improvement: Add related post option to Post Block and Post List widgets
|
169 |
* Improvement: Add no content style setting to Post Block and Post List widgets
|
170 |
|
171 |
-
= 1.3.1 -
|
172 |
* Fix post block and list pagination
|
173 |
|
174 |
-
= 1.3.0 -
|
175 |
* Add new widgets: Category List and Mailchimp
|
176 |
* Improvement: Change button color to gradient background option
|
177 |
* Improvement: Add gradient icon to icon box widget
|
@@ -179,12 +181,12 @@ https://elementor.com/help/requirements/ Also you can disable some widgets that
|
|
179 |
* Fix icon box with global link style
|
180 |
* Fix icon box icon margin option
|
181 |
|
182 |
-
= 1.2.0 -
|
183 |
* Improvement: Filter params to ajax post
|
184 |
* Add new widgets: Countdown, Button, Video Button, and Post List
|
185 |
* Add glass blur effect on advanced style
|
186 |
|
187 |
-
= 1.1.5 -
|
188 |
* Improvement: Add no icon option fun fact widget
|
189 |
* Improvement: Add hamburger and icon size option navigation menu widget
|
190 |
* Improvement: Remove pagination when not in use
|
@@ -194,13 +196,13 @@ https://elementor.com/help/requirements/ Also you can disable some widgets that
|
|
194 |
* Fix image height gallery widget
|
195 |
* Fix post block title link
|
196 |
|
197 |
-
= 1.1.4 -
|
198 |
* Improvement: Use built JS files
|
199 |
|
200 |
-
= 1.1.3 -
|
201 |
* Fix current menu style, navigation menu widget
|
202 |
|
203 |
-
= 1.1.2 -
|
204 |
* Fix element icons not show on light mode editor
|
205 |
* Fix accordion white background
|
206 |
* Improvement: Add no icon option icon box
|
@@ -209,16 +211,16 @@ https://elementor.com/help/requirements/ Also you can disable some widgets that
|
|
209 |
* Improvement: Add category position option on postblock style 3
|
210 |
* Improvement: Use locale number format on fun fact
|
211 |
|
212 |
-
= 1.1.1 -
|
213 |
* Add global rotate option
|
214 |
* Fix team widget style option
|
215 |
|
216 |
-
= 1.1.0 -
|
217 |
* Add new widgets: Team, Pie Chart, Portfolio Gallery, Image Box, and Animated Text
|
218 |
* Add new font icons
|
219 |
* Fix syntax error on PHP 7.2 or below
|
220 |
* Fix CSS Box
|
221 |
* Improvement: Use tab on widget style settings
|
222 |
|
223 |
-
= 1.0.0 -
|
224 |
* Initial Release
|
2 |
Contributors: Jegstudio
|
3 |
Tags: elementor, element, addon, widget, extension, blog, post, elementor addon, elementor widget, elementor extension, elementor element, blog post, landing page, template, template kit
|
4 |
Requires at least: 5.0
|
5 |
+
Tested up to: 5.8
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 1.11.3
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
49 |
- **Tabs**. Divide your contents into several tabs with the title in vertical or horizontal style. Show content by click the title.
|
50 |
- **Dual Button**. Add two buttons side by side. Also you can add middle text.
|
51 |
- **Search**. Add search functionality with popup form. Let your visitors find what they are searching on your site.
|
|
|
|
|
|
|
52 |
- **Feature List**. Add feature lists with icons.
|
53 |
|
54 |
== Frequently Asked Questions ==
|
72 |
|
73 |
== Changelog ==
|
74 |
|
75 |
+
= 1.11.3 - 23-08-2021 =
|
76 |
+
* Fix: Animated text UTF8 characters splitting
|
77 |
+
* Fix: Typography issue in post block, category list, post terms, team, and nav menu
|
78 |
+
* Fix: Typography gradient color in post title
|
79 |
+
|
80 |
+
= 1.11.2 - 02-08-2021 =
|
81 |
* Fix: Remove unnecessary stop button in client logo widget
|
82 |
|
83 |
+
= 1.11.1 - 31-07-2021 =
|
84 |
* Improvement: Update logo assets
|
85 |
|
86 |
+
= 1.11.0 - 21-07-2021 =
|
87 |
* Add new widget: Feature List
|
88 |
|
89 |
+
= 1.10.2 - 05-07-2021 =
|
90 |
* Improvement: Add border style in menu item
|
91 |
|
92 |
+
= 1.10.1 - 02-07-2021 =
|
93 |
* Improvement: Add form style option in search widget
|
94 |
|
95 |
+
= 1.10.0 - 23-06-2021 =
|
96 |
* Add new widget: Dual Button and Search
|
97 |
* Fix team popup overflow on tablet and mobile
|
98 |
|
99 |
+
= 1.9.0 - 18-06-2021 =
|
100 |
* Add new feature: Enable / disable elements option
|
101 |
* Improvement: Change deprecated function for Elementor 3.2.0 or later
|
102 |
* Improvement: Add equal height option in image box widget
|
103 |
* Improvement: Add icon shape and global color in social share widget
|
104 |
* Improvement: Add background overlay on post block widget
|
105 |
|
106 |
+
= 1.8.3 - 12-05-2021 =
|
107 |
* Fix bootstrap modal conflict
|
108 |
* Fix animated text line height
|
109 |
* Improvement: Add tabs widget title box alignment
|
110 |
|
111 |
+
= 1.8.2 - 03-05-2021 =
|
112 |
* Fix heading title center alignment
|
113 |
|
114 |
+
= 1.8.1 - 30-04-2021 =
|
115 |
* Fix inline style mailchimp form and button width
|
116 |
|
117 |
+
= 1.8.0 - 30-04-2021 =
|
118 |
* Add new widget: Tabs
|
119 |
* Improvement: Add title inline background option in heading widget
|
120 |
* Fix inline style mailchimp button width
|
121 |
* Fix SVG icon
|
122 |
|
123 |
+
= 1.7.0 - 23-04-2021 =
|
124 |
* Add new widget: Off Canvas
|
125 |
* Improvement: Elementor tested up to: 3.2.1
|
126 |
|
127 |
+
= 1.6.2 - 21-04-2021 =
|
128 |
* Improvement: Change rotate transform CSS to avoid conflict with entrance animation
|
129 |
|
130 |
+
= 1.6.1 - 20-04-2021 =
|
131 |
* Improvement: Add tooltip background color option to the progress bar
|
132 |
* Improvement: Add switch color and background color option to the progress bar with switch style
|
133 |
* Improvement: Add stripe color option to the progress bar with stripe style
|
134 |
* Improvement: Add icon style option to the progress bar with inner content style
|
135 |
|
136 |
+
= 1.6.0 - 16-04-2021 =
|
137 |
* Add new widget: Social Share
|
138 |
* Fix custom css on Elementor editor
|
139 |
* Fix dashboard javascript error
|
140 |
|
141 |
+
= 1.5.0 - 09-04-2021 =
|
142 |
* Add single post widget: Post Title, Post Feature Image, Post Comment, Post Terms, Post Excerpt, Post Date, and Post Author
|
143 |
* Improvement: Add new style to team widget
|
144 |
* Fix mailchimp form submit error
|
145 |
* Fix deprecation warning php 8
|
146 |
|
147 |
+
= 1.4.5 - 31-03-2021 =
|
148 |
* Improvement: Add responsive style pie chart size
|
149 |
|
150 |
+
= 1.4.4 - 29-03-2021 =
|
151 |
* Improvement: Icon box button hover style
|
152 |
* Fix pie chart size
|
153 |
* Fix pie chart content z-index
|
154 |
|
155 |
+
= 1.4.3 - 24-03-2021 =
|
156 |
* Improvement: Adjust mailchimp responsive style
|
157 |
* Improvement: Add mailchimp message typography
|
158 |
|
159 |
+
= 1.4.2 - 24-03-2021 =
|
160 |
* Fix active menu item background
|
161 |
* Fix not full active sub menu background
|
162 |
* Fix double nav menu indicator icon in elementor editor
|
163 |
|
164 |
+
= 1.4.1 - 23-03-2021 =
|
165 |
* Fix category style post block widget type 3 on pagination load
|
166 |
* Fix icon style icon box widget
|
167 |
|
168 |
+
= 1.4.0 - 19-03-2021 =
|
169 |
* Add new widget: Heading
|
170 |
* Improvement: Add related post option to Post Block and Post List widgets
|
171 |
* Improvement: Add no content style setting to Post Block and Post List widgets
|
172 |
|
173 |
+
= 1.3.1 - 18-03-2021 =
|
174 |
* Fix post block and list pagination
|
175 |
|
176 |
+
= 1.3.0 - 17-03-2021 =
|
177 |
* Add new widgets: Category List and Mailchimp
|
178 |
* Improvement: Change button color to gradient background option
|
179 |
* Improvement: Add gradient icon to icon box widget
|
181 |
* Fix icon box with global link style
|
182 |
* Fix icon box icon margin option
|
183 |
|
184 |
+
= 1.2.0 - 12-03-2021 =
|
185 |
* Improvement: Filter params to ajax post
|
186 |
* Add new widgets: Countdown, Button, Video Button, and Post List
|
187 |
* Add glass blur effect on advanced style
|
188 |
|
189 |
+
= 1.1.5 - 10-03-2021 =
|
190 |
* Improvement: Add no icon option fun fact widget
|
191 |
* Improvement: Add hamburger and icon size option navigation menu widget
|
192 |
* Improvement: Remove pagination when not in use
|
196 |
* Fix image height gallery widget
|
197 |
* Fix post block title link
|
198 |
|
199 |
+
= 1.1.4 - 04-03-2021 =
|
200 |
* Improvement: Use built JS files
|
201 |
|
202 |
+
= 1.1.3 - 03-03-2021 =
|
203 |
* Fix current menu style, navigation menu widget
|
204 |
|
205 |
+
= 1.1.2 - 03-03-2021 =
|
206 |
* Fix element icons not show on light mode editor
|
207 |
* Fix accordion white background
|
208 |
* Improvement: Add no icon option icon box
|
211 |
* Improvement: Add category position option on postblock style 3
|
212 |
* Improvement: Use locale number format on fun fact
|
213 |
|
214 |
+
= 1.1.1 - 01-03-2021 =
|
215 |
* Add global rotate option
|
216 |
* Fix team widget style option
|
217 |
|
218 |
+
= 1.1.0 - 18-02-2021 =
|
219 |
* Add new widgets: Team, Pie Chart, Portfolio Gallery, Image Box, and Animated Text
|
220 |
* Add new font icons
|
221 |
* Fix syntax error on PHP 7.2 or below
|
222 |
* Fix CSS Box
|
223 |
* Improvement: Use tab on widget style settings
|
224 |
|
225 |
+
= 1.0.0 - 18-01-2021 =
|
226 |
* Initial Release
|