PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.7.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.7.0
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
← All changes | includes/elementor/modules/dynamic-keywords/template/modal.php +27 -2 1.1.42.7.0 View file →
@@ -1,5 +1,7 @@
1 1 <?php
2 +defined( 'ABSPATH' ) || exit;
3 +
2 4 /**
3 5 * Modal template
4 6 *
5 7 * @since 1.1.0
@@ -21,9 +23,9 @@
21 23 z-index: 9999;
22 24 display: flex;
23 25 align-items: center;
24 26 justify-content: center;
25 - visibility:hidden;
27 + visibility: hidden;
26 28 }
27 29
28 30 .sellkit-popup-box.sellkit-popup-active {
29 31 visibility:visible;
@@ -79,8 +81,31 @@
79 81 color: #fff;
80 82 font-weight: 900;
81 83 cursor: pointer;
82 84 }
85 +
86 +.sellkit-popup-dark-theme .sellkit-popup-list {
87 + background-color: #404349 !important;
88 +}
89 +
90 +.sellkit-popup-dark-theme .sellkit-popup-list button {
91 + background-color: #34383C;
92 + border-color: #64666A;
93 + color: #E0E1E3;
94 +}
95 +
96 +@media (prefers-color-scheme: dark) {
97 + .sellkit-popup-auto-theme .sellkit-popup-list {
98 + background-color: #404349 !important;
99 + }
100 +
101 + .sellkit-popup-auto-theme .sellkit-popup-list button {
102 + background-color: #34383C;
103 + border-color: #64666A;
104 + color: #E0E1E3;
105 + }
106 +}
107 +
83 108 </style>
84 109 <section id='sellkit-popup-box' class="sellkit-popup-box" >
85 110 <span class="sellkit-close-button">&#x2715</span>
86 111 <div class="sellkit-popup-list">
@@ -90,9 +115,9 @@
90 115 <h4><?php echo esc_html__( 'Keywords Name', 'sellkit' ); ?></h4>
91 116 <h4><?php echo esc_html__( 'Keywords Shortcode', 'sellkit' ); ?></h4>
92 117 </li>
93 118 <?php
94 - get_tags_title();
119 + sellkit_get_tags_title();
95 120 ?>
96 121 </ul>
97 122 </div>
98 123 </section>