PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.3.1
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.3.1
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 1.8.1 All 42 releases
sellkit / includes / elementor / modules / dynamic-keywords / template / modal.php

modal.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.3.1, at includes/elementor/modules/dynamic-keywords/template/modal.php

122 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Modal template
4 *
5 * @since 1.1.0
6 * @package Sellkit popup.
7 */
8
9 ?>
10
11 <style>
12 .sellkit-popup-box {
13 position: absolute;
14 width: 100%;
15 height: 100%;
16 top: 0;
17 bottom: 0;
18 right: 0;
19 left: 0;
20 background: rgba(0,0,0,0.4);
21 z-index: 9999;
22 display: flex;
23 align-items: center;
24 justify-content: center;
25 visibility: hidden;
26 }
27
28 .sellkit-popup-box.sellkit-popup-active {
29 visibility:visible;
30 }
31
32 .sellkit-popup-box h3 {
33 margin-bottom: 20px;
34 }
35
36 .sellkit-popup-list {
37 background: #fff;
38 padding: 25px 15px;
39 width: 700px;
40 border-radius: 5px;
41 height: 400px;
42 overflow-x: hidden;
43 }
44
45 .sellkit-popup-list button {
46 padding: 5px;
47 background: #fff;
48 border: 1px solid #d5dadf;
49 color: #6d7882;
50 border-radius: 5px;
51 cursor: pointer;
52 outline: none;
53 }
54
55 .sellkit-popup-list h5 {
56 font-size:13px
57 }
58
59 .sellkit-popup-list li {
60 margin-bottom: 15px;
61 display: grid;
62 grid-template-columns: 3fr 8fr 1fr;
63 grid-gap: 5px;
64 align-items: center;
65 }
66
67 .sellkit-popup-list .list-heading {
68 border-bottom: 1px solid #d5dadf;
69 padding-bottom: 15px;
70 border-top: 1px solid #d5dadf;
71 padding-top: 15px;
72 }
73
74 .sellkit-close-button {
75 position: absolute;
76 right: 25px;
77 top: 25px;
78 font-size: 25px;
79 color: #fff;
80 font-weight: 900;
81 cursor: pointer;
82 }
83
84 .sellkit-popup-dark-theme .sellkit-popup-list {
85 background-color: #404349 !important;
86 }
87
88 .sellkit-popup-dark-theme .sellkit-popup-list button {
89 background-color: #34383C;
90 border-color: #64666A;
91 color: #E0E1E3;
92 }
93
94 @media (prefers-color-scheme: dark) {
95 .sellkit-popup-auto-theme .sellkit-popup-list {
96 background-color: #404349 !important;
97 }
98
99 .sellkit-popup-auto-theme .sellkit-popup-list button {
100 background-color: #34383C;
101 border-color: #64666A;
102 color: #E0E1E3;
103 }
104 }
105
106 </style>
107 <section id='sellkit-popup-box' class="sellkit-popup-box" >
108 <span class="sellkit-close-button">&#x2715</span>
109 <div class="sellkit-popup-list">
110 <h3><?php echo esc_html__( 'Keywords List', 'sellkit' ); ?></h3>
111 <ul>
112 <li class="list-heading">
113 <h4><?php echo esc_html__( 'Keywords Name', 'sellkit' ); ?></h4>
114 <h4><?php echo esc_html__( 'Keywords Shortcode', 'sellkit' ); ?></h4>
115 </li>
116 <?php
117 get_tags_title();
118 ?>
119 </ul>
120 </div>
121 </section>
122