Version Description
Released on 20 December 2021
- New: support for WooCommerce 6.0
- Update: YITH plugin framework
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Compare |
Version | 2.9.0 |
Comparing to | |
See all releases |
Code changes from version 2.8.0 to 2.9.0
- includes/class.yith-woocompare-admin.php +1 -1
- init.php +4 -4
- languages/yith-woocommerce-compare.pot +2 -2
- plugin-fw/LICENSE.txt +45 -1
- plugin-fw/assets/css/yit-plugin-panel.css +189 -0
- plugin-fw/assets/css/yith-fields.css +1221 -1137
- plugin-fw/assets/css/yith-icon.css +16 -4
- plugin-fw/assets/fonts/yith-icon.eot +0 -0
- plugin-fw/assets/fonts/yith-icon.ttf +0 -0
- plugin-fw/assets/fonts/yith-icon.woff2 +0 -0
- plugin-fw/assets/images/arrow.svg +11 -0
- plugin-fw/assets/js/codemirror/codemirror.js +9 -2
- plugin-fw/assets/js/javascript-md5/md5.min.js +0 -2
- plugin-fw/dist/gutenberg/index.asset.php +1 -1
- plugin-fw/dist/gutenberg/index.js +1 -1
- plugin-fw/includes/class-yit-plugin-panel-woocommerce.php +10 -3
- plugin-fw/includes/class-yit-plugin-panel.php +85 -5
- plugin-fw/init.php +2 -2
- plugin-fw/languages/yith-plugin-fw-el.po +62 -26
- plugin-fw/languages/yith-plugin-fw-es_ES.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-es_ES.po +63 -27
- plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-it_IT.po +63 -27
- plugin-fw/languages/yith-plugin-fw-nl_NL.mo +0 -0
- plugin-fw/languages/yith-plugin-fw-nl_NL.po +63 -27
- plugin-fw/languages/yith-plugin-fw.pot +62 -26
- plugin-fw/phpcs.xml +3 -0
- plugin-fw/templates/panel/premium-tab.php +63 -0
- readme.txt +14 -9
includes/class.yith-woocompare-admin.php
CHANGED
@@ -271,7 +271,7 @@ if ( ! class_exists( 'YITH_Woocompare_Admin' ) ) {
|
|
271 |
* @return string The premium landing link
|
272 |
*/
|
273 |
public function get_premium_landing_uri() {
|
274 |
-
return $this->premium_landing;
|
275 |
}
|
276 |
|
277 |
/**
|
271 |
* @return string The premium landing link
|
272 |
*/
|
273 |
public function get_premium_landing_uri() {
|
274 |
+
return apply_filters( 'yith_plugin_fw_premium_landing_uri', $this->premium_landing, YITH_WOOCOMPARE_SLUG );
|
275 |
}
|
276 |
|
277 |
/**
|
init.php
CHANGED
@@ -3,17 +3,17 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Compare
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-compare/
|
5 |
* Description: The <code><strong>YITH WooCommerce Compare</strong></code> plugin allow you to compare in a simple and efficient way products on sale in your shop and analyze their main features in a single table. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
-
* Version: 2.
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-compare
|
10 |
* Domain Path: /languages/
|
11 |
-
* WC requires at least: 5.
|
12 |
* WC tested up to: 5.9
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Compare
|
16 |
-
* @version 2.
|
17 |
*/
|
18 |
|
19 |
/*
|
@@ -75,7 +75,7 @@ if ( ! function_exists( 'yith_plugin_registration_hook' ) ) {
|
|
75 |
register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
|
76 |
|
77 |
if ( ! defined( 'YITH_WOOCOMPARE_VERSION' ) ) {
|
78 |
-
define( 'YITH_WOOCOMPARE_VERSION', '2.
|
79 |
}
|
80 |
if ( ! defined( 'YITH_WOOCOMPARE_FREE_INIT' ) ) {
|
81 |
define( 'YITH_WOOCOMPARE_FREE_INIT', plugin_basename( __FILE__ ) );
|
3 |
* Plugin Name: YITH WooCommerce Compare
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-compare/
|
5 |
* Description: The <code><strong>YITH WooCommerce Compare</strong></code> plugin allow you to compare in a simple and efficient way products on sale in your shop and analyze their main features in a single table. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
+
* Version: 2.9.0
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-compare
|
10 |
* Domain Path: /languages/
|
11 |
+
* WC requires at least: 5.8
|
12 |
* WC tested up to: 5.9
|
13 |
*
|
14 |
* @author YITH
|
15 |
* @package YITH WooCommerce Compare
|
16 |
+
* @version 2.9.0
|
17 |
*/
|
18 |
|
19 |
/*
|
75 |
register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );
|
76 |
|
77 |
if ( ! defined( 'YITH_WOOCOMPARE_VERSION' ) ) {
|
78 |
+
define( 'YITH_WOOCOMPARE_VERSION', '2.9.0' );
|
79 |
}
|
80 |
if ( ! defined( 'YITH_WOOCOMPARE_FREE_INIT' ) ) {
|
81 |
define( 'YITH_WOOCOMPARE_FREE_INIT', plugin_basename( __FILE__ ) );
|
languages/yith-woocommerce-compare.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Compare package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: YITH WooCommerce Compare 2.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/yith_woocommerce_compare\n"
|
8 |
-
"POT-Creation-Date: 2021-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Compare package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: YITH WooCommerce Compare 2.9.0\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/yith_woocommerce_compare\n"
|
8 |
+
"POT-Creation-Date: 2021-12-20 09:13:59+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
plugin-fw/LICENSE.txt
CHANGED
@@ -18,6 +18,17 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
|
19 |
YITH Plugin Framework is released under the GPL
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
22 |
|
23 |
GNU GENERAL PUBLIC LICENSE
|
@@ -693,4 +704,37 @@ into proprietary programs. If your program is a subroutine library, you
|
|
693 |
may consider it more useful to permit linking proprietary applications with
|
694 |
the library. If this is what you want to do, use the GNU Lesser General
|
695 |
Public License instead of this License. But first, please read
|
696 |
-
<https://www.gnu.org/philosophy/why-not-lgpl.html>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
YITH Plugin Framework is released under the GPL
|
20 |
|
21 |
+
This program incorporates work covered by the following copyright and
|
22 |
+
permission notices:
|
23 |
+
|
24 |
+
node-md5 is Copyright (c) 2011-2015, Paul Vorbach - (c) 2009, Jeff Mott.
|
25 |
+
https://github.com/pvorb/node-md5
|
26 |
+
This package is licensed under the BSD 3-Clause "New" or "Revised" License (the complete text of this license is shown below):
|
27 |
+
https://github.com/pvorb/node-md5/blob/master/LICENSE
|
28 |
+
|
29 |
+
Wherever third party code has been used, credit has been given in the code's
|
30 |
+
comments.
|
31 |
+
|
32 |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
33 |
|
34 |
GNU GENERAL PUBLIC LICENSE
|
704 |
may consider it more useful to permit linking proprietary applications with
|
705 |
the library. If this is what you want to do, use the GNU Lesser General
|
706 |
Public License instead of this License. But first, please read
|
707 |
+
<https://www.gnu.org/philosophy/why-not-lgpl.html>.
|
708 |
+
|
709 |
+
|
710 |
+
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
711 |
+
|
712 |
+
node-md5: BSD 3-Clause "New" or "Revised" License
|
713 |
+
|
714 |
+
Copyright © 2011-2015, Paul Vorbach.
|
715 |
+
Copyright © 2009, Jeff Mott.
|
716 |
+
|
717 |
+
All rights reserved.
|
718 |
+
|
719 |
+
Redistribution and use in source and binary forms, with or without modification,
|
720 |
+
are permitted provided that the following conditions are met:
|
721 |
+
|
722 |
+
* Redistributions of source code must retain the above copyright notice, this
|
723 |
+
list of conditions and the following disclaimer.
|
724 |
+
* Redistributions in binary form must reproduce the above copyright notice, this
|
725 |
+
list of conditions and the following disclaimer in the documentation and/or
|
726 |
+
other materials provided with the distribution.
|
727 |
+
* Neither the name Crypto-JS nor the names of its contributors may be used to
|
728 |
+
endorse or promote products derived from this software without specific prior
|
729 |
+
written permission.
|
730 |
+
|
731 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
732 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
733 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
734 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
735 |
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
736 |
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
737 |
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
738 |
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
739 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
740 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
plugin-fw/assets/css/yit-plugin-panel.css
CHANGED
@@ -315,6 +315,152 @@
|
|
315 |
text-align : center;
|
316 |
}
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
/**
|
319 |
Post type Edit
|
320 |
*/
|
@@ -1046,12 +1192,55 @@ button#yith-plugin-fw-float-save-button.green {
|
|
1046 |
|
1047 |
/* === Responsive === */
|
1048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
@media (max-width : 767px) {
|
1050 |
|
1051 |
}
|
1052 |
|
1053 |
@media (max-width : 480px) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
|
|
|
|
|
|
|
1055 |
}
|
1056 |
|
1057 |
@media (max-width : 992px) {
|
315 |
text-align : center;
|
316 |
}
|
317 |
|
318 |
+
/**
|
319 |
+
Premium Tab
|
320 |
+
*/
|
321 |
+
|
322 |
+
#yith_plugin_fw_panel_premium_tab {
|
323 |
+
background-color : white;
|
324 |
+
padding : 40px;
|
325 |
+
margin-right : 15px;
|
326 |
+
border : 1px solid #d8d8d8;
|
327 |
+
border-top : none;
|
328 |
+
}
|
329 |
+
|
330 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab {
|
331 |
+
background-color : #f9f9f9;
|
332 |
+
padding : 40px;
|
333 |
+
border : 1px solid #dbdbdb;
|
334 |
+
border-radius : 5px;
|
335 |
+
max-width : 1400px;
|
336 |
+
margin : auto;
|
337 |
+
}
|
338 |
+
|
339 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header {
|
340 |
+
display : flex;
|
341 |
+
align-items : center;
|
342 |
+
gap : 35px 20px;
|
343 |
+
}
|
344 |
+
|
345 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-title {
|
346 |
+
color : #C28D31;
|
347 |
+
text-transform : uppercase;
|
348 |
+
font-weight : 600;
|
349 |
+
font-size : 18px;
|
350 |
+
width : 100%;
|
351 |
+
}
|
352 |
+
|
353 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-cta:before {
|
354 |
+
content : '\f11b';
|
355 |
+
font-family : 'yith-icon';
|
356 |
+
font-size : 18px;
|
357 |
+
line-height : 1em;
|
358 |
+
font-weight : 400;
|
359 |
+
}
|
360 |
+
|
361 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-cta:hover:before {
|
362 |
+
transform-origin : center center;
|
363 |
+
animation : .3s yith-plugin-fw-jiggle linear;
|
364 |
+
animation-iteration-count : 3;
|
365 |
+
}
|
366 |
+
|
367 |
+
@keyframes yith-plugin-fw-jiggle {
|
368 |
+
25% {
|
369 |
+
transform : rotate(-20deg);
|
370 |
+
}
|
371 |
+
75% {
|
372 |
+
transform : rotate(20deg);
|
373 |
+
}
|
374 |
+
}
|
375 |
+
|
376 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-cta {
|
377 |
+
color : white;
|
378 |
+
background-color : #e58f00;
|
379 |
+
display : flex;
|
380 |
+
align-items : center;
|
381 |
+
justify-content : space-between;
|
382 |
+
padding : 12px 24px;
|
383 |
+
column-gap : 12px;
|
384 |
+
font-size : 14px;
|
385 |
+
font-weight : 600;
|
386 |
+
}
|
387 |
+
|
388 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-cta-arrow {
|
389 |
+
background : url("../images/arrow.svg") no-repeat center;
|
390 |
+
background-size : contain;
|
391 |
+
width : 100px;
|
392 |
+
height : 30px;
|
393 |
+
}
|
394 |
+
|
395 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__content {
|
396 |
+
display : flex;
|
397 |
+
column-gap : 20px;
|
398 |
+
padding-top : 30px;
|
399 |
+
}
|
400 |
+
|
401 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__main-image {
|
402 |
+
max-width : 50%;
|
403 |
+
object-fit : contain;
|
404 |
+
object-position : top;
|
405 |
+
flex : 1;
|
406 |
+
}
|
407 |
+
|
408 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__features {
|
409 |
+
display : flex;
|
410 |
+
flex-direction : column;
|
411 |
+
row-gap : 45px;
|
412 |
+
font-size : 18px;
|
413 |
+
line-height : 24px;
|
414 |
+
padding-top : 30px;
|
415 |
+
flex : 1;
|
416 |
+
max-width : 100%;
|
417 |
+
}
|
418 |
+
|
419 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature {
|
420 |
+
display : flex;
|
421 |
+
align-items : center;
|
422 |
+
column-gap : 25px;
|
423 |
+
}
|
424 |
+
|
425 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature:before {
|
426 |
+
content : '';
|
427 |
+
display : block;
|
428 |
+
width : 12px;
|
429 |
+
height : 20px;
|
430 |
+
border : 8px solid #96ca20;
|
431 |
+
border-left : 0;
|
432 |
+
border-top : 0;
|
433 |
+
transform : rotate(45deg) translate(30%, -15%);
|
434 |
+
margin-right : 10px;
|
435 |
+
margin-bottom : 6px;
|
436 |
+
}
|
437 |
+
|
438 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature-content {
|
439 |
+
width : calc(100% - 55px);
|
440 |
+
}
|
441 |
+
|
442 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__cta-button {
|
443 |
+
background-color : #e58f00;
|
444 |
+
color : white;
|
445 |
+
text-transform : uppercase;
|
446 |
+
text-decoration : none;
|
447 |
+
border-radius : 5px;
|
448 |
+
white-space : nowrap;
|
449 |
+
transition : .3s;
|
450 |
+
}
|
451 |
+
|
452 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__cta-button:hover {
|
453 |
+
background-color : #c67c00;
|
454 |
+
}
|
455 |
+
|
456 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__content-cta {
|
457 |
+
padding : 20px;
|
458 |
+
font-size : 20px;
|
459 |
+
font-weight : 600;
|
460 |
+
text-align : center;
|
461 |
+
line-height : normal;
|
462 |
+
}
|
463 |
+
|
464 |
/**
|
465 |
Post type Edit
|
466 |
*/
|
1192 |
|
1193 |
/* === Responsive === */
|
1194 |
|
1195 |
+
@media (max-width : 1210px) {
|
1196 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__main-image,
|
1197 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header-cta-arrow {
|
1198 |
+
display : none;
|
1199 |
+
}
|
1200 |
+
|
1201 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__header {
|
1202 |
+
flex-wrap : wrap;
|
1203 |
+
}
|
1204 |
+
|
1205 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__features {
|
1206 |
+
padding-top : 15px;
|
1207 |
+
}
|
1208 |
+
}
|
1209 |
+
|
1210 |
+
@media (max-width : 600px) {
|
1211 |
+
#yith_plugin_fw_panel_premium_tab {
|
1212 |
+
padding : 20px;
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab {
|
1216 |
+
padding : 30px;
|
1217 |
+
}
|
1218 |
+
}
|
1219 |
+
|
1220 |
@media (max-width : 767px) {
|
1221 |
|
1222 |
}
|
1223 |
|
1224 |
@media (max-width : 480px) {
|
1225 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature:before {
|
1226 |
+
width : 8px;
|
1227 |
+
height : 15px;
|
1228 |
+
border-width : 5px;
|
1229 |
+
}
|
1230 |
+
|
1231 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature {
|
1232 |
+
flex-direction : column;
|
1233 |
+
align-items : flex-start;
|
1234 |
+
row-gap : 13px;
|
1235 |
+
}
|
1236 |
+
|
1237 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__feature-content {
|
1238 |
+
width : 100%;
|
1239 |
+
}
|
1240 |
|
1241 |
+
#yith_plugin_fw_panel_premium_tab .yith-plugin-fw-panel-premium-tab__cta-button {
|
1242 |
+
white-space : unset;
|
1243 |
+
}
|
1244 |
}
|
1245 |
|
1246 |
@media (max-width : 992px) {
|
plugin-fw/assets/css/yith-fields.css
CHANGED
@@ -1,58 +1,58 @@
|
|
1 |
.yith-plugin-fw span.description {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
}
|
9 |
|
10 |
.yith-plugin-fw span.description.inline {
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
}
|
16 |
|
17 |
.yith-disabled {
|
18 |
-
|
19 |
-
|
20 |
}
|
21 |
|
22 |
.yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
|
23 |
-
|
24 |
-
|
25 |
}
|
26 |
|
27 |
.yith-plugin-fw-field-wrapper .yith-inline-fields > div {
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
}
|
32 |
|
33 |
.yith-plugin-fw-field-wrapper span.desc {
|
34 |
-
|
35 |
-
|
36 |
}
|
37 |
|
38 |
.yith-plugin-fw-title-field-wrapper h3.title {
|
39 |
-
|
40 |
-
|
41 |
}
|
42 |
|
43 |
.the-metabox .yith-plugin-fw-title-field-wrapper h3.title {
|
44 |
-
|
45 |
}
|
46 |
|
47 |
.yith-plugin-fw span.color-alpha {
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
}
|
53 |
|
54 |
.yith-plugin-fw .wp-color-result-text {
|
55 |
-
|
56 |
}
|
57 |
|
58 |
.yith-plugin-fw input[type=email],
|
@@ -64,649 +64,674 @@
|
|
64 |
.yith-plugin-ui input[type=password],
|
65 |
.woocommerce .yith-plugin-fw table.form-table input[type=text]:not(.select2-search__field),
|
66 |
.woocommerce .yith-plugin-fw table.form-table select {
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
}
|
73 |
|
74 |
.yith-plugin-fw input[type=number],
|
75 |
.woocommerce .yith-plugin-fw table.form-table input[type=number] {
|
76 |
-
|
77 |
-
|
78 |
}
|
79 |
|
80 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].wp-color-picker,
|
81 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].yith-plugin-fw-colorpicker,
|
82 |
.yith-plugin-fw input[type=text].wp-color-picker,
|
83 |
.yith-plugin-fw input[type=text].yith-plugin-fw-colorpicker {
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
}
|
89 |
|
90 |
.wp-core-ui .yith-plugin-fw-colorpicker-field-wrapper button {
|
91 |
-
|
92 |
}
|
93 |
|
94 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].colorpick,
|
95 |
.yith-plugin-fw input[type=text].colorpick {
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
}
|
101 |
|
102 |
.yith-plugin-fw input.select2-search__field,
|
103 |
.yith-plugin-fw .select2-container .select2-search--inline .select2-search__field,
|
104 |
.woocommerce .yith-plugin-fw input.select2-search__field,
|
105 |
.woocommerce .yith-plugin-fw table.form-table input.select2-search__field {
|
106 |
-
|
107 |
-
|
108 |
}
|
109 |
|
110 |
.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
|
111 |
-
|
112 |
}
|
113 |
|
114 |
.yith-plugin-fw textarea:not(.wp-editor-area) {
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
}
|
119 |
|
120 |
/* ------------- ICONS ------------- */
|
121 |
.yit-icons-manager-wrapper {
|
122 |
-
|
123 |
-
|
124 |
}
|
125 |
|
126 |
.yit-icons-manager-text {
|
127 |
-
|
128 |
}
|
129 |
|
130 |
.yit-icons-manager-icon-text {
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
}
|
136 |
|
137 |
.yit-icons-manager-icon-preview {
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
}
|
147 |
|
148 |
.yit-icons-manager-list-wrapper {
|
149 |
-
|
150 |
-
|
151 |
}
|
152 |
|
153 |
ul.yit-icons-manager-list {
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
}
|
159 |
|
160 |
ul.yit-icons-manager-list li {
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
}
|
171 |
|
172 |
ul.yit-icons-manager-list li:hover {
|
173 |
-
|
174 |
}
|
175 |
|
176 |
ul.yit-icons-manager-list li.active {
|
177 |
-
|
178 |
}
|
179 |
|
180 |
.yit-icons-manager-action-set-default {
|
181 |
-
|
182 |
}
|
183 |
|
184 |
.yit-icons-manager-default-icon-preview {
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
}
|
191 |
|
192 |
/* ------- Text Array ------- */
|
193 |
.yith-plugin-fw-text-array-table td {
|
194 |
-
|
195 |
}
|
196 |
|
197 |
.yith-plugin-fw-text-array-table input[type=text],
|
198 |
.woocommerce table.form-table table.yith-plugin-fw-text-array-table input[type=text] {
|
199 |
-
|
200 |
}
|
201 |
|
202 |
/* ------- Image Gallery ------- */
|
203 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li {
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
}
|
209 |
|
210 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li img {
|
211 |
-
|
212 |
-
|
213 |
}
|
214 |
|
215 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li ul {
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
}
|
222 |
|
223 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul a.delete {
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
}
|
230 |
|
231 |
/* ------- OnOff ------- */
|
232 |
.yith-plugin-fw-onoff-container {
|
233 |
-
|
234 |
-
|
235 |
}
|
236 |
|
237 |
.yith-plugin-fw-onoff-container input {
|
238 |
-
|
239 |
}
|
240 |
|
241 |
.yith-plugin-fw-onoff-container input + span {
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
}
|
253 |
|
254 |
|
255 |
.yith-plugin-fw-onoff-container input + span:before {
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
}
|
266 |
|
267 |
.yith-plugin-fw-onoff-container input:checked + span,
|
268 |
.yith-plugin-fw-onoff-container input.onoffchecked + span {
|
269 |
-
|
270 |
}
|
271 |
|
272 |
.yith-plugin-fw-onoff-container input:checked + span:before,
|
273 |
.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
274 |
-
|
275 |
}
|
276 |
|
277 |
/* ------- Preview ------- */
|
278 |
.yith-plugin-fw-preview-field {
|
279 |
-
|
280 |
}
|
281 |
|
282 |
/* ------- Radio ------- */
|
283 |
.yith-plugin-fw-radio input[type=radio] {
|
284 |
-
|
285 |
}
|
286 |
|
287 |
.yith-plugin-fw-radio__row {
|
288 |
-
|
289 |
}
|
290 |
|
291 |
/* ------- Checkbox Array ------- */
|
292 |
.yith-plugin-fw-checkbox-array input[type=checkbox] {
|
293 |
-
|
294 |
}
|
295 |
|
296 |
.yith-plugin-fw-checkbox-array__row {
|
297 |
-
|
298 |
-
|
299 |
}
|
300 |
|
301 |
.yith-plugin-fw-checkbox-array__row label {
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
}
|
309 |
|
310 |
.yith-plugin-fw-checkbox-array__row label small {
|
311 |
-
|
312 |
-
|
|
|
|
|
|
|
|
|
313 |
}
|
314 |
|
315 |
/* ------- Sidebar Layout ------- */
|
316 |
.yith-plugin-fw-sidebar-layout input[type="radio"] {
|
317 |
-
|
318 |
-
|
319 |
}
|
320 |
|
321 |
.yith-plugin-fw-sidebar-layout input[type="radio"]:first-child {
|
322 |
-
|
323 |
}
|
324 |
|
325 |
.yith-plugin-fw-sidebar-layout input[type="radio"] + img {
|
326 |
-
|
327 |
-
|
328 |
}
|
329 |
|
330 |
.yith-plugin-fw-sidebar-layout input[type="radio"] + img:hover {
|
331 |
-
|
332 |
}
|
333 |
|
334 |
.yith-plugin-fw-sidebar-layout input[checked] + img {
|
335 |
-
|
336 |
-
|
337 |
}
|
338 |
|
339 |
.yith-plugin-fw-sidebar-layout select {
|
340 |
-
|
341 |
}
|
342 |
|
343 |
.yit-admin-panel-content-wrap .yith-plugin-fw-sidebar-layout label {
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
}
|
350 |
|
351 |
/* ------- Slider ------- */
|
352 |
.yith-plugin-fw .slider {
|
353 |
-
|
354 |
}
|
355 |
|
356 |
.yith-plugin-fw-slider-container .ui-slider .minCaption {
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
}
|
362 |
|
363 |
.yith-plugin-fw-slider-container .ui-slider .maxCaption {
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
}
|
369 |
|
370 |
.yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
}
|
385 |
|
386 |
.yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
}
|
394 |
|
395 |
.yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
}
|
403 |
|
404 |
/* ------- Select2 ------- */
|
405 |
.yith-plugin-fw-select2-wrapper {
|
406 |
-
|
407 |
}
|
408 |
|
409 |
/* ------- Textarea ------- */
|
410 |
.yith-plugin-fw-textarea-editor-field-wrapper {
|
411 |
-
|
412 |
-
|
413 |
}
|
414 |
|
415 |
.yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area,
|
416 |
.woocommerce table.form-table .yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area {
|
417 |
-
|
418 |
}
|
419 |
|
420 |
/* ------- Buttons ------- */
|
421 |
.yith-plugin-fw-buttons-field-wrapper {
|
422 |
-
|
423 |
}
|
424 |
|
425 |
/* ------- Select Images ------- */
|
426 |
.yith-plugin-fw-select-images__list {
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
}
|
431 |
|
432 |
.yith-plugin-fw-select-images__item {
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
}
|
445 |
|
446 |
.yith-plugin-fw-select-images__item:hover,
|
447 |
.yith-plugin-fw-select-images__item.yith-plugin-fw-select-images__item--selected {
|
448 |
-
|
449 |
}
|
450 |
|
451 |
.yith-plugin-fw-select-images__item__label {
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
}
|
456 |
|
457 |
.yith-plugin-fw-select-images__item img {
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
}
|
462 |
|
463 |
/****************
|
464 |
WordPress 5.3 with old panel fixes
|
465 |
****************/
|
466 |
.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single {
|
467 |
-
|
468 |
-
|
469 |
}
|
470 |
|
471 |
.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
|
472 |
-
|
473 |
}
|
474 |
|
475 |
/****************
|
476 |
YITH UI
|
477 |
****************/
|
478 |
.yith-plugin-fw-banner {
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
}
|
486 |
|
487 |
.yith-plugin-fw-banner h1 {
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
}
|
497 |
|
498 |
.yith-plugin-fw-banner span {
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
}
|
506 |
|
507 |
.yith-plugin-fw-banner a,
|
508 |
.yith-plugin-fw-banner a:focus {
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
}
|
513 |
|
514 |
.yith-plugin-fw-rate {
|
515 |
-
|
516 |
}
|
517 |
|
518 |
.yith-plugin-fw-rate .dashicons-star-filled {
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
}
|
523 |
|
524 |
.yith-plugin-fw-rate a {
|
525 |
-
|
526 |
}
|
527 |
|
528 |
.yith-plugin-ui a {
|
529 |
-
|
530 |
-
|
531 |
}
|
532 |
|
533 |
.yith-plugin-ui {
|
534 |
-
|
535 |
}
|
536 |
|
537 |
.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
|
538 |
-
|
539 |
}
|
540 |
|
541 |
.yith-plugin-ui .nav-tab {
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
}
|
552 |
|
553 |
.yith-plugin-ui .nav-tab.yith-premium {
|
554 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
}
|
556 |
|
557 |
.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab:not(.nav-tab-active),
|
558 |
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab:not(.nav-tab-active):hover {
|
559 |
-
|
560 |
}
|
561 |
|
562 |
.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab.yith-premium:not(.nav-tab-active),
|
563 |
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab.yith-premium:not(.nav-tab-active):hover {
|
564 |
-
|
565 |
}
|
566 |
|
567 |
.yith-plugin-ui .nav-tab-active,
|
568 |
.yith-plugin-ui .nav-tab-active:hover,
|
569 |
.yith-plugin-ui .nav-tab-active:focus,
|
570 |
.yith-plugin-ui .nav-tab-active:focus:active {
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
}
|
576 |
|
577 |
.yith-plugin-ui .nav-tab-active.yith-premium,
|
578 |
.yith-plugin-ui .nav-tab-active.yith-premium:hover,
|
579 |
.yith-plugin-ui .nav-tab-active.yith-premium:focus,
|
580 |
.yith-plugin-ui .nav-tab-active.yith-premium:focus:active {
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
}
|
585 |
|
586 |
.yith-plugin-ui .yith-plugin-fw-tab-element:first-child .nav-tab-active {
|
587 |
-
|
588 |
}
|
589 |
|
590 |
.yith-plugin-ui #plugin-fw-wc {
|
591 |
-
|
592 |
}
|
593 |
|
594 |
.yith-plugin-ui .form-table td {
|
595 |
-
|
596 |
}
|
597 |
|
598 |
.yith-plugin-ui.metaboxes-tab label {
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
}
|
603 |
|
604 |
.yith-plugin-ui.metaboxes-tab .the-metabox {
|
605 |
-
|
606 |
-
|
607 |
}
|
608 |
|
609 |
.yith-plugin-ui.metaboxes-tab label {
|
610 |
-
|
611 |
-
|
612 |
}
|
613 |
|
614 |
.yith-plugin-ui span.description {
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
}
|
622 |
|
623 |
#wpwrap .yith-plugin-ui h2.nav-tab-wrapper, #wpbody-content .yith-plugin-ui h2.nav-tab-wrapper {
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
}
|
631 |
|
632 |
.yith-plugin-ui #plugin-fw-wc table.form-table,
|
633 |
.yith-plugin-ui #yith-plugin-fw-panel table.form-table,
|
634 |
.yith-plugin-ui table.form-table {
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
}
|
639 |
|
640 |
.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
}
|
646 |
|
647 |
.yith-plugin-ui h2 {
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
}
|
656 |
|
657 |
.yith-plugin-ui .yith-plugin-fw-custom-tab h2 {
|
658 |
-
|
659 |
-
|
660 |
}
|
661 |
|
662 |
.yith-plugin-ui #plugin-fw-wc table.form-table th, #yith-plugin-fw-panel table.form-table th.titledesc, .yith-plugin-ui #plugin-fw-wc table.form-table td, #yith-plugin-fw-panel table.form-table td.forminp {
|
663 |
-
|
664 |
}
|
665 |
|
666 |
.yith-plugin-ui #plugin-fw-wc table.form-table tr.toggle-element-fixed td, #yith-plugin-fw-panel table.form-table tr.toggle-element-fixed td.forminp {
|
667 |
-
|
668 |
}
|
669 |
|
670 |
.yith-plugin-ui #plugin-fw-wc h2 + div {
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
}
|
678 |
|
679 |
.yith-plugin-ui #plugin-fw-wc h2 + div p, .yith-plugin-ui p.info-box {
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
}
|
688 |
|
689 |
.yith-plugin-ui #plugin-fw-wc h2 + div p:before, .yith-plugin-ui p.info-box:before {
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
}
|
699 |
|
700 |
.yith-plugin-ui h2:first-child {
|
701 |
-
|
702 |
}
|
703 |
|
704 |
/*** Icon ***/
|
705 |
.yith-plugin-ui .yith-icon--right-overlay {
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
|
|
|
|
|
|
|
|
|
|
710 |
}
|
711 |
|
712 |
/*** General Input Style ***/
|
@@ -727,61 +752,61 @@ YITH UI
|
|
727 |
.woocommerce .yith-plugin-fw table.form-table input[type=password],
|
728 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number],
|
729 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text] {
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
}
|
738 |
|
739 |
|
740 |
.yith-plugin-ui input::-webkit-input-placeholder {
|
741 |
-
|
742 |
}
|
743 |
|
744 |
.yith-plugin-ui input:-ms-input-placeholder {
|
745 |
-
|
746 |
}
|
747 |
|
748 |
.yith-plugin-ui input::-ms-input-placeholder {
|
749 |
-
|
750 |
}
|
751 |
|
752 |
.yith-plugin-ui input::placeholder {
|
753 |
-
|
754 |
}
|
755 |
|
756 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number] {
|
757 |
-
|
758 |
}
|
759 |
|
760 |
.yith-plugin-ui textarea:not(.wp-editor-area),
|
761 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area) {
|
762 |
-
|
763 |
-
|
764 |
}
|
765 |
|
766 |
.yith-plugin-ui input[type=text]:not(.select2-search__field).wp-color-picker,
|
767 |
.yith-plugin-ui table.form-table input[type=text].wp-color-picker,
|
768 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].wp-color-picker {
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
}
|
775 |
|
776 |
.yith-plugin-ui .search-box input[name="s"] {
|
777 |
-
|
778 |
}
|
779 |
|
780 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].small-text,
|
781 |
.yith-plugin-ui input[type=text].small-text {
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
}
|
786 |
|
787 |
|
@@ -795,32 +820,32 @@ YITH UI
|
|
795 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number]:focus,
|
796 |
.yith-plugin-ui textarea:not(.wp-editor-area):focus,
|
797 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area):focus {
|
798 |
-
|
799 |
}
|
800 |
|
801 |
.woocommerce .yith-plugin-ui table.form-table select,
|
802 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
|
803 |
.yith-plugin-ui select {
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
}
|
812 |
|
813 |
.yith-plugin-ui .form-table th {
|
814 |
-
|
815 |
-
|
816 |
}
|
817 |
|
818 |
/** SELECT 2 **/
|
819 |
.yith-plugin-ui .select2-container,
|
820 |
.yith-plugin-ui .select2-selection--single {
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
}
|
825 |
|
826 |
.yith-plugin-ui .select2-container .select2-selection--single,
|
@@ -829,333 +854,358 @@ YITH UI
|
|
829 |
.yith-plugin-ui .select2-container.select2-container--focus .select2-selection--multiple,
|
830 |
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--single,
|
831 |
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
}
|
836 |
|
837 |
.yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
|
838 |
-
|
839 |
}
|
840 |
|
841 |
/* old panel*/
|
842 |
|
843 |
.yith-plugin-fw-select2-container {
|
844 |
-
|
845 |
}
|
846 |
|
847 |
.yith-plugin-ui span.select2.select2-container.select2-container--default,
|
848 |
span.select2.select2-container.select2-container--default.yith-plugin-fw-select2-container {
|
849 |
-
|
850 |
-
|
851 |
}
|
852 |
|
853 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:hover,
|
854 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:active,
|
855 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:focus {
|
856 |
-
|
857 |
}
|
858 |
|
859 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
860 |
-
|
861 |
}
|
862 |
|
863 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].select2-search__field,
|
864 |
.yith-plugin-ui .yith-plugin-fw table.form-table input.select2-search__field {
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
}
|
870 |
|
871 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice,
|
872 |
.yith-plugin-ui .select2-selection__choice {
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
}
|
880 |
|
881 |
.wc-wp-version-gte-53 .yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
|
882 |
-
|
883 |
}
|
884 |
|
885 |
.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before {
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
}
|
891 |
|
892 |
.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
893 |
-
|
894 |
}
|
895 |
|
896 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown:after {
|
897 |
-
|
898 |
}
|
899 |
|
900 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--below,
|
901 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
}
|
907 |
|
908 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
|
909 |
-
|
910 |
}
|
911 |
|
912 |
.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
|
913 |
.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
|
914 |
-
|
915 |
}
|
916 |
|
917 |
.yith-plugin-fw-select2-container .select2-results .select2-results__group, .select2-results .select2-results__option:first-child {
|
918 |
-
|
919 |
-
|
920 |
}
|
921 |
|
922 |
.yith-plugin-fw-select2-container .select2-results .select2-results__group,
|
923 |
.yith-plugin-fw-select2-container .select2-results .select2-results__option:last-child {
|
924 |
-
|
925 |
-
|
926 |
}
|
927 |
|
928 |
.yith-plugin-fw-select2-container .select2-dropdown {
|
929 |
-
|
930 |
}
|
931 |
|
932 |
.yith-plugin-fw-select2-container.select2-container--default .select2-results__option[data-selected=true] {
|
933 |
-
|
934 |
-
|
935 |
}
|
936 |
|
937 |
.yith-plugin-fw-select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
}
|
942 |
|
943 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
|
944 |
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
945 |
-
|
946 |
-
|
947 |
-
|
|
|
|
|
948 |
}
|
949 |
|
950 |
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after,
|
951 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
}
|
960 |
|
961 |
.yith-plugin-ui .select2-container .select2-selection--multiple,
|
962 |
.yith-plugin-ui .select2-container--default.select2-container--focus .select2-selection--multiple,
|
963 |
.wc-wp-version-gte-53 .yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
|
964 |
-
|
965 |
-
|
966 |
}
|
967 |
|
968 |
.yith-plugin-fw .select2-search input[type=text] {
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
}
|
973 |
|
974 |
.yith-plugin-ui .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier,
|
975 |
.yith-plugin-fw-panel .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier {
|
976 |
-
|
977 |
-
|
978 |
}
|
979 |
|
980 |
.yith-plugin-ui input[type=text].select2-search__field {
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
}
|
985 |
|
986 |
.yith-plugin-ui .select2-container--default .select2-search--dropdown .select2-search__field,
|
987 |
.yith-plugin-fw-panel .select2-container--default .select2-search--dropdown .select2-search__field {
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
}
|
992 |
|
993 |
.yith-plugin-ui .select2-dropdown,
|
994 |
.yith-plugin-fw-panel .select2-dropdown {
|
995 |
-
|
996 |
}
|
997 |
|
998 |
/** RADIO BUTTON **/
|
999 |
.yith-plugin-ui [type="radio"]:checked,
|
1000 |
.yith-plugin-ui [type="radio"]:not(:checked) {
|
1001 |
-
|
1002 |
-
left : -9999px;
|
1003 |
}
|
1004 |
|
1005 |
.yith-plugin-ui [type="radio"]:checked + label,
|
1006 |
.yith-plugin-ui [type="radio"]:not(:checked) + label {
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
}
|
1015 |
|
1016 |
.yith-plugin-ui [type="radio"]:checked + label:before,
|
1017 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:before {
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
}
|
1028 |
|
1029 |
.yith-plugin-ui [type="radio"]:checked + label:after,
|
1030 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
}
|
1042 |
|
1043 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
}
|
1048 |
|
1049 |
.yith-plugin-ui [type="radio"]:checked + label:after {
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 |
}
|
1054 |
|
1055 |
/** CHECKBOX **/
|
1056 |
.yith-plugin-ui input[type="checkbox"] {
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
}
|
1067 |
|
1068 |
.yith-plugin-ui input[type="checkbox"]:checked {
|
1069 |
-
|
1070 |
-
|
1071 |
}
|
1072 |
|
1073 |
.yith-plugin-ui .forminp-checkbox span.description.inline {
|
1074 |
-
|
1075 |
}
|
1076 |
|
1077 |
.yith-plugin-ui input[type="checkbox"]:checked:before {
|
1078 |
-
|
1079 |
}
|
1080 |
|
1081 |
.yith-plugin-ui input[type="checkbox"]:checked:after {
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
}
|
1091 |
|
1092 |
/** ONOFF **/
|
1093 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input[type="checkbox"] {
|
1094 |
-
|
1095 |
}
|
1096 |
|
1097 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
}
|
1106 |
|
1107 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
1108 |
-
|
1109 |
}
|
1110 |
|
1111 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
}
|
1118 |
|
1119 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
}
|
1130 |
|
1131 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span,
|
1132 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input.onoffchecked + span {
|
1133 |
-
|
1134 |
-
|
1135 |
}
|
1136 |
|
1137 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
|
1138 |
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
1139 |
-
|
1140 |
-
|
1141 |
}
|
1142 |
|
1143 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
|
1144 |
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
}
|
1156 |
|
1157 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
1158 |
-
|
1159 |
}
|
1160 |
|
1161 |
|
@@ -1164,30 +1214,30 @@ DATEPICKER
|
|
1164 |
*/
|
1165 |
.yith-plugin-ui .yith-plugin-fw-datepicker + .yith-icon-calendar,
|
1166 |
.yith-plugin-fw-datepicker + .yith-icon-calendar {
|
1167 |
-
|
1168 |
-
|
1169 |
}
|
1170 |
|
1171 |
div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
1172 |
-
|
1173 |
-
|
1174 |
}
|
1175 |
|
1176 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-header.ui-widget-header {
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
}
|
1184 |
|
1185 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-title {
|
1186 |
-
|
1187 |
}
|
1188 |
|
1189 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker th {
|
1190 |
-
|
1191 |
}
|
1192 |
|
1193 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-icon,
|
@@ -1196,62 +1246,62 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1196 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1197 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w,
|
1198 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e {
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
}
|
1208 |
|
1209 |
.yith-plugin-ui .yith-password-wrapper {
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
}
|
1214 |
|
1215 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before,
|
1216 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye:before {
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
}
|
1231 |
|
1232 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before {
|
1233 |
-
|
1234 |
}
|
1235 |
|
1236 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w:before {
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
}
|
1245 |
|
1246 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e:before {
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
}
|
1256 |
|
1257 |
/* arrow */
|
@@ -1259,29 +1309,29 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1259 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1260 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover,
|
1261 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-next-hover {
|
1262 |
-
|
1263 |
-
|
1264 |
}
|
1265 |
|
1266 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev,
|
1267 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover {
|
1268 |
-
|
1269 |
}
|
1270 |
|
1271 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1272 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-next.ui-datepicker-next-hover {
|
1273 |
-
|
1274 |
}
|
1275 |
|
1276 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker table {
|
1277 |
-
|
1278 |
}
|
1279 |
|
1280 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-default,
|
1281 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-default,
|
1282 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-default {
|
1283 |
-
|
1284 |
-
|
1285 |
|
1286 |
}
|
1287 |
|
@@ -1290,531 +1340,543 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1290 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div a.ui-state-default:focus,
|
1291 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-focus,
|
1292 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-focus {
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
}
|
1298 |
|
1299 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-hover,
|
1300 |
.woocommerce #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-focus {
|
1301 |
-
|
1302 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1303 |
}
|
1304 |
|
1305 |
/** colorpicker **/
|
1306 |
.yith-plugin-ui .iris-slider-offset.ui-slider.ui-widget-content {
|
1307 |
-
|
1308 |
-
|
1309 |
}
|
1310 |
|
1311 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .yith-colorpicker-group:not(:first-child) {
|
1312 |
-
|
1313 |
}
|
1314 |
|
1315 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .iris-picker,
|
1316 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-holder {
|
1317 |
-
|
1318 |
}
|
1319 |
|
1320 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap,
|
1321 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap > * {
|
1322 |
-
|
1323 |
-
|
1324 |
}
|
1325 |
|
1326 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .iris-picker,
|
1327 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .wp-picker-holder {
|
1328 |
-
|
1329 |
}
|
1330 |
|
1331 |
.woocommerce .yith-plugin-ui .wp-picker-container .iris-picker, .yith-plugin-ui .wp-picker-container .iris-picker {
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
}
|
1339 |
|
1340 |
.yith-plugin-ui .yith-plugin-fw input[type=text].wp-color-picker {
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
}
|
1345 |
|
1346 |
.yith-plugin-ui .wp-color-result-text {
|
1347 |
-
|
1348 |
}
|
1349 |
|
1350 |
.yith-plugin-ui .wp-picker-container .wp-color-result.button {
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
}
|
1361 |
|
1362 |
.yith-plugin-ui .wp-picker-default-custom {
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
}
|
1370 |
|
1371 |
.yith-plugin-ui .wp-picker-default-custom input.button {
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
}
|
1382 |
|
1383 |
.yith-plugin-ui .wp-picker-default-custom:before {
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
}
|
1396 |
|
1397 |
.yith-plugin-ui .wp-picker-container {
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
}
|
1404 |
|
1405 |
.yith-plugin-ui .iris-picker .iris-square-inner {
|
1406 |
-
|
1407 |
}
|
1408 |
|
1409 |
.yith-plugin-ui .iris-picker .iris-square-value {
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
}
|
1415 |
|
1416 |
.yith-plugin-ui .yith-single-colorpicker {
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
}
|
1421 |
|
1422 |
.yith-plugin-ui .yith-single-colorpicker > label {
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
}
|
1429 |
|
1430 |
.yith-plugin-ui .the-metabox.multi-colorpicker span.description,
|
1431 |
.yith-plugin-ui .yith-plugin-fw-panel-wc-row.multi-colorpicker span.description,
|
1432 |
.yith-plugin-ui .yith-plugin-fw-multi-colorpicker-field-wrapper span.description {
|
1433 |
-
|
1434 |
}
|
1435 |
|
1436 |
/* RANGE SLIDER */
|
1437 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
1438 |
-
|
1439 |
}
|
1440 |
|
1441 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
}
|
1460 |
|
1461 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:before {
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
}
|
1475 |
|
1476 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
|
1477 |
-
|
1478 |
}
|
1479 |
|
1480 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:after {
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
}
|
1492 |
|
1493 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:active:after {
|
1494 |
-
|
1495 |
}
|
1496 |
|
1497 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
|
1498 |
-
|
1499 |
}
|
1500 |
|
1501 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .minCaption,
|
1502 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .maxCaption {
|
1503 |
-
|
1504 |
-
|
1505 |
}
|
1506 |
|
1507 |
|
1508 |
/* ADD_BOX AND TOGGLE */
|
1509 |
.yith-plugin-ui .yith-add-box,
|
1510 |
.yith-plugin-ui .yith-toggle-row {
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
}
|
1520 |
|
1521 |
.yith-plugin-ui .yith-toggle-row {
|
1522 |
-
|
1523 |
-
|
1524 |
}
|
1525 |
|
1526 |
.yith-plugin-ui .yith-toggle-row.fixed {
|
1527 |
-
|
1528 |
}
|
1529 |
|
1530 |
.yith-plugin-ui .yith-toggle-row.highlight {
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
|
1535 |
-
|
1536 |
}
|
1537 |
|
1538 |
.yith-plugin-ui .yith-add-box {
|
1539 |
-
|
1540 |
-
|
1541 |
}
|
1542 |
|
1543 |
.yith-plugin-ui .yith-toggle-title {
|
1544 |
-
|
1545 |
}
|
1546 |
|
1547 |
.yith-plugin-ui #plugin-fw-wc .yith-toggle-title h3,
|
1548 |
.yith-plugin-ui.metaboxes-tab h3,
|
1549 |
.yith-plugin-ui .yith-toggle-title h3,
|
1550 |
.metaboxes-tab.yith-plugin-ui .yith-toggle-title h3 {
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
}
|
1562 |
|
1563 |
.yith-plugin-ui .yith-toggle-title .subtitle {
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
}
|
1568 |
|
1569 |
.yith-plugin-ui .yith-toggle {
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
}
|
1583 |
|
1584 |
.yith-plugin-ui .yith-toggle > span:before {
|
1585 |
-
|
1586 |
}
|
1587 |
|
1588 |
.yith-plugin-ui .yith-toggle > span {
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
}
|
1596 |
|
1597 |
|
1598 |
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle span {
|
1599 |
-
|
1600 |
}
|
1601 |
|
1602 |
.yith-plugin-ui .yith-toggle-content {
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
}
|
1607 |
|
1608 |
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content {
|
1609 |
-
|
1610 |
}
|
1611 |
|
1612 |
.yith-plugin-ui .yith-add-box-row,
|
1613 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row {
|
1614 |
-
|
1615 |
-
|
1616 |
}
|
1617 |
|
1618 |
.yith-plugin-ui .yith-add-box-row > label,
|
1619 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row > label {
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
}
|
1628 |
|
1629 |
.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper),
|
1630 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
}
|
1637 |
|
1638 |
.yith-plugin-ui .yith-add-box-row span.yith-icon,
|
1639 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row span.yith-icon {
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
}
|
1645 |
|
1646 |
.yith-plugin-ui .yith-add-box-buttons,
|
1647 |
.yith-plugin-ui .yith-toggle-content-buttons {
|
1648 |
-
|
1649 |
}
|
1650 |
|
1651 |
.yith-plugin-ui .yith-toggle-onoff {
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
}
|
1656 |
|
1657 |
.yith-plugin-ui .yith-toggle_wrapper.ui-sortable .yith-toggle-onoff {
|
1658 |
-
|
1659 |
}
|
1660 |
|
1661 |
.yith-plugin-ui .yith-toggle-row .yith-icon-drag {
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
}
|
1668 |
|
1669 |
.yith-plugin-ui .yith-toggle-row.with-subtitle .yith-toggle-onoff {
|
1670 |
-
|
1671 |
}
|
1672 |
|
1673 |
/** SPINNER **/
|
1674 |
.yith-plugin-ui .spinner {
|
1675 |
-
|
1676 |
-
|
1677 |
}
|
1678 |
|
1679 |
.yith-plugin-ui .spinner.show {
|
1680 |
-
|
1681 |
}
|
1682 |
|
1683 |
/* LIST TABLE */
|
1684 |
.yith-plugin-ui .form-table .list-table td {
|
1685 |
-
|
1686 |
}
|
1687 |
|
1688 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .bulkactions select {
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
}
|
1694 |
|
1695 |
.yith-plugin-ui .form-table .list-table th {
|
1696 |
-
|
1697 |
}
|
1698 |
|
1699 |
.yith-plugin-ui #plugin-fw-wc table.form-table th.check-column {
|
1700 |
-
|
1701 |
}
|
1702 |
|
1703 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tbody td {
|
1704 |
-
|
1705 |
}
|
1706 |
|
1707 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table th,
|
1708 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table td {
|
1709 |
-
|
1710 |
}
|
1711 |
|
1712 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead td,
|
1713 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead th,
|
1714 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot td,
|
1715 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot th {
|
1716 |
-
|
1717 |
}
|
1718 |
|
1719 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead a,
|
1720 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot a {
|
1721 |
-
|
1722 |
}
|
1723 |
|
1724 |
.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title {
|
1725 |
-
|
1726 |
-
|
1727 |
}
|
1728 |
|
1729 |
.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title > * {
|
1730 |
-
|
1731 |
}
|
1732 |
|
1733 |
.yith-plugin-ui .yith-plugin-fw-list-table h2 {
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
}
|
1740 |
|
1741 |
.yith-plugin-ui .form-table .yith-plugin-fw-list-table table th {
|
1742 |
-
|
1743 |
}
|
1744 |
|
1745 |
.yith-plugin-ui #doaction, .yith-plugin-ui #doaction2,
|
1746 |
.yith-plugin-ui #post-query-submit,
|
1747 |
.yith-plugin-ui #search-submit,
|
1748 |
.yith-plugin-ui .button.filter-button {
|
1749 |
-
|
1750 |
}
|
1751 |
|
1752 |
.yith-plugin-ui .tablenav {
|
1753 |
-
|
1754 |
}
|
1755 |
|
1756 |
.yith-plugin-ui .form-table td p.yith-section-description {
|
1757 |
-
|
1758 |
-
|
1759 |
}
|
1760 |
|
1761 |
/** Time picker width*/
|
1762 |
.yith-plugin-ui input.ui-timepicker-input {
|
1763 |
-
|
1764 |
}
|
1765 |
|
1766 |
/** date format **/
|
1767 |
.yith-plugin-ui .yith-plugin-fw-date-format code {
|
1768 |
-
|
1769 |
}
|
1770 |
|
1771 |
.yith-plugin-ui .yith-plugin-fw-date-format input[type=text].small-text {
|
1772 |
-
|
1773 |
}
|
1774 |
|
1775 |
/** checkbox columns **/
|
1776 |
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
}
|
1781 |
|
1782 |
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset:nth-child(2n+1) {
|
1783 |
-
|
1784 |
}
|
1785 |
|
1786 |
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
}
|
1791 |
|
1792 |
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset:nth-child(3n+1) {
|
1793 |
-
|
1794 |
}
|
1795 |
|
1796 |
.yith-plugin-fw-checkbox-field-wrapper {
|
1797 |
-
|
1798 |
-
|
1799 |
}
|
1800 |
|
1801 |
.yith-plugin-fw-checkbox-field-wrapper + span.description {
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
}
|
1806 |
|
1807 |
.yith-plugin-ui span.description {
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
}
|
1813 |
|
1814 |
.yith-plugin-fw-option-with-description {
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
}
|
1819 |
|
1820 |
|
@@ -1824,47 +1886,47 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1824 |
.yith-plugin-fw-panel-wc-row.yith-plugin-fw--required th.titledesc > label:after,
|
1825 |
.yith-plugin-fw-metabox-field-row.yith-plugin-fw--required label:first-child:after,
|
1826 |
.yith-plugin-fw-toggle-element-field-wrapper .yith-plugin-fw--required > label:first-child:after {
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
}
|
1832 |
|
1833 |
/** YITH PANEL **/
|
1834 |
.yith-plugin-ui #yith-plugin-fw-panel {
|
1835 |
-
|
1836 |
}
|
1837 |
|
1838 |
.yith-plugin-ui #plugin-fw-wc, .yith-plugin-ui #yith-plugin-fw-panel {
|
1839 |
-
|
1840 |
}
|
1841 |
|
1842 |
.yith-plugin-ui .plugin-option tr {
|
1843 |
-
|
1844 |
}
|
1845 |
|
1846 |
/** MULTI SELECT AND TEXT ARRAY INLINE STYLE **/
|
1847 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select,
|
1848 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text {
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
}
|
1854 |
|
1855 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select label,
|
1856 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text label {
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
}
|
1862 |
|
1863 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text input,
|
1864 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select select,
|
1865 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select span.select2 {
|
1866 |
-
|
1867 |
-
|
1868 |
}
|
1869 |
|
1870 |
/**
|
@@ -1872,172 +1934,189 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
1872 |
*/
|
1873 |
|
1874 |
.yith-plugin-fw-dimensions {
|
1875 |
-
|
1876 |
-
|
1877 |
}
|
1878 |
|
1879 |
.yith-plugin-fw-dimensions__units {
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
}
|
1888 |
|
1889 |
.yith-plugin-fw-dimensions__unit {
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
}
|
1895 |
|
1896 |
.yith-plugin-fw-dimensions__unit--selected {
|
1897 |
-
|
1898 |
-
|
1899 |
}
|
1900 |
|
1901 |
.yith-plugin-fw-dimensions__unit--unique {
|
1902 |
-
|
1903 |
-
|
1904 |
}
|
1905 |
|
1906 |
.yith-plugin-fw-dimensions__dimensions {
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
}
|
1913 |
|
1914 |
.yith-plugin-fw-dimensions__dimension {
|
1915 |
-
|
1916 |
-
|
1917 |
}
|
1918 |
|
1919 |
.yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1920 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1921 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1922 |
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
}
|
1932 |
|
1933 |
-
.yith-plugin-fw-
|
1934 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1935 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1936 |
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
1937 |
-
|
1938 |
-
|
1939 |
}
|
1940 |
|
1941 |
.yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1942 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1943 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
1944 |
-
|
1945 |
}
|
1946 |
|
1947 |
.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
|
1948 |
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
}
|
1955 |
|
1956 |
.yith-plugin-fw-dimensions__dimension__label,
|
1957 |
.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
|
1958 |
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
}
|
1965 |
|
1966 |
.yith-plugin-fw-dimensions__linked {
|
1967 |
-
|
1968 |
}
|
1969 |
|
1970 |
.yith-plugin-fw-dimensions__linked span {
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
}
|
1979 |
|
1980 |
.yith-plugin-fw-dimensions--linked-active .yith-plugin-fw-dimensions__linked span {
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1984 |
}
|
1985 |
|
1986 |
/**
|
1987 |
* Image dimensions
|
1988 |
*/
|
1989 |
.yith-plugin-ui .yith-plugin-fw-image-dimensions > div {
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
}
|
1995 |
|
1996 |
.yith-plugin-ui .yith-plugin-fw-image-dimensions label {
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
}
|
2003 |
|
2004 |
/**
|
2005 |
* Copy to clipboard
|
2006 |
*/
|
2007 |
.yith-plugin-fw-copy-to-clipboard {
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
}
|
2017 |
|
2018 |
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly {
|
2019 |
-
|
2020 |
-
|
2021 |
}
|
2022 |
|
2023 |
.yith-plugin-fw-copy-to-clipboard__field-wrap {
|
2024 |
-
|
2025 |
-
|
2026 |
}
|
2027 |
|
2028 |
.yith-plugin-fw-copy-to-clipboard__tip {
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
}
|
2042 |
|
2043 |
|
@@ -2045,236 +2124,241 @@ div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
|
2045 |
.yith-plugin-fw.yith-plugin-ui .yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2046 |
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2047 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
}
|
2057 |
|
2058 |
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2059 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2060 |
-
|
2061 |
-
|
2062 |
}
|
2063 |
|
2064 |
.yith-plugin-fw-copy-to-clipboard__copy {
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
}
|
2074 |
|
2075 |
.yith-plugin-fw-copy-to-clipboard__copy:hover {
|
2076 |
-
|
2077 |
-
|
2078 |
}
|
2079 |
|
2080 |
.yith-plugin-fw-copy-to-clipboard__copy__text {
|
2081 |
-
|
2082 |
-
|
2083 |
}
|
2084 |
|
2085 |
.yith-plugin-fw-copy-to-clipboard__copy__icon {
|
2086 |
-
|
2087 |
-
|
|
|
|
|
|
|
|
|
|
|
2088 |
}
|
2089 |
|
2090 |
/** OVERRIDE WOOCOMMERCE CLASSES FOR 5.3 */
|
2091 |
.branch-5-3 .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__arrow {
|
2092 |
-
|
2093 |
}
|
2094 |
|
2095 |
.branch-5-3 .yith-plugin-fw .select2-container.select2-container--focus .select2-selection--single, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--multiple, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--single {
|
2096 |
-
|
2097 |
}
|
2098 |
|
2099 |
@media screen and (max-width : 1440px) {
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
|
2105 |
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
|
2131 |
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
}
|
2136 |
|
2137 |
@media screen and (max-width : 1024px) {
|
2138 |
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
|
2164 |
}
|
2165 |
|
2166 |
@media screen and (max-width : 782px) {
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
}
|
2203 |
|
2204 |
@media (max-width : 480px) {
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
}
|
1 |
.yith-plugin-fw span.description {
|
2 |
+
display : block;
|
3 |
+
margin-top : 5px;
|
4 |
+
font-size : 12px;
|
5 |
+
color : #777;
|
6 |
+
font-style : italic;
|
7 |
+
clear : both;
|
8 |
}
|
9 |
|
10 |
.yith-plugin-fw span.description.inline {
|
11 |
+
display : inline-block;
|
12 |
+
margin : 0 0 0 5px;
|
13 |
+
min-width : 0;
|
14 |
+
max-width : 100%;
|
15 |
}
|
16 |
|
17 |
.yith-disabled {
|
18 |
+
opacity : 0.3;
|
19 |
+
pointer-events : none;
|
20 |
}
|
21 |
|
22 |
.yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
|
23 |
+
display : block;
|
24 |
+
width : 100%;
|
25 |
}
|
26 |
|
27 |
.yith-plugin-fw-field-wrapper .yith-inline-fields > div {
|
28 |
+
display : inline-block;
|
29 |
+
vertical-align : middle;
|
30 |
+
margin-right : 5px;
|
31 |
}
|
32 |
|
33 |
.yith-plugin-fw-field-wrapper span.desc {
|
34 |
+
display : block;
|
35 |
+
width : 100%;
|
36 |
}
|
37 |
|
38 |
.yith-plugin-fw-title-field-wrapper h3.title {
|
39 |
+
width : 100%;
|
40 |
+
padding : 0 !important;
|
41 |
}
|
42 |
|
43 |
.the-metabox .yith-plugin-fw-title-field-wrapper h3.title {
|
44 |
+
float : left;
|
45 |
}
|
46 |
|
47 |
.yith-plugin-fw span.color-alpha {
|
48 |
+
height : 100% !important;
|
49 |
+
width : 100% !important;
|
50 |
+
border : 1px solid #d9d9d9;
|
51 |
+
margin : -1px;
|
52 |
}
|
53 |
|
54 |
.yith-plugin-fw .wp-color-result-text {
|
55 |
+
height : 100%;
|
56 |
}
|
57 |
|
58 |
.yith-plugin-fw input[type=email],
|
64 |
.yith-plugin-ui input[type=password],
|
65 |
.woocommerce .yith-plugin-fw table.form-table input[type=text]:not(.select2-search__field),
|
66 |
.woocommerce .yith-plugin-fw table.form-table select {
|
67 |
+
width : 400px;
|
68 |
+
max-width : 100%;
|
69 |
+
height : 30px;
|
70 |
+
padding : 5px;
|
71 |
+
line-height : 1;
|
72 |
}
|
73 |
|
74 |
.yith-plugin-fw input[type=number],
|
75 |
.woocommerce .yith-plugin-fw table.form-table input[type=number] {
|
76 |
+
width : 70px;
|
77 |
+
min-width : 70px;
|
78 |
}
|
79 |
|
80 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].wp-color-picker,
|
81 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].yith-plugin-fw-colorpicker,
|
82 |
.yith-plugin-fw input[type=text].wp-color-picker,
|
83 |
.yith-plugin-fw input[type=text].yith-plugin-fw-colorpicker {
|
84 |
+
width : 6em;
|
85 |
+
max-width : none;
|
86 |
+
height : auto;
|
87 |
+
padding : 3px 5px;
|
88 |
}
|
89 |
|
90 |
.wp-core-ui .yith-plugin-fw-colorpicker-field-wrapper button {
|
91 |
+
border-color : #7e8993;
|
92 |
}
|
93 |
|
94 |
.woocommerce .yith-plugin-fw table.form-table input[type=text].colorpick,
|
95 |
.yith-plugin-fw input[type=text].colorpick {
|
96 |
+
width : 6em;
|
97 |
+
max-width : none;
|
98 |
+
height : auto;
|
99 |
+
padding : 6px;
|
100 |
}
|
101 |
|
102 |
.yith-plugin-fw input.select2-search__field,
|
103 |
.yith-plugin-fw .select2-container .select2-search--inline .select2-search__field,
|
104 |
.woocommerce .yith-plugin-fw input.select2-search__field,
|
105 |
.woocommerce .yith-plugin-fw table.form-table input.select2-search__field {
|
106 |
+
padding : 3px;
|
107 |
+
min-width : 380px;
|
108 |
}
|
109 |
|
110 |
.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
|
111 |
+
line-height : 27px;
|
112 |
}
|
113 |
|
114 |
.yith-plugin-fw textarea:not(.wp-editor-area) {
|
115 |
+
width : 400px;
|
116 |
+
max-width : 100%;
|
117 |
+
padding : 5px;
|
118 |
}
|
119 |
|
120 |
/* ------------- ICONS ------------- */
|
121 |
.yit-icons-manager-wrapper {
|
122 |
+
width : 100%;
|
123 |
+
max-width : 400px;
|
124 |
}
|
125 |
|
126 |
.yit-icons-manager-text {
|
127 |
+
width : 100%;
|
128 |
}
|
129 |
|
130 |
.yit-icons-manager-icon-text {
|
131 |
+
width : calc(100% - 35px) !important;
|
132 |
+
height : 30px;
|
133 |
+
float : left;
|
134 |
+
margin : 0;
|
135 |
}
|
136 |
|
137 |
.yit-icons-manager-icon-preview {
|
138 |
+
width : 30px;
|
139 |
+
height : 30px;
|
140 |
+
margin-right : 5px;
|
141 |
+
float : left;
|
142 |
+
padding-top : 6px;
|
143 |
+
box-sizing : border-box;
|
144 |
+
text-align : center;
|
145 |
+
background : #f1f1f1;
|
146 |
}
|
147 |
|
148 |
.yit-icons-manager-list-wrapper {
|
149 |
+
margin : 10px 0;
|
150 |
+
box-shadow : 0 0 0 1px #ddd;
|
151 |
}
|
152 |
|
153 |
ul.yit-icons-manager-list {
|
154 |
+
width : 100%;
|
155 |
+
height : 300px;
|
156 |
+
overflow-y : scroll;
|
157 |
+
margin : 0;
|
158 |
}
|
159 |
|
160 |
ul.yit-icons-manager-list li {
|
161 |
+
float : left;
|
162 |
+
width : 30px;
|
163 |
+
height : 30px;
|
164 |
+
padding-top : 6px;
|
165 |
+
box-sizing : border-box;
|
166 |
+
text-align : center;
|
167 |
+
background : #f1f1f1;
|
168 |
+
margin : 1px;
|
169 |
+
cursor : pointer;
|
170 |
}
|
171 |
|
172 |
ul.yit-icons-manager-list li:hover {
|
173 |
+
background : #c5dcf6;
|
174 |
}
|
175 |
|
176 |
ul.yit-icons-manager-list li.active {
|
177 |
+
background : #d4f0ff;
|
178 |
}
|
179 |
|
180 |
.yit-icons-manager-action-set-default {
|
181 |
+
margin-bottom : 0;
|
182 |
}
|
183 |
|
184 |
.yit-icons-manager-default-icon-preview {
|
185 |
+
height : 100%;
|
186 |
+
display : inline-block;
|
187 |
+
padding-left : 10px;
|
188 |
+
border-left : 1px solid #ccc;
|
189 |
+
margin-left : 10px;
|
190 |
}
|
191 |
|
192 |
/* ------- Text Array ------- */
|
193 |
.yith-plugin-fw-text-array-table td {
|
194 |
+
padding : 1px;
|
195 |
}
|
196 |
|
197 |
.yith-plugin-fw-text-array-table input[type=text],
|
198 |
.woocommerce table.form-table table.yith-plugin-fw-text-array-table input[type=text] {
|
199 |
+
width : 100%;
|
200 |
}
|
201 |
|
202 |
/* ------- Image Gallery ------- */
|
203 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li {
|
204 |
+
display : inline-block;
|
205 |
+
width : 80px;
|
206 |
+
margin-left : 10px;
|
207 |
+
position : relative;
|
208 |
}
|
209 |
|
210 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li img {
|
211 |
+
width : 80px;
|
212 |
+
border : 1px solid #ccc;
|
213 |
}
|
214 |
|
215 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li ul {
|
216 |
+
position : absolute;
|
217 |
+
top : -6px;
|
218 |
+
right : -1px;
|
219 |
+
width : 20px;
|
220 |
+
height : 20px;
|
221 |
}
|
222 |
|
223 |
.yith-plugin-fw .yith-plugin-fw-image-gallery ul a.delete {
|
224 |
+
background : url(../images/x.png) no-repeat;
|
225 |
+
width : 20px;
|
226 |
+
height : 20px;
|
227 |
+
display : block;
|
228 |
+
text-indent : -99999px;
|
229 |
}
|
230 |
|
231 |
/* ------- OnOff ------- */
|
232 |
.yith-plugin-fw-onoff-container {
|
233 |
+
display : inline-block;
|
234 |
+
text-align : left;
|
235 |
}
|
236 |
|
237 |
.yith-plugin-fw-onoff-container input {
|
238 |
+
display : none;
|
239 |
}
|
240 |
|
241 |
.yith-plugin-fw-onoff-container input + span {
|
242 |
+
cursor : pointer;
|
243 |
+
text-indent : -9999px;
|
244 |
+
display : block;
|
245 |
+
width : 36px;
|
246 |
+
line-height : 1;
|
247 |
+
height : 20px;
|
248 |
+
background : #a4a4a4;
|
249 |
+
border-radius : 24px;
|
250 |
+
position : relative;
|
251 |
+
transition : all 0.3s;
|
252 |
}
|
253 |
|
254 |
|
255 |
.yith-plugin-fw-onoff-container input + span:before {
|
256 |
+
content : '';
|
257 |
+
background : #fff;
|
258 |
+
width : 16px;
|
259 |
+
height : 16px;
|
260 |
+
border-radius : 50%;
|
261 |
+
position : absolute;
|
262 |
+
top : 2px;
|
263 |
+
left : 2px;
|
264 |
+
transition : all 0.3s;
|
265 |
}
|
266 |
|
267 |
.yith-plugin-fw-onoff-container input:checked + span,
|
268 |
.yith-plugin-fw-onoff-container input.onoffchecked + span {
|
269 |
+
background : #0073aa;
|
270 |
}
|
271 |
|
272 |
.yith-plugin-fw-onoff-container input:checked + span:before,
|
273 |
.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
274 |
+
left : 18px;
|
275 |
}
|
276 |
|
277 |
/* ------- Preview ------- */
|
278 |
.yith-plugin-fw-preview-field {
|
279 |
+
max-height : 200px;
|
280 |
}
|
281 |
|
282 |
/* ------- Radio ------- */
|
283 |
.yith-plugin-fw-radio input[type=radio] {
|
284 |
+
margin : 0 3px 0 0;
|
285 |
}
|
286 |
|
287 |
.yith-plugin-fw-radio__row {
|
288 |
+
margin-bottom : 8px;
|
289 |
}
|
290 |
|
291 |
/* ------- Checkbox Array ------- */
|
292 |
.yith-plugin-fw-checkbox-array input[type=checkbox] {
|
293 |
+
margin : 2px 3px 0 0;
|
294 |
}
|
295 |
|
296 |
.yith-plugin-fw-checkbox-array__row {
|
297 |
+
margin-bottom : 10px;
|
298 |
+
display : flex;
|
299 |
}
|
300 |
|
301 |
.yith-plugin-fw-checkbox-array__row label {
|
302 |
+
display : inline-block !important;
|
303 |
+
width : auto !important;
|
304 |
+
float : none !important;
|
305 |
+
margin : 0 0 0 10px !important;
|
306 |
+
padding : 0 !important;
|
307 |
+
font-weight : 400 !important;
|
308 |
}
|
309 |
|
310 |
.yith-plugin-fw-checkbox-array__row label small {
|
311 |
+
display : block;
|
312 |
+
line-height : 2em;
|
313 |
+
}
|
314 |
+
|
315 |
+
.rtl .yith-plugin-fw-checkbox-array__row label {
|
316 |
+
margin : 0 10px 0 0 !important;
|
317 |
}
|
318 |
|
319 |
/* ------- Sidebar Layout ------- */
|
320 |
.yith-plugin-fw-sidebar-layout input[type="radio"] {
|
321 |
+
display : none;
|
322 |
+
width : 0px;
|
323 |
}
|
324 |
|
325 |
.yith-plugin-fw-sidebar-layout input[type="radio"]:first-child {
|
326 |
+
margin-right : -2px;
|
327 |
}
|
328 |
|
329 |
.yith-plugin-fw-sidebar-layout input[type="radio"] + img {
|
330 |
+
border : 2px solid #fff;
|
331 |
+
padding : 1px;
|
332 |
}
|
333 |
|
334 |
.yith-plugin-fw-sidebar-layout input[type="radio"] + img:hover {
|
335 |
+
cursor : pointer;
|
336 |
}
|
337 |
|
338 |
.yith-plugin-fw-sidebar-layout input[checked] + img {
|
339 |
+
border : 2px solid #f2ad35;
|
340 |
+
padding : 1px;
|
341 |
}
|
342 |
|
343 |
.yith-plugin-fw-sidebar-layout select {
|
344 |
+
vertical-align : 12px;
|
345 |
}
|
346 |
|
347 |
.yit-admin-panel-content-wrap .yith-plugin-fw-sidebar-layout label {
|
348 |
+
font-weight : bold;
|
349 |
+
width : 200px;
|
350 |
+
float : left;
|
351 |
+
line-height : 23px;
|
352 |
+
margin-left : -230px;
|
353 |
}
|
354 |
|
355 |
/* ------- Slider ------- */
|
356 |
.yith-plugin-fw .slider {
|
357 |
+
padding-top : 20px;
|
358 |
}
|
359 |
|
360 |
.yith-plugin-fw-slider-container .ui-slider .minCaption {
|
361 |
+
position : absolute;
|
362 |
+
right : 95%;
|
363 |
+
top : -6px;
|
364 |
+
margin-right : 11px;
|
365 |
}
|
366 |
|
367 |
.yith-plugin-fw-slider-container .ui-slider .maxCaption {
|
368 |
+
position : absolute;
|
369 |
+
left : 95%;
|
370 |
+
top : -6px;
|
371 |
+
margin-left : 20px;
|
372 |
}
|
373 |
|
374 |
.yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
375 |
+
background : #fff;
|
376 |
+
border : 0px !important;
|
377 |
+
top : -12px !important;
|
378 |
+
border-radius : 50%;
|
379 |
+
width : 27px !important;
|
380 |
+
height : 27px !important;
|
381 |
+
box-sizing : border-box;
|
382 |
+
box-shadow : 0 1px 7px -1px rgba(0, 0, 0, 0.5);
|
383 |
+
font-size : 13px;
|
384 |
+
padding : 6px 0;
|
385 |
+
font-weight : 600;
|
386 |
+
color : #555;
|
387 |
+
text-align : center;
|
388 |
}
|
389 |
|
390 |
.yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
|
391 |
+
background : #ccc;
|
392 |
+
border : none !important;
|
393 |
+
height : 3px !important;
|
394 |
+
border-radius : 3px !important;
|
395 |
+
width : 90%;
|
396 |
+
margin : 15px 5% 20px 5%;
|
397 |
}
|
398 |
|
399 |
.yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
|
400 |
+
background : #4b93ff;
|
401 |
+
left : 0px !important;
|
402 |
+
-webkit-border-radius : 3px;
|
403 |
+
-moz-border-radius : 3px;
|
404 |
+
-khtml-border-radius : 3px;
|
405 |
+
border-radius : 3px;
|
406 |
}
|
407 |
|
408 |
/* ------- Select2 ------- */
|
409 |
.yith-plugin-fw-select2-wrapper {
|
410 |
+
width : 400px;
|
411 |
}
|
412 |
|
413 |
/* ------- Textarea ------- */
|
414 |
.yith-plugin-fw-textarea-editor-field-wrapper {
|
415 |
+
max-width : 1000px;
|
416 |
+
clear : both;
|
417 |
}
|
418 |
|
419 |
.yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area,
|
420 |
.woocommerce table.form-table .yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area {
|
421 |
+
width : 100%;
|
422 |
}
|
423 |
|
424 |
/* ------- Buttons ------- */
|
425 |
.yith-plugin-fw-buttons-field-wrapper {
|
426 |
+
margin-top : 7px;
|
427 |
}
|
428 |
|
429 |
/* ------- Select Images ------- */
|
430 |
.yith-plugin-fw-select-images__list {
|
431 |
+
margin : 0;
|
432 |
+
display : flex;
|
433 |
+
flex-wrap : wrap;
|
434 |
}
|
435 |
|
436 |
.yith-plugin-fw-select-images__item {
|
437 |
+
width : calc(20% - 10px);
|
438 |
+
min-width : 150px;
|
439 |
+
margin : 0 10px 10px 0;
|
440 |
+
padding : 10px;
|
441 |
+
box-sizing : border-box;
|
442 |
+
cursor : pointer;
|
443 |
+
transition : all .3s;
|
444 |
+
border : 2px solid #eee;
|
445 |
+
display : flex;
|
446 |
+
flex-direction : column;
|
447 |
+
justify-content : space-between;
|
448 |
}
|
449 |
|
450 |
.yith-plugin-fw-select-images__item:hover,
|
451 |
.yith-plugin-fw-select-images__item.yith-plugin-fw-select-images__item--selected {
|
452 |
+
border-color : #07bcce;
|
453 |
}
|
454 |
|
455 |
.yith-plugin-fw-select-images__item__label {
|
456 |
+
text-align : center;
|
457 |
+
font-weight : 600;
|
458 |
+
margin-bottom : 10px;
|
459 |
}
|
460 |
|
461 |
.yith-plugin-fw-select-images__item img {
|
462 |
+
display : block;
|
463 |
+
max-width : 100%;
|
464 |
+
margin : 0 auto;
|
465 |
}
|
466 |
|
467 |
/****************
|
468 |
WordPress 5.3 with old panel fixes
|
469 |
****************/
|
470 |
.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single {
|
471 |
+
height : auto;
|
472 |
+
line-height : 1;
|
473 |
}
|
474 |
|
475 |
.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
|
476 |
+
height : 100%;
|
477 |
}
|
478 |
|
479 |
/****************
|
480 |
YITH UI
|
481 |
****************/
|
482 |
.yith-plugin-fw-banner {
|
483 |
+
width : 100%;
|
484 |
+
height : 45px;
|
485 |
+
background : #cfd9dd url(../images/banner-premium.png) no-repeat;
|
486 |
+
display : flex;
|
487 |
+
align-items : center;
|
488 |
+
padding-right : -23px;
|
489 |
}
|
490 |
|
491 |
.yith-plugin-fw-banner h1 {
|
492 |
+
text-transform : uppercase;
|
493 |
+
color : #0c5777;
|
494 |
+
font-size : 15px;
|
495 |
+
padding : 0 0 0 110px;
|
496 |
+
font-weight : 700;
|
497 |
+
text-align : left;
|
498 |
+
display : inline-block;
|
499 |
+
box-sizing : border-box;
|
500 |
}
|
501 |
|
502 |
.yith-plugin-fw-banner span {
|
503 |
+
font-style : italic;
|
504 |
+
display : block;
|
505 |
+
font-size : 15px;
|
506 |
+
color : #214249;
|
507 |
+
text-transform : none;
|
508 |
+
text-align : right;
|
509 |
}
|
510 |
|
511 |
.yith-plugin-fw-banner a,
|
512 |
.yith-plugin-fw-banner a:focus {
|
513 |
+
text-decoration : none;
|
514 |
+
outline : none;
|
515 |
+
box-shadow : none;
|
516 |
}
|
517 |
|
518 |
.yith-plugin-fw-rate {
|
519 |
+
margin : 20px 0;
|
520 |
}
|
521 |
|
522 |
.yith-plugin-fw-rate .dashicons-star-filled {
|
523 |
+
font-size : 12px;
|
524 |
+
margin : 4px -4px;
|
525 |
+
color : #0c5777;
|
526 |
}
|
527 |
|
528 |
.yith-plugin-fw-rate a {
|
529 |
+
text-decoration : none;
|
530 |
}
|
531 |
|
532 |
.yith-plugin-ui a {
|
533 |
+
outline : none;
|
534 |
+
box-shadow : none;
|
535 |
}
|
536 |
|
537 |
.yith-plugin-ui {
|
538 |
+
font-family : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
539 |
}
|
540 |
|
541 |
.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
|
542 |
+
margin-top : 10px;
|
543 |
}
|
544 |
|
545 |
.yith-plugin-ui .nav-tab {
|
546 |
+
background-color : #336374;
|
547 |
+
color : #fff;
|
548 |
+
font-size : 13px;
|
549 |
+
padding : 7px 15px;
|
550 |
+
border : 0;
|
551 |
+
margin : 0 4px 0 0;
|
552 |
+
transition : background-color 0.3s linear;
|
553 |
+
float : none;
|
554 |
+
display : inline-block;
|
555 |
}
|
556 |
|
557 |
.yith-plugin-ui .nav-tab.yith-premium {
|
558 |
+
background-color : #c28d31;
|
559 |
+
padding-left : 40px;
|
560 |
+
position : relative;
|
561 |
+
}
|
562 |
+
|
563 |
+
.yith-plugin-ui .nav-tab.yith-premium:before {
|
564 |
+
content : '\f11b';
|
565 |
+
font-family : 'yith-icon';
|
566 |
+
position : absolute;
|
567 |
+
font-size : 18px;
|
568 |
+
top : 50%;
|
569 |
+
left : 12px;
|
570 |
+
line-height : 1em;
|
571 |
+
width : 1em;
|
572 |
+
height : 1em;
|
573 |
+
transform : translateY(-50%);
|
574 |
+
font-weight : 400;
|
575 |
}
|
576 |
|
577 |
.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab:not(.nav-tab-active),
|
578 |
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab:not(.nav-tab-active):hover {
|
579 |
+
background-color : #207a92;
|
580 |
}
|
581 |
|
582 |
.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab.yith-premium:not(.nav-tab-active),
|
583 |
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab.yith-premium:not(.nav-tab-active):hover {
|
584 |
+
background-color : #d89216;
|
585 |
}
|
586 |
|
587 |
.yith-plugin-ui .nav-tab-active,
|
588 |
.yith-plugin-ui .nav-tab-active:hover,
|
589 |
.yith-plugin-ui .nav-tab-active:focus,
|
590 |
.yith-plugin-ui .nav-tab-active:focus:active {
|
591 |
+
background-color : #fff;
|
592 |
+
color : #336374;
|
593 |
+
box-shadow : 0 3px 0 -1px #fff;
|
594 |
+
border-bottom : 0;
|
595 |
}
|
596 |
|
597 |
.yith-plugin-ui .nav-tab-active.yith-premium,
|
598 |
.yith-plugin-ui .nav-tab-active.yith-premium:hover,
|
599 |
.yith-plugin-ui .nav-tab-active.yith-premium:focus,
|
600 |
.yith-plugin-ui .nav-tab-active.yith-premium:focus:active {
|
601 |
+
background-color : #fff;
|
602 |
+
color : #c28d31;
|
603 |
+
box-shadow : none;
|
604 |
}
|
605 |
|
606 |
.yith-plugin-ui .yith-plugin-fw-tab-element:first-child .nav-tab-active {
|
607 |
+
border-left : 1px solid #ddd;
|
608 |
}
|
609 |
|
610 |
.yith-plugin-ui #plugin-fw-wc {
|
611 |
+
padding-top : 0px;
|
612 |
}
|
613 |
|
614 |
.yith-plugin-ui .form-table td {
|
615 |
+
padding : 15px 20px;
|
616 |
}
|
617 |
|
618 |
.yith-plugin-ui.metaboxes-tab label {
|
619 |
+
color : #33373b;
|
620 |
+
font-size : 14px;
|
621 |
+
margin-left : -248px;
|
622 |
}
|
623 |
|
624 |
.yith-plugin-ui.metaboxes-tab .the-metabox {
|
625 |
+
margin : 40px 0 40px 290px;
|
626 |
+
margin-left : 264px;
|
627 |
}
|
628 |
|
629 |
.yith-plugin-ui.metaboxes-tab label {
|
630 |
+
width : 200px;
|
631 |
+
font-weight : 600;
|
632 |
}
|
633 |
|
634 |
.yith-plugin-ui span.description {
|
635 |
+
color : #716269;
|
636 |
+
font-size : 13px;
|
637 |
+
font-style : normal;
|
638 |
+
font-weight : 400;
|
639 |
+
margin-top : 15px;
|
640 |
+
margin-left : 0;
|
641 |
}
|
642 |
|
643 |
#wpwrap .yith-plugin-ui h2.nav-tab-wrapper, #wpbody-content .yith-plugin-ui h2.nav-tab-wrapper {
|
644 |
+
border : 0;
|
645 |
+
border-bottom : 1px solid #ddd;
|
646 |
+
margin-right : 15px;
|
647 |
+
margin-bottom : 0;
|
648 |
+
background-color : transparent;
|
649 |
+
padding-left : 0;
|
650 |
}
|
651 |
|
652 |
.yith-plugin-ui #plugin-fw-wc table.form-table,
|
653 |
.yith-plugin-ui #yith-plugin-fw-panel table.form-table,
|
654 |
.yith-plugin-ui table.form-table {
|
655 |
+
border : 1px solid #d8d8d8;
|
656 |
+
border-top : 0;
|
657 |
+
margin-bottom : 40px;
|
658 |
}
|
659 |
|
660 |
.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
|
661 |
+
background-color : transparent;
|
662 |
+
border : 0;
|
663 |
+
text-transform : none;
|
664 |
+
border-bottom : 1px solid #ddd;
|
665 |
}
|
666 |
|
667 |
.yith-plugin-ui h2 {
|
668 |
+
color : #2a8db0;
|
669 |
+
font-size : 16px;
|
670 |
+
border : 1px solid #d8d8d8;
|
671 |
+
border-bottom : 0;
|
672 |
+
background-color : #fff;
|
673 |
+
padding : 35px 20px;
|
674 |
+
margin : 0px;
|
675 |
}
|
676 |
|
677 |
.yith-plugin-ui .yith-plugin-fw-custom-tab h2 {
|
678 |
+
border : 0px solid #d8d8d8;
|
679 |
+
padding-left : 0;
|
680 |
}
|
681 |
|
682 |
.yith-plugin-ui #plugin-fw-wc table.form-table th, #yith-plugin-fw-panel table.form-table th.titledesc, .yith-plugin-ui #plugin-fw-wc table.form-table td, #yith-plugin-fw-panel table.form-table td.forminp {
|
683 |
+
padding : 30px 20px;
|
684 |
}
|
685 |
|
686 |
.yith-plugin-ui #plugin-fw-wc table.form-table tr.toggle-element-fixed td, #yith-plugin-fw-panel table.form-table tr.toggle-element-fixed td.forminp {
|
687 |
+
padding : 0 20px 30px;
|
688 |
}
|
689 |
|
690 |
.yith-plugin-ui #plugin-fw-wc h2 + div {
|
691 |
+
background : #fff;
|
692 |
+
border-left : 1px solid #d9d9d9;
|
693 |
+
border-right : 1px solid #d9d9d9;
|
694 |
+
margin : -20px 0 0 0;
|
695 |
+
padding-left : 20px;
|
696 |
+
padding-bottom : 5px;
|
697 |
}
|
698 |
|
699 |
.yith-plugin-ui #plugin-fw-wc h2 + div p, .yith-plugin-ui p.info-box {
|
700 |
+
background : #f1f1f1;
|
701 |
+
font-size : 14px;
|
702 |
+
font-weight : 700;
|
703 |
+
width : 50%;
|
704 |
+
display : block;
|
705 |
+
padding : 15px;
|
706 |
+
margin-bottom : 0;
|
707 |
}
|
708 |
|
709 |
.yith-plugin-ui #plugin-fw-wc h2 + div p:before, .yith-plugin-ui p.info-box:before {
|
710 |
+
content : "\e90e";
|
711 |
+
font-family : yith-icon;
|
712 |
+
font-size : 30px;
|
713 |
+
font-weight : normal;
|
714 |
+
display : block;
|
715 |
+
margin-top : -12px;
|
716 |
+
float : left;
|
717 |
+
margin-right : 15px;
|
718 |
}
|
719 |
|
720 |
.yith-plugin-ui h2:first-child {
|
721 |
+
border-top : 0;
|
722 |
}
|
723 |
|
724 |
/*** Icon ***/
|
725 |
.yith-plugin-ui .yith-icon--right-overlay {
|
726 |
+
position : relative;
|
727 |
+
left : -33px;
|
728 |
+
line-height : 36px;
|
729 |
+
width : 0;
|
730 |
+
}
|
731 |
+
|
732 |
+
.rtl .yith-plugin-ui .yith-icon--right-overlay {
|
733 |
+
left : auto;
|
734 |
+
right : -33px;
|
735 |
}
|
736 |
|
737 |
/*** General Input Style ***/
|
752 |
.woocommerce .yith-plugin-fw table.form-table input[type=password],
|
753 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number],
|
754 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text] {
|
755 |
+
border : 1px solid #d8d8d8;
|
756 |
+
border-radius : 8px;
|
757 |
+
padding : 8px 10px;
|
758 |
+
height : 38px;
|
759 |
+
min-width : 90px;
|
760 |
+
box-shadow : none;
|
761 |
+
color : #716269;
|
762 |
}
|
763 |
|
764 |
|
765 |
.yith-plugin-ui input::-webkit-input-placeholder {
|
766 |
+
color : #999999;
|
767 |
}
|
768 |
|
769 |
.yith-plugin-ui input:-ms-input-placeholder {
|
770 |
+
color : #999999;
|
771 |
}
|
772 |
|
773 |
.yith-plugin-ui input::-ms-input-placeholder {
|
774 |
+
color : #999999;
|
775 |
}
|
776 |
|
777 |
.yith-plugin-ui input::placeholder {
|
778 |
+
color : #999999;
|
779 |
}
|
780 |
|
781 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number] {
|
782 |
+
min-width : 70px;
|
783 |
}
|
784 |
|
785 |
.yith-plugin-ui textarea:not(.wp-editor-area),
|
786 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area) {
|
787 |
+
height : auto;
|
788 |
+
padding : 8px;
|
789 |
}
|
790 |
|
791 |
.yith-plugin-ui input[type=text]:not(.select2-search__field).wp-color-picker,
|
792 |
.yith-plugin-ui table.form-table input[type=text].wp-color-picker,
|
793 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].wp-color-picker {
|
794 |
+
border : 0;
|
795 |
+
height : 30px;
|
796 |
+
max-width : 121px;
|
797 |
+
font-size : 11px;
|
798 |
+
padding : 0;
|
799 |
}
|
800 |
|
801 |
.yith-plugin-ui .search-box input[name="s"] {
|
802 |
+
height : 35px;
|
803 |
}
|
804 |
|
805 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].small-text,
|
806 |
.yith-plugin-ui input[type=text].small-text {
|
807 |
+
width : 100px;
|
808 |
+
height : 25px;
|
809 |
+
border : 1px solid #d9d9d9;
|
810 |
}
|
811 |
|
812 |
|
820 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number]:focus,
|
821 |
.yith-plugin-ui textarea:not(.wp-editor-area):focus,
|
822 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area):focus {
|
823 |
+
border-color : #a7d9ec;
|
824 |
}
|
825 |
|
826 |
.woocommerce .yith-plugin-ui table.form-table select,
|
827 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
|
828 |
.yith-plugin-ui select {
|
829 |
+
-webkit-appearance : none;
|
830 |
+
line-height : 1.2em;
|
831 |
+
min-height : 35px;
|
832 |
+
background : #fff url("../images/arrow_down.svg") no-repeat right center;
|
833 |
+
background-size : 35px 13px;
|
834 |
+
border-radius : 8px;
|
835 |
+
padding : 8px 30px 8px 10px;
|
836 |
}
|
837 |
|
838 |
.yith-plugin-ui .form-table th {
|
839 |
+
width : 200px;
|
840 |
+
padding-right : 50px;
|
841 |
}
|
842 |
|
843 |
/** SELECT 2 **/
|
844 |
.yith-plugin-ui .select2-container,
|
845 |
.yith-plugin-ui .select2-selection--single {
|
846 |
+
height : auto;
|
847 |
+
padding : 2px;
|
848 |
+
outline : none;
|
849 |
}
|
850 |
|
851 |
.yith-plugin-ui .select2-container .select2-selection--single,
|
854 |
.yith-plugin-ui .select2-container.select2-container--focus .select2-selection--multiple,
|
855 |
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--single,
|
856 |
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
|
857 |
+
margin : 0;
|
858 |
+
border : 0;
|
859 |
+
box-shadow : none !important;
|
860 |
}
|
861 |
|
862 |
.yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
|
863 |
+
background : none;
|
864 |
}
|
865 |
|
866 |
/* old panel*/
|
867 |
|
868 |
.yith-plugin-fw-select2-container {
|
869 |
+
z-index : 9999;
|
870 |
}
|
871 |
|
872 |
.yith-plugin-ui span.select2.select2-container.select2-container--default,
|
873 |
span.select2.select2-container.select2-container--default.yith-plugin-fw-select2-container {
|
874 |
+
border : 1px solid #d8d8d8;
|
875 |
+
border-radius : 8px;
|
876 |
}
|
877 |
|
878 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:hover,
|
879 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:active,
|
880 |
.yith-plugin-ui span.select2.select2-container.select2-container--default:focus {
|
881 |
+
border-color : #a7d9ec;
|
882 |
}
|
883 |
|
884 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
885 |
+
color : #fff;
|
886 |
}
|
887 |
|
888 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].select2-search__field,
|
889 |
.yith-plugin-ui .yith-plugin-fw table.form-table input.select2-search__field {
|
890 |
+
border : 0;
|
891 |
+
padding : 0;
|
892 |
+
height : initial;
|
893 |
+
min-width : 380px;
|
894 |
}
|
895 |
|
896 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice,
|
897 |
.yith-plugin-ui .select2-selection__choice {
|
898 |
+
color : #fff;
|
899 |
+
background-color : #4e8ba2;
|
900 |
+
border-radius : 12px;
|
901 |
+
padding : 3px 30px 3px 11px;
|
902 |
+
border-color : #4e8ba2;
|
903 |
+
font-size : 13px;
|
904 |
+
max-width : 100%;
|
905 |
+
box-sizing : border-box;
|
906 |
+
position : relative;
|
907 |
+
white-space : nowrap;
|
908 |
+
overflow : hidden;
|
909 |
+
text-overflow : ellipsis;
|
910 |
}
|
911 |
|
912 |
.wc-wp-version-gte-53 .yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
|
913 |
+
background-image : none;
|
914 |
}
|
915 |
|
916 |
.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before {
|
917 |
+
content : "\e900";
|
918 |
+
font-family : 'yith-icon' !important;
|
919 |
+
line-height : 36px;
|
920 |
+
color : #d9d9d9;
|
921 |
}
|
922 |
|
923 |
.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow b {
|
924 |
+
display : none;
|
925 |
}
|
926 |
|
927 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown:after {
|
928 |
+
display : none;
|
929 |
}
|
930 |
|
931 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--below,
|
932 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
|
933 |
+
margin-top : 10px;
|
934 |
+
border-radius : 8px;
|
935 |
+
box-shadow : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
|
936 |
+
border : 0;
|
937 |
}
|
938 |
|
939 |
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
|
940 |
+
margin-top : -10px;
|
941 |
}
|
942 |
|
943 |
.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
|
944 |
.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
|
945 |
+
border-radius : 8px;
|
946 |
}
|
947 |
|
948 |
.yith-plugin-fw-select2-container .select2-results .select2-results__group, .select2-results .select2-results__option:first-child {
|
949 |
+
border-top-left-radius : 8px;
|
950 |
+
border-top-right-radius : 8px;
|
951 |
}
|
952 |
|
953 |
.yith-plugin-fw-select2-container .select2-results .select2-results__group,
|
954 |
.yith-plugin-fw-select2-container .select2-results .select2-results__option:last-child {
|
955 |
+
border-bottom-left-radius : 8px;
|
956 |
+
border-bottom-right-radius : 8px;
|
957 |
}
|
958 |
|
959 |
.yith-plugin-fw-select2-container .select2-dropdown {
|
960 |
+
border : 0;
|
961 |
}
|
962 |
|
963 |
.yith-plugin-fw-select2-container.select2-container--default .select2-results__option[data-selected=true] {
|
964 |
+
background-color : #fff;
|
965 |
+
outline : none;
|
966 |
}
|
967 |
|
968 |
.yith-plugin-fw-select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
969 |
+
background-color : #e8eff1;
|
970 |
+
color : #4e8ba2;
|
971 |
+
outline : none;
|
972 |
}
|
973 |
|
974 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
|
975 |
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
976 |
+
position : absolute;
|
977 |
+
text-indent : -9999px;
|
978 |
+
right : 2px;
|
979 |
+
padding : 0 7px;
|
980 |
+
margin : 0;
|
981 |
}
|
982 |
|
983 |
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after,
|
984 |
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
|
985 |
+
float : right;
|
986 |
+
color : #fff;
|
987 |
+
content : "\e906";
|
988 |
+
font-family : 'yith-icon' !important;
|
989 |
+
font-size : 9px;
|
990 |
+
line-height : 21px;
|
991 |
+
text-indent : 0;
|
992 |
}
|
993 |
|
994 |
.yith-plugin-ui .select2-container .select2-selection--multiple,
|
995 |
.yith-plugin-ui .select2-container--default.select2-container--focus .select2-selection--multiple,
|
996 |
.wc-wp-version-gte-53 .yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
|
997 |
+
border : 0;
|
998 |
+
box-shadow : none;
|
999 |
}
|
1000 |
|
1001 |
.yith-plugin-fw .select2-search input[type=text] {
|
1002 |
+
border : 0;
|
1003 |
+
padding : 0;
|
1004 |
+
height : auto;
|
1005 |
}
|
1006 |
|
1007 |
.yith-plugin-ui .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier,
|
1008 |
.yith-plugin-fw-panel .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier {
|
1009 |
+
position : absolute;
|
1010 |
+
padding-top : 5px;
|
1011 |
}
|
1012 |
|
1013 |
.yith-plugin-ui input[type=text].select2-search__field {
|
1014 |
+
border : 0;
|
1015 |
+
padding : 0;
|
1016 |
+
height : 30px;
|
1017 |
}
|
1018 |
|
1019 |
.yith-plugin-ui .select2-container--default .select2-search--dropdown .select2-search__field,
|
1020 |
.yith-plugin-fw-panel .select2-container--default .select2-search--dropdown .select2-search__field {
|
1021 |
+
border : 1px solid #d9d9d9;
|
1022 |
+
border-radius : 8px;
|
1023 |
+
box-shadow : none;
|
1024 |
}
|
1025 |
|
1026 |
.yith-plugin-ui .select2-dropdown,
|
1027 |
.yith-plugin-fw-panel .select2-dropdown {
|
1028 |
+
border : 1px solid #d9d9d9;
|
1029 |
}
|
1030 |
|
1031 |
/** RADIO BUTTON **/
|
1032 |
.yith-plugin-ui [type="radio"]:checked,
|
1033 |
.yith-plugin-ui [type="radio"]:not(:checked) {
|
1034 |
+
display : none !important;
|
|
|
1035 |
}
|
1036 |
|
1037 |
.yith-plugin-ui [type="radio"]:checked + label,
|
1038 |
.yith-plugin-ui [type="radio"]:not(:checked) + label {
|
1039 |
+
position : relative;
|
1040 |
+
padding-left : 35px;
|
1041 |
+
cursor : pointer;
|
1042 |
+
line-height : 20px;
|
1043 |
+
display : inline-block;
|
1044 |
+
color : #716269;
|
1045 |
+
font-size : 14px;
|
1046 |
}
|
1047 |
|
1048 |
.yith-plugin-ui [type="radio"]:checked + label:before,
|
1049 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:before {
|
1050 |
+
content : '';
|
1051 |
+
position : absolute;
|
1052 |
+
left : 0;
|
1053 |
+
top : 0;
|
1054 |
+
width : 19px;
|
1055 |
+
height : 19px;
|
1056 |
+
border : 1px solid #d8d8d8;
|
1057 |
+
border-radius : 100%;
|
1058 |
+
background : #fff;
|
1059 |
}
|
1060 |
|
1061 |
.yith-plugin-ui [type="radio"]:checked + label:after,
|
1062 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
1063 |
+
content : '';
|
1064 |
+
width : 13px;
|
1065 |
+
height : 13px;
|
1066 |
+
background : #4e8ba2;
|
1067 |
+
position : absolute;
|
1068 |
+
top : 4px;
|
1069 |
+
left : 4px;
|
1070 |
+
border-radius : 100%;
|
1071 |
+
-webkit-transition : all 0.2s ease;
|
1072 |
+
transition : all 0.2s ease;
|
1073 |
}
|
1074 |
|
1075 |
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
1076 |
+
opacity : 0;
|
1077 |
+
-webkit-transform : scale(0);
|
1078 |
+
transform : scale(0);
|
1079 |
}
|
1080 |
|
1081 |
.yith-plugin-ui [type="radio"]:checked + label:after {
|
1082 |
+
opacity : 1;
|
1083 |
+
-webkit-transform : scale(1);
|
1084 |
+
transform : scale(1);
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
.rtl .yith-plugin-ui [type="radio"]:checked + label,
|
1088 |
+
.rtl .yith-plugin-ui [type="radio"]:not(:checked) + label {
|
1089 |
+
padding-left : 0;
|
1090 |
+
padding-right : 35px;
|
1091 |
+
}
|
1092 |
+
|
1093 |
+
.rtl .yith-plugin-ui [type="radio"]:checked + label:before,
|
1094 |
+
.rtl .yith-plugin-ui [type="radio"]:not(:checked) + label:before {
|
1095 |
+
left : auto;
|
1096 |
+
right : 0;
|
1097 |
+
}
|
1098 |
+
|
1099 |
+
.rtl .yith-plugin-ui [type="radio"]:checked + label:after,
|
1100 |
+
.rtl .yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
1101 |
+
left : auto;
|
1102 |
+
right : 4px;
|
1103 |
}
|
1104 |
|
1105 |
/** CHECKBOX **/
|
1106 |
.yith-plugin-ui input[type="checkbox"] {
|
1107 |
+
-webkit-appearance : none;
|
1108 |
+
background-color : #fff;
|
1109 |
+
border : 1px solid #d8d8d8;
|
1110 |
+
box-shadow : none;
|
1111 |
+
width : 18px;
|
1112 |
+
height : 18px;
|
1113 |
+
border-radius : 3px;
|
1114 |
+
display : inline-block;
|
1115 |
+
position : relative;
|
1116 |
}
|
1117 |
|
1118 |
.yith-plugin-ui input[type="checkbox"]:checked {
|
1119 |
+
background-color : #4e8ba2;
|
1120 |
+
border-color : #488197;
|
1121 |
}
|
1122 |
|
1123 |
.yith-plugin-ui .forminp-checkbox span.description.inline {
|
1124 |
+
margin-left : 10px;
|
1125 |
}
|
1126 |
|
1127 |
.yith-plugin-ui input[type="checkbox"]:checked:before {
|
1128 |
+
display : none;
|
1129 |
}
|
1130 |
|
1131 |
.yith-plugin-ui input[type="checkbox"]:checked:after {
|
1132 |
+
content : "\e905";
|
1133 |
+
font-family : 'yith-icon';
|
1134 |
+
font-size : 10px;
|
1135 |
+
position : absolute;
|
1136 |
+
font-weight : 600;
|
1137 |
+
top : 8px;
|
1138 |
+
left : 3px;
|
1139 |
+
color : #fff;
|
1140 |
}
|
1141 |
|
1142 |
/** ONOFF **/
|
1143 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input[type="checkbox"] {
|
1144 |
+
display : none;
|
1145 |
}
|
1146 |
|
1147 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
1148 |
+
border : 1px solid #d8d8d8;
|
1149 |
+
background-color : #fff;
|
1150 |
+
width : 60px;
|
1151 |
+
height : 24px;
|
1152 |
+
line-height : 14px;
|
1153 |
+
padding : 4px;
|
1154 |
+
box-sizing : border-box;
|
1155 |
}
|
1156 |
|
1157 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
1158 |
+
background-color : #d8d8d8;
|
1159 |
}
|
1160 |
|
1161 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
1162 |
+
width : 13px;
|
1163 |
+
height : 13px;
|
1164 |
+
top : 5px;
|
1165 |
+
left : 6px;
|
1166 |
+
background-color : #d8d8d8;
|
1167 |
}
|
1168 |
|
1169 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
|
1170 |
+
content : attr(data-text-off);
|
1171 |
+
height : 14px;
|
1172 |
+
font-size : 12px;
|
1173 |
+
font-weight : 600;
|
1174 |
+
padding-left : 18px;
|
1175 |
+
color : #979797;
|
1176 |
+
display : block;
|
1177 |
+
white-space : nowrap;
|
1178 |
+
text-align : center;
|
1179 |
}
|
1180 |
|
1181 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span,
|
1182 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input.onoffchecked + span {
|
1183 |
+
background-color : #fff;
|
1184 |
+
border-color : #98aa36;
|
1185 |
}
|
1186 |
|
1187 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
|
1188 |
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
1189 |
+
background-color : #98aa36;
|
1190 |
+
left : 38px;
|
1191 |
}
|
1192 |
|
1193 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
|
1194 |
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
|
1195 |
+
content : attr(data-text-on);
|
1196 |
+
color : #98aa36;
|
1197 |
+
height : 14px;
|
1198 |
+
font-size : 12px;
|
1199 |
+
font-weight : 600;
|
1200 |
+
padding-left : 0;
|
1201 |
+
padding-right : 18px;
|
1202 |
+
display : block;
|
1203 |
+
white-space : nowrap;
|
1204 |
+
text-align : center;
|
1205 |
}
|
1206 |
|
1207 |
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
1208 |
+
text-indent : 0;
|
1209 |
}
|
1210 |
|
1211 |
|
1214 |
*/
|
1215 |
.yith-plugin-ui .yith-plugin-fw-datepicker + .yith-icon-calendar,
|
1216 |
.yith-plugin-fw-datepicker + .yith-icon-calendar {
|
1217 |
+
color : #ccc;
|
1218 |
+
font-size : 18px;
|
1219 |
}
|
1220 |
|
1221 |
div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
|
1222 |
+
border : 0;
|
1223 |
+
box-shadow : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
|
1224 |
}
|
1225 |
|
1226 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-header.ui-widget-header {
|
1227 |
+
background : #4e8ba2;
|
1228 |
+
color : #fff;
|
1229 |
+
font-size : 11px;
|
1230 |
+
line-height : 25px;
|
1231 |
+
border : 0;
|
1232 |
+
min-height : 25px;
|
1233 |
}
|
1234 |
|
1235 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-title {
|
1236 |
+
line-height : 25px;
|
1237 |
}
|
1238 |
|
1239 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker th {
|
1240 |
+
color : #716269;
|
1241 |
}
|
1242 |
|
1243 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-icon,
|
1246 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1247 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w,
|
1248 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e {
|
1249 |
+
background : none;
|
1250 |
+
content : "";
|
1251 |
+
border : 0;
|
1252 |
+
text-indent : 0;
|
1253 |
+
width : 15px;
|
1254 |
+
height : 20px;
|
1255 |
+
display : block;
|
1256 |
+
overflow : hidden;
|
1257 |
}
|
1258 |
|
1259 |
.yith-plugin-ui .yith-password-wrapper {
|
1260 |
+
display : inline-block;
|
1261 |
+
width : auto;
|
1262 |
+
position : relative;
|
1263 |
}
|
1264 |
|
1265 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before,
|
1266 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye:before {
|
1267 |
+
content : '\e911';
|
1268 |
+
color : #999;
|
1269 |
+
font-family : 'yith-icon';
|
1270 |
+
font-size : 20px;
|
1271 |
+
font-weight : normal;
|
1272 |
+
width : 15px;
|
1273 |
+
display : block;
|
1274 |
+
position : absolute;
|
1275 |
+
right : 13px;
|
1276 |
+
top : 0;
|
1277 |
+
line-height : 38px;
|
1278 |
+
bottom : 0;
|
1279 |
+
cursor : pointer;
|
1280 |
}
|
1281 |
|
1282 |
.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before {
|
1283 |
+
content : '\e912';
|
1284 |
}
|
1285 |
|
1286 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w:before {
|
1287 |
+
content : "\e901";
|
1288 |
+
color : #fff;
|
1289 |
+
font-family : 'yith-icon';
|
1290 |
+
font-size : 12px;
|
1291 |
+
font-weight : normal;
|
1292 |
+
width : 15px;
|
1293 |
+
display : block;
|
1294 |
}
|
1295 |
|
1296 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e:before {
|
1297 |
+
content : "\e902";
|
1298 |
+
color : #fff;
|
1299 |
+
text-indent : 0;
|
1300 |
+
font-family : 'yith-icon';
|
1301 |
+
font-size : 12px;
|
1302 |
+
font-weight : normal;
|
1303 |
+
width : 15px;
|
1304 |
+
display : block;
|
1305 |
}
|
1306 |
|
1307 |
/* arrow */
|
1309 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1310 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover,
|
1311 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-next-hover {
|
1312 |
+
top : 1px;
|
1313 |
+
cursor : pointer;
|
1314 |
}
|
1315 |
|
1316 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev,
|
1317 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover {
|
1318 |
+
left : 5px;
|
1319 |
}
|
1320 |
|
1321 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1322 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-next.ui-datepicker-next-hover {
|
1323 |
+
right : 1px;
|
1324 |
}
|
1325 |
|
1326 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker table {
|
1327 |
+
font-size : 10px;
|
1328 |
}
|
1329 |
|
1330 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-default,
|
1331 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-default,
|
1332 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-default {
|
1333 |
+
background : #fff;
|
1334 |
+
border : 1px solid #d9d9d9;
|
1335 |
|
1336 |
}
|
1337 |
|
1340 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div a.ui-state-default:focus,
|
1341 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-focus,
|
1342 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-focus {
|
1343 |
+
background : #ebf1f3;
|
1344 |
+
border : 1px solid #bfd5dd;
|
1345 |
+
outline : none;
|
1346 |
+
box-shadow : none;
|
1347 |
}
|
1348 |
|
1349 |
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-hover,
|
1350 |
.woocommerce #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-focus {
|
1351 |
+
background : none;
|
1352 |
+
border : 0;
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
.rtl #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev,
|
1356 |
+
.rtl #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover {
|
1357 |
+
left : auto;
|
1358 |
+
right : 5px;
|
1359 |
+
}
|
1360 |
+
|
1361 |
+
.rtl #ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
|
1362 |
+
.rtl #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-next.ui-datepicker-next-hover {
|
1363 |
+
right : auto;
|
1364 |
+
left : 1px;
|
1365 |
}
|
1366 |
|
1367 |
/** colorpicker **/
|
1368 |
.yith-plugin-ui .iris-slider-offset.ui-slider.ui-widget-content {
|
1369 |
+
background : transparent !important;
|
1370 |
+
height : auto !important;
|
1371 |
}
|
1372 |
|
1373 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .yith-colorpicker-group:not(:first-child) {
|
1374 |
+
margin-top : 20px;
|
1375 |
}
|
1376 |
|
1377 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .iris-picker,
|
1378 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-holder {
|
1379 |
+
display : none !important;
|
1380 |
}
|
1381 |
|
1382 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap,
|
1383 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap > * {
|
1384 |
+
display : inline-block !important;
|
1385 |
+
vertical-align : middle;
|
1386 |
}
|
1387 |
|
1388 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .iris-picker,
|
1389 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .wp-picker-holder {
|
1390 |
+
display : block !important;
|
1391 |
}
|
1392 |
|
1393 |
.woocommerce .yith-plugin-ui .wp-picker-container .iris-picker, .yith-plugin-ui .wp-picker-container .iris-picker {
|
1394 |
+
z-index : 100;
|
1395 |
+
position : absolute;
|
1396 |
+
margin-top : 20px;
|
1397 |
+
border : 1px solid #d8d8d8;
|
1398 |
+
border-radius : 4px;
|
1399 |
+
box-shadow : 0 1px 3px rgba(0, 0, 0, .2);
|
1400 |
}
|
1401 |
|
1402 |
.yith-plugin-ui .yith-plugin-fw input[type=text].wp-color-picker {
|
1403 |
+
border : 0;
|
1404 |
+
padding : 2px 5px;
|
1405 |
+
height : 30px;
|
1406 |
}
|
1407 |
|
1408 |
.yith-plugin-ui .wp-color-result-text {
|
1409 |
+
display : none;
|
1410 |
}
|
1411 |
|
1412 |
.yith-plugin-ui .wp-picker-container .wp-color-result.button {
|
1413 |
+
width : 30px;
|
1414 |
+
height : 30px;
|
1415 |
+
box-shadow : none;
|
1416 |
+
border : 1px solid #d9d9d9;
|
1417 |
+
margin-bottom : 0;
|
1418 |
+
padding : 0;
|
1419 |
+
display : inline-block;
|
1420 |
+
vertical-align : middle;
|
1421 |
+
box-sizing : content-box;
|
1422 |
}
|
1423 |
|
1424 |
.yith-plugin-ui .wp-picker-default-custom {
|
1425 |
+
cursor : pointer;
|
1426 |
+
width : 25px;
|
1427 |
+
padding : 0 5px;
|
1428 |
+
display : inline-block;
|
1429 |
+
vertical-align : middle;
|
1430 |
+
position : relative;
|
1431 |
}
|
1432 |
|
1433 |
.yith-plugin-ui .wp-picker-default-custom input.button {
|
1434 |
+
opacity : 0;
|
1435 |
+
margin : 0;
|
1436 |
+
padding : 0;
|
1437 |
+
position : absolute;
|
1438 |
+
top : 0;
|
1439 |
+
right : 0;
|
1440 |
+
left : 0;
|
1441 |
+
bottom : 0;
|
1442 |
+
z-index : 2;
|
1443 |
}
|
1444 |
|
1445 |
.yith-plugin-ui .wp-picker-default-custom:before {
|
1446 |
+
content : "\e91a";
|
1447 |
+
text-indent : 0;
|
1448 |
+
font-family : 'yith-icon';
|
1449 |
+
font-size : 16px;
|
1450 |
+
color : #d8d8d8;
|
1451 |
+
font-weight : normal;
|
1452 |
+
width : 15px;
|
1453 |
+
display : block;
|
1454 |
+
background : none;
|
1455 |
+
line-height : 20px;
|
1456 |
+
margin-left : 8px;
|
1457 |
}
|
1458 |
|
1459 |
.yith-plugin-ui .wp-picker-container {
|
1460 |
+
width : auto;
|
1461 |
+
display : inline-block;
|
1462 |
+
border : 1px solid #d9d9d9;
|
1463 |
+
border-radius : 8px;
|
1464 |
+
padding : 5px;
|
1465 |
}
|
1466 |
|
1467 |
.yith-plugin-ui .iris-picker .iris-square-inner {
|
1468 |
+
box-shadow : 0 0 0 1px #d9d9d9 inset;
|
1469 |
}
|
1470 |
|
1471 |
.yith-plugin-ui .iris-picker .iris-square-value {
|
1472 |
+
width : 0;
|
1473 |
+
height : 0;
|
1474 |
+
background : transparent;
|
1475 |
+
border : 0;
|
1476 |
}
|
1477 |
|
1478 |
.yith-plugin-ui .yith-single-colorpicker {
|
1479 |
+
display : inline-block;
|
1480 |
+
width : 220px;
|
1481 |
+
margin-bottom : 10px;
|
1482 |
}
|
1483 |
|
1484 |
.yith-plugin-ui .yith-single-colorpicker > label {
|
1485 |
+
display : block;
|
1486 |
+
font-size : 11px;
|
1487 |
+
font-weight : 600;
|
1488 |
+
margin : 0 0 10px 0;
|
1489 |
+
text-transform : uppercase;
|
1490 |
}
|
1491 |
|
1492 |
.yith-plugin-ui .the-metabox.multi-colorpicker span.description,
|
1493 |
.yith-plugin-ui .yith-plugin-fw-panel-wc-row.multi-colorpicker span.description,
|
1494 |
.yith-plugin-ui .yith-plugin-fw-multi-colorpicker-field-wrapper span.description {
|
1495 |
+
margin-top : 0;
|
1496 |
}
|
1497 |
|
1498 |
/* RANGE SLIDER */
|
1499 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
1500 |
+
top : -45px !important;
|
1501 |
}
|
1502 |
|
1503 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
|
1504 |
+
position : absolute;
|
1505 |
+
top : -33px;
|
1506 |
+
left : 0;
|
1507 |
+
width : auto !important;
|
1508 |
+
height : auto !important;
|
1509 |
+
padding : 2px 8px;
|
1510 |
+
margin-left : -15px;
|
1511 |
+
font-size : 12px;
|
1512 |
+
line-height : 20px;
|
1513 |
+
color : #4e8ba2;
|
1514 |
+
text-align : center;
|
1515 |
+
background-color : #fff;
|
1516 |
+
border : 1px solid #fff;
|
1517 |
+
border-radius : 3px;
|
1518 |
+
-webkit-transition : opacity .3s ease-in-out 0s;
|
1519 |
+
transition : opacity .3s ease-in-out 0s;
|
1520 |
+
box-shadow : 0px 1px 7px 0px rgba(1, 1, 1, 0.13);
|
1521 |
}
|
1522 |
|
1523 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:before {
|
1524 |
+
position : absolute;
|
1525 |
+
bottom : -3px;
|
1526 |
+
left : 50%;
|
1527 |
+
display : inline-block;
|
1528 |
+
width : 6px;
|
1529 |
+
height : 6px;
|
1530 |
+
margin-left : -3px;
|
1531 |
+
content : "";
|
1532 |
+
background-color : #fff;
|
1533 |
+
-webkit-transform : rotate(-45deg);
|
1534 |
+
-ms-transform : rotate(-45deg);
|
1535 |
+
transform : rotate(-45deg);
|
1536 |
}
|
1537 |
|
1538 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
|
1539 |
+
background : #4e8ba2;
|
1540 |
}
|
1541 |
|
1542 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:after {
|
1543 |
+
content : '';
|
1544 |
+
width : 17px;
|
1545 |
+
height : 17px;
|
1546 |
+
display : block;
|
1547 |
+
position : absolute;
|
1548 |
+
background : #fff;
|
1549 |
+
top : 37px;
|
1550 |
+
border-radius : 50%;
|
1551 |
+
box-shadow : 0px 1px 6px 0px rgba(1, 1, 1, 0.25);
|
1552 |
+
cursor : grab;
|
1553 |
}
|
1554 |
|
1555 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:active:after {
|
1556 |
+
cursor : grabbing;
|
1557 |
}
|
1558 |
|
1559 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
|
1560 |
+
height : 5px !important;
|
1561 |
}
|
1562 |
|
1563 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .minCaption,
|
1564 |
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .maxCaption {
|
1565 |
+
font-weight : 700;
|
1566 |
+
font-size : 12px;
|
1567 |
}
|
1568 |
|
1569 |
|
1570 |
/* ADD_BOX AND TOGGLE */
|
1571 |
.yith-plugin-ui .yith-add-box,
|
1572 |
.yith-plugin-ui .yith-toggle-row {
|
1573 |
+
width : 70%;
|
1574 |
+
border : 1px solid #d9d9d9;
|
1575 |
+
box-shadow : none;
|
1576 |
+
border-radius : 4px;
|
1577 |
+
margin : 20px 0;
|
1578 |
+
padding : 10px;
|
1579 |
+
box-sizing : border-box;
|
1580 |
+
background : white;
|
1581 |
}
|
1582 |
|
1583 |
.yith-plugin-ui .yith-toggle-row {
|
1584 |
+
cursor : pointer;
|
1585 |
+
transition : all ease 0.5s;
|
1586 |
}
|
1587 |
|
1588 |
.yith-plugin-ui .yith-toggle-row.fixed {
|
1589 |
+
margin : 0;
|
1590 |
}
|
1591 |
|
1592 |
.yith-plugin-ui .yith-toggle-row.highlight {
|
1593 |
+
transition : all ease 0.5s;
|
1594 |
+
/*box-shadow: 0 0 7px rgb(81, 117, 129);*/
|
1595 |
+
box-shadow : 0 0 7px rgb(30, 140, 190);
|
1596 |
|
1597 |
+
display : block;
|
1598 |
}
|
1599 |
|
1600 |
.yith-plugin-ui .yith-add-box {
|
1601 |
+
padding : 25px;
|
1602 |
+
display : none;
|
1603 |
}
|
1604 |
|
1605 |
.yith-plugin-ui .yith-toggle-title {
|
1606 |
+
position : relative;
|
1607 |
}
|
1608 |
|
1609 |
.yith-plugin-ui #plugin-fw-wc .yith-toggle-title h3,
|
1610 |
.yith-plugin-ui.metaboxes-tab h3,
|
1611 |
.yith-plugin-ui .yith-toggle-title h3,
|
1612 |
.metaboxes-tab.yith-plugin-ui .yith-toggle-title h3 {
|
1613 |
+
padding : 0px 20px 0px 30px;
|
1614 |
+
margin : 3px 0;
|
1615 |
+
display : inline-block;
|
1616 |
+
position : relative;
|
1617 |
+
min-width : 173px;
|
1618 |
+
box-sizing : border-box;
|
1619 |
+
font-weight : 600;
|
1620 |
+
font-size : 15px;
|
1621 |
+
color : #23282d;
|
1622 |
+
text-transform : inherit;
|
1623 |
}
|
1624 |
|
1625 |
.yith-plugin-ui .yith-toggle-title .subtitle {
|
1626 |
+
padding-left : 0;
|
1627 |
+
padding-top : 8px;
|
1628 |
+
font-size : 12px;
|
1629 |
}
|
1630 |
|
1631 |
.yith-plugin-ui .yith-toggle {
|
1632 |
+
position : absolute;
|
1633 |
+
width : 25px;
|
1634 |
+
cursor : pointer;
|
1635 |
+
left : 0;
|
1636 |
+
top : 0;
|
1637 |
+
bottom : 0;
|
1638 |
+
margin : auto;
|
1639 |
+
display : flex;
|
1640 |
+
align-items : center;
|
1641 |
+
box-sizing : border-box;
|
1642 |
+
align-items : center;
|
1643 |
+
justify-content : center;
|
1644 |
}
|
1645 |
|
1646 |
.yith-plugin-ui .yith-toggle > span:before {
|
1647 |
+
color : #405e69;
|
1648 |
}
|
1649 |
|
1650 |
.yith-plugin-ui .yith-toggle > span {
|
1651 |
+
position : absolute;
|
1652 |
+
/* right : 50%; */
|
1653 |
+
transition : transform .3s;
|
1654 |
+
line-height : 1;
|
1655 |
+
font-size : 13px;
|
1656 |
+
font-weight : 600;
|
1657 |
}
|
1658 |
|
1659 |
|
1660 |
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle span {
|
1661 |
+
transform : rotateZ(90deg);
|
1662 |
}
|
1663 |
|
1664 |
.yith-plugin-ui .yith-toggle-content {
|
1665 |
+
display : none;
|
1666 |
+
position : relative;
|
1667 |
+
padding : 30px 25px;
|
1668 |
}
|
1669 |
|
1670 |
.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content {
|
1671 |
+
/* display: block;*/
|
1672 |
}
|
1673 |
|
1674 |
.yith-plugin-ui .yith-add-box-row,
|
1675 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row {
|
1676 |
+
display : table;
|
1677 |
+
margin-bottom : 40px;
|
1678 |
}
|
1679 |
|
1680 |
.yith-plugin-ui .yith-add-box-row > label,
|
1681 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row > label {
|
1682 |
+
display : table-cell;
|
1683 |
+
min-width : 180px;
|
1684 |
+
padding-right : 20px;
|
1685 |
+
color : #33373b;
|
1686 |
+
font-size : 14px;
|
1687 |
+
vertical-align : top;
|
1688 |
+
font-weight : 600;
|
1689 |
}
|
1690 |
|
1691 |
.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper),
|
1692 |
.yith-plugin-ui .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
|
1693 |
+
/* display: table-cell;*/
|
1694 |
+
width : auto;
|
1695 |
+
float : none;
|
1696 |
+
vertical-align : middle;
|
1697 |
+
position : relative;
|
1698 |
}
|
1699 |
|
1700 |
.yith-plugin-ui .yith-add-box-row span.yith-icon,
|
1701 |
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row span.yith-icon {
|
1702 |
+
position : absolute;
|
1703 |
+
right : 15px;
|
1704 |
+
top : 0;
|
1705 |
+
bottom : 0;
|
1706 |
}
|
1707 |
|
1708 |
.yith-plugin-ui .yith-add-box-buttons,
|
1709 |
.yith-plugin-ui .yith-toggle-content-buttons {
|
1710 |
+
text-align : right;
|
1711 |
}
|
1712 |
|
1713 |
.yith-plugin-ui .yith-toggle-onoff {
|
1714 |
+
position : absolute;
|
1715 |
+
cursor : pointer;
|
1716 |
+
right : 0;
|
1717 |
}
|
1718 |
|
1719 |
.yith-plugin-ui .yith-toggle_wrapper.ui-sortable .yith-toggle-onoff {
|
1720 |
+
right : 30px;
|
1721 |
}
|
1722 |
|
1723 |
.yith-plugin-ui .yith-toggle-row .yith-icon-drag {
|
1724 |
+
position : absolute;
|
1725 |
+
right : 2px;
|
1726 |
+
top : 50%;
|
1727 |
+
transform : translateY(-50%);
|
1728 |
+
font-size : 18px;
|
1729 |
}
|
1730 |
|
1731 |
.yith-plugin-ui .yith-toggle-row.with-subtitle .yith-toggle-onoff {
|
1732 |
+
top : 25%;
|
1733 |
}
|
1734 |
|
1735 |
/** SPINNER **/
|
1736 |
.yith-plugin-ui .spinner {
|
1737 |
+
vertical-align : -5px;
|
1738 |
+
float : none;
|
1739 |
}
|
1740 |
|
1741 |
.yith-plugin-ui .spinner.show {
|
1742 |
+
visibility : visible;
|
1743 |
}
|
1744 |
|
1745 |
/* LIST TABLE */
|
1746 |
.yith-plugin-ui .form-table .list-table td {
|
1747 |
+
padding : 15px 0px;
|
1748 |
}
|
1749 |
|
1750 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .bulkactions select {
|
1751 |
+
border : 1px solid #d8d8d8;
|
1752 |
+
max-width : 200px;
|
1753 |
+
max-height : 30px;
|
1754 |
+
padding : 0 10px;
|
1755 |
}
|
1756 |
|
1757 |
.yith-plugin-ui .form-table .list-table th {
|
1758 |
+
width : initial;
|
1759 |
}
|
1760 |
|
1761 |
.yith-plugin-ui #plugin-fw-wc table.form-table th.check-column {
|
1762 |
+
padding-left : 3px;
|
1763 |
}
|
1764 |
|
1765 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tbody td {
|
1766 |
+
padding-left : 20px;
|
1767 |
}
|
1768 |
|
1769 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table th,
|
1770 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table td {
|
1771 |
+
padding : 15px 20px 15px 20px;
|
1772 |
}
|
1773 |
|
1774 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead td,
|
1775 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead th,
|
1776 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot td,
|
1777 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot th {
|
1778 |
+
padding : 3px 20px;
|
1779 |
}
|
1780 |
|
1781 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead a,
|
1782 |
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot a {
|
1783 |
+
padding-left : 0;
|
1784 |
}
|
1785 |
|
1786 |
.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title {
|
1787 |
+
margin-bottom : 20px;
|
1788 |
+
line-height : 1.2;
|
1789 |
}
|
1790 |
|
1791 |
.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title > * {
|
1792 |
+
vertical-align : middle;
|
1793 |
}
|
1794 |
|
1795 |
.yith-plugin-ui .yith-plugin-fw-list-table h2 {
|
1796 |
+
border : 0;
|
1797 |
+
padding : 0;
|
1798 |
+
display : inline-block;
|
1799 |
+
margin-right : 10px;
|
1800 |
+
line-height : inherit;
|
1801 |
}
|
1802 |
|
1803 |
.yith-plugin-ui .form-table .yith-plugin-fw-list-table table th {
|
1804 |
+
vertical-align : middle;
|
1805 |
}
|
1806 |
|
1807 |
.yith-plugin-ui #doaction, .yith-plugin-ui #doaction2,
|
1808 |
.yith-plugin-ui #post-query-submit,
|
1809 |
.yith-plugin-ui #search-submit,
|
1810 |
.yith-plugin-ui .button.filter-button {
|
1811 |
+
line-height : 33px;
|
1812 |
}
|
1813 |
|
1814 |
.yith-plugin-ui .tablenav {
|
1815 |
+
margin : 20px 0;
|
1816 |
}
|
1817 |
|
1818 |
.yith-plugin-ui .form-table td p.yith-section-description {
|
1819 |
+
color : #716269;
|
1820 |
+
margin-bottom : 20px;
|
1821 |
}
|
1822 |
|
1823 |
/** Time picker width*/
|
1824 |
.yith-plugin-ui input.ui-timepicker-input {
|
1825 |
+
width : 100px !important;
|
1826 |
}
|
1827 |
|
1828 |
/** date format **/
|
1829 |
.yith-plugin-ui .yith-plugin-fw-date-format code {
|
1830 |
+
margin-left : 30px;
|
1831 |
}
|
1832 |
|
1833 |
.yith-plugin-ui .yith-plugin-fw-date-format input[type=text].small-text {
|
1834 |
+
margin-left : 45px;
|
1835 |
}
|
1836 |
|
1837 |
/** checkbox columns **/
|
1838 |
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
|
1839 |
+
width : calc(50% - 20px);
|
1840 |
+
padding-right : 20px;
|
1841 |
+
float : left;
|
1842 |
}
|
1843 |
|
1844 |
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset:nth-child(2n+1) {
|
1845 |
+
clear : both;
|
1846 |
}
|
1847 |
|
1848 |
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
|
1849 |
+
width : calc(33% - 10px);
|
1850 |
+
padding-right : 10px;
|
1851 |
+
float : left;
|
1852 |
}
|
1853 |
|
1854 |
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset:nth-child(3n+1) {
|
1855 |
+
clear : both;
|
1856 |
}
|
1857 |
|
1858 |
.yith-plugin-fw-checkbox-field-wrapper {
|
1859 |
+
display : inline-block !important;
|
1860 |
+
margin-right : 10px;
|
1861 |
}
|
1862 |
|
1863 |
.yith-plugin-fw-checkbox-field-wrapper + span.description {
|
1864 |
+
display : inline-block;
|
1865 |
+
vertical-align : middle;
|
1866 |
+
margin : 0;
|
1867 |
}
|
1868 |
|
1869 |
.yith-plugin-ui span.description {
|
1870 |
+
margin-top : 10px;
|
1871 |
+
line-height : 20px;
|
1872 |
+
max-width : 40%;
|
1873 |
+
min-width : min(100%, 360px);
|
1874 |
}
|
1875 |
|
1876 |
.yith-plugin-fw-option-with-description {
|
1877 |
+
display : table-cell;
|
1878 |
+
width : 90%;
|
1879 |
+
vertical-align : top;
|
1880 |
}
|
1881 |
|
1882 |
|
1886 |
.yith-plugin-fw-panel-wc-row.yith-plugin-fw--required th.titledesc > label:after,
|
1887 |
.yith-plugin-fw-metabox-field-row.yith-plugin-fw--required label:first-child:after,
|
1888 |
.yith-plugin-fw-toggle-element-field-wrapper .yith-plugin-fw--required > label:first-child:after {
|
1889 |
+
content : '*';
|
1890 |
+
color : #ea0034;
|
1891 |
+
font-weight : 800;
|
1892 |
+
margin-left : 4px;
|
1893 |
}
|
1894 |
|
1895 |
/** YITH PANEL **/
|
1896 |
.yith-plugin-ui #yith-plugin-fw-panel {
|
1897 |
+
margin-top : -10px;
|
1898 |
}
|
1899 |
|
1900 |
.yith-plugin-ui #plugin-fw-wc, .yith-plugin-ui #yith-plugin-fw-panel {
|
1901 |
+
padding-top : 0;
|
1902 |
}
|
1903 |
|
1904 |
.yith-plugin-ui .plugin-option tr {
|
1905 |
+
border : 0;
|
1906 |
}
|
1907 |
|
1908 |
/** MULTI SELECT AND TEXT ARRAY INLINE STYLE **/
|
1909 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select,
|
1910 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text {
|
1911 |
+
display : inline-block;
|
1912 |
+
width : 30%;
|
1913 |
+
margin-right : 3%;
|
1914 |
+
max-width : 400px;
|
1915 |
}
|
1916 |
|
1917 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select label,
|
1918 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text label {
|
1919 |
+
display : block;
|
1920 |
+
font-size : 11px;
|
1921 |
+
font-weight : 600;
|
1922 |
+
margin : 0 0 10px 0;
|
1923 |
}
|
1924 |
|
1925 |
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text input,
|
1926 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select select,
|
1927 |
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select span.select2 {
|
1928 |
+
width : 100% !important;
|
1929 |
+
min-width : auto !important;
|
1930 |
}
|
1931 |
|
1932 |
/**
|
1934 |
*/
|
1935 |
|
1936 |
.yith-plugin-fw-dimensions {
|
1937 |
+
display : flex;
|
1938 |
+
align-items : flex-end;
|
1939 |
}
|
1940 |
|
1941 |
.yith-plugin-fw-dimensions__units {
|
1942 |
+
flex : 1;
|
1943 |
+
display : flex;
|
1944 |
+
margin-left : 5px;
|
1945 |
+
width : calc(100% - 105px);
|
1946 |
+
flex-wrap : wrap;
|
1947 |
+
min-height : 38px;
|
1948 |
+
margin-bottom : -8px;
|
1949 |
}
|
1950 |
|
1951 |
.yith-plugin-fw-dimensions__unit {
|
1952 |
+
display : inline-block;
|
1953 |
+
padding : 0 3px;
|
1954 |
+
cursor : pointer;
|
1955 |
+
font-weight : 700;
|
1956 |
}
|
1957 |
|
1958 |
.yith-plugin-fw-dimensions__unit--selected {
|
1959 |
+
text-decoration : underline;
|
1960 |
+
color : #007694;
|
1961 |
}
|
1962 |
|
1963 |
.yith-plugin-fw-dimensions__unit--unique {
|
1964 |
+
text-decoration : none;
|
1965 |
+
cursor : default;
|
1966 |
}
|
1967 |
|
1968 |
.yith-plugin-fw-dimensions__dimensions {
|
1969 |
+
display : flex;
|
1970 |
+
margin : 0;
|
1971 |
+
align-items : flex-end;
|
1972 |
+
max-width : 400px;
|
1973 |
+
width : 400px;
|
1974 |
}
|
1975 |
|
1976 |
.yith-plugin-fw-dimensions__dimension {
|
1977 |
+
text-align : center;
|
1978 |
+
flex : 1;
|
1979 |
}
|
1980 |
|
1981 |
.yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1982 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1983 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1984 |
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
1985 |
+
width : 100%;
|
1986 |
+
min-width : 0;
|
1987 |
+
border-radius : 0;
|
1988 |
+
border : 1px solid #d8d8d8;
|
1989 |
+
border-left : none;
|
1990 |
+
height : 38px;
|
1991 |
+
text-align : center;
|
1992 |
+
padding-right : 0;
|
1993 |
}
|
1994 |
|
1995 |
+
.yith-plugin-fw-dimen sions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1996 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1997 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
1998 |
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
1999 |
+
border-left : 1px solid #d8d8d8;
|
2000 |
+
border-radius : 6px 0 0 6px;
|
2001 |
}
|
2002 |
|
2003 |
.yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2004 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2005 |
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
2006 |
+
border-radius : 0 6px 6px 0;
|
2007 |
}
|
2008 |
|
2009 |
.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
|
2010 |
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
|
2011 |
+
float : none;
|
2012 |
+
margin : 0;
|
2013 |
+
width : auto;
|
2014 |
+
font-weight : inherit;
|
2015 |
+
line-height : inherit;
|
2016 |
}
|
2017 |
|
2018 |
.yith-plugin-fw-dimensions__dimension__label,
|
2019 |
.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
|
2020 |
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
|
2021 |
+
text-transform : uppercase;
|
2022 |
+
letter-spacing : 1px;
|
2023 |
+
font-size : 9px;
|
2024 |
+
margin-bottom : 5px;
|
2025 |
+
display : inline-block;
|
2026 |
}
|
2027 |
|
2028 |
.yith-plugin-fw-dimensions__linked {
|
2029 |
+
cursor : pointer;
|
2030 |
}
|
2031 |
|
2032 |
.yith-plugin-fw-dimensions__linked span {
|
2033 |
+
border : 1px solid #d8d8d8;
|
2034 |
+
border-left : none;
|
2035 |
+
height : 38px;
|
2036 |
+
border-radius : 0 6px 6px 0;
|
2037 |
+
box-sizing : border-box;
|
2038 |
+
padding : 8px 10px;
|
2039 |
+
width : 100%;
|
2040 |
}
|
2041 |
|
2042 |
.yith-plugin-fw-dimensions--linked-active .yith-plugin-fw-dimensions__linked span {
|
2043 |
+
color : #fff;
|
2044 |
+
background : #007694;
|
2045 |
+
border-color : #007694;
|
2046 |
+
}
|
2047 |
+
|
2048 |
+
.rtl .yith-plugin-fw-dimensions__linked span {
|
2049 |
+
border-radius : 6px 0 0 6px;
|
2050 |
+
}
|
2051 |
+
|
2052 |
+
.rtl .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2053 |
+
.rtl.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2054 |
+
.rtl .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2055 |
+
.rtl.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
2056 |
+
border-radius : 0 6px 6px 0;
|
2057 |
+
}
|
2058 |
+
|
2059 |
+
.rtl .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2060 |
+
.rtl.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
|
2061 |
+
.rtl .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
|
2062 |
+
border-radius : 6px 0 0 6px;
|
2063 |
}
|
2064 |
|
2065 |
/**
|
2066 |
* Image dimensions
|
2067 |
*/
|
2068 |
.yith-plugin-ui .yith-plugin-fw-image-dimensions > div {
|
2069 |
+
display : inline-block;
|
2070 |
+
width : 30%;
|
2071 |
+
margin-right : 3%;
|
2072 |
+
max-width : 100px;
|
2073 |
}
|
2074 |
|
2075 |
.yith-plugin-ui .yith-plugin-fw-image-dimensions label {
|
2076 |
+
display : block;
|
2077 |
+
font-size : 11px;
|
2078 |
+
font-weight : 600;
|
2079 |
+
text-transform : uppercase;
|
2080 |
+
margin : 0 0 10px 0;
|
2081 |
}
|
2082 |
|
2083 |
/**
|
2084 |
* Copy to clipboard
|
2085 |
*/
|
2086 |
.yith-plugin-fw-copy-to-clipboard {
|
2087 |
+
background : #ffffff;
|
2088 |
+
border-radius : 8px;
|
2089 |
+
border : 1px solid #d8d8d8;
|
2090 |
+
display : flex;
|
2091 |
+
align-items : center;
|
2092 |
+
padding : 0 12px;
|
2093 |
+
max-width : 400px;
|
2094 |
+
box-sizing : border-box;
|
2095 |
}
|
2096 |
|
2097 |
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly {
|
2098 |
+
background : #f1f1f1;
|
2099 |
+
border : 1px dashed #cccccc;
|
2100 |
}
|
2101 |
|
2102 |
.yith-plugin-fw-copy-to-clipboard__field-wrap {
|
2103 |
+
position : relative;
|
2104 |
+
flex : 1;
|
2105 |
}
|
2106 |
|
2107 |
.yith-plugin-fw-copy-to-clipboard__tip {
|
2108 |
+
display : none;
|
2109 |
+
position : absolute;
|
2110 |
+
background : rgba(30, 30, 30, 0.9);
|
2111 |
+
color : #ffffff;
|
2112 |
+
padding : 7px 10px;
|
2113 |
+
border-radius : 3px;
|
2114 |
+
right : 8px;
|
2115 |
+
top : 50%;
|
2116 |
+
transform : translateY(-50%);
|
2117 |
+
pointer-events : none;
|
2118 |
+
font-size : 12px;
|
2119 |
+
line-height : 1;
|
2120 |
}
|
2121 |
|
2122 |
|
2124 |
.yith-plugin-fw.yith-plugin-ui .yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2125 |
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2126 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2127 |
+
height : 38px;
|
2128 |
+
width : 100%;
|
2129 |
+
background : transparent;
|
2130 |
+
padding : 0 10px 0 0;
|
2131 |
+
border : 0;
|
2132 |
+
border-radius : 0;
|
2133 |
+
box-shadow : none;
|
2134 |
+
outline : none;
|
2135 |
}
|
2136 |
|
2137 |
.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field,
|
2138 |
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field {
|
2139 |
+
color : #999;
|
2140 |
+
cursor : default;
|
2141 |
}
|
2142 |
|
2143 |
.yith-plugin-fw-copy-to-clipboard__copy {
|
2144 |
+
display : flex;
|
2145 |
+
align-items : center;
|
2146 |
+
cursor : pointer;
|
2147 |
+
border-radius : 2px;
|
2148 |
+
padding : 1px;
|
2149 |
+
user-select : none;
|
2150 |
+
line-height : 1;
|
2151 |
+
transition : all .2s ease-in-out;
|
2152 |
}
|
2153 |
|
2154 |
.yith-plugin-fw-copy-to-clipboard__copy:hover {
|
2155 |
+
box-shadow : 0 0 0 4px rgba(15, 67, 60, .12);
|
2156 |
+
background-color : rgba(15, 67, 60, .12);
|
2157 |
}
|
2158 |
|
2159 |
.yith-plugin-fw-copy-to-clipboard__copy__text {
|
2160 |
+
font-size : 12px;
|
2161 |
+
font-weight : 600;
|
2162 |
}
|
2163 |
|
2164 |
.yith-plugin-fw-copy-to-clipboard__copy__icon {
|
2165 |
+
margin-right : 4px;
|
2166 |
+
font-size : 14px;
|
2167 |
+
}
|
2168 |
+
|
2169 |
+
.rtl .yith-plugin-fw-copy-to-clipboard__copy__icon {
|
2170 |
+
margin-right : 0;
|
2171 |
+
margin-left : 4px;
|
2172 |
}
|
2173 |
|
2174 |
/** OVERRIDE WOOCOMMERCE CLASSES FOR 5.3 */
|
2175 |
.branch-5-3 .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__arrow {
|
2176 |
+
background : none;
|
2177 |
}
|
2178 |
|
2179 |
.branch-5-3 .yith-plugin-fw .select2-container.select2-container--focus .select2-selection--single, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--multiple, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--single {
|
2180 |
+
box-shadow : none;
|
2181 |
}
|
2182 |
|
2183 |
@media screen and (max-width : 1440px) {
|
2184 |
+
.yith-plugin-ui .yith-add-box,
|
2185 |
+
.yith-plugin-ui .yith-toggle-row:not(.fixed) {
|
2186 |
+
width : 80%;
|
2187 |
+
}
|
2188 |
|
2189 |
|
2190 |
+
.yith-plugin-ui .yith-add-box-row,
|
2191 |
+
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row,
|
2192 |
+
.yith-plugin-ui .yith-add-box-row label {
|
2193 |
+
display : block;
|
2194 |
+
}
|
2195 |
|
2196 |
+
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row > label {
|
2197 |
+
display : block;
|
2198 |
+
}
|
2199 |
|
2200 |
+
.yith-plugin-ui .yith-plugin-fw-option-with-description {
|
2201 |
+
width : 100%;
|
2202 |
+
}
|
2203 |
|
2204 |
+
.yith-plugin-ui .yith-add-box-row,
|
2205 |
+
.yith-plugin-ui .yith-add-box-row label {
|
2206 |
+
display : block;
|
2207 |
+
}
|
2208 |
|
2209 |
+
.yith-plugin-ui .yith-toggle-content .yith-plugin-fw-option-with-description,
|
2210 |
+
.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-option-with-description {
|
2211 |
+
display : block;
|
2212 |
+
padding-top : 20px;
|
2213 |
+
}
|
2214 |
|
2215 |
|
2216 |
+
.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-option-with-description span.description {
|
2217 |
+
max-width : 100%;
|
2218 |
+
}
|
2219 |
}
|
2220 |
|
2221 |
@media screen and (max-width : 1024px) {
|
2222 |
|
2223 |
+
.yith-plugin-ui .yith-add-box,
|
2224 |
+
.yith-plugin-ui .yith-toggle-row:not(.fixed) {
|
2225 |
+
width : 90%;
|
2226 |
+
}
|
2227 |
|
2228 |
+
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
|
2229 |
+
width : 100%;
|
2230 |
+
padding-right : 20px;
|
2231 |
+
float : left;
|
2232 |
+
}
|
2233 |
|
2234 |
+
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
|
2235 |
+
width : calc(50% - 10px);
|
2236 |
+
padding-right : 10px;
|
2237 |
+
float : left;
|
2238 |
+
}
|
2239 |
|
2240 |
+
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset:nth-child(2n+1) {
|
2241 |
+
clear : both;
|
2242 |
+
}
|
2243 |
|
2244 |
+
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset:nth-child(3n+1) {
|
2245 |
+
clear : initial;
|
2246 |
+
}
|
2247 |
|
2248 |
}
|
2249 |
|
2250 |
@media screen and (max-width : 782px) {
|
2251 |
+
.yith-plugin-fw-banner h1 {
|
2252 |
+
line-height : 1.2em;
|
2253 |
+
}
|
2254 |
+
|
2255 |
+
.yith-plugin-fw-banner h1 {
|
2256 |
+
font-size : 12px;
|
2257 |
+
padding-right : 10px;
|
2258 |
+
}
|
2259 |
+
|
2260 |
+
.yith-plugin-ui .yith-add-box,
|
2261 |
+
.yith-plugin-ui .yith-toggle-row {
|
2262 |
+
width : 100%;
|
2263 |
+
}
|
2264 |
+
|
2265 |
+
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset,
|
2266 |
+
.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
|
2267 |
+
width : 100%;
|
2268 |
+
clear : initial;
|
2269 |
+
}
|
2270 |
+
|
2271 |
+
.yith-plugin-ui .wp-picker-container .wp-color-result.button {
|
2272 |
+
padding : 0;
|
2273 |
+
}
|
2274 |
+
|
2275 |
+
.yith-plugin-ui #plugin-fw-wc table.form-table th,
|
2276 |
+
#yith-plugin-fw-panel table.form-table th.titledesc,
|
2277 |
+
.yith-plugin-ui #plugin-fw-wc table.form-table td,
|
2278 |
+
#yith-plugin-fw-panel table.form-table td.forminp {
|
2279 |
+
padding : 20px 20px;
|
2280 |
+
}
|
2281 |
+
|
2282 |
+
.yith-plugin-ui #plugin-fw-wc table.form-table th.titledesc,
|
2283 |
+
#yith-plugin-fw-panel table.form-table th.titledesc {
|
2284 |
+
padding-bottom : 0;
|
2285 |
+
}
|
2286 |
}
|
2287 |
|
2288 |
@media (max-width : 480px) {
|
2289 |
+
.yith-plugin-ui .nav-tab {
|
2290 |
+
font-size : 12px;
|
2291 |
+
}
|
2292 |
+
|
2293 |
+
.yith-plugin-ui h2 {
|
2294 |
+
padding : 20px 20px;
|
2295 |
+
}
|
2296 |
+
|
2297 |
+
.yith-plugin-ui [type="radio"]:checked + label:before, .yith-plugin-ui [type="radio"]:not(:checked) + label:before {
|
2298 |
+
width : 14px;
|
2299 |
+
height : 14px;
|
2300 |
+
}
|
2301 |
+
|
2302 |
+
.yith-plugin-ui [type="radio"]:checked + label:after, .yith-plugin-ui [type="radio"]:not(:checked) + label:after {
|
2303 |
+
width : 10px;
|
2304 |
+
height : 10px;
|
2305 |
+
top : 3px;
|
2306 |
+
left : 3px;
|
2307 |
+
}
|
2308 |
+
|
2309 |
+
.yith-plugin-ui [type="radio"]:checked + label, .yith-plugin-ui [type="radio"]:not(:checked) + label {
|
2310 |
+
padding-left : 25px;
|
2311 |
+
}
|
2312 |
+
|
2313 |
+
.yith-plugin-ui [type="radio"]:checked + label, .yith-plugin-ui [type="radio"]:not(:checked) + label {
|
2314 |
+
font-size : 13px;
|
2315 |
+
}
|
2316 |
+
|
2317 |
+
.yith-plugin-ui span.description {
|
2318 |
+
font-size : 12px;
|
2319 |
+
}
|
2320 |
+
|
2321 |
+
.yith-plugin-ui #plugin-fw-wc table.form-table th,
|
2322 |
+
#yith-plugin-fw-panel table.form-table th.titledesc,
|
2323 |
+
.yith-plugin-ui #plugin-fw-wc table.form-table td,
|
2324 |
+
#yith-plugin-fw-panel table.form-table td.forminp {
|
2325 |
+
padding : 15px 20px;
|
2326 |
+
}
|
2327 |
+
|
2328 |
+
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
|
2329 |
+
width : 48px;
|
2330 |
+
height : 20px;
|
2331 |
+
padding : 2px;
|
2332 |
+
}
|
2333 |
+
|
2334 |
+
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
|
2335 |
+
top : 4px;
|
2336 |
+
left : 3px;
|
2337 |
+
width : 10px;
|
2338 |
+
height : 10px;
|
2339 |
+
}
|
2340 |
+
|
2341 |
+
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
|
2342 |
+
left : 30px;
|
2343 |
+
}
|
2344 |
+
|
2345 |
+
.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
|
2346 |
+
font-size : 11px;
|
2347 |
+
padding-right : 12px;
|
2348 |
+
margin-top : 0;
|
2349 |
+
}
|
2350 |
+
|
2351 |
+
.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
|
2352 |
+
font-size : 11px;
|
2353 |
+
padding-left : 12px;
|
2354 |
+
margin-top : 0;
|
2355 |
+
}
|
2356 |
+
|
2357 |
+
.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
|
2358 |
+
font-size : 14px;
|
2359 |
+
}
|
2360 |
+
|
2361 |
+
.yith-plugin-ui input {
|
2362 |
+
font-size : 14px;
|
2363 |
+
}
|
2364 |
}
|
plugin-fw/assets/css/yith-icon.css
CHANGED
@@ -6,10 +6,10 @@
|
|
6 |
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
|
7 |
@font-face {
|
8 |
font-family: yith-icon;
|
9 |
-
src: url("../fonts/yith-icon.eot?
|
10 |
-
src: url("../fonts/yith-icon.eot?
|
11 |
-
url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
|
12 |
-
url("../fonts/yith-icon.ttf?
|
13 |
font-weight: 400;
|
14 |
font-style: normal;
|
15 |
}
|
@@ -87,6 +87,10 @@
|
|
87 |
content: "\e914";
|
88 |
}
|
89 |
|
|
|
|
|
|
|
|
|
90 |
.yith-icon-calendar:before {
|
91 |
content: "\e904";
|
92 |
}
|
@@ -107,6 +111,10 @@
|
|
107 |
content: "\e921";
|
108 |
}
|
109 |
|
|
|
|
|
|
|
|
|
110 |
.yith-icon-check:before {
|
111 |
content: "\e905";
|
112 |
}
|
@@ -131,6 +139,10 @@
|
|
131 |
content: "\e920";
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
134 |
.yith-icon-drag:before {
|
135 |
content: "\e90f";
|
136 |
}
|
6 |
/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
|
7 |
@font-face {
|
8 |
font-family: yith-icon;
|
9 |
+
src: url("../fonts/yith-icon.eot?fb249816d6b6b6ea4bce1bf9f7028937");
|
10 |
+
src: url("../fonts/yith-icon.eot?fb249816d6b6b6ea4bce1bf9f7028937#iefix") format("embedded-opentype"),
|
11 |
+
url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
|
12 |
+
url("../fonts/yith-icon.ttf?fb249816d6b6b6ea4bce1bf9f7028937") format("truetype");
|
13 |
font-weight: 400;
|
14 |
font-style: normal;
|
15 |
}
|
87 |
content: "\e914";
|
88 |
}
|
89 |
|
90 |
+
.yith-icon-calendar-schedule:before {
|
91 |
+
content: "\f11c";
|
92 |
+
}
|
93 |
+
|
94 |
.yith-icon-calendar:before {
|
95 |
content: "\e904";
|
96 |
}
|
111 |
content: "\e921";
|
112 |
}
|
113 |
|
114 |
+
.yith-icon-check-progress-circle:before {
|
115 |
+
content: "\f11d";
|
116 |
+
}
|
117 |
+
|
118 |
.yith-icon-check:before {
|
119 |
content: "\e905";
|
120 |
}
|
139 |
content: "\e920";
|
140 |
}
|
141 |
|
142 |
+
.yith-icon-crown:before {
|
143 |
+
content: "\f11b";
|
144 |
+
}
|
145 |
+
|
146 |
.yith-icon-drag:before {
|
147 |
content: "\e90f";
|
148 |
}
|
plugin-fw/assets/fonts/yith-icon.eot
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.ttf
CHANGED
Binary file
|
plugin-fw/assets/fonts/yith-icon.woff2
CHANGED
Binary file
|
plugin-fw/assets/images/arrow.svg
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<svg width="86px" height="26px" viewBox="0 0 86 26" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3 |
+
<title>arrow2</title>
|
4 |
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
5 |
+
<g id="Create-badge---image-Copy" transform="translate(-795.000000, -218.000000)" fill="#336374">
|
6 |
+
<g id="arrow2" transform="translate(795.000000, 218.000000)">
|
7 |
+
<path d="M85.2527743,11.0287846 C85.0291804,10.8409658 84.5580864,10.4653284 83.9069923,9.99202513 C81.7582412,8.39556583 77.6702704,5.45995889 74.5990189,3.18547392 C73.0029243,2.00033766 71.6866736,1.0236802 71.0833921,0.482762228 C71.0032358,0.409512919 70.9019857,0.351289109 70.8513607,0.294943486 L70.8513607,0.306212611 L70.8513607,0.293065299 L70.8330794,0.272405237 C70.8246419,0.261136113 70.8204232,0.25550155 70.8218294,0.238597864 L70.8218294,0.238597864 C70.7216008,0.0191459435 70.5127354,-0.0622623017 70.3398646,0.0507452248 C70.1669939,0.163752751 70.086996,0.433994045 70.1552666,0.674337345 C70.2269854,0.978603707 71.7626112,2.67272876 73.859331,4.71995305 C75.783082,6.59814047 78.1540207,8.82567074 80.1143342,10.6512689 C75.6298006,10.6756854 69.8008914,10.6249743 63.3321381,10.6137052 C59.113386,10.6043142 54.6358837,10.5986797 50.0768189,10.641878 C47.4386925,10.6681726 44.7752537,10.7282746 42.1244711,10.7902548 C38.0730628,10.8860423 34.052592,11.0043682 30.1966525,11.1208158 C14.2807069,11.6072663 1.19835652,12.0279803 0.512106166,11.684272 C0.389268144,11.6171708 0.248958141,11.642693 0.144029579,11.7512246 C0.0391010166,11.8597562 -0.0145049592,12.0348087 0.00340450444,12.2104414 C0.0213139681,12.3860742 0.108017998,12.5356045 0.230856023,12.6027056 C0.848200087,12.9558049 11.476643,13.5925104 25.2283687,14.0338845 C30.4314964,14.2010431 36.088843,14.3512981 41.8108772,14.4226693 C44.5727536,14.4583548 47.351505,14.4715021 50.1077564,14.4508421 C52.9202578,14.4320602 55.6933842,14.3738364 58.3976044,14.3043434 C62.8062004,14.1916522 67.016515,14.0338845 70.8344857,13.8648476 C74.942144,13.6770288 78.5885521,13.46855 81.5388661,13.2694622 C81.0438659,13.678907 80.4940219,14.1334284 79.9104278,14.6255135 C79.0905836,15.3148083 78.2074582,16.0717178 77.3130827,16.8511656 C74.0660498,19.6853504 70.6558918,22.7392831 69.5674538,23.650204 C69.1305592,24.0067591 68.9841166,24.7618416 69.2364633,25.3568463 C69.4888101,25.951851 70.0490011,26.1723396 70.5026105,25.8551961 C71.5544861,25.1414849 74.7058939,22.9815693 77.824958,20.6357132 C79.5391776,19.3472767 81.2393347,18.0062509 82.5865229,16.8793384 C83.5022712,16.1209452 84.3879897,15.299703 85.240118,14.4189129 C85.8926184,13.708958 85.9952747,12.9708304 86,12.7754989 C85.9966809,12.7022496 86.0669934,11.6899066 85.2527743,11.0287846 Z" id="Path"></path>
|
8 |
+
</g>
|
9 |
+
</g>
|
10 |
+
</g>
|
11 |
+
</svg>
|
plugin-fw/assets/js/codemirror/codemirror.js
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
// CodeMirror is the only global var we claim
|
4 |
window.CodeMirror = (function() {
|
5 |
"use strict";
|
1 |
+
/*
|
2 |
+
* CodeMirror version 3.15
|
3 |
+
* https://codemirror.net/
|
4 |
+
* Copyright (C) 2017 by Marijn Haverbeke <marijnh@gmail.com> and others
|
5 |
+
*
|
6 |
+
* Released under the MIT license
|
7 |
+
* https://codemirror.net/LICENSE
|
8 |
+
*/
|
9 |
+
|
10 |
// CodeMirror is the only global var we claim
|
11 |
window.CodeMirror = (function() {
|
12 |
"use strict";
|
plugin-fw/assets/js/javascript-md5/md5.min.js
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
!function(n){"use strict";function t(n,t){var r=(65535&n)+(65535&t);return(n>>16)+(t>>16)+(r>>16)<<16|65535&r}function r(n,t){return n<<t|n>>>32-t}function e(n,e,o,u,c,f){return t(r(t(t(e,n),t(u,f)),c),o)}function o(n,t,r,o,u,c,f){return e(t&r|~t&o,n,t,u,c,f)}function u(n,t,r,o,u,c,f){return e(t&o|r&~o,n,t,u,c,f)}function c(n,t,r,o,u,c,f){return e(t^r^o,n,t,u,c,f)}function f(n,t,r,o,u,c,f){return e(r^(t|~o),n,t,u,c,f)}function i(n,r){n[r>>5]|=128<<r%32,n[14+(r+64>>>9<<4)]=r;var e,i,a,d,h,l=1732584193,g=-271733879,v=-1732584194,m=271733878;for(e=0;e<n.length;e+=16)i=l,a=g,d=v,h=m,g=f(g=f(g=f(g=f(g=c(g=c(g=c(g=c(g=u(g=u(g=u(g=u(g=o(g=o(g=o(g=o(g,v=o(v,m=o(m,l=o(l,g,v,m,n[e],7,-680876936),g,v,n[e+1],12,-389564586),l,g,n[e+2],17,606105819),m,l,n[e+3],22,-1044525330),v=o(v,m=o(m,l=o(l,g,v,m,n[e+4],7,-176418897),g,v,n[e+5],12,1200080426),l,g,n[e+6],17,-1473231341),m,l,n[e+7],22,-45705983),v=o(v,m=o(m,l=o(l,g,v,m,n[e+8],7,1770035416),g,v,n[e+9],12,-1958414417),l,g,n[e+10],17,-42063),m,l,n[e+11],22,-1990404162),v=o(v,m=o(m,l=o(l,g,v,m,n[e+12],7,1804603682),g,v,n[e+13],12,-40341101),l,g,n[e+14],17,-1502002290),m,l,n[e+15],22,1236535329),v=u(v,m=u(m,l=u(l,g,v,m,n[e+1],5,-165796510),g,v,n[e+6],9,-1069501632),l,g,n[e+11],14,643717713),m,l,n[e],20,-373897302),v=u(v,m=u(m,l=u(l,g,v,m,n[e+5],5,-701558691),g,v,n[e+10],9,38016083),l,g,n[e+15],14,-660478335),m,l,n[e+4],20,-405537848),v=u(v,m=u(m,l=u(l,g,v,m,n[e+9],5,568446438),g,v,n[e+14],9,-1019803690),l,g,n[e+3],14,-187363961),m,l,n[e+8],20,1163531501),v=u(v,m=u(m,l=u(l,g,v,m,n[e+13],5,-1444681467),g,v,n[e+2],9,-51403784),l,g,n[e+7],14,1735328473),m,l,n[e+12],20,-1926607734),v=c(v,m=c(m,l=c(l,g,v,m,n[e+5],4,-378558),g,v,n[e+8],11,-2022574463),l,g,n[e+11],16,1839030562),m,l,n[e+14],23,-35309556),v=c(v,m=c(m,l=c(l,g,v,m,n[e+1],4,-1530992060),g,v,n[e+4],11,1272893353),l,g,n[e+7],16,-155497632),m,l,n[e+10],23,-1094730640),v=c(v,m=c(m,l=c(l,g,v,m,n[e+13],4,681279174),g,v,n[e],11,-358537222),l,g,n[e+3],16,-722521979),m,l,n[e+6],23,76029189),v=c(v,m=c(m,l=c(l,g,v,m,n[e+9],4,-640364487),g,v,n[e+12],11,-421815835),l,g,n[e+15],16,530742520),m,l,n[e+2],23,-995338651),v=f(v,m=f(m,l=f(l,g,v,m,n[e],6,-198630844),g,v,n[e+7],10,1126891415),l,g,n[e+14],15,-1416354905),m,l,n[e+5],21,-57434055),v=f(v,m=f(m,l=f(l,g,v,m,n[e+12],6,1700485571),g,v,n[e+3],10,-1894986606),l,g,n[e+10],15,-1051523),m,l,n[e+1],21,-2054922799),v=f(v,m=f(m,l=f(l,g,v,m,n[e+8],6,1873313359),g,v,n[e+15],10,-30611744),l,g,n[e+6],15,-1560198380),m,l,n[e+13],21,1309151649),v=f(v,m=f(m,l=f(l,g,v,m,n[e+4],6,-145523070),g,v,n[e+11],10,-1120210379),l,g,n[e+2],15,718787259),m,l,n[e+9],21,-343485551),l=t(l,i),g=t(g,a),v=t(v,d),m=t(m,h);return[l,g,v,m]}function a(n){var t,r="",e=32*n.length;for(t=0;t<e;t+=8)r+=String.fromCharCode(n[t>>5]>>>t%32&255);return r}function d(n){var t,r=[];for(r[(n.length>>2)-1]=void 0,t=0;t<r.length;t+=1)r[t]=0;var e=8*n.length;for(t=0;t<e;t+=8)r[t>>5]|=(255&n.charCodeAt(t/8))<<t%32;return r}function h(n){return a(i(d(n),8*n.length))}function l(n,t){var r,e,o=d(n),u=[],c=[];for(u[15]=c[15]=void 0,o.length>16&&(o=i(o,8*n.length)),r=0;r<16;r+=1)u[r]=909522486^o[r],c[r]=1549556828^o[r];return e=i(u.concat(d(t)),512+8*t.length),a(i(c.concat(e),640))}function g(n){var t,r,e="";for(r=0;r<n.length;r+=1)t=n.charCodeAt(r),e+="0123456789abcdef".charAt(t>>>4&15)+"0123456789abcdef".charAt(15&t);return e}function v(n){return unescape(encodeURIComponent(n))}function m(n){return h(v(n))}function p(n){return g(m(n))}function s(n,t){return l(v(n),v(t))}function C(n,t){return g(s(n,t))}function A(n,t,r){return t?r?s(t,n):C(t,n):r?m(n):p(n)}"function"==typeof define&&define.amd?define(function(){return A}):"object"==typeof module&&module.exports?module.exports=A:n.md5=A}(this);
|
2 |
-
//# sourceMappingURL=md5.min.js.map
|
|
|
|
plugin-fw/dist/gutenberg/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-polyfill', 'wp-url'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-polyfill', 'wp-url'), 'version' => '0d1e043f27fa4c9d1318a4501208941a');
|
plugin-fw/dist/gutenberg/index.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(){var e,t={783:function(e,t,o){"use strict";var r=window.wp.element,n=window.React,a=o(568),l=o.n(a),s=window.wp.blocks,c=window.wp.url;function i(e){if(e.status>=200&&e.status<300)return e;throw e}function u(e){return e.json?e.json():e.text()}const h=(0,r.createElement)("svg",{viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",role:"img","aria-hidden":"true",focusable:"false"},(0,r.createElement)("path",{width:"22",height:"22",d:"M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z"}));var d=window.lodash,p=o.n(d);const f=(e,t,o)=>{let r=!0;if(t&&t.id&&"value"in t){let n=t.value;["toggle","checkbox"].includes(o)&&(n=!0===n||"yes"===n||1===n),n=p().isArray(n)?n:[n],r=void 0!==e[t.id]&&n.includes(e[t.id])}return r},g=(e,t)=>{const{controlType:o}=e;let r=!0;if(e.deps)if(p().isArray(e.deps))for(let n in e.deps){const a=e.deps[n];if(r=f(t,a,o),!r)break}else r=f(t,e.deps,o);return r},b=(e,t)=>{let o="",r=!1;if(void 0!==e.callback&&(jQuery&&e.callback in jQuery.fn?r=jQuery.fn[e.callback]:e.callback in window&&(r=window[e.callback])),"function"==typeof r)o=r(t,e);else{const r=e.attributes?Object.entries(e.attributes).map((([e,o])=>{const r=g(o,t),n=t[e];if(r&&void 0!==n)return e+"="+(o.remove_quotes?n:`"${n}"`)})):[],n=r.length?" "+r.join(" "):"";o=`[${e.shortcode_name}${n}]`}return o};var m=window.wp.components,y=window.wp.blockEditor,_=window.wp.hooks;class v extends n.Component{constructor(){super(...arguments),this.state={html:"",shortcode:"",shortcodeHash:"",ajaxUpdated:!1,ajaxSuccess:!1,ajaxResponse:!1,loading:!1,firstLoading:!0},this.ajaxTimeout=!1}componentDidMount(){this.updateShortcode()}componentDidUpdate(e,t,o){const{shortcode:r,shortcodeHash:n,ajaxSuccess:a,ajaxResponse:l,ajaxUpdated:s}=this.state;(0,d.isEqual)(e,this.props)||this.updateShortcode(),this.props.blockArgs.do_shortcode&&s&&(a&&(0,_.doAction)("yith_plugin_fw_gutenberg_success_do_shortcode",r,n,l),(0,_.doAction)("yith_plugin_fw_gutenberg_after_do_shortcode",r,n,l),this.setState({ajaxUpdated:!1}))}updateShortcode(){const{attributes:e,blockArgs:t}=this.props;this.setState({loading:!0,ajaxSuccess:!1,ajaxResponse:!1});const o=b(t,e),r=l()(o);t.do_shortcode?(this.ajaxTimeout&&clearTimeout(this.ajaxTimeout),(0,_.doAction)("yith_plugin_fw_gutenberg_before_do_shortcode",o,r),this.ajaxTimeout=setTimeout((()=>{((e,t=yithGutenberg.ajaxurl)=>(t=(0,c.addQueryArgs)(t,e),fetch(t).then(i).then(u)))({action:"yith_plugin_fw_gutenberg_do_shortcode",shortcode:o}).then((e=>{this.setState({loading:!1,firstLoading:!1,html:e.html,shortcode:o,shortcodeHash:r,ajaxSuccess:!0,ajaxUpdated:!0,ajaxResponse:e})})).catch((e=>{console.log({error:e})}))}),300)):this.setState({loading:!1,firstLoading:!1,html:o,shortcode:o,shortcodeHash:r})}render(){const{html:e,loading:t,firstLoading:o,shortcode:n,shortcodeHash:a}=this.state,{blockArgs:l}=this.props,{do_shortcode:s,title:c,empty_message:i}=l,u="block-editor-yith-plugin-fw-shortcode-block";let d=[u],p=s?"html":"shortcode",f=e,g="";o&&t?p="first-loading":s&&!e&&(p="empty-html",f=n,!t&&i&&(g=i));const b=["first-loading","empty-html","shortcode"].includes(p),y=!["first-loading","empty-html"].includes(p),_=!!g;return d.push(`${u}--${p}`),d.push(_?`${u}--has-message`:`${u}--no-message`),d.push(`yith_block_${a}`),(0,r.createElement)(r.Fragment,null,(0,r.createElement)("div",{className:d.join(" ")},t?(0,r.createElement)("div",{className:`${u}__spinner-wrap`},(0,r.createElement)(m.Spinner,null)):"",b&&(0,r.createElement)("div",{className:`${u}__title components-placeholder__label`},h,c),_&&(0,r.createElement)(r.RawHTML,{className:`${u}__message`},g),y&&(0,r.createElement)(r.RawHTML,{className:`${u}__content`},f)))}}var C=window.wp.compose;function w({className:e,label:t,onChange:o,value:n,help:a,disableAlpha:l}){const s=`inspector-yith-color-picker-control-${(0,C.useInstanceId)(w)}`;return(0,r.createElement)(m.BaseControl,{id:s,label:t,className:`block-editor-yith-color-control ${e}`,help:a},(0,r.createElement)(m.ColorPicker,{color:n,disableAlpha:l,onChangeComplete:o}))}function k({label:e,colorValue:t}){return(0,r.createElement)(r.Fragment,null,e,!!t&&(0,r.createElement)(m.ColorIndicator,{colorValue:t}))}function x({className:e,label:t,onChange:o,value:n,help:a,palette:l,clearable:s}){l=l||(0,y.useSetting)("color.palette");const c=`inspector-yith-color-palette-control-${(0,C.useInstanceId)(x)}`;return(0,r.createElement)(m.BaseControl,{id:c,className:`block-editor-yith-color-palette-control ${e}`,help:a},(0,r.createElement)("fieldset",null,(0,r.createElement)("legend",null,(0,r.createElement)("div",{className:"block-editor-yith-color-palette-control__color-indicator"},(0,r.createElement)(m.BaseControl.VisualLabel,null,(0,r.createElement)(k,{colorValue:n,label:t})))),(0,r.createElement)(m.ColorPalette,{value:n,onChange:o,colors:l,clearable:s})))}const j=(e,t)=>function({attributes:o,className:n,setAttributes:a}){const l=(e,t,o)=>{["colorpicker","color"].includes(o)&&(e=e.color.getAlpha()<1?e.color.toRgbString():e.color.toHexString());let r={};r[t]=e,a(r)};return(0,r.createElement)(r.Fragment,null,!!t.attributes&&(0,r.createElement)(y.InspectorControls,null,(0,r.createElement)(m.PanelBody,null,Object.entries(t.attributes).map((([t,n])=>{const a=((t,n)=>{const{controlType:a}=n,s=o[t],c=((e,t)=>{let o="";return e.helps&&e.helps.checked&&e.helps.unchecked?o=t?e.helps.checked:e.helps.unchecked:e.help&&(o=e.help),o})(n,s);let i=`${e}__${t}-field-wrapper`;const u=g(n,o);n.wrapper_class&&(i+=" "+n.wrapper_class);let h=!1;if(u)switch(a){case"select":h=(0,r.createElement)(m.SelectControl,{className:i,key:t,value:s,label:n.label,options:n.options,help:c,multiple:!!n.multiple,onChange:e=>{l(e,t,a)}});break;case"text":h=(0,r.createElement)(m.TextControl,{className:i,key:t,value:s,label:n.label,help:c,onChange:e=>{l(e,t,a)}});break;case"textarea":h=(0,r.createElement)(m.TextareaControl,{className:i,key:t,value:s,label:n.label,help:c,onChange:e=>{l(e,t,a)}});break;case"toggle":h=(0,r.createElement)(m.ToggleControl,{className:i,key:t,label:n.label,help:c,checked:s,onChange:e=>{l(e,t,a)}});break;case"checkbox":h=(0,r.createElement)(m.CheckboxControl,{className:i,key:t,label:n.label,help:c,checked:s,onChange:e=>{l(e,t,a)}});break;case"number":case"range":h=(0,r.createElement)(m.RangeControl,{className:i,key:t,value:s,label:n.label,help:c,min:n.min,max:n.max,onChange:e=>{l(e,t,a)}});break;case"color":case"colorpicker":h=(0,r.createElement)(w,{className:i,key:t,label:n.label,help:c,value:s,disableAlpha:n.disableAlpha,onChange:e=>{l(e,t,a)}});break;case"color-palette":h=(0,r.createElement)(x,{className:i,key:t,label:n.label,help:c,value:s,clearable:n.clearable||!1,onChange:e=>{l(e,t,a)}});break;case"radio":h=(0,r.createElement)(m.RadioControl,{key:t,label:n.label,options:n.options,selected:s,help:c,onChange:e=>{l(e,t,a)}});break;default:h=!1}return h})(t,n);if(a)return a})))),(0,r.createElement)(v,{attributes:o,blockArgs:t}))},E=[{key:"yith_plugin_fw_gutenberg_before_do_shortcode",delay:0},{key:"yith_plugin_fw_gutenberg_success_do_shortcode",delay:200},{key:"yith_plugin_fw_gutenberg_after_do_shortcode",delay:200}];for(const e of E)(0,_.addAction)(e.key,"yith-plugin-fw/jquery-events",((...t)=>{"jQuery"in window&&(e.delay?setTimeout((()=>{jQuery(document).trigger(e.key,Object.values(t))}),e.delay):jQuery(document).trigger(e.key,Object.values(t)))}));for(const[e,t]of Object.entries(yithGutenbergBlocks))(0,s.registerBlockType)("yith/"+e,{title:t.title,description:t.description,category:t.category,attributes:t.attributes,icon:void 0!==t.icon?t.icon:h,keywords:t.keywords,edit:j(e,t),save:({attributes:e})=>b(t,e),deprecated:[{attributes:t.attributes,save:({attributes:e})=>{const o=b(t,e),n='<span class="yith_block_'+l()(o)+'">'+o+"</span>";return(0,r.createElement)(r.RawHTML,null,n)}}]})},487:function(e){var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=t},12:function(e){var t,o;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&o.rotl(e,8)|4278255360&o.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=o.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],o=0,r=0;o<e.length;o++,r+=8)t[r>>>5]|=e[o]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],o=0;o<32*e.length;o+=8)t.push(e[o>>>5]>>>24-o%32&255);return t},bytesToHex:function(e){for(var t=[],o=0;o<e.length;o++)t.push((e[o]>>>4).toString(16)),t.push((15&e[o]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],o=0;o<e.length;o+=2)t.push(parseInt(e.substr(o,2),16));return t},bytesToBase64:function(e){for(var o=[],r=0;r<e.length;r+=3)for(var n=e[r]<<16|e[r+1]<<8|e[r+2],a=0;a<4;a++)8*r+6*a<=8*e.length?o.push(t.charAt(n>>>6*(3-a)&63)):o.push("=");return o.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var o=[],r=0,n=0;r<e.length;n=++r%4)0!=n&&o.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*n+8)-1)<<2*n|t.indexOf(e.charAt(r))>>>6-2*n);return o}},e.exports=o},738:function(e){function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:function(e,t,o){var r,n,a,l,s;r=o(12),n=o(487).utf8,a=o(738),l=o(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?l.stringToBytes(e):n.stringToBytes(e):a(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var o=r.bytesToWords(e),c=8*e.length,i=1732584193,u=-271733879,h=-1732584194,d=271733878,p=0;p<o.length;p++)o[p]=16711935&(o[p]<<8|o[p]>>>24)|4278255360&(o[p]<<24|o[p]>>>8);o[c>>>5]|=128<<c%32,o[14+(c+64>>>9<<4)]=c;var f=s._ff,g=s._gg,b=s._hh,m=s._ii;for(p=0;p<o.length;p+=16){var y=i,_=u,v=h,C=d;i=f(i,u,h,d,o[p+0],7,-680876936),d=f(d,i,u,h,o[p+1],12,-389564586),h=f(h,d,i,u,o[p+2],17,606105819),u=f(u,h,d,i,o[p+3],22,-1044525330),i=f(i,u,h,d,o[p+4],7,-176418897),d=f(d,i,u,h,o[p+5],12,1200080426),h=f(h,d,i,u,o[p+6],17,-1473231341),u=f(u,h,d,i,o[p+7],22,-45705983),i=f(i,u,h,d,o[p+8],7,1770035416),d=f(d,i,u,h,o[p+9],12,-1958414417),h=f(h,d,i,u,o[p+10],17,-42063),u=f(u,h,d,i,o[p+11],22,-1990404162),i=f(i,u,h,d,o[p+12],7,1804603682),d=f(d,i,u,h,o[p+13],12,-40341101),h=f(h,d,i,u,o[p+14],17,-1502002290),i=g(i,u=f(u,h,d,i,o[p+15],22,1236535329),h,d,o[p+1],5,-165796510),d=g(d,i,u,h,o[p+6],9,-1069501632),h=g(h,d,i,u,o[p+11],14,643717713),u=g(u,h,d,i,o[p+0],20,-373897302),i=g(i,u,h,d,o[p+5],5,-701558691),d=g(d,i,u,h,o[p+10],9,38016083),h=g(h,d,i,u,o[p+15],14,-660478335),u=g(u,h,d,i,o[p+4],20,-405537848),i=g(i,u,h,d,o[p+9],5,568446438),d=g(d,i,u,h,o[p+14],9,-1019803690),h=g(h,d,i,u,o[p+3],14,-187363961),u=g(u,h,d,i,o[p+8],20,1163531501),i=g(i,u,h,d,o[p+13],5,-1444681467),d=g(d,i,u,h,o[p+2],9,-51403784),h=g(h,d,i,u,o[p+7],14,1735328473),i=b(i,u=g(u,h,d,i,o[p+12],20,-1926607734),h,d,o[p+5],4,-378558),d=b(d,i,u,h,o[p+8],11,-2022574463),h=b(h,d,i,u,o[p+11],16,1839030562),u=b(u,h,d,i,o[p+14],23,-35309556),i=b(i,u,h,d,o[p+1],4,-1530992060),d=b(d,i,u,h,o[p+4],11,1272893353),h=b(h,d,i,u,o[p+7],16,-155497632),u=b(u,h,d,i,o[p+10],23,-1094730640),i=b(i,u,h,d,o[p+13],4,681279174),d=b(d,i,u,h,o[p+0],11,-358537222),h=b(h,d,i,u,o[p+3],16,-722521979),u=b(u,h,d,i,o[p+6],23,76029189),i=b(i,u,h,d,o[p+9],4,-640364487),d=b(d,i,u,h,o[p+12],11,-421815835),h=b(h,d,i,u,o[p+15],16,530742520),i=m(i,u=b(u,h,d,i,o[p+2],23,-995338651),h,d,o[p+0],6,-198630844),d=m(d,i,u,h,o[p+7],10,1126891415),h=m(h,d,i,u,o[p+14],15,-1416354905),u=m(u,h,d,i,o[p+5],21,-57434055),i=m(i,u,h,d,o[p+12],6,1700485571),d=m(d,i,u,h,o[p+3],10,-1894986606),h=m(h,d,i,u,o[p+10],15,-1051523),u=m(u,h,d,i,o[p+1],21,-2054922799),i=m(i,u,h,d,o[p+8],6,1873313359),d=m(d,i,u,h,o[p+15],10,-30611744),h=m(h,d,i,u,o[p+6],15,-1560198380),u=m(u,h,d,i,o[p+13],21,1309151649),i=m(i,u,h,d,o[p+4],6,-145523070),d=m(d,i,u,h,o[p+11],10,-1120210379),h=m(h,d,i,u,o[p+2],15,718787259),u=m(u,h,d,i,o[p+9],21,-343485551),i=i+y>>>0,u=u+_>>>0,h=h+v>>>0,d=d+C>>>0}return r.endian([i,u,h,d])})._ff=function(e,t,o,r,n,a,l){var s=e+(t&o|~t&r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._gg=function(e,t,o,r,n,a,l){var s=e+(t&r|o&~r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._hh=function(e,t,o,r,n,a,l){var s=e+(t^o^r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._ii=function(e,t,o,r,n,a,l){var s=e+(o^(t|~r))+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=r.wordsToBytes(s(e,t));return t&&t.asBytes?o:t&&t.asString?l.bytesToString(o):r.bytesToHex(o)}}},o={};function r(e){var n=o[e];if(void 0!==n)return n.exports;var a=o[e]={exports:{}};return t[e](a,a.exports,r),a.exports}r.m=t,e=[],r.O=function(t,o,n,a){if(!o){var l=1/0;for(u=0;u<e.length;u++){o=e[u][0],n=e[u][1],a=e[u][2];for(var s=!0,c=0;c<o.length;c++)(!1&a||l>=a)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,a<l&&(l=a));if(s){e.splice(u--,1);var i=n();void 0!==i&&(t=i)}}return t}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[o,n,a]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,46:0};r.O.j=function(t){return 0===e[t]};var t=function(t,o){var n,a,l=o[0],s=o[1],c=o[2],i=0;if(l.some((function(t){return 0!==e[t]}))){for(n in s)r.o(s,n)&&(r.m[n]=s[n]);if(c)var u=c(r)}for(t&&t(o);i<l.length;i++)a=l[i],r.o(e,a)&&e[a]&&e[a][0](),e[l[i]]=0;return r.O(u)},o=self.webpackChunkyith_plugin_framewowrk=self.webpackChunkyith_plugin_framewowrk||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}();var n=r.O(void 0,[46],(function(){return r(783)}));n=r.O(n)}();
|
1 |
+
!function(){var e,t={783:function(e,t,o){"use strict";var r=window.wp.element,n=window.React,a=o(568),l=o.n(a),s=window.wp.blocks,c=window.wp.url;function i(e){if(e.status>=200&&e.status<300)return e;throw e}function u(e){return e.json?e.json():e.text()}const h=(0,r.createElement)("svg",{viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",role:"img","aria-hidden":"true",focusable:"false"},(0,r.createElement)("path",{width:"22",height:"22",d:"M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z"}));var d=window.lodash,p=o.n(d);const f=(e,t,o)=>{let r=!0;if(t&&t.id&&"value"in t){let n=t.value;["toggle","checkbox"].includes(o)&&(n=!0===n||"yes"===n||1===n),n=p().isArray(n)?n:[n],r=void 0!==e[t.id]&&n.includes(e[t.id])}return r},g=(e,t)=>{const{controlType:o}=e;let r=!0;if(e.deps)if(p().isArray(e.deps))for(let n in e.deps){const a=e.deps[n];if(r=f(t,a,o),!r)break}else r=f(t,e.deps,o);return r},b=(e,t)=>{let o="",r=!1;if(void 0!==e.callback&&(jQuery&&e.callback in jQuery.fn?r=jQuery.fn[e.callback]:e.callback in window&&(r=window[e.callback])),"function"==typeof r)o=r(t,e);else{const r=e.attributes?Object.entries(e.attributes).map((e=>{let[o,r]=e;const n=g(r,t),a=t[o];if(n&&void 0!==a)return o+"="+(r.remove_quotes?a:`"${a}"`)})):[],n=r.length?" "+r.join(" "):"";o=`[${e.shortcode_name}${n}]`}return o};var m=window.wp.components,y=window.wp.blockEditor,_=window.wp.hooks;class v extends n.Component{constructor(){super(...arguments),this.state={html:"",shortcode:"",shortcodeHash:"",ajaxUpdated:!1,ajaxSuccess:!1,ajaxResponse:!1,loading:!1,firstLoading:!0},this.ajaxTimeout=!1}componentDidMount(){this.updateShortcode()}componentDidUpdate(e,t,o){const{shortcode:r,shortcodeHash:n,ajaxSuccess:a,ajaxResponse:l,ajaxUpdated:s}=this.state;(0,d.isEqual)(e,this.props)||this.updateShortcode(),this.props.blockArgs.do_shortcode&&s&&(a&&(0,_.doAction)("yith_plugin_fw_gutenberg_success_do_shortcode",r,n,l),(0,_.doAction)("yith_plugin_fw_gutenberg_after_do_shortcode",r,n,l),this.setState({ajaxUpdated:!1}))}updateShortcode(){const{attributes:e,blockArgs:t}=this.props;this.setState({loading:!0,ajaxSuccess:!1,ajaxResponse:!1});const o=b(t,e),r=l()(o);t.do_shortcode?(this.ajaxTimeout&&clearTimeout(this.ajaxTimeout),(0,_.doAction)("yith_plugin_fw_gutenberg_before_do_shortcode",o,r),this.ajaxTimeout=setTimeout((()=>{(function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:yithGutenberg.ajaxurl;return t=(0,c.addQueryArgs)(t,e),fetch(t).then(i).then(u)})({action:"yith_plugin_fw_gutenberg_do_shortcode",shortcode:o}).then((e=>{this.setState({loading:!1,firstLoading:!1,html:e.html,shortcode:o,shortcodeHash:r,ajaxSuccess:!0,ajaxUpdated:!0,ajaxResponse:e})})).catch((e=>{console.log({error:e})}))}),300)):this.setState({loading:!1,firstLoading:!1,html:o,shortcode:o,shortcodeHash:r})}render(){const{html:e,loading:t,firstLoading:o,shortcode:n,shortcodeHash:a}=this.state,{blockArgs:l}=this.props,{do_shortcode:s,title:c,empty_message:i}=l,u="block-editor-yith-plugin-fw-shortcode-block";let d=[u],p=s?"html":"shortcode",f=e,g="";o&&t?p="first-loading":s&&!e&&(p="empty-html",f=n,!t&&i&&(g=i));const b=["first-loading","empty-html","shortcode"].includes(p),y=!["first-loading","empty-html"].includes(p),_=!!g;return d.push(`${u}--${p}`),d.push(_?`${u}--has-message`:`${u}--no-message`),d.push(`yith_block_${a}`),(0,r.createElement)(r.Fragment,null,(0,r.createElement)("div",{className:d.join(" ")},t?(0,r.createElement)("div",{className:`${u}__spinner-wrap`},(0,r.createElement)(m.Spinner,null)):"",b&&(0,r.createElement)("div",{className:`${u}__title components-placeholder__label`},h,c),_&&(0,r.createElement)(r.RawHTML,{className:`${u}__message`},g),y&&(0,r.createElement)(r.RawHTML,{className:`${u}__content`},f)))}}var C=window.wp.compose;function w(e){let{className:t,label:o,onChange:n,value:a,help:l,disableAlpha:s}=e;const c=`inspector-yith-color-picker-control-${(0,C.useInstanceId)(w)}`;return(0,r.createElement)(m.BaseControl,{id:c,label:o,className:`block-editor-yith-color-control ${t}`,help:l},(0,r.createElement)(m.ColorPicker,{color:a,disableAlpha:s,onChangeComplete:n}))}function k(e){let{label:t,colorValue:o}=e;return(0,r.createElement)(r.Fragment,null,t,!!o&&(0,r.createElement)(m.ColorIndicator,{colorValue:o}))}function x(e){let{className:t,label:o,onChange:n,value:a,help:l,palette:s,clearable:c}=e;s=s||(0,y.useSetting)("color.palette");const i=`inspector-yith-color-palette-control-${(0,C.useInstanceId)(x)}`;return(0,r.createElement)(m.BaseControl,{id:i,className:`block-editor-yith-color-palette-control ${t}`,help:l},(0,r.createElement)("fieldset",null,(0,r.createElement)("legend",null,(0,r.createElement)("div",{className:"block-editor-yith-color-palette-control__color-indicator"},(0,r.createElement)(m.BaseControl.VisualLabel,null,(0,r.createElement)(k,{colorValue:a,label:o})))),(0,r.createElement)(m.ColorPalette,{value:a,onChange:n,colors:s,clearable:c})))}const j=(e,t)=>function(o){let{attributes:n,className:a,setAttributes:l}=o;const s=(e,t,o)=>{["colorpicker","color"].includes(o)&&(e=e.color.getAlpha()<1?e.color.toRgbString():e.color.toHexString());let r={};r[t]=e,l(r)};return(0,r.createElement)(r.Fragment,null,!!t.attributes&&(0,r.createElement)(y.InspectorControls,null,(0,r.createElement)(m.PanelBody,null,Object.entries(t.attributes).map((t=>{let[o,a]=t;const l=((t,o)=>{const{controlType:a}=o,l=n[t],c=((e,t)=>{let o="";return e.helps&&e.helps.checked&&e.helps.unchecked?o=t?e.helps.checked:e.helps.unchecked:e.help&&(o=e.help),o})(o,l);let i=`${e}__${t}-field-wrapper`;const u=g(o,n);o.wrapper_class&&(i+=" "+o.wrapper_class);let h=!1;if(u)switch(a){case"select":h=(0,r.createElement)(m.SelectControl,{className:i,key:t,value:l,label:o.label,options:o.options,help:c,multiple:!!o.multiple,onChange:e=>{s(e,t,a)}});break;case"text":h=(0,r.createElement)(m.TextControl,{className:i,key:t,value:l,label:o.label,help:c,onChange:e=>{s(e,t,a)}});break;case"textarea":h=(0,r.createElement)(m.TextareaControl,{className:i,key:t,value:l,label:o.label,help:c,onChange:e=>{s(e,t,a)}});break;case"toggle":h=(0,r.createElement)(m.ToggleControl,{className:i,key:t,label:o.label,help:c,checked:l,onChange:e=>{s(e,t,a)}});break;case"checkbox":h=(0,r.createElement)(m.CheckboxControl,{className:i,key:t,label:o.label,help:c,checked:l,onChange:e=>{s(e,t,a)}});break;case"number":case"range":h=(0,r.createElement)(m.RangeControl,{className:i,key:t,value:l,label:o.label,help:c,min:o.min,max:o.max,onChange:e=>{s(e,t,a)}});break;case"color":case"colorpicker":h=(0,r.createElement)(w,{className:i,key:t,label:o.label,help:c,value:l,disableAlpha:o.disableAlpha,onChange:e=>{s(e,t,a)}});break;case"color-palette":h=(0,r.createElement)(x,{className:i,key:t,label:o.label,help:c,value:l,clearable:o.clearable||!1,onChange:e=>{s(e,t,a)}});break;case"radio":h=(0,r.createElement)(m.RadioControl,{key:t,label:o.label,options:o.options,selected:l,help:c,onChange:e=>{s(e,t,a)}});break;default:h=!1}return h})(o,a);if(l)return l})))),(0,r.createElement)(v,{attributes:n,blockArgs:t}))},E=[{key:"yith_plugin_fw_gutenberg_before_do_shortcode",delay:0},{key:"yith_plugin_fw_gutenberg_success_do_shortcode",delay:200},{key:"yith_plugin_fw_gutenberg_after_do_shortcode",delay:200}];for(const e of E)(0,_.addAction)(e.key,"yith-plugin-fw/jquery-events",(function(){for(var t=arguments.length,o=new Array(t),r=0;r<t;r++)o[r]=arguments[r];"jQuery"in window&&(e.delay?setTimeout((()=>{jQuery(document).trigger(e.key,Object.values(o))}),e.delay):jQuery(document).trigger(e.key,Object.values(o)))}));for(const[e,t]of Object.entries(yithGutenbergBlocks))(0,s.registerBlockType)("yith/"+e,{title:t.title,description:t.description,category:t.category,attributes:t.attributes,icon:void 0!==t.icon?t.icon:h,keywords:t.keywords,edit:j(e,t),save:e=>{let{attributes:o}=e;return b(t,o)},deprecated:[{attributes:t.attributes,save:e=>{let{attributes:o}=e;const n=b(t,o),a='<span class="yith_block_'+l()(n)+'">'+n+"</span>";return(0,r.createElement)(r.RawHTML,null,a)}}]})},487:function(e){var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=t},12:function(e){var t,o;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&o.rotl(e,8)|4278255360&o.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=o.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],o=0,r=0;o<e.length;o++,r+=8)t[r>>>5]|=e[o]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],o=0;o<32*e.length;o+=8)t.push(e[o>>>5]>>>24-o%32&255);return t},bytesToHex:function(e){for(var t=[],o=0;o<e.length;o++)t.push((e[o]>>>4).toString(16)),t.push((15&e[o]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],o=0;o<e.length;o+=2)t.push(parseInt(e.substr(o,2),16));return t},bytesToBase64:function(e){for(var o=[],r=0;r<e.length;r+=3)for(var n=e[r]<<16|e[r+1]<<8|e[r+2],a=0;a<4;a++)8*r+6*a<=8*e.length?o.push(t.charAt(n>>>6*(3-a)&63)):o.push("=");return o.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var o=[],r=0,n=0;r<e.length;n=++r%4)0!=n&&o.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*n+8)-1)<<2*n|t.indexOf(e.charAt(r))>>>6-2*n);return o}},e.exports=o},738:function(e){function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:function(e,t,o){var r,n,a,l,s;r=o(12),n=o(487).utf8,a=o(738),l=o(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?l.stringToBytes(e):n.stringToBytes(e):a(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var o=r.bytesToWords(e),c=8*e.length,i=1732584193,u=-271733879,h=-1732584194,d=271733878,p=0;p<o.length;p++)o[p]=16711935&(o[p]<<8|o[p]>>>24)|4278255360&(o[p]<<24|o[p]>>>8);o[c>>>5]|=128<<c%32,o[14+(c+64>>>9<<4)]=c;var f=s._ff,g=s._gg,b=s._hh,m=s._ii;for(p=0;p<o.length;p+=16){var y=i,_=u,v=h,C=d;i=f(i,u,h,d,o[p+0],7,-680876936),d=f(d,i,u,h,o[p+1],12,-389564586),h=f(h,d,i,u,o[p+2],17,606105819),u=f(u,h,d,i,o[p+3],22,-1044525330),i=f(i,u,h,d,o[p+4],7,-176418897),d=f(d,i,u,h,o[p+5],12,1200080426),h=f(h,d,i,u,o[p+6],17,-1473231341),u=f(u,h,d,i,o[p+7],22,-45705983),i=f(i,u,h,d,o[p+8],7,1770035416),d=f(d,i,u,h,o[p+9],12,-1958414417),h=f(h,d,i,u,o[p+10],17,-42063),u=f(u,h,d,i,o[p+11],22,-1990404162),i=f(i,u,h,d,o[p+12],7,1804603682),d=f(d,i,u,h,o[p+13],12,-40341101),h=f(h,d,i,u,o[p+14],17,-1502002290),i=g(i,u=f(u,h,d,i,o[p+15],22,1236535329),h,d,o[p+1],5,-165796510),d=g(d,i,u,h,o[p+6],9,-1069501632),h=g(h,d,i,u,o[p+11],14,643717713),u=g(u,h,d,i,o[p+0],20,-373897302),i=g(i,u,h,d,o[p+5],5,-701558691),d=g(d,i,u,h,o[p+10],9,38016083),h=g(h,d,i,u,o[p+15],14,-660478335),u=g(u,h,d,i,o[p+4],20,-405537848),i=g(i,u,h,d,o[p+9],5,568446438),d=g(d,i,u,h,o[p+14],9,-1019803690),h=g(h,d,i,u,o[p+3],14,-187363961),u=g(u,h,d,i,o[p+8],20,1163531501),i=g(i,u,h,d,o[p+13],5,-1444681467),d=g(d,i,u,h,o[p+2],9,-51403784),h=g(h,d,i,u,o[p+7],14,1735328473),i=b(i,u=g(u,h,d,i,o[p+12],20,-1926607734),h,d,o[p+5],4,-378558),d=b(d,i,u,h,o[p+8],11,-2022574463),h=b(h,d,i,u,o[p+11],16,1839030562),u=b(u,h,d,i,o[p+14],23,-35309556),i=b(i,u,h,d,o[p+1],4,-1530992060),d=b(d,i,u,h,o[p+4],11,1272893353),h=b(h,d,i,u,o[p+7],16,-155497632),u=b(u,h,d,i,o[p+10],23,-1094730640),i=b(i,u,h,d,o[p+13],4,681279174),d=b(d,i,u,h,o[p+0],11,-358537222),h=b(h,d,i,u,o[p+3],16,-722521979),u=b(u,h,d,i,o[p+6],23,76029189),i=b(i,u,h,d,o[p+9],4,-640364487),d=b(d,i,u,h,o[p+12],11,-421815835),h=b(h,d,i,u,o[p+15],16,530742520),i=m(i,u=b(u,h,d,i,o[p+2],23,-995338651),h,d,o[p+0],6,-198630844),d=m(d,i,u,h,o[p+7],10,1126891415),h=m(h,d,i,u,o[p+14],15,-1416354905),u=m(u,h,d,i,o[p+5],21,-57434055),i=m(i,u,h,d,o[p+12],6,1700485571),d=m(d,i,u,h,o[p+3],10,-1894986606),h=m(h,d,i,u,o[p+10],15,-1051523),u=m(u,h,d,i,o[p+1],21,-2054922799),i=m(i,u,h,d,o[p+8],6,1873313359),d=m(d,i,u,h,o[p+15],10,-30611744),h=m(h,d,i,u,o[p+6],15,-1560198380),u=m(u,h,d,i,o[p+13],21,1309151649),i=m(i,u,h,d,o[p+4],6,-145523070),d=m(d,i,u,h,o[p+11],10,-1120210379),h=m(h,d,i,u,o[p+2],15,718787259),u=m(u,h,d,i,o[p+9],21,-343485551),i=i+y>>>0,u=u+_>>>0,h=h+v>>>0,d=d+C>>>0}return r.endian([i,u,h,d])})._ff=function(e,t,o,r,n,a,l){var s=e+(t&o|~t&r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._gg=function(e,t,o,r,n,a,l){var s=e+(t&r|o&~r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._hh=function(e,t,o,r,n,a,l){var s=e+(t^o^r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._ii=function(e,t,o,r,n,a,l){var s=e+(o^(t|~r))+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=r.wordsToBytes(s(e,t));return t&&t.asBytes?o:t&&t.asString?l.bytesToString(o):r.bytesToHex(o)}}},o={};function r(e){var n=o[e];if(void 0!==n)return n.exports;var a=o[e]={exports:{}};return t[e](a,a.exports,r),a.exports}r.m=t,e=[],r.O=function(t,o,n,a){if(!o){var l=1/0;for(u=0;u<e.length;u++){o=e[u][0],n=e[u][1],a=e[u][2];for(var s=!0,c=0;c<o.length;c++)(!1&a||l>=a)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,a<l&&(l=a));if(s){e.splice(u--,1);var i=n();void 0!==i&&(t=i)}}return t}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[o,n,a]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,46:0};r.O.j=function(t){return 0===e[t]};var t=function(t,o){var n,a,l=o[0],s=o[1],c=o[2],i=0;if(l.some((function(t){return 0!==e[t]}))){for(n in s)r.o(s,n)&&(r.m[n]=s[n]);if(c)var u=c(r)}for(t&&t(o);i<l.length;i++)a=l[i],r.o(e,a)&&e[a]&&e[a][0](),e[l[i]]=0;return r.O(u)},o=self.webpackChunkyith_plugin_framewowrk=self.webpackChunkyith_plugin_framewowrk||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}();var n=r.O(void 0,[46],(function(){return r(783)}));n=r.O(n)}();
|
plugin-fw/includes/class-yit-plugin-panel-woocommerce.php
CHANGED
@@ -82,6 +82,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
82 |
$this->links = $this->settings['links'];
|
83 |
}
|
84 |
|
|
|
|
|
85 |
add_action( 'admin_init', array( $this, 'set_default_options' ) );
|
86 |
add_action( 'admin_menu', array( $this, 'add_setting_page' ) );
|
87 |
add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
|
@@ -100,6 +102,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
100 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
|
101 |
add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
|
102 |
|
|
|
|
|
|
|
103 |
// Init actions once to prevent multiple initialization.
|
104 |
static::init_actions();
|
105 |
}
|
@@ -277,7 +282,9 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
277 |
|
278 |
$this->print_tabs_nav();
|
279 |
|
280 |
-
if ( $
|
|
|
|
|
281 |
$this->print_custom_tab( $custom_tab_options );
|
282 |
} elseif ( $this->is_help_tab() ) {
|
283 |
$this->print_help_tab();
|
@@ -655,7 +662,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
655 |
check_ajax_referer( 'save-toggle-element', 'security' );
|
656 |
|
657 |
if ( ! current_user_can( $this->settings['capability'] ) ) {
|
658 |
-
wp_die( -
|
659 |
}
|
660 |
|
661 |
$posted = $_POST;
|
@@ -684,7 +691,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
|
684 |
$i = 0;
|
685 |
$new_value = array();
|
686 |
foreach ( $order_elements as $key ) {
|
687 |
-
$index = apply_filters( 'yith_toggle_elements_index', $i
|
688 |
$new_value[ $index ] = $value[ $key ];
|
689 |
}
|
690 |
|
82 |
$this->links = $this->settings['links'];
|
83 |
}
|
84 |
|
85 |
+
$this->maybe_init_premium_tab();
|
86 |
+
|
87 |
add_action( 'admin_init', array( $this, 'set_default_options' ) );
|
88 |
add_action( 'admin_menu', array( $this, 'add_setting_page' ) );
|
89 |
add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
|
102 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
|
103 |
add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
|
104 |
|
105 |
+
/* Add UTM tracking code on premium tab */
|
106 |
+
add_filter( 'yith_plugin_fw_premium_landing_uri', array( $this, 'add_utm_data_on_premium_tab' ), 10, 2 );
|
107 |
+
|
108 |
// Init actions once to prevent multiple initialization.
|
109 |
static::init_actions();
|
110 |
}
|
282 |
|
283 |
$this->print_tabs_nav();
|
284 |
|
285 |
+
if ( $this->is_premium_tab() && $this->has_premium_tab() ) {
|
286 |
+
$this->print_premium_tab();
|
287 |
+
} elseif ( $custom_tab_options ) {
|
288 |
$this->print_custom_tab( $custom_tab_options );
|
289 |
} elseif ( $this->is_help_tab() ) {
|
290 |
$this->print_help_tab();
|
662 |
check_ajax_referer( 'save-toggle-element', 'security' );
|
663 |
|
664 |
if ( ! current_user_can( $this->settings['capability'] ) ) {
|
665 |
+
wp_die( -1 );
|
666 |
}
|
667 |
|
668 |
$posted = $_POST;
|
691 |
$i = 0;
|
692 |
$new_value = array();
|
693 |
foreach ( $order_elements as $key ) {
|
694 |
+
$index = apply_filters( 'yith_toggle_elements_index', $i++, $key );
|
695 |
$new_value[ $index ] = $value[ $key ];
|
696 |
}
|
697 |
|
plugin-fw/includes/class-yit-plugin-panel.php
CHANGED
@@ -103,6 +103,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
103 |
$this->links = $this->settings['links'];
|
104 |
}
|
105 |
|
|
|
|
|
106 |
add_action( 'admin_init', array( $this, 'register_settings' ) );
|
107 |
add_action( 'admin_menu', array( $this, 'add_setting_page' ), 20 );
|
108 |
add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
|
@@ -112,6 +114,8 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
112 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
|
113 |
add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
|
114 |
|
|
|
|
|
115 |
// Init actions once to prevent multiple initialization.
|
116 |
static::init_actions();
|
117 |
}
|
@@ -624,8 +628,11 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
624 |
do_action( 'yith_plugin_fw_before_yith_panel', $this->settings['page'] );
|
625 |
|
626 |
$this->print_tabs_nav();
|
|
|
|
|
627 |
|
628 |
-
|
|
|
629 |
$this->print_custom_tab( $custom_tab_options );
|
630 |
|
631 |
return;
|
@@ -800,7 +807,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
800 |
'main_video' => false,
|
801 |
'playlists' => array(),
|
802 |
'hc_url' => 'https://support.yithemes.com/hc/',
|
803 |
-
'doc_url' => $this->settings['plugin_slug'] ? 'https://docs.yithemes.com/' . $this->settings['plugin_slug'] . '/' : '',
|
804 |
'submit_ticket_url' => 'https://yithemes.com/my-account/support/submit-a-ticket/',
|
805 |
'show_hc_articles' => true,
|
806 |
'show_submit_ticket' => true,
|
@@ -808,7 +815,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
808 |
);
|
809 |
|
810 |
// add campaign parameters to url.
|
811 |
-
if ( $this->settings['plugin_slug'] ) {
|
812 |
$utm_medium = $this->settings['plugin_slug'];
|
813 |
$utm_source = 'wp-premium-dashboard';
|
814 |
$utm_campaign = 'help-tab';
|
@@ -830,11 +837,72 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
830 |
// set template variables.
|
831 |
$current_tab = $this->get_current_tab();
|
832 |
$current_sub_tab = $this->get_current_sub_tab();
|
833 |
-
$latest_articles = $this->settings['plugin_slug'] ? YIT_Help_Desk::get_latest_articles( $this->settings['plugin_slug'] ) : array();
|
834 |
|
835 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/help-tab.php';
|
836 |
}
|
837 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
838 |
/**
|
839 |
* Add sections and fields to setting panel.
|
840 |
* Read all options and show sections and fields.
|
@@ -1379,7 +1447,7 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
1379 |
|
1380 |
usort(
|
1381 |
$sorted_plugins,
|
1382 |
-
function
|
1383 |
return strcmp( current( $a ), current( $b ) );
|
1384 |
}
|
1385 |
);
|
@@ -1698,5 +1766,17 @@ if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
|
|
1698 |
public function save_toggle_element_options() {
|
1699 |
return true;
|
1700 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
}
|
1702 |
}
|
103 |
$this->links = $this->settings['links'];
|
104 |
}
|
105 |
|
106 |
+
$this->maybe_init_premium_tab();
|
107 |
+
|
108 |
add_action( 'admin_init', array( $this, 'register_settings' ) );
|
109 |
add_action( 'admin_menu', array( $this, 'add_setting_page' ), 20 );
|
110 |
add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
|
114 |
add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
|
115 |
add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
|
116 |
|
117 |
+
/* Add UTM tracking code on premium tab */
|
118 |
+
add_filter( 'yith_plugin_fw_premium_landing_uri', array( $this, 'add_utm_data_on_premium_tab' ), 10, 2 );
|
119 |
// Init actions once to prevent multiple initialization.
|
120 |
static::init_actions();
|
121 |
}
|
628 |
do_action( 'yith_plugin_fw_before_yith_panel', $this->settings['page'] );
|
629 |
|
630 |
$this->print_tabs_nav();
|
631 |
+
if ( $this->is_premium_tab() && $this->has_premium_tab() ) {
|
632 |
+
$this->print_premium_tab();
|
633 |
|
634 |
+
return;
|
635 |
+
} elseif ( $custom_tab_options ) {
|
636 |
$this->print_custom_tab( $custom_tab_options );
|
637 |
|
638 |
return;
|
807 |
'main_video' => false,
|
808 |
'playlists' => array(),
|
809 |
'hc_url' => 'https://support.yithemes.com/hc/',
|
810 |
+
'doc_url' => isset( $this->settings['plugin_slug'] ) ? 'https://docs.yithemes.com/' . $this->settings['plugin_slug'] . '/' : '',
|
811 |
'submit_ticket_url' => 'https://yithemes.com/my-account/support/submit-a-ticket/',
|
812 |
'show_hc_articles' => true,
|
813 |
'show_submit_ticket' => true,
|
815 |
);
|
816 |
|
817 |
// add campaign parameters to url.
|
818 |
+
if ( isset( $this->settings['plugin_slug'] ) ) {
|
819 |
$utm_medium = $this->settings['plugin_slug'];
|
820 |
$utm_source = 'wp-premium-dashboard';
|
821 |
$utm_campaign = 'help-tab';
|
837 |
// set template variables.
|
838 |
$current_tab = $this->get_current_tab();
|
839 |
$current_sub_tab = $this->get_current_sub_tab();
|
840 |
+
$latest_articles = isset( $this->settings['plugin_slug'] ) ? YIT_Help_Desk::get_latest_articles( $this->settings['plugin_slug'] ) : array();
|
841 |
|
842 |
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/help-tab.php';
|
843 |
}
|
844 |
|
845 |
+
/**
|
846 |
+
* Add premium tab in admin-tabs if is set.
|
847 |
+
*
|
848 |
+
* @author Giuseppe Arcifa <giuseppe.arcifa@yithemes.com>
|
849 |
+
* @since 3.9.0
|
850 |
+
*/
|
851 |
+
protected function maybe_init_premium_tab() {
|
852 |
+
if ( isset( $this->settings['premium_tab'] ) ) {
|
853 |
+
$this->settings['admin-tabs']['premium'] = _x( 'Get premium', 'Premium tab name', 'yith-plugin-fw' );
|
854 |
+
}
|
855 |
+
}
|
856 |
+
|
857 |
+
/**
|
858 |
+
* Checks whether current tab is Premium Tab
|
859 |
+
*
|
860 |
+
* @return bool
|
861 |
+
* @author Giuseppe Arcifa <giuseppe.arcifa@yithemes.com>
|
862 |
+
* @since 3.9.0
|
863 |
+
*/
|
864 |
+
protected function is_premium_tab() {
|
865 |
+
return 'premium' === $this->get_current_tab();
|
866 |
+
}
|
867 |
+
|
868 |
+
/**
|
869 |
+
* Check if panel has premium tab
|
870 |
+
* (Check for premium Tab through the premium_tab param fully handled by plugin-fw)
|
871 |
+
*
|
872 |
+
* @return bool
|
873 |
+
* @author Giuseppe Arcifa <giuseppe.arcifa@yithemes.com>
|
874 |
+
* @since 3.9.0
|
875 |
+
*/
|
876 |
+
protected function has_premium_tab() {
|
877 |
+
return $this->is_free() && ! empty( $this->settings['premium_tab'] );
|
878 |
+
}
|
879 |
+
|
880 |
+
/**
|
881 |
+
* Prints Premium Tab
|
882 |
+
*
|
883 |
+
* @return void
|
884 |
+
* @author Giuseppe Arcifa <giuseppe.arcifa@yithemes.com>
|
885 |
+
* @since 3.9.0
|
886 |
+
*/
|
887 |
+
protected function print_premium_tab() {
|
888 |
+
$options = $this->settings['premium_tab'] ?? array();
|
889 |
+
|
890 |
+
$defaults = array(
|
891 |
+
'premium_features' => array(),
|
892 |
+
'main_image_url' => '',
|
893 |
+
'show_free_vs_premium_link' => true,
|
894 |
+
);
|
895 |
+
$options = wp_parse_args( $options, $defaults );
|
896 |
+
|
897 |
+
$plugin_slug = ! empty( $this->settings['plugin_slug'] ) ? $this->settings['plugin_slug'] : '';
|
898 |
+
$premium_url = '';
|
899 |
+
if ( $plugin_slug ) {
|
900 |
+
$premium_url = ! empty( $options['landing_page_url'] ) ? $options['landing_page_url'] : 'https://yithemes.com/themes/plugins/' . $plugin_slug;
|
901 |
+
}
|
902 |
+
|
903 |
+
include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/premium-tab.php';
|
904 |
+
}
|
905 |
+
|
906 |
/**
|
907 |
* Add sections and fields to setting panel.
|
908 |
* Read all options and show sections and fields.
|
1447 |
|
1448 |
usort(
|
1449 |
$sorted_plugins,
|
1450 |
+
function( $a, $b ) {
|
1451 |
return strcmp( current( $a ), current( $b ) );
|
1452 |
}
|
1453 |
);
|
1766 |
public function save_toggle_element_options() {
|
1767 |
return true;
|
1768 |
}
|
1769 |
+
|
1770 |
+
/**
|
1771 |
+
* Add UTM data in premium tab
|
1772 |
+
*
|
1773 |
+
* @param string $url The url that want to track.
|
1774 |
+
* @param string $slug Plugin slug.
|
1775 |
+
*
|
1776 |
+
* @since 3.8.4
|
1777 |
+
*/
|
1778 |
+
public function add_utm_data_on_premium_tab( $url, $slug ) {
|
1779 |
+
return ! empty( $this->settings['plugin_slug'] ) && $slug === $this->settings['plugin_slug'] && 'premium' === $this->get_current_tab() ? yith_plugin_fw_add_utm_data( $url, $slug, 'button-upgrade', 'wp-free-dashboard' ) : $url;
|
1780 |
+
}
|
1781 |
}
|
1782 |
}
|
plugin-fw/init.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
-
* Version: 3.
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
-
* @version 3.
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Framework Name: YIT Plugin Framework
|
4 |
+
* Version: 3.9.0
|
5 |
* Author: YITH
|
6 |
* Text Domain: yith-plugin-fw
|
7 |
* Domain Path: /languages/
|
8 |
*
|
9 |
* @author YITH
|
10 |
+
* @version 3.9.0
|
11 |
* @package YITH\PluginFramework
|
12 |
*/
|
13 |
|
plugin-fw/languages/yith-plugin-fw-el.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -70,7 +70,7 @@ msgstr "Αξία χρώματος"
|
|
70 |
msgid "There was an error with your request; please try again later."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/class-yit-plugin-panel-woocommerce.php:
|
74 |
msgid "The changes you have made will be lost if you leave this page."
|
75 |
msgstr ""
|
76 |
"Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
|
@@ -83,17 +83,17 @@ msgstr "Ρυθμίσεις Προσθέτου"
|
|
83 |
msgid "Settings"
|
84 |
msgstr "Ρυθμίσεις"
|
85 |
|
86 |
-
#: includes/class-yit-plugin-panel.php:
|
87 |
-
#: includes/class-yit-plugin-panel.php:
|
88 |
msgid "How to install premium version"
|
89 |
msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
|
90 |
|
91 |
-
#: includes/class-yit-plugin-panel.php:
|
92 |
#: includes/class-yit-plugin-subpanel.php:132
|
93 |
msgid "Save Changes"
|
94 |
msgstr "Αποθήκευση Αλλαγών"
|
95 |
|
96 |
-
#: includes/class-yit-plugin-panel.php:
|
97 |
#: includes/class-yit-plugin-subpanel.php:136
|
98 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
99 |
msgid ""
|
@@ -102,73 +102,73 @@ msgstr ""
|
|
102 |
"Αν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη "
|
103 |
"σελίδα."
|
104 |
|
105 |
-
#: includes/class-yit-plugin-panel.php:
|
106 |
#: includes/class-yit-plugin-subpanel.php:136
|
107 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
108 |
msgid "Are you sure?"
|
109 |
msgstr "Είστε σίγουρος;"
|
110 |
|
111 |
-
#: includes/class-yit-plugin-panel.php:
|
112 |
#: includes/class-yit-plugin-subpanel.php:139
|
113 |
msgid "Reset to default"
|
114 |
msgstr "Επαναφορά σε προεπιλεγμένο"
|
115 |
|
116 |
-
#: includes/class-yit-plugin-panel.php:
|
117 |
msgid ""
|
118 |
"The element you have entered already exists. Please, enter another name."
|
119 |
msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
|
120 |
|
121 |
-
#: includes/class-yit-plugin-panel.php:
|
122 |
msgid "Settings saved"
|
123 |
msgstr "Ρυθμίσεις αποθηκεύτηκαν"
|
124 |
|
125 |
-
#: includes/class-yit-plugin-panel.php:
|
126 |
msgid "Settings reset"
|
127 |
msgstr "Επαναφορά ρυθμίσεων"
|
128 |
|
129 |
-
#: includes/class-yit-plugin-panel.php:
|
130 |
msgid "Element deleted correctly."
|
131 |
msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
|
132 |
|
133 |
-
#: includes/class-yit-plugin-panel.php:
|
134 |
-
#: includes/class-yit-plugin-panel.php:
|
135 |
msgid "Element updated correctly."
|
136 |
msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
|
137 |
|
138 |
-
#: includes/class-yit-plugin-panel.php:
|
139 |
msgid "Database imported correctly."
|
140 |
msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
|
141 |
|
142 |
-
#: includes/class-yit-plugin-panel.php:
|
143 |
msgid "An error has occurred during import. Please try again."
|
144 |
msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
|
145 |
|
146 |
-
#: includes/class-yit-plugin-panel.php:
|
147 |
msgid "The added file is not valid."
|
148 |
msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
|
149 |
|
150 |
-
#: includes/class-yit-plugin-panel.php:
|
151 |
msgid "Sorry, import is disabled."
|
152 |
msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
|
153 |
|
154 |
-
#: includes/class-yit-plugin-panel.php:
|
155 |
msgid "Sorting successful."
|
156 |
msgstr "Διαλογή επιτυχής."
|
157 |
|
158 |
-
#: includes/class-yit-plugin-panel.php:
|
159 |
msgid "We need your support"
|
160 |
msgstr "Χρειαζόμαστε την υποστήριξή σας"
|
161 |
|
162 |
-
#: includes/class-yit-plugin-panel.php:
|
163 |
msgid "to keep updating and improving the plugin. Please,"
|
164 |
msgstr ""
|
165 |
"για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
|
166 |
|
167 |
-
#: includes/class-yit-plugin-panel.php:
|
168 |
msgid "help us by leaving a good review"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-yit-plugin-panel.php:
|
172 |
msgid ":) Thanks!"
|
173 |
msgstr ":) Ευχαριστώ!"
|
174 |
|
@@ -718,23 +718,28 @@ msgctxt "Delete confirmation action"
|
|
718 |
msgid "Yes, delete"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/class-yit-plugin-panel.php:
|
722 |
msgctxt "Help tab name"
|
723 |
msgid "Help"
|
724 |
msgstr ""
|
725 |
|
726 |
#. translators: 1. Plugin name.
|
727 |
-
#: includes/class-yit-plugin-panel.php:
|
728 |
msgctxt "Help tab default title"
|
729 |
msgid "Thank you for purchasing %s!"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/class-yit-plugin-panel.php:
|
733 |
msgctxt "Help tab default description"
|
734 |
msgid ""
|
735 |
"We want to help you to enjoy a wonderful experience with all our products."
|
736 |
msgstr ""
|
737 |
|
|
|
|
|
|
|
|
|
|
|
738 |
#: includes/class-yith-dashboard.php:96
|
739 |
msgctxt "Plugin FW"
|
740 |
msgid "View Changelog"
|
@@ -919,6 +924,37 @@ msgctxt "Help tab submit ticket button"
|
|
919 |
msgid "Submit a ticket"
|
920 |
msgstr ""
|
921 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
922 |
#: yit-functions.php:1925
|
923 |
msgctxt "Post action"
|
924 |
msgid "Preview"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-12-13 14:46:02+00:00\n"
|
8 |
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
|
9 |
"Language: el_GR\n"
|
10 |
"MIME-Version: 1.0\n"
|
70 |
msgid "There was an error with your request; please try again later."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:430
|
74 |
msgid "The changes you have made will be lost if you leave this page."
|
75 |
msgstr ""
|
76 |
"Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."
|
83 |
msgid "Settings"
|
84 |
msgstr "Ρυθμίσεις"
|
85 |
|
86 |
+
#: includes/class-yit-plugin-panel.php:455
|
87 |
+
#: includes/class-yit-plugin-panel.php:458
|
88 |
msgid "How to install premium version"
|
89 |
msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"
|
90 |
|
91 |
+
#: includes/class-yit-plugin-panel.php:659
|
92 |
#: includes/class-yit-plugin-subpanel.php:132
|
93 |
msgid "Save Changes"
|
94 |
msgstr "Αποθήκευση Αλλαγών"
|
95 |
|
96 |
+
#: includes/class-yit-plugin-panel.php:664
|
97 |
#: includes/class-yit-plugin-subpanel.php:136
|
98 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
99 |
msgid ""
|
102 |
"Αν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη "
|
103 |
"σελίδα."
|
104 |
|
105 |
+
#: includes/class-yit-plugin-panel.php:664
|
106 |
#: includes/class-yit-plugin-subpanel.php:136
|
107 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
108 |
msgid "Are you sure?"
|
109 |
msgstr "Είστε σίγουρος;"
|
110 |
|
111 |
+
#: includes/class-yit-plugin-panel.php:668
|
112 |
#: includes/class-yit-plugin-subpanel.php:139
|
113 |
msgid "Reset to default"
|
114 |
msgstr "Επαναφορά σε προεπιλεγμένο"
|
115 |
|
116 |
+
#: includes/class-yit-plugin-panel.php:1047
|
117 |
msgid ""
|
118 |
"The element you have entered already exists. Please, enter another name."
|
119 |
msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."
|
120 |
|
121 |
+
#: includes/class-yit-plugin-panel.php:1048
|
122 |
msgid "Settings saved"
|
123 |
msgstr "Ρυθμίσεις αποθηκεύτηκαν"
|
124 |
|
125 |
+
#: includes/class-yit-plugin-panel.php:1049
|
126 |
msgid "Settings reset"
|
127 |
msgstr "Επαναφορά ρυθμίσεων"
|
128 |
|
129 |
+
#: includes/class-yit-plugin-panel.php:1050
|
130 |
msgid "Element deleted correctly."
|
131 |
msgstr "Το στοιχείο διαγράφηκε επιτυχώς."
|
132 |
|
133 |
+
#: includes/class-yit-plugin-panel.php:1051
|
134 |
+
#: includes/class-yit-plugin-panel.php:1052
|
135 |
msgid "Element updated correctly."
|
136 |
msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."
|
137 |
|
138 |
+
#: includes/class-yit-plugin-panel.php:1053
|
139 |
msgid "Database imported correctly."
|
140 |
msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."
|
141 |
|
142 |
+
#: includes/class-yit-plugin-panel.php:1054
|
143 |
msgid "An error has occurred during import. Please try again."
|
144 |
msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."
|
145 |
|
146 |
+
#: includes/class-yit-plugin-panel.php:1055
|
147 |
msgid "The added file is not valid."
|
148 |
msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."
|
149 |
|
150 |
+
#: includes/class-yit-plugin-panel.php:1056
|
151 |
msgid "Sorry, import is disabled."
|
152 |
msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."
|
153 |
|
154 |
+
#: includes/class-yit-plugin-panel.php:1057
|
155 |
msgid "Sorting successful."
|
156 |
msgstr "Διαλογή επιτυχής."
|
157 |
|
158 |
+
#: includes/class-yit-plugin-panel.php:1525
|
159 |
msgid "We need your support"
|
160 |
msgstr "Χρειαζόμαστε την υποστήριξή σας"
|
161 |
|
162 |
+
#: includes/class-yit-plugin-panel.php:1526
|
163 |
msgid "to keep updating and improving the plugin. Please,"
|
164 |
msgstr ""
|
165 |
"για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"
|
166 |
|
167 |
+
#: includes/class-yit-plugin-panel.php:1528
|
168 |
msgid "help us by leaving a good review"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-yit-plugin-panel.php:1529
|
172 |
msgid ":) Thanks!"
|
173 |
msgstr ":) Ευχαριστώ!"
|
174 |
|
718 |
msgid "Yes, delete"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-yit-plugin-panel.php:492
|
722 |
msgctxt "Help tab name"
|
723 |
msgid "Help"
|
724 |
msgstr ""
|
725 |
|
726 |
#. translators: 1. Plugin name.
|
727 |
+
#: includes/class-yit-plugin-panel.php:805
|
728 |
msgctxt "Help tab default title"
|
729 |
msgid "Thank you for purchasing %s!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/class-yit-plugin-panel.php:806
|
733 |
msgctxt "Help tab default description"
|
734 |
msgid ""
|
735 |
"We want to help you to enjoy a wonderful experience with all our products."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/class-yit-plugin-panel.php:853
|
739 |
+
msgctxt "Premium tab name"
|
740 |
+
msgid "Get premium"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
#: includes/class-yith-dashboard.php:96
|
744 |
msgctxt "Plugin FW"
|
745 |
msgid "View Changelog"
|
924 |
msgid "Submit a ticket"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: templates/panel/premium-tab.php:30
|
928 |
+
msgctxt "Premium Tab"
|
929 |
+
msgid "Get the premium version to unlock advanced features"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: templates/panel/premium-tab.php:34
|
933 |
+
msgctxt "Premium Tab"
|
934 |
+
msgid "Get premium"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: templates/panel/premium-tab.php:39
|
938 |
+
msgctxt "Premium Tab"
|
939 |
+
msgid "Plugin premium features images"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#. translators: alt attribute of main image tag.
|
943 |
+
#: templates/panel/premium-tab.php:51
|
944 |
+
msgctxt "Premium Tab"
|
945 |
+
msgid "And so much more!"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: templates/panel/premium-tab.php:53
|
949 |
+
msgctxt "Premium Tab"
|
950 |
+
msgid "Check the free vs premium features >"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: templates/panel/premium-tab.php:58
|
954 |
+
msgctxt "Premium Tab"
|
955 |
+
msgid "Get the premium version"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
#: yit-functions.php:1925
|
959 |
msgctxt "Post action"
|
960 |
msgid "Preview"
|
plugin-fw/languages/yith-plugin-fw-es_ES.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -72,7 +72,7 @@ msgid "There was an error with your request; please try again later."
|
|
72 |
msgstr ""
|
73 |
"Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."
|
74 |
|
75 |
-
#: includes/class-yit-plugin-panel-woocommerce.php:
|
76 |
msgid "The changes you have made will be lost if you leave this page."
|
77 |
msgstr "Los cambios que has hecho se perderán si abandonas esta página."
|
78 |
|
@@ -84,17 +84,17 @@ msgstr "Ajustes del plugin"
|
|
84 |
msgid "Settings"
|
85 |
msgstr "Ajustes"
|
86 |
|
87 |
-
#: includes/class-yit-plugin-panel.php:
|
88 |
-
#: includes/class-yit-plugin-panel.php:
|
89 |
msgid "How to install premium version"
|
90 |
msgstr "Cómo instalar la versión premium"
|
91 |
|
92 |
-
#: includes/class-yit-plugin-panel.php:
|
93 |
#: includes/class-yit-plugin-subpanel.php:132
|
94 |
msgid "Save Changes"
|
95 |
msgstr "Guardar cambios"
|
96 |
|
97 |
-
#: includes/class-yit-plugin-panel.php:
|
98 |
#: includes/class-yit-plugin-subpanel.php:136
|
99 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
100 |
msgid ""
|
@@ -103,74 +103,74 @@ msgstr ""
|
|
103 |
"Si continúas con esta acción, restablecerás todas las opciones en esta "
|
104 |
"página."
|
105 |
|
106 |
-
#: includes/class-yit-plugin-panel.php:
|
107 |
#: includes/class-yit-plugin-subpanel.php:136
|
108 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
109 |
msgid "Are you sure?"
|
110 |
msgstr "¿Estás seguro?"
|
111 |
|
112 |
-
#: includes/class-yit-plugin-panel.php:
|
113 |
#: includes/class-yit-plugin-subpanel.php:139
|
114 |
msgid "Reset to default"
|
115 |
msgstr "Restablecer valores predeterminados"
|
116 |
|
117 |
-
#: includes/class-yit-plugin-panel.php:
|
118 |
msgid ""
|
119 |
"The element you have entered already exists. Please, enter another name."
|
120 |
msgstr ""
|
121 |
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."
|
122 |
|
123 |
-
#: includes/class-yit-plugin-panel.php:
|
124 |
msgid "Settings saved"
|
125 |
msgstr "Ajustes guardados"
|
126 |
|
127 |
-
#: includes/class-yit-plugin-panel.php:
|
128 |
msgid "Settings reset"
|
129 |
msgstr "Restablecer ajustes"
|
130 |
|
131 |
-
#: includes/class-yit-plugin-panel.php:
|
132 |
msgid "Element deleted correctly."
|
133 |
msgstr "Elemento eliminado correctamente."
|
134 |
|
135 |
-
#: includes/class-yit-plugin-panel.php:
|
136 |
-
#: includes/class-yit-plugin-panel.php:
|
137 |
msgid "Element updated correctly."
|
138 |
msgstr "Elemento actualizado correctamente."
|
139 |
|
140 |
-
#: includes/class-yit-plugin-panel.php:
|
141 |
msgid "Database imported correctly."
|
142 |
msgstr "Base de datos importada correctamente."
|
143 |
|
144 |
-
#: includes/class-yit-plugin-panel.php:
|
145 |
msgid "An error has occurred during import. Please try again."
|
146 |
msgstr ""
|
147 |
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
|
148 |
|
149 |
-
#: includes/class-yit-plugin-panel.php:
|
150 |
msgid "The added file is not valid."
|
151 |
msgstr "El archivo añadido no es válido."
|
152 |
|
153 |
-
#: includes/class-yit-plugin-panel.php:
|
154 |
msgid "Sorry, import is disabled."
|
155 |
msgstr "Lo siento, la importación está desactivada."
|
156 |
|
157 |
-
#: includes/class-yit-plugin-panel.php:
|
158 |
msgid "Sorting successful."
|
159 |
msgstr "Clasificación realizada con éxito"
|
160 |
|
161 |
-
#: includes/class-yit-plugin-panel.php:
|
162 |
msgid "We need your support"
|
163 |
msgstr "Necesitamos tu apoyo"
|
164 |
|
165 |
-
#: includes/class-yit-plugin-panel.php:
|
166 |
msgid "to keep updating and improving the plugin. Please,"
|
167 |
msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
|
168 |
|
169 |
-
#: includes/class-yit-plugin-panel.php:
|
170 |
msgid "help us by leaving a good review"
|
171 |
msgstr "ayúdanos dejando una buena valoración"
|
172 |
|
173 |
-
#: includes/class-yit-plugin-panel.php:
|
174 |
msgid ":) Thanks!"
|
175 |
msgstr ":) ¡Gracias!"
|
176 |
|
@@ -726,18 +726,18 @@ msgctxt "Delete confirmation action"
|
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Si, borrar"
|
728 |
|
729 |
-
#: includes/class-yit-plugin-panel.php:
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Ayuda"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
-
#: includes/class-yit-plugin-panel.php:
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "¡Gracias por comprar %s!"
|
739 |
|
740 |
-
#: includes/class-yit-plugin-panel.php:
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
@@ -745,6 +745,11 @@ msgstr ""
|
|
745 |
"Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
|
746 |
"nuestros productos."
|
747 |
|
|
|
|
|
|
|
|
|
|
|
748 |
#: includes/class-yith-dashboard.php:96
|
749 |
msgctxt "Plugin FW"
|
750 |
msgid "View Changelog"
|
@@ -931,6 +936,37 @@ msgctxt "Help tab submit ticket button"
|
|
931 |
msgid "Submit a ticket"
|
932 |
msgstr "Enviar ticket"
|
933 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
#: yit-functions.php:1925
|
935 |
msgctxt "Post action"
|
936 |
msgid "Preview"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-12-13 14:46:02+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-12-13 13:19:03+0000\n"
|
9 |
"Language: es\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
72 |
msgstr ""
|
73 |
"Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."
|
74 |
|
75 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:430
|
76 |
msgid "The changes you have made will be lost if you leave this page."
|
77 |
msgstr "Los cambios que has hecho se perderán si abandonas esta página."
|
78 |
|
84 |
msgid "Settings"
|
85 |
msgstr "Ajustes"
|
86 |
|
87 |
+
#: includes/class-yit-plugin-panel.php:455
|
88 |
+
#: includes/class-yit-plugin-panel.php:458
|
89 |
msgid "How to install premium version"
|
90 |
msgstr "Cómo instalar la versión premium"
|
91 |
|
92 |
+
#: includes/class-yit-plugin-panel.php:659
|
93 |
#: includes/class-yit-plugin-subpanel.php:132
|
94 |
msgid "Save Changes"
|
95 |
msgstr "Guardar cambios"
|
96 |
|
97 |
+
#: includes/class-yit-plugin-panel.php:664
|
98 |
#: includes/class-yit-plugin-subpanel.php:136
|
99 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
100 |
msgid ""
|
103 |
"Si continúas con esta acción, restablecerás todas las opciones en esta "
|
104 |
"página."
|
105 |
|
106 |
+
#: includes/class-yit-plugin-panel.php:664
|
107 |
#: includes/class-yit-plugin-subpanel.php:136
|
108 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
109 |
msgid "Are you sure?"
|
110 |
msgstr "¿Estás seguro?"
|
111 |
|
112 |
+
#: includes/class-yit-plugin-panel.php:668
|
113 |
#: includes/class-yit-plugin-subpanel.php:139
|
114 |
msgid "Reset to default"
|
115 |
msgstr "Restablecer valores predeterminados"
|
116 |
|
117 |
+
#: includes/class-yit-plugin-panel.php:1047
|
118 |
msgid ""
|
119 |
"The element you have entered already exists. Please, enter another name."
|
120 |
msgstr ""
|
121 |
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."
|
122 |
|
123 |
+
#: includes/class-yit-plugin-panel.php:1048
|
124 |
msgid "Settings saved"
|
125 |
msgstr "Ajustes guardados"
|
126 |
|
127 |
+
#: includes/class-yit-plugin-panel.php:1049
|
128 |
msgid "Settings reset"
|
129 |
msgstr "Restablecer ajustes"
|
130 |
|
131 |
+
#: includes/class-yit-plugin-panel.php:1050
|
132 |
msgid "Element deleted correctly."
|
133 |
msgstr "Elemento eliminado correctamente."
|
134 |
|
135 |
+
#: includes/class-yit-plugin-panel.php:1051
|
136 |
+
#: includes/class-yit-plugin-panel.php:1052
|
137 |
msgid "Element updated correctly."
|
138 |
msgstr "Elemento actualizado correctamente."
|
139 |
|
140 |
+
#: includes/class-yit-plugin-panel.php:1053
|
141 |
msgid "Database imported correctly."
|
142 |
msgstr "Base de datos importada correctamente."
|
143 |
|
144 |
+
#: includes/class-yit-plugin-panel.php:1054
|
145 |
msgid "An error has occurred during import. Please try again."
|
146 |
msgstr ""
|
147 |
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."
|
148 |
|
149 |
+
#: includes/class-yit-plugin-panel.php:1055
|
150 |
msgid "The added file is not valid."
|
151 |
msgstr "El archivo añadido no es válido."
|
152 |
|
153 |
+
#: includes/class-yit-plugin-panel.php:1056
|
154 |
msgid "Sorry, import is disabled."
|
155 |
msgstr "Lo siento, la importación está desactivada."
|
156 |
|
157 |
+
#: includes/class-yit-plugin-panel.php:1057
|
158 |
msgid "Sorting successful."
|
159 |
msgstr "Clasificación realizada con éxito"
|
160 |
|
161 |
+
#: includes/class-yit-plugin-panel.php:1525
|
162 |
msgid "We need your support"
|
163 |
msgstr "Necesitamos tu apoyo"
|
164 |
|
165 |
+
#: includes/class-yit-plugin-panel.php:1526
|
166 |
msgid "to keep updating and improving the plugin. Please,"
|
167 |
msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"
|
168 |
|
169 |
+
#: includes/class-yit-plugin-panel.php:1528
|
170 |
msgid "help us by leaving a good review"
|
171 |
msgstr "ayúdanos dejando una buena valoración"
|
172 |
|
173 |
+
#: includes/class-yit-plugin-panel.php:1529
|
174 |
msgid ":) Thanks!"
|
175 |
msgstr ":) ¡Gracias!"
|
176 |
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Si, borrar"
|
728 |
|
729 |
+
#: includes/class-yit-plugin-panel.php:492
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Ayuda"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
+
#: includes/class-yit-plugin-panel.php:805
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "¡Gracias por comprar %s!"
|
739 |
|
740 |
+
#: includes/class-yit-plugin-panel.php:806
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
745 |
"Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
|
746 |
"nuestros productos."
|
747 |
|
748 |
+
#: includes/class-yit-plugin-panel.php:853
|
749 |
+
msgctxt "Premium tab name"
|
750 |
+
msgid "Get premium"
|
751 |
+
msgstr "Obtén premium"
|
752 |
+
|
753 |
#: includes/class-yith-dashboard.php:96
|
754 |
msgctxt "Plugin FW"
|
755 |
msgid "View Changelog"
|
936 |
msgid "Submit a ticket"
|
937 |
msgstr "Enviar ticket"
|
938 |
|
939 |
+
#: templates/panel/premium-tab.php:30
|
940 |
+
msgctxt "Premium Tab"
|
941 |
+
msgid "Get the premium version to unlock advanced features"
|
942 |
+
msgstr "Obtén la versión premium para desbloquear características avanzadas"
|
943 |
+
|
944 |
+
#: templates/panel/premium-tab.php:34
|
945 |
+
msgctxt "Premium Tab"
|
946 |
+
msgid "Get premium"
|
947 |
+
msgstr "Obtén la versión Premium"
|
948 |
+
|
949 |
+
#: templates/panel/premium-tab.php:39
|
950 |
+
msgctxt "Premium Tab"
|
951 |
+
msgid "Plugin premium features images"
|
952 |
+
msgstr "Imágenes de la versión premium"
|
953 |
+
|
954 |
+
#. translators: alt attribute of main image tag.
|
955 |
+
#: templates/panel/premium-tab.php:51
|
956 |
+
msgctxt "Premium Tab"
|
957 |
+
msgid "And so much more!"
|
958 |
+
msgstr "¡Y mucho más!"
|
959 |
+
|
960 |
+
#: templates/panel/premium-tab.php:53
|
961 |
+
msgctxt "Premium Tab"
|
962 |
+
msgid "Check the free vs premium features >"
|
963 |
+
msgstr "Comprueba las características gratuitas frente a las premium >"
|
964 |
+
|
965 |
+
#: templates/panel/premium-tab.php:58
|
966 |
+
msgctxt "Premium Tab"
|
967 |
+
msgid "Get the premium version"
|
968 |
+
msgstr "Obtén la versión Premium"
|
969 |
+
|
970 |
#: yit-functions.php:1925
|
971 |
msgctxt "Post action"
|
972 |
msgid "Preview"
|
plugin-fw/languages/yith-plugin-fw-it_IT.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-it_IT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -72,7 +72,7 @@ msgstr "Valore del colore"
|
|
72 |
msgid "There was an error with your request; please try again later."
|
73 |
msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."
|
74 |
|
75 |
-
#: includes/class-yit-plugin-panel-woocommerce.php:
|
76 |
msgid "The changes you have made will be lost if you leave this page."
|
77 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
78 |
|
@@ -84,17 +84,17 @@ msgstr "Impostazioni plugin"
|
|
84 |
msgid "Settings"
|
85 |
msgstr "Impostazioni"
|
86 |
|
87 |
-
#: includes/class-yit-plugin-panel.php:
|
88 |
-
#: includes/class-yit-plugin-panel.php:
|
89 |
msgid "How to install premium version"
|
90 |
msgstr "Come installare la versione premium"
|
91 |
|
92 |
-
#: includes/class-yit-plugin-panel.php:
|
93 |
#: includes/class-yit-plugin-subpanel.php:132
|
94 |
msgid "Save Changes"
|
95 |
msgstr "Salva modifiche"
|
96 |
|
97 |
-
#: includes/class-yit-plugin-panel.php:
|
98 |
#: includes/class-yit-plugin-subpanel.php:136
|
99 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
100 |
msgid ""
|
@@ -103,72 +103,72 @@ msgstr ""
|
|
103 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
104 |
"reimpostate."
|
105 |
|
106 |
-
#: includes/class-yit-plugin-panel.php:
|
107 |
#: includes/class-yit-plugin-subpanel.php:136
|
108 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
109 |
msgid "Are you sure?"
|
110 |
msgstr "Sei sicuro?"
|
111 |
|
112 |
-
#: includes/class-yit-plugin-panel.php:
|
113 |
#: includes/class-yit-plugin-subpanel.php:139
|
114 |
msgid "Reset to default"
|
115 |
msgstr "Ripristina configurazione predefinita"
|
116 |
|
117 |
-
#: includes/class-yit-plugin-panel.php:
|
118 |
msgid ""
|
119 |
"The element you have entered already exists. Please, enter another name."
|
120 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
121 |
|
122 |
-
#: includes/class-yit-plugin-panel.php:
|
123 |
msgid "Settings saved"
|
124 |
msgstr "Impostazioni salvate"
|
125 |
|
126 |
-
#: includes/class-yit-plugin-panel.php:
|
127 |
msgid "Settings reset"
|
128 |
msgstr "Impostazioni azzerate"
|
129 |
|
130 |
-
#: includes/class-yit-plugin-panel.php:
|
131 |
msgid "Element deleted correctly."
|
132 |
msgstr "Elemento rimosso correttamente."
|
133 |
|
134 |
-
#: includes/class-yit-plugin-panel.php:
|
135 |
-
#: includes/class-yit-plugin-panel.php:
|
136 |
msgid "Element updated correctly."
|
137 |
msgstr "Elemento aggiornato correttamente."
|
138 |
|
139 |
-
#: includes/class-yit-plugin-panel.php:
|
140 |
msgid "Database imported correctly."
|
141 |
msgstr "Database importato correttamente."
|
142 |
|
143 |
-
#: includes/class-yit-plugin-panel.php:
|
144 |
msgid "An error has occurred during import. Please try again."
|
145 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
146 |
|
147 |
-
#: includes/class-yit-plugin-panel.php:
|
148 |
msgid "The added file is not valid."
|
149 |
msgstr "Il file aggiunto non è valido."
|
150 |
|
151 |
-
#: includes/class-yit-plugin-panel.php:
|
152 |
msgid "Sorry, import is disabled."
|
153 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
154 |
|
155 |
-
#: includes/class-yit-plugin-panel.php:
|
156 |
msgid "Sorting successful."
|
157 |
msgstr "Ordinamento effettuato con successo."
|
158 |
|
159 |
-
#: includes/class-yit-plugin-panel.php:
|
160 |
msgid "We need your support"
|
161 |
msgstr "Abbiamo bisogno del tuo sostegno"
|
162 |
|
163 |
-
#: includes/class-yit-plugin-panel.php:
|
164 |
msgid "to keep updating and improving the plugin. Please,"
|
165 |
msgstr "per poter continuare ad aggiornare e migliorare il plugin."
|
166 |
|
167 |
-
#: includes/class-yit-plugin-panel.php:
|
168 |
msgid "help us by leaving a good review"
|
169 |
msgstr "Puoi darci una mano lasciando una recensione positiva"
|
170 |
|
171 |
-
#: includes/class-yit-plugin-panel.php:
|
172 |
msgid ":) Thanks!"
|
173 |
msgstr ":) Grazie!"
|
174 |
|
@@ -726,18 +726,18 @@ msgctxt "Delete confirmation action"
|
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Sì, elimina"
|
728 |
|
729 |
-
#: includes/class-yit-plugin-panel.php:
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Help"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
-
#: includes/class-yit-plugin-panel.php:
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "Grazie per aver acquistato %s!"
|
739 |
|
740 |
-
#: includes/class-yit-plugin-panel.php:
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
@@ -745,6 +745,11 @@ msgstr ""
|
|
745 |
"Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
|
746 |
"prodotti."
|
747 |
|
|
|
|
|
|
|
|
|
|
|
748 |
#: includes/class-yith-dashboard.php:96
|
749 |
msgctxt "Plugin FW"
|
750 |
msgid "View Changelog"
|
@@ -933,6 +938,37 @@ msgctxt "Help tab submit ticket button"
|
|
933 |
msgid "Submit a ticket"
|
934 |
msgstr "Invia un ticket"
|
935 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
#: yit-functions.php:1925
|
937 |
msgctxt "Post action"
|
938 |
msgid "Preview"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-12-13 14:46:02+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-12-13 12:05:30+0000\n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
72 |
msgid "There was an error with your request; please try again later."
|
73 |
msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."
|
74 |
|
75 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:430
|
76 |
msgid "The changes you have made will be lost if you leave this page."
|
77 |
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."
|
78 |
|
84 |
msgid "Settings"
|
85 |
msgstr "Impostazioni"
|
86 |
|
87 |
+
#: includes/class-yit-plugin-panel.php:455
|
88 |
+
#: includes/class-yit-plugin-panel.php:458
|
89 |
msgid "How to install premium version"
|
90 |
msgstr "Come installare la versione premium"
|
91 |
|
92 |
+
#: includes/class-yit-plugin-panel.php:659
|
93 |
#: includes/class-yit-plugin-subpanel.php:132
|
94 |
msgid "Save Changes"
|
95 |
msgstr "Salva modifiche"
|
96 |
|
97 |
+
#: includes/class-yit-plugin-panel.php:664
|
98 |
#: includes/class-yit-plugin-subpanel.php:136
|
99 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
100 |
msgid ""
|
103 |
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
|
104 |
"reimpostate."
|
105 |
|
106 |
+
#: includes/class-yit-plugin-panel.php:664
|
107 |
#: includes/class-yit-plugin-subpanel.php:136
|
108 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
109 |
msgid "Are you sure?"
|
110 |
msgstr "Sei sicuro?"
|
111 |
|
112 |
+
#: includes/class-yit-plugin-panel.php:668
|
113 |
#: includes/class-yit-plugin-subpanel.php:139
|
114 |
msgid "Reset to default"
|
115 |
msgstr "Ripristina configurazione predefinita"
|
116 |
|
117 |
+
#: includes/class-yit-plugin-panel.php:1047
|
118 |
msgid ""
|
119 |
"The element you have entered already exists. Please, enter another name."
|
120 |
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."
|
121 |
|
122 |
+
#: includes/class-yit-plugin-panel.php:1048
|
123 |
msgid "Settings saved"
|
124 |
msgstr "Impostazioni salvate"
|
125 |
|
126 |
+
#: includes/class-yit-plugin-panel.php:1049
|
127 |
msgid "Settings reset"
|
128 |
msgstr "Impostazioni azzerate"
|
129 |
|
130 |
+
#: includes/class-yit-plugin-panel.php:1050
|
131 |
msgid "Element deleted correctly."
|
132 |
msgstr "Elemento rimosso correttamente."
|
133 |
|
134 |
+
#: includes/class-yit-plugin-panel.php:1051
|
135 |
+
#: includes/class-yit-plugin-panel.php:1052
|
136 |
msgid "Element updated correctly."
|
137 |
msgstr "Elemento aggiornato correttamente."
|
138 |
|
139 |
+
#: includes/class-yit-plugin-panel.php:1053
|
140 |
msgid "Database imported correctly."
|
141 |
msgstr "Database importato correttamente."
|
142 |
|
143 |
+
#: includes/class-yit-plugin-panel.php:1054
|
144 |
msgid "An error has occurred during import. Please try again."
|
145 |
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."
|
146 |
|
147 |
+
#: includes/class-yit-plugin-panel.php:1055
|
148 |
msgid "The added file is not valid."
|
149 |
msgstr "Il file aggiunto non è valido."
|
150 |
|
151 |
+
#: includes/class-yit-plugin-panel.php:1056
|
152 |
msgid "Sorry, import is disabled."
|
153 |
msgstr "Ci dispiace, l'importazione è disabilitata."
|
154 |
|
155 |
+
#: includes/class-yit-plugin-panel.php:1057
|
156 |
msgid "Sorting successful."
|
157 |
msgstr "Ordinamento effettuato con successo."
|
158 |
|
159 |
+
#: includes/class-yit-plugin-panel.php:1525
|
160 |
msgid "We need your support"
|
161 |
msgstr "Abbiamo bisogno del tuo sostegno"
|
162 |
|
163 |
+
#: includes/class-yit-plugin-panel.php:1526
|
164 |
msgid "to keep updating and improving the plugin. Please,"
|
165 |
msgstr "per poter continuare ad aggiornare e migliorare il plugin."
|
166 |
|
167 |
+
#: includes/class-yit-plugin-panel.php:1528
|
168 |
msgid "help us by leaving a good review"
|
169 |
msgstr "Puoi darci una mano lasciando una recensione positiva"
|
170 |
|
171 |
+
#: includes/class-yit-plugin-panel.php:1529
|
172 |
msgid ":) Thanks!"
|
173 |
msgstr ":) Grazie!"
|
174 |
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Sì, elimina"
|
728 |
|
729 |
+
#: includes/class-yit-plugin-panel.php:492
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Help"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
+
#: includes/class-yit-plugin-panel.php:805
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "Grazie per aver acquistato %s!"
|
739 |
|
740 |
+
#: includes/class-yit-plugin-panel.php:806
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
745 |
"Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
|
746 |
"prodotti."
|
747 |
|
748 |
+
#: includes/class-yit-plugin-panel.php:853
|
749 |
+
msgctxt "Premium tab name"
|
750 |
+
msgid "Get premium"
|
751 |
+
msgstr "Diventa premium"
|
752 |
+
|
753 |
#: includes/class-yith-dashboard.php:96
|
754 |
msgctxt "Plugin FW"
|
755 |
msgid "View Changelog"
|
938 |
msgid "Submit a ticket"
|
939 |
msgstr "Invia un ticket"
|
940 |
|
941 |
+
#: templates/panel/premium-tab.php:30
|
942 |
+
msgctxt "Premium Tab"
|
943 |
+
msgid "Get the premium version to unlock advanced features"
|
944 |
+
msgstr "Ottieni la versione premium per sbloccare le funzionalità avanzate"
|
945 |
+
|
946 |
+
#: templates/panel/premium-tab.php:34
|
947 |
+
msgctxt "Premium Tab"
|
948 |
+
msgid "Get premium"
|
949 |
+
msgstr "Diventa premium"
|
950 |
+
|
951 |
+
#: templates/panel/premium-tab.php:39
|
952 |
+
msgctxt "Premium Tab"
|
953 |
+
msgid "Plugin premium features images"
|
954 |
+
msgstr "Immagini funzionalità premium"
|
955 |
+
|
956 |
+
#. translators: alt attribute of main image tag.
|
957 |
+
#: templates/panel/premium-tab.php:51
|
958 |
+
msgctxt "Premium Tab"
|
959 |
+
msgid "And so much more!"
|
960 |
+
msgstr "E molto altro!"
|
961 |
+
|
962 |
+
#: templates/panel/premium-tab.php:53
|
963 |
+
msgctxt "Premium Tab"
|
964 |
+
msgid "Check the free vs premium features >"
|
965 |
+
msgstr "Confronta le funzionalità gratuite e premium >"
|
966 |
+
|
967 |
+
#: templates/panel/premium-tab.php:58
|
968 |
+
msgctxt "Premium Tab"
|
969 |
+
msgid "Get the premium version"
|
970 |
+
msgstr "Ottieni la versione premium"
|
971 |
+
|
972 |
#: yit-functions.php:1925
|
973 |
msgctxt "Post action"
|
974 |
msgid "Preview"
|
plugin-fw/languages/yith-plugin-fw-nl_NL.mo
CHANGED
Binary file
|
plugin-fw/languages/yith-plugin-fw-nl_NL.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
-
"PO-Revision-Date: 2021-
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -75,7 +75,7 @@ msgid "There was an error with your request; please try again later."
|
|
75 |
msgstr ""
|
76 |
"Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."
|
77 |
|
78 |
-
#: includes/class-yit-plugin-panel-woocommerce.php:
|
79 |
msgid "The changes you have made will be lost if you leave this page."
|
80 |
msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
|
81 |
|
@@ -87,17 +87,17 @@ msgstr "Plugin instellingen"
|
|
87 |
msgid "Settings"
|
88 |
msgstr "Instellingen"
|
89 |
|
90 |
-
#: includes/class-yit-plugin-panel.php:
|
91 |
-
#: includes/class-yit-plugin-panel.php:
|
92 |
msgid "How to install premium version"
|
93 |
msgstr "Hoe installeer ik de premium versie"
|
94 |
|
95 |
-
#: includes/class-yit-plugin-panel.php:
|
96 |
#: includes/class-yit-plugin-subpanel.php:132
|
97 |
msgid "Save Changes"
|
98 |
msgstr "Wijzigingen opslaan"
|
99 |
|
100 |
-
#: includes/class-yit-plugin-panel.php:
|
101 |
#: includes/class-yit-plugin-subpanel.php:136
|
102 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
103 |
msgid ""
|
@@ -105,72 +105,72 @@ msgid ""
|
|
105 |
msgstr ""
|
106 |
"Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
|
107 |
|
108 |
-
#: includes/class-yit-plugin-panel.php:
|
109 |
#: includes/class-yit-plugin-subpanel.php:136
|
110 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
111 |
msgid "Are you sure?"
|
112 |
msgstr "Weet je het zeker?"
|
113 |
|
114 |
-
#: includes/class-yit-plugin-panel.php:
|
115 |
#: includes/class-yit-plugin-subpanel.php:139
|
116 |
msgid "Reset to default"
|
117 |
msgstr "Resetten naar standaard"
|
118 |
|
119 |
-
#: includes/class-yit-plugin-panel.php:
|
120 |
msgid ""
|
121 |
"The element you have entered already exists. Please, enter another name."
|
122 |
msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
|
123 |
|
124 |
-
#: includes/class-yit-plugin-panel.php:
|
125 |
msgid "Settings saved"
|
126 |
msgstr "Instellingen opgeslagen"
|
127 |
|
128 |
-
#: includes/class-yit-plugin-panel.php:
|
129 |
msgid "Settings reset"
|
130 |
msgstr "Instellingen resetten"
|
131 |
|
132 |
-
#: includes/class-yit-plugin-panel.php:
|
133 |
msgid "Element deleted correctly."
|
134 |
msgstr "Element juist verwijderd."
|
135 |
|
136 |
-
#: includes/class-yit-plugin-panel.php:
|
137 |
-
#: includes/class-yit-plugin-panel.php:
|
138 |
msgid "Element updated correctly."
|
139 |
msgstr "Element juist geüpdatet."
|
140 |
|
141 |
-
#: includes/class-yit-plugin-panel.php:
|
142 |
msgid "Database imported correctly."
|
143 |
msgstr "Database juist geïmporteerd."
|
144 |
|
145 |
-
#: includes/class-yit-plugin-panel.php:
|
146 |
msgid "An error has occurred during import. Please try again."
|
147 |
msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
|
148 |
|
149 |
-
#: includes/class-yit-plugin-panel.php:
|
150 |
msgid "The added file is not valid."
|
151 |
msgstr "Het toegevoegde bestand is niet geldig."
|
152 |
|
153 |
-
#: includes/class-yit-plugin-panel.php:
|
154 |
msgid "Sorry, import is disabled."
|
155 |
msgstr "Sorry, importeren is uitgeschakeld."
|
156 |
|
157 |
-
#: includes/class-yit-plugin-panel.php:
|
158 |
msgid "Sorting successful."
|
159 |
msgstr "Succesvol gesorteerd."
|
160 |
|
161 |
-
#: includes/class-yit-plugin-panel.php:
|
162 |
msgid "We need your support"
|
163 |
msgstr "We hebben je hulp nodig"
|
164 |
|
165 |
-
#: includes/class-yit-plugin-panel.php:
|
166 |
msgid "to keep updating and improving the plugin. Please,"
|
167 |
msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
|
168 |
|
169 |
-
#: includes/class-yit-plugin-panel.php:
|
170 |
msgid "help us by leaving a good review"
|
171 |
msgstr "help ons door een goede beoordeling achter te laten"
|
172 |
|
173 |
-
#: includes/class-yit-plugin-panel.php:
|
174 |
msgid ":) Thanks!"
|
175 |
msgstr ":) Bedankt!"
|
176 |
|
@@ -726,18 +726,18 @@ msgctxt "Delete confirmation action"
|
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Ja, verwijderen"
|
728 |
|
729 |
-
#: includes/class-yit-plugin-panel.php:
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Help"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
-
#: includes/class-yit-plugin-panel.php:
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "Bedankt voor het kopen van %s!"
|
739 |
|
740 |
-
#: includes/class-yit-plugin-panel.php:
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
@@ -745,6 +745,11 @@ msgstr ""
|
|
745 |
"We willen je helpen om te genieten van de geweldige ervaringen met al onze "
|
746 |
"producten."
|
747 |
|
|
|
|
|
|
|
|
|
|
|
748 |
#: includes/class-yith-dashboard.php:96
|
749 |
msgctxt "Plugin FW"
|
750 |
msgid "View Changelog"
|
@@ -932,6 +937,37 @@ msgctxt "Help tab submit ticket button"
|
|
932 |
msgid "Submit a ticket"
|
933 |
msgstr "Verstuur een ticket"
|
934 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
#: yit-functions.php:1925
|
936 |
msgctxt "Post action"
|
937 |
msgid "Preview"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH Framework\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-12-13 14:46:02+00:00\n"
|
8 |
+
"PO-Revision-Date: 2021-12-13 12:45:02+0000\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
75 |
msgstr ""
|
76 |
"Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."
|
77 |
|
78 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:430
|
79 |
msgid "The changes you have made will be lost if you leave this page."
|
80 |
msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."
|
81 |
|
87 |
msgid "Settings"
|
88 |
msgstr "Instellingen"
|
89 |
|
90 |
+
#: includes/class-yit-plugin-panel.php:455
|
91 |
+
#: includes/class-yit-plugin-panel.php:458
|
92 |
msgid "How to install premium version"
|
93 |
msgstr "Hoe installeer ik de premium versie"
|
94 |
|
95 |
+
#: includes/class-yit-plugin-panel.php:659
|
96 |
#: includes/class-yit-plugin-subpanel.php:132
|
97 |
msgid "Save Changes"
|
98 |
msgstr "Wijzigingen opslaan"
|
99 |
|
100 |
+
#: includes/class-yit-plugin-panel.php:664
|
101 |
#: includes/class-yit-plugin-subpanel.php:136
|
102 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
103 |
msgid ""
|
105 |
msgstr ""
|
106 |
"Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."
|
107 |
|
108 |
+
#: includes/class-yit-plugin-panel.php:664
|
109 |
#: includes/class-yit-plugin-subpanel.php:136
|
110 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
111 |
msgid "Are you sure?"
|
112 |
msgstr "Weet je het zeker?"
|
113 |
|
114 |
+
#: includes/class-yit-plugin-panel.php:668
|
115 |
#: includes/class-yit-plugin-subpanel.php:139
|
116 |
msgid "Reset to default"
|
117 |
msgstr "Resetten naar standaard"
|
118 |
|
119 |
+
#: includes/class-yit-plugin-panel.php:1047
|
120 |
msgid ""
|
121 |
"The element you have entered already exists. Please, enter another name."
|
122 |
msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."
|
123 |
|
124 |
+
#: includes/class-yit-plugin-panel.php:1048
|
125 |
msgid "Settings saved"
|
126 |
msgstr "Instellingen opgeslagen"
|
127 |
|
128 |
+
#: includes/class-yit-plugin-panel.php:1049
|
129 |
msgid "Settings reset"
|
130 |
msgstr "Instellingen resetten"
|
131 |
|
132 |
+
#: includes/class-yit-plugin-panel.php:1050
|
133 |
msgid "Element deleted correctly."
|
134 |
msgstr "Element juist verwijderd."
|
135 |
|
136 |
+
#: includes/class-yit-plugin-panel.php:1051
|
137 |
+
#: includes/class-yit-plugin-panel.php:1052
|
138 |
msgid "Element updated correctly."
|
139 |
msgstr "Element juist geüpdatet."
|
140 |
|
141 |
+
#: includes/class-yit-plugin-panel.php:1053
|
142 |
msgid "Database imported correctly."
|
143 |
msgstr "Database juist geïmporteerd."
|
144 |
|
145 |
+
#: includes/class-yit-plugin-panel.php:1054
|
146 |
msgid "An error has occurred during import. Please try again."
|
147 |
msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."
|
148 |
|
149 |
+
#: includes/class-yit-plugin-panel.php:1055
|
150 |
msgid "The added file is not valid."
|
151 |
msgstr "Het toegevoegde bestand is niet geldig."
|
152 |
|
153 |
+
#: includes/class-yit-plugin-panel.php:1056
|
154 |
msgid "Sorry, import is disabled."
|
155 |
msgstr "Sorry, importeren is uitgeschakeld."
|
156 |
|
157 |
+
#: includes/class-yit-plugin-panel.php:1057
|
158 |
msgid "Sorting successful."
|
159 |
msgstr "Succesvol gesorteerd."
|
160 |
|
161 |
+
#: includes/class-yit-plugin-panel.php:1525
|
162 |
msgid "We need your support"
|
163 |
msgstr "We hebben je hulp nodig"
|
164 |
|
165 |
+
#: includes/class-yit-plugin-panel.php:1526
|
166 |
msgid "to keep updating and improving the plugin. Please,"
|
167 |
msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"
|
168 |
|
169 |
+
#: includes/class-yit-plugin-panel.php:1528
|
170 |
msgid "help us by leaving a good review"
|
171 |
msgstr "help ons door een goede beoordeling achter te laten"
|
172 |
|
173 |
+
#: includes/class-yit-plugin-panel.php:1529
|
174 |
msgid ":) Thanks!"
|
175 |
msgstr ":) Bedankt!"
|
176 |
|
726 |
msgid "Yes, delete"
|
727 |
msgstr "Ja, verwijderen"
|
728 |
|
729 |
+
#: includes/class-yit-plugin-panel.php:492
|
730 |
msgctxt "Help tab name"
|
731 |
msgid "Help"
|
732 |
msgstr "Help"
|
733 |
|
734 |
#. translators: 1. Plugin name.
|
735 |
+
#: includes/class-yit-plugin-panel.php:805
|
736 |
msgctxt "Help tab default title"
|
737 |
msgid "Thank you for purchasing %s!"
|
738 |
msgstr "Bedankt voor het kopen van %s!"
|
739 |
|
740 |
+
#: includes/class-yit-plugin-panel.php:806
|
741 |
msgctxt "Help tab default description"
|
742 |
msgid ""
|
743 |
"We want to help you to enjoy a wonderful experience with all our products."
|
745 |
"We willen je helpen om te genieten van de geweldige ervaringen met al onze "
|
746 |
"producten."
|
747 |
|
748 |
+
#: includes/class-yit-plugin-panel.php:853
|
749 |
+
msgctxt "Premium tab name"
|
750 |
+
msgid "Get premium"
|
751 |
+
msgstr "Neem premium"
|
752 |
+
|
753 |
#: includes/class-yith-dashboard.php:96
|
754 |
msgctxt "Plugin FW"
|
755 |
msgid "View Changelog"
|
937 |
msgid "Submit a ticket"
|
938 |
msgstr "Verstuur een ticket"
|
939 |
|
940 |
+
#: templates/panel/premium-tab.php:30
|
941 |
+
msgctxt "Premium Tab"
|
942 |
+
msgid "Get the premium version to unlock advanced features"
|
943 |
+
msgstr "Neem de premium versie om geavanceerde opties te deblokkeren"
|
944 |
+
|
945 |
+
#: templates/panel/premium-tab.php:34
|
946 |
+
msgctxt "Premium Tab"
|
947 |
+
msgid "Get premium"
|
948 |
+
msgstr "Neem premium"
|
949 |
+
|
950 |
+
#: templates/panel/premium-tab.php:39
|
951 |
+
msgctxt "Premium Tab"
|
952 |
+
msgid "Plugin premium features images"
|
953 |
+
msgstr "Plugin premium opties afbeeldingen"
|
954 |
+
|
955 |
+
#. translators: alt attribute of main image tag.
|
956 |
+
#: templates/panel/premium-tab.php:51
|
957 |
+
msgctxt "Premium Tab"
|
958 |
+
msgid "And so much more!"
|
959 |
+
msgstr "En zo veel meer!"
|
960 |
+
|
961 |
+
#: templates/panel/premium-tab.php:53
|
962 |
+
msgctxt "Premium Tab"
|
963 |
+
msgid "Check the free vs premium features >"
|
964 |
+
msgstr "Bekijk de gratis vs premium opties >"
|
965 |
+
|
966 |
+
#: templates/panel/premium-tab.php:58
|
967 |
+
msgctxt "Premium Tab"
|
968 |
+
msgid "Get the premium version"
|
969 |
+
msgstr "Krijg de premium versie"
|
970 |
+
|
971 |
#: yit-functions.php:1925
|
972 |
msgctxt "Post action"
|
973 |
msgid "Preview"
|
plugin-fw/languages/yith-plugin-fw.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -80,7 +80,7 @@ msgstr ""
|
|
80 |
msgid "There was an error with your request; please try again later."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/class-yit-plugin-panel-woocommerce.php:
|
84 |
msgid "The changes you have made will be lost if you leave this page."
|
85 |
msgstr ""
|
86 |
|
@@ -92,87 +92,87 @@ msgstr ""
|
|
92 |
msgid "Settings"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/class-yit-plugin-panel.php:
|
96 |
-
#: includes/class-yit-plugin-panel.php:
|
97 |
msgid "How to install premium version"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/class-yit-plugin-panel.php:
|
101 |
#: includes/class-yit-plugin-subpanel.php:132
|
102 |
msgid "Save Changes"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/class-yit-plugin-panel.php:
|
106 |
#: includes/class-yit-plugin-subpanel.php:136
|
107 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
108 |
msgid "If you continue with this action, you will reset all options in this page."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-yit-plugin-panel.php:
|
112 |
#: includes/class-yit-plugin-subpanel.php:136
|
113 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
114 |
msgid "Are you sure?"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/class-yit-plugin-panel.php:
|
118 |
#: includes/class-yit-plugin-subpanel.php:139
|
119 |
msgid "Reset to default"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/class-yit-plugin-panel.php:
|
123 |
msgid "The element you have entered already exists. Please, enter another name."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/class-yit-plugin-panel.php:
|
127 |
msgid "Settings saved"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes/class-yit-plugin-panel.php:
|
131 |
msgid "Settings reset"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes/class-yit-plugin-panel.php:
|
135 |
msgid "Element deleted correctly."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/class-yit-plugin-panel.php:
|
139 |
-
#: includes/class-yit-plugin-panel.php:
|
140 |
msgid "Element updated correctly."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-yit-plugin-panel.php:
|
144 |
msgid "Database imported correctly."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-yit-plugin-panel.php:
|
148 |
msgid "An error has occurred during import. Please try again."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-yit-plugin-panel.php:
|
152 |
msgid "The added file is not valid."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/class-yit-plugin-panel.php:
|
156 |
msgid "Sorry, import is disabled."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-yit-plugin-panel.php:
|
160 |
msgid "Sorting successful."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-yit-plugin-panel.php:
|
164 |
msgid "We need your support"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-yit-plugin-panel.php:
|
168 |
msgid "to keep updating and improving the plugin. Please,"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-yit-plugin-panel.php:
|
172 |
msgid "help us by leaving a good review"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-yit-plugin-panel.php:
|
176 |
msgid ":) Thanks!"
|
177 |
msgstr ""
|
178 |
|
@@ -703,22 +703,27 @@ msgctxt "Delete confirmation action"
|
|
703 |
msgid "Yes, delete"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: includes/class-yit-plugin-panel.php:
|
707 |
msgctxt "Help tab name"
|
708 |
msgid "Help"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/class-yit-plugin-panel.php:
|
712 |
#. translators: 1. Plugin name.
|
713 |
msgctxt "Help tab default title"
|
714 |
msgid "Thank you for purchasing %s!"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-yit-plugin-panel.php:
|
718 |
msgctxt "Help tab default description"
|
719 |
msgid "We want to help you to enjoy a wonderful experience with all our products."
|
720 |
msgstr ""
|
721 |
|
|
|
|
|
|
|
|
|
|
|
722 |
#: includes/class-yith-dashboard.php:96
|
723 |
msgctxt "Plugin FW"
|
724 |
msgid "View Changelog"
|
@@ -896,6 +901,37 @@ msgctxt "Help tab submit ticket button"
|
|
896 |
msgid "Submit a ticket"
|
897 |
msgstr ""
|
898 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
899 |
#: yit-functions.php:1925
|
900 |
msgctxt "Post action"
|
901 |
msgid "Preview"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-12-13 14:46:02+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
80 |
msgid "There was an error with your request; please try again later."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: includes/class-yit-plugin-panel-woocommerce.php:430
|
84 |
msgid "The changes you have made will be lost if you leave this page."
|
85 |
msgstr ""
|
86 |
|
92 |
msgid "Settings"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: includes/class-yit-plugin-panel.php:455
|
96 |
+
#: includes/class-yit-plugin-panel.php:458
|
97 |
msgid "How to install premium version"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/class-yit-plugin-panel.php:659
|
101 |
#: includes/class-yit-plugin-subpanel.php:132
|
102 |
msgid "Save Changes"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/class-yit-plugin-panel.php:664
|
106 |
#: includes/class-yit-plugin-subpanel.php:136
|
107 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
108 |
msgid "If you continue with this action, you will reset all options in this page."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-yit-plugin-panel.php:664
|
112 |
#: includes/class-yit-plugin-subpanel.php:136
|
113 |
#: templates/panel/woocommerce/woocommerce-form.php:14
|
114 |
msgid "Are you sure?"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/class-yit-plugin-panel.php:668
|
118 |
#: includes/class-yit-plugin-subpanel.php:139
|
119 |
msgid "Reset to default"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/class-yit-plugin-panel.php:1047
|
123 |
msgid "The element you have entered already exists. Please, enter another name."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/class-yit-plugin-panel.php:1048
|
127 |
msgid "Settings saved"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: includes/class-yit-plugin-panel.php:1049
|
131 |
msgid "Settings reset"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: includes/class-yit-plugin-panel.php:1050
|
135 |
msgid "Element deleted correctly."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: includes/class-yit-plugin-panel.php:1051
|
139 |
+
#: includes/class-yit-plugin-panel.php:1052
|
140 |
msgid "Element updated correctly."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-yit-plugin-panel.php:1053
|
144 |
msgid "Database imported correctly."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-yit-plugin-panel.php:1054
|
148 |
msgid "An error has occurred during import. Please try again."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-yit-plugin-panel.php:1055
|
152 |
msgid "The added file is not valid."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/class-yit-plugin-panel.php:1056
|
156 |
msgid "Sorry, import is disabled."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: includes/class-yit-plugin-panel.php:1057
|
160 |
msgid "Sorting successful."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-yit-plugin-panel.php:1525
|
164 |
msgid "We need your support"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: includes/class-yit-plugin-panel.php:1526
|
168 |
msgid "to keep updating and improving the plugin. Please,"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/class-yit-plugin-panel.php:1528
|
172 |
msgid "help us by leaving a good review"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-yit-plugin-panel.php:1529
|
176 |
msgid ":) Thanks!"
|
177 |
msgstr ""
|
178 |
|
703 |
msgid "Yes, delete"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/class-yit-plugin-panel.php:492
|
707 |
msgctxt "Help tab name"
|
708 |
msgid "Help"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: includes/class-yit-plugin-panel.php:805
|
712 |
#. translators: 1. Plugin name.
|
713 |
msgctxt "Help tab default title"
|
714 |
msgid "Thank you for purchasing %s!"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-yit-plugin-panel.php:806
|
718 |
msgctxt "Help tab default description"
|
719 |
msgid "We want to help you to enjoy a wonderful experience with all our products."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/class-yit-plugin-panel.php:853
|
723 |
+
msgctxt "Premium tab name"
|
724 |
+
msgid "Get premium"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
#: includes/class-yith-dashboard.php:96
|
728 |
msgctxt "Plugin FW"
|
729 |
msgid "View Changelog"
|
901 |
msgid "Submit a ticket"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: templates/panel/premium-tab.php:30
|
905 |
+
msgctxt "Premium Tab"
|
906 |
+
msgid "Get the premium version to unlock advanced features"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: templates/panel/premium-tab.php:34
|
910 |
+
msgctxt "Premium Tab"
|
911 |
+
msgid "Get premium"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: templates/panel/premium-tab.php:39
|
915 |
+
msgctxt "Premium Tab"
|
916 |
+
msgid "Plugin premium features images"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: templates/panel/premium-tab.php:51
|
920 |
+
#. translators: alt attribute of main image tag.
|
921 |
+
msgctxt "Premium Tab"
|
922 |
+
msgid "And so much more!"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: templates/panel/premium-tab.php:53
|
926 |
+
msgctxt "Premium Tab"
|
927 |
+
msgid "Check the free vs premium features >"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: templates/panel/premium-tab.php:58
|
931 |
+
msgctxt "Premium Tab"
|
932 |
+
msgid "Get the premium version"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
#: yit-functions.php:1925
|
936 |
msgctxt "Post action"
|
937 |
msgid "Preview"
|
plugin-fw/phpcs.xml
CHANGED
@@ -24,6 +24,9 @@
|
|
24 |
<!-- Check up to 8 files simultaneously. -->
|
25 |
<arg name="parallel" value="8"/>
|
26 |
|
|
|
|
|
|
|
27 |
<!-- Configs -->
|
28 |
<config name="minimum_supported_wp_version" value="5.2"/>
|
29 |
<!-- Check for cross-version support for PHP 5.6 and higher. -->
|
24 |
<!-- Check up to 8 files simultaneously. -->
|
25 |
<arg name="parallel" value="8"/>
|
26 |
|
27 |
+
<!-- Only scan PHP files. -->
|
28 |
+
<arg name="extensions" value="php"/>
|
29 |
+
|
30 |
<!-- Configs -->
|
31 |
<config name="minimum_supported_wp_version" value="5.2"/>
|
32 |
<!-- Check for cross-version support for PHP 5.6 and higher. -->
|
plugin-fw/templates/panel/premium-tab.php
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The Template for displaying the Premium tab.
|
4 |
+
*
|
5 |
+
* @var array $options The premium tab options array.
|
6 |
+
* @var string $premium_url The premium landing page URL.
|
7 |
+
* @var string $plugin_slug The plugin slug.
|
8 |
+
*
|
9 |
+
* @package YITH\PluginFramework\Templates
|
10 |
+
* @author Giuseppe Arcifa <giuseppe.arcifa@yithemes.com>
|
11 |
+
* @since 3.9.0
|
12 |
+
*/
|
13 |
+
|
14 |
+
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
|
15 |
+
|
16 |
+
list( $premium_features, $main_image_url, $show_free_vs_premium ) = yith_plugin_fw_extract( $options, 'premium_features', 'main_image_url', 'show_free_vs_premium_link' );
|
17 |
+
|
18 |
+
$get_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-upgrade', 'wp-free-dashboard' );
|
19 |
+
|
20 |
+
if ( $show_free_vs_premium ) {
|
21 |
+
$free_vs_premium_url = yith_plugin_fw_add_utm_data( $premium_url, $plugin_slug, 'button-compare', 'wp-free-dashboard' );
|
22 |
+
}
|
23 |
+
|
24 |
+
?>
|
25 |
+
|
26 |
+
<div id="yith_plugin_fw_panel_premium_tab" class="yith-plugin-fw-panel-premium-tab-container">
|
27 |
+
<div class="yith-plugin-fw-panel-premium-tab">
|
28 |
+
<div class="yith-plugin-fw-panel-premium-tab__header">
|
29 |
+
<span class="yith-plugin-fw-panel-premium-tab__header-title">
|
30 |
+
<?php echo esc_html_x( 'Get the premium version to unlock advanced features', 'Premium Tab', 'yith-plugin-fw' ); ?>
|
31 |
+
</span>
|
32 |
+
<span class="yith-plugin-fw-panel-premium-tab__header-cta-arrow"></span>
|
33 |
+
<a href="<?php echo esc_url( $get_premium_url ); ?>" target="_blank" class="yith-plugin-fw-panel-premium-tab__header-cta yith-plugin-fw-panel-premium-tab__cta-button">
|
34 |
+
<?php echo esc_html_x( 'Get premium', 'Premium Tab', 'yith-plugin-fw' ); ?>
|
35 |
+
</a>
|
36 |
+
</div>
|
37 |
+
<div class="yith-plugin-fw-panel-premium-tab__content">
|
38 |
+
<?php if ( $main_image_url ) : ?>
|
39 |
+
<img class="yith-plugin-fw-panel-premium-tab__main-image" src="<?php echo esc_attr( $main_image_url ); ?>" alt="<?php esc_html_x( 'Plugin premium features images', 'Premium Tab', 'yith-plugin-fw' ); // translators: alt attribute of main image tag. ?>">
|
40 |
+
<?php endif; ?>
|
41 |
+
<div class="yith-plugin-fw-panel-premium-tab__features">
|
42 |
+
<?php foreach ( $premium_features as $premium_feature ) : ?>
|
43 |
+
<div class="yith-plugin-fw-panel-premium-tab__feature">
|
44 |
+
<span class="yith-plugin-fw-panel-premium-tab__feature-content">
|
45 |
+
<?php echo wp_kses_post( $premium_feature ); ?>
|
46 |
+
</span>
|
47 |
+
</div>
|
48 |
+
<?php endforeach; ?>
|
49 |
+
<?php if ( $show_free_vs_premium ) : ?>
|
50 |
+
<span class="yith-plugin-fw-panel-premium-tab__free-vs-premium">
|
51 |
+
<?php echo esc_html_x( 'And so much more!', 'Premium Tab', 'yith-plugin-fw' ); ?>
|
52 |
+
<a href="<?php echo esc_url( $free_vs_premium_url . '#tab-free_vs_premium_tab' ); ?>" target="_blank">
|
53 |
+
<?php echo esc_html_x( 'Check the free vs premium features >', 'Premium Tab', 'yith-plugin-fw' ); ?>
|
54 |
+
</a>
|
55 |
+
</span>
|
56 |
+
<?php endif; ?>
|
57 |
+
<a href="<?php echo esc_url( $get_premium_url ); ?>" target="_blank" class="yith-plugin-fw-panel-premium-tab__content-cta yith-plugin-fw-panel-premium-tab__cta-button">
|
58 |
+
<?php echo esc_html_x( 'Get the premium version', 'Premium Tab', 'yith-plugin-fw' ); ?>
|
59 |
+
</a>
|
60 |
+
</div>
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
</div>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
|
|
4 |
Tags: yith, woocommerce compare, compare products, product compare, product comparison
|
5 |
Requires at least: 5.6
|
6 |
Tested up to: 5.8
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -66,45 +66,50 @@ yith-woocommerce-compare-<WORDPRESS LOCALE >.mo
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
-
= 2.
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
* New: support for WooCommerce 5.9
|
72 |
* Update: YITH plugin framework
|
73 |
|
74 |
-
= 2.7.0 = Released on 15
|
75 |
|
76 |
* New: support for WooCommerce 5.8
|
77 |
* Update: YITH plugin framework
|
78 |
|
79 |
-
= 2.6.1 = Released on 27
|
80 |
|
81 |
* Update: YITH plugin framework
|
82 |
* Fix: debug info feature removed for all logged in users
|
83 |
|
84 |
-
= 2.6.0 = Released on 09
|
85 |
|
86 |
* New: support for WooCommerce 5.7
|
87 |
* Update: YITH plugin framework
|
88 |
* Fix: compare button preview on Elementor editor
|
89 |
|
90 |
-
= 2.5.4.1 = Released on 24
|
91 |
|
92 |
* Fix: fatal error "Call to undefined method YITH_Woocompare_Admin::list_products_html()"
|
93 |
* Update: YITH plugin framework
|
94 |
|
95 |
-
= 2.5.4 = Released on 13
|
96 |
|
97 |
* New: support for WooCommerce 5.6
|
98 |
* Update: YITH plugin framework
|
99 |
|
100 |
-
= 2.5.3 = Released on 14
|
101 |
|
102 |
* New: support for WooCommerce 5.5
|
103 |
* New: support for WordPress 5.8
|
104 |
* Update: YITH plugin framework
|
105 |
|
106 |
|
107 |
-
= 2.5.2 = Released on 01
|
108 |
|
109 |
* New: support for WooCommerce 5.4
|
110 |
* Update: YITH plugin framework
|
4 |
Tags: yith, woocommerce compare, compare products, product compare, product comparison
|
5 |
Requires at least: 5.6
|
6 |
Tested up to: 5.8
|
7 |
+
Stable tag: 2.9.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 2.9.0 = Released on 20 December 2021
|
70 |
+
|
71 |
+
* New: support for WooCommerce 6.0
|
72 |
+
* Update: YITH plugin framework
|
73 |
+
|
74 |
+
= 2.8.0 = Released on 11 November 2021
|
75 |
|
76 |
* New: support for WooCommerce 5.9
|
77 |
* Update: YITH plugin framework
|
78 |
|
79 |
+
= 2.7.0 = Released on 15 October 2021
|
80 |
|
81 |
* New: support for WooCommerce 5.8
|
82 |
* Update: YITH plugin framework
|
83 |
|
84 |
+
= 2.6.1 = Released on 27 September 2021
|
85 |
|
86 |
* Update: YITH plugin framework
|
87 |
* Fix: debug info feature removed for all logged in users
|
88 |
|
89 |
+
= 2.6.0 = Released on 09 September 2021
|
90 |
|
91 |
* New: support for WooCommerce 5.7
|
92 |
* Update: YITH plugin framework
|
93 |
* Fix: compare button preview on Elementor editor
|
94 |
|
95 |
+
= 2.5.4.1 = Released on 24 August 2021
|
96 |
|
97 |
* Fix: fatal error "Call to undefined method YITH_Woocompare_Admin::list_products_html()"
|
98 |
* Update: YITH plugin framework
|
99 |
|
100 |
+
= 2.5.4 = Released on 13 August 2021
|
101 |
|
102 |
* New: support for WooCommerce 5.6
|
103 |
* Update: YITH plugin framework
|
104 |
|
105 |
+
= 2.5.3 = Released on 14 July 2021
|
106 |
|
107 |
* New: support for WooCommerce 5.5
|
108 |
* New: support for WordPress 5.8
|
109 |
* Update: YITH plugin framework
|
110 |
|
111 |
|
112 |
+
= 2.5.2 = Released on 01 June 2021
|
113 |
|
114 |
* New: support for WooCommerce 5.4
|
115 |
* Update: YITH plugin framework
|