Version Description
- 2020-02-07 - fix - settings tab broken style issue fixed.
Download this release
Release Info
Developer | pickplugins |
Plugin | Accordion |
Version | 2.1.18 |
Comparing to | |
See all releases |
Code changes from version 2.1.16 to 2.1.18
- accordions.php +2 -2
- assets/admin/css/settings-tabs.css +167 -5
- readme.txt +8 -2
- templates/accordion/custom-css.php +0 -2
accordions.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Accordions by PickPlugins
|
4 |
Plugin URI: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
|
5 |
Description: Fully responsive and mobile ready accordion grid for wordpress.
|
6 |
-
Version: 2.1.
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 3.6
|
9 |
Author: PickPlugins
|
@@ -23,7 +23,7 @@ class Accordions{
|
|
23 |
|
24 |
define('accordions_plugin_url', plugins_url('/', __FILE__) );
|
25 |
define('accordions_plugin_dir', plugin_dir_path( __FILE__ ) );
|
26 |
-
define('accordions_version', '2.1.
|
27 |
|
28 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-settings-tabs.php');
|
29 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-accordions-support.php');
|
3 |
Plugin Name: Accordions by PickPlugins
|
4 |
Plugin URI: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
|
5 |
Description: Fully responsive and mobile ready accordion grid for wordpress.
|
6 |
+
Version: 2.1.18
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 3.6
|
9 |
Author: PickPlugins
|
23 |
|
24 |
define('accordions_plugin_url', plugins_url('/', __FILE__) );
|
25 |
define('accordions_plugin_dir', plugin_dir_path( __FILE__ ) );
|
26 |
+
define('accordions_version', '2.1.18' );
|
27 |
|
28 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-settings-tabs.php');
|
29 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-accordions-support.php');
|
assets/admin/css/settings-tabs.css
CHANGED
@@ -18,8 +18,31 @@
|
|
18 |
|
19 |
|
20 |
|
|
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
|
25 |
|
@@ -29,6 +52,7 @@
|
|
29 |
|
30 |
.settings-tabs{
|
31 |
background: #fff;
|
|
|
32 |
}
|
33 |
|
34 |
.settings-tabs.vertical{
|
@@ -44,7 +68,7 @@
|
|
44 |
.settings-tabs .tab-nav{
|
45 |
width: 200px;
|
46 |
padding: 12px 10px;
|
47 |
-
background: #
|
48 |
margin: 0;
|
49 |
border-bottom: 1px solid #eee;
|
50 |
cursor: pointer;
|
@@ -57,7 +81,7 @@
|
|
57 |
|
58 |
.settings-tabs .tab-content{
|
59 |
margin-left: 220px;
|
60 |
-
padding: 0;
|
61 |
background: #f1f1f159;
|
62 |
display: none;
|
63 |
}
|
@@ -66,6 +90,76 @@
|
|
66 |
display: block;
|
67 |
}
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
|
71 |
.settings-tabs .section{
|
@@ -100,25 +194,52 @@
|
|
100 |
width: 270px;
|
101 |
float: left;
|
102 |
font-size: 14px;
|
|
|
103 |
}
|
104 |
.settings-tabs .setting-field .field-input{
|
105 |
margin-left: 270px;
|
106 |
}
|
107 |
-
.settings-tabs .setting-field .description{
|
|
|
|
|
108 |
|
109 |
|
110 |
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
|
114 |
/*input*/
|
115 |
|
116 |
-
.settings-tabs input[type="text"], .settings-tabs textarea, .settings-tabs select, .settings-tabs input[type="range"]{
|
117 |
width: 360px;
|
|
|
118 |
}
|
119 |
|
120 |
|
|
|
|
|
|
|
121 |
|
|
|
|
|
122 |
|
123 |
|
124 |
@media (max-width: 1440px){
|
@@ -133,10 +254,37 @@
|
|
133 |
}
|
134 |
.settings-tabs .setting-field .description{}
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
}
|
137 |
|
138 |
|
139 |
|
|
|
140 |
/*expandable*/
|
141 |
|
142 |
|
@@ -186,7 +334,7 @@
|
|
186 |
|
187 |
|
188 |
.settings-tabs .expandable .header {
|
189 |
-
padding:
|
190 |
|
191 |
}
|
192 |
|
@@ -232,3 +380,17 @@
|
|
232 |
padding: 2px 7px;
|
233 |
border-radius: 3px;
|
234 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
|
20 |
|
21 |
+
/* Collapsible */
|
22 |
|
23 |
+
.settings-tabs .collapsible{
|
24 |
+
margin-bottom: 2px;
|
25 |
+
}
|
26 |
+
.settings-tabs .collapsible .header{
|
27 |
+
background: #eee;
|
28 |
+
padding: 8px 10px;
|
29 |
+
}
|
30 |
|
31 |
+
.settings-tabs .collapsible .header span{
|
32 |
+
display: inline-block;
|
33 |
+
vertical-align: middle;
|
34 |
+
}
|
35 |
+
|
36 |
+
.settings-tabs .collapsible .content{
|
37 |
+
display: none;
|
38 |
+
padding: 10px;
|
39 |
+
background: #f1f1f1;
|
40 |
+
}
|
41 |
+
|
42 |
+
|
43 |
+
.settings-tabs .collapsible.active .content{
|
44 |
+
display: block;
|
45 |
+
}
|
46 |
|
47 |
|
48 |
|
52 |
|
53 |
.settings-tabs{
|
54 |
background: #fff;
|
55 |
+
margin: 25px 0;
|
56 |
}
|
57 |
|
58 |
.settings-tabs.vertical{
|
68 |
.settings-tabs .tab-nav{
|
69 |
width: 200px;
|
70 |
padding: 12px 10px;
|
71 |
+
background: #f1f1f1;
|
72 |
margin: 0;
|
73 |
border-bottom: 1px solid #eee;
|
74 |
cursor: pointer;
|
81 |
|
82 |
.settings-tabs .tab-content{
|
83 |
margin-left: 220px;
|
84 |
+
padding: 0px 0;
|
85 |
background: #f1f1f159;
|
86 |
display: none;
|
87 |
}
|
90 |
display: block;
|
91 |
}
|
92 |
|
93 |
+
.settings-tabs.has-right-panel{
|
94 |
+
|
95 |
+
}
|
96 |
+
|
97 |
+
.settings-tabs.has-right-panel .tab-content {
|
98 |
+
margin-right: 280px;
|
99 |
+
}
|
100 |
+
|
101 |
+
|
102 |
+
.settings-tabs-right-panel{
|
103 |
+
width: 250px;
|
104 |
+
float: right;
|
105 |
+
padding: 15px;
|
106 |
+
border-left: 1px solid #ddd;
|
107 |
+
background: #fff;
|
108 |
+
}
|
109 |
+
|
110 |
+
.settings-tabs-right-panel .right-panel-content{
|
111 |
+
display: none;
|
112 |
+
}
|
113 |
+
|
114 |
+
.settings-tabs-right-panel .right-panel-content.active{
|
115 |
+
display: block;
|
116 |
+
}
|
117 |
+
|
118 |
+
|
119 |
+
/*horizontal*/
|
120 |
+
|
121 |
+
.settings-tabs.horizontal{
|
122 |
+
|
123 |
+
}
|
124 |
+
|
125 |
+
.settings-tabs.horizontal .tab-navs{
|
126 |
+
float: none;
|
127 |
+
position: relative;
|
128 |
+
top: 0;
|
129 |
+
padding: 0 20px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.settings-tabs.horizontal .tab-navs .tab-nav{
|
133 |
+
display: inline-block;
|
134 |
+
float: left;
|
135 |
+
width: auto;
|
136 |
+
border-right: 1px solid #ddd;
|
137 |
+
}
|
138 |
+
|
139 |
+
.settings-tabs.horizontal .tab-navs .tab-nav:last-child{
|
140 |
+
border-right: 1px solid rgba(0,0,0,0);
|
141 |
+
}
|
142 |
+
|
143 |
+
|
144 |
+
.settings-tabs.horizontal .tab-content{
|
145 |
+
margin-left: 0;
|
146 |
+
/*clear: both;*/
|
147 |
+
padding: 0 20px;
|
148 |
+
}
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
|
164 |
|
165 |
.settings-tabs .section{
|
194 |
width: 270px;
|
195 |
float: left;
|
196 |
font-size: 14px;
|
197 |
+
word-break: break-word;
|
198 |
}
|
199 |
.settings-tabs .setting-field .field-input{
|
200 |
margin-left: 270px;
|
201 |
}
|
202 |
+
.settings-tabs .setting-field .description{
|
203 |
+
word-break: break-word;
|
204 |
+
}
|
205 |
|
206 |
|
207 |
|
208 |
|
209 |
+
/*field-repeatable-wrapper*/
|
210 |
+
|
211 |
+
|
212 |
+
.ppof-settings .repeatable .item-wrap{
|
213 |
+
margin-bottom: 5px;
|
214 |
+
padding-bottom: 0px;
|
215 |
+
}
|
216 |
+
|
217 |
+
|
218 |
+
.field-repeatable-wrapper .field-list{
|
219 |
+
margin-top: 18px;
|
220 |
+
}
|
221 |
+
.field-repeatable-wrapper .button{
|
222 |
+
|
223 |
+
}
|
224 |
+
|
225 |
+
|
226 |
+
|
227 |
|
228 |
|
229 |
/*input*/
|
230 |
|
231 |
+
.settings-tabs input[type="text"], .settings-tabs .range-slider, .settings-tabs input[type="email"],.settings-tabs textarea, .settings-tabs select, .settings-tabs input[type="range"]{
|
232 |
width: 360px;
|
233 |
+
background: #f1f1f1;
|
234 |
}
|
235 |
|
236 |
|
237 |
+
@media (max-width: 1170px){
|
238 |
+
.settings-tabs input[type="text"], .settings-tabs input[type="email"],.settings-tabs textarea, .settings-tabs select, .settings-tabs input[type="range"], .settings-tabs .select2{
|
239 |
+
width: 100% !important;
|
240 |
|
241 |
+
}
|
242 |
+
}
|
243 |
|
244 |
|
245 |
@media (max-width: 1440px){
|
254 |
}
|
255 |
.settings-tabs .setting-field .description{}
|
256 |
|
257 |
+
/*.settings-tabs-right-panel {*/
|
258 |
+
/* width: 95%;*/
|
259 |
+
/* float: none;*/
|
260 |
+
/* padding: 15px;*/
|
261 |
+
/* border-left: 1px solid #ddd;*/
|
262 |
+
/*}*/
|
263 |
+
|
264 |
+
|
265 |
+
/*.settings-tabs.has-right-panel .tab-content {*/
|
266 |
+
/* margin-right: 0px;*/
|
267 |
+
/*}*/
|
268 |
+
|
269 |
+
}
|
270 |
+
|
271 |
+
@media (max-width: 1700px){
|
272 |
+
|
273 |
+
.settings-tabs .setting-field .setting-field .field-lable{
|
274 |
+
width: auto;
|
275 |
+
float: none;
|
276 |
+
font-size: 14px;
|
277 |
+
}
|
278 |
+
.settings-tabs .setting-field .setting-field .field-input{
|
279 |
+
margin-left: 0px;
|
280 |
+
}
|
281 |
+
|
282 |
+
|
283 |
}
|
284 |
|
285 |
|
286 |
|
287 |
+
|
288 |
/*expandable*/
|
289 |
|
290 |
|
334 |
|
335 |
|
336 |
.settings-tabs .expandable .header {
|
337 |
+
padding: 10px 15px;
|
338 |
|
339 |
}
|
340 |
|
380 |
padding: 2px 7px;
|
381 |
border-radius: 3px;
|
382 |
}
|
383 |
+
|
384 |
+
|
385 |
+
.settings-tabs .pro-feature{
|
386 |
+
background: #ffd87f;
|
387 |
+
padding: 0 5px;
|
388 |
+
}
|
389 |
+
|
390 |
+
|
391 |
+
|
392 |
+
/*3rd Party*/
|
393 |
+
|
394 |
+
.settings-tabs .field-input .CodeMirror{
|
395 |
+
background: #f1f1f1;
|
396 |
+
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Donate link: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
|
4 |
Tags: accordion, accordions, Responsive accordions, FAQ, WooCommerce FAQ, WooCommerce FAQ Tab, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -114,6 +114,12 @@ then paste this shortcode anywhere in your page to display accordions<br />
|
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
= 2.1.16 =
|
118 |
* 22/08/2019 - fix - fontawesome missing file issue fixed.
|
119 |
|
3 |
Donate link: https://www.pickplugins.com/item/accordions-html-css3-responsive-accordion-grid-for-wordpress/?ref=dashboard
|
4 |
Tags: accordion, accordions, Responsive accordions, FAQ, WooCommerce FAQ, WooCommerce FAQ Tab, accordions plugin, jQuery accordions, accordions short-code, accordions Widget, accordions plugin wordpress, accordions plugin jquery, tabs, jquery tabs, tab, responsive tabs
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 5.3
|
7 |
+
Stable tag: 2.1.18
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= 2.1.18 =
|
118 |
+
* 2020-02-07 - fix - settings tab broken style issue fixed.
|
119 |
+
|
120 |
+
= 2.1.17 =
|
121 |
+
* 04/09/2019 - fix - font family issue fixed.
|
122 |
+
|
123 |
= 2.1.16 =
|
124 |
* 22/08/2019 - fix - fontawesome missing file issue fixed.
|
125 |
|
templates/accordion/custom-css.php
CHANGED
@@ -55,7 +55,6 @@ if($accordions_lazy_load=='yes'){
|
|
55 |
#accordions-<?php echo $post_id; ?> .accordions-head-title{
|
56 |
color:<?php echo $accordions_items_title_color; ?>;
|
57 |
font-size:<?php echo $accordions_items_title_font_size;?>;
|
58 |
-
font-family:<?php echo $accordions_items_title_font_family; ?>;
|
59 |
}
|
60 |
#accordions-<?php echo $post_id; ?> .accordions-head-title-toogle{
|
61 |
color:<?php echo $accordions_items_title_color;?>;
|
@@ -71,7 +70,6 @@ if($accordions_lazy_load=='yes'){
|
|
71 |
background:<?php echo $accordions_items_content_bg_color; ?> none repeat scroll 0 0;
|
72 |
color:<?php echo $accordions_items_content_color; ?>;
|
73 |
font-size:<?php echo $accordions_items_content_font_size; ?>;
|
74 |
-
font-family:<?php echo $accordions_items_content_font_family;?>;
|
75 |
margin:<?php echo $accordions_items_content_margin;?>;
|
76 |
padding:<?php echo $accordions_items_content_padding;?>;
|
77 |
}
|
55 |
#accordions-<?php echo $post_id; ?> .accordions-head-title{
|
56 |
color:<?php echo $accordions_items_title_color; ?>;
|
57 |
font-size:<?php echo $accordions_items_title_font_size;?>;
|
|
|
58 |
}
|
59 |
#accordions-<?php echo $post_id; ?> .accordions-head-title-toogle{
|
60 |
color:<?php echo $accordions_items_title_color;?>;
|
70 |
background:<?php echo $accordions_items_content_bg_color; ?> none repeat scroll 0 0;
|
71 |
color:<?php echo $accordions_items_content_color; ?>;
|
72 |
font-size:<?php echo $accordions_items_content_font_size; ?>;
|
|
|
73 |
margin:<?php echo $accordions_items_content_margin;?>;
|
74 |
padding:<?php echo $accordions_items_content_padding;?>;
|
75 |
}
|