Version Description
July 19, 2021 =
Fixed: Styling issue in Switch control.
See the previous changelogs here.
Download this release
Release Info
Developer | davidvongries |
Plugin | Kirki |
Version | 3.1.9 |
Comparing to | |
See all releases |
Code changes from version 3.1.8 to 3.1.9
- CHANGELOG.md +4 -0
- controls/css/styles.css +22 -0
- kirki.php +2 -2
- readme.txt +3 -6
CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
## 3.1.8 - July 1, 2021
|
2 |
|
3 |
* Updated Google-Fonts lists.
|
1 |
+
## 3.1.9 - July 19, 2021
|
2 |
+
|
3 |
+
* Fixed: Fixed: Styling issue in Switch control.
|
4 |
+
|
5 |
## 3.1.8 - July 1, 2021
|
6 |
|
7 |
* Updated Google-Fonts lists.
|
controls/css/styles.css
CHANGED
@@ -108,6 +108,15 @@
|
|
108 |
width: 100% !important;
|
109 |
}
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
.customize-control-kirki-dashicons {
|
112 |
position: relative;
|
113 |
}
|
@@ -643,6 +652,14 @@
|
|
643 |
align-items: baseline;
|
644 |
}
|
645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
.customize-control-kirki-sortable ul.ui-sortable li {
|
647 |
padding: 5px 10px;
|
648 |
border: 1px solid #333;
|
@@ -715,6 +732,7 @@
|
|
715 |
.customize-control-kirki-switch input + label {
|
716 |
margin-left: 0;
|
717 |
margin-right: 0;
|
|
|
718 |
}
|
719 |
.customize-control-kirki-switch input:checked + label {
|
720 |
background: #0073aa;
|
@@ -730,6 +748,10 @@
|
|
730 |
.customize-control-kirki-switch input:checked + label .switch-off {
|
731 |
opacity: 0;
|
732 |
}
|
|
|
|
|
|
|
|
|
733 |
|
734 |
.customize-control-kirki-toggle {
|
735 |
position: relative;
|
108 |
width: 100% !important;
|
109 |
}
|
110 |
|
111 |
+
.rtl .customize-control-kirki-color .iris-border .iris-palette-container {
|
112 |
+
left: auto;
|
113 |
+
right: 10px;
|
114 |
+
}
|
115 |
+
.rtl .customize-control-kirki-color .wp-color-result .color-alpha {
|
116 |
+
left: auto !important;
|
117 |
+
right: 0;
|
118 |
+
}
|
119 |
+
|
120 |
.customize-control-kirki-dashicons {
|
121 |
position: relative;
|
122 |
}
|
652 |
align-items: baseline;
|
653 |
}
|
654 |
|
655 |
+
.rtl .customize-control-kirki-slider .wrapper .slider-reset {
|
656 |
+
right: auto;
|
657 |
+
left: 0;
|
658 |
+
}
|
659 |
+
.rtl .customize-control-kirki-slider .wrapper input[type=text] {
|
660 |
+
text-align: left;
|
661 |
+
}
|
662 |
+
|
663 |
.customize-control-kirki-sortable ul.ui-sortable li {
|
664 |
padding: 5px 10px;
|
665 |
border: 1px solid #333;
|
732 |
.customize-control-kirki-switch input + label {
|
733 |
margin-left: 0;
|
734 |
margin-right: 0;
|
735 |
+
min-width: 62px;
|
736 |
}
|
737 |
.customize-control-kirki-switch input:checked + label {
|
738 |
background: #0073aa;
|
748 |
.customize-control-kirki-switch input:checked + label .switch-off {
|
749 |
opacity: 0;
|
750 |
}
|
751 |
+
.customize-control-kirki-switch .screen-reader-text:focus {
|
752 |
+
clip-path: inset(50%);
|
753 |
+
-webkit-clip-path: inset(50%);
|
754 |
+
}
|
755 |
|
756 |
.customize-control-kirki-toggle {
|
757 |
position: relative;
|
kirki.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The Ultimate WordPress Customizer Framework
|
6 |
* Author: David Vongries
|
7 |
* Author URI: https://wp-pagebuilderframework.com/
|
8 |
-
* Version: 3.1.
|
9 |
* Text Domain: kirki
|
10 |
* Requires WP: 4.9
|
11 |
* Requires PHP: 5.3
|
@@ -40,7 +40,7 @@ if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
|
|
40 |
|
41 |
// Define the KIRKI_VERSION constant.
|
42 |
if ( ! defined( 'KIRKI_VERSION' ) ) {
|
43 |
-
define( 'KIRKI_VERSION', '3.1.
|
44 |
}
|
45 |
|
46 |
// Make sure the path is properly set.
|
5 |
* Description: The Ultimate WordPress Customizer Framework
|
6 |
* Author: David Vongries
|
7 |
* Author URI: https://wp-pagebuilderframework.com/
|
8 |
+
* Version: 3.1.9
|
9 |
* Text Domain: kirki
|
10 |
* Requires WP: 4.9
|
11 |
* Requires PHP: 5.3
|
40 |
|
41 |
// Define the KIRKI_VERSION constant.
|
42 |
if ( ! defined( 'KIRKI_VERSION' ) ) {
|
43 |
+
define( 'KIRKI_VERSION', '3.1.9' );
|
44 |
}
|
45 |
|
46 |
// Make sure the path is properly set.
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: davidvongries, aristath, dannycooper, wplemon, igmoweb
|
|
3 |
Tags: customizer, options framework, theme, mods, toolkit, gutenberg
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.8
|
6 |
-
Stable tag: 3.1.
|
7 |
License: MIT
|
8 |
License URI: https://opensource.org/licenses/MIT
|
9 |
|
@@ -87,11 +87,8 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
-
= 3.1.
|
91 |
|
92 |
-
*
|
93 |
-
* Tested up to WordPress 5.8 RC 1.
|
94 |
-
* Fixed: Deprecated warning when editing post/page.
|
95 |
-
* Fixed: Styling issue in Radio Buttonset control.
|
96 |
|
97 |
[See the previous changelogs here](https://github.com/kirki-framework/kirki/blob/master/CHANGELOG.md).
|
3 |
Tags: customizer, options framework, theme, mods, toolkit, gutenberg
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.8
|
6 |
+
Stable tag: 3.1.9
|
7 |
License: MIT
|
8 |
License URI: https://opensource.org/licenses/MIT
|
9 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 3.1.9 - July 19, 2021 =
|
91 |
|
92 |
+
* Fixed: Styling issue in Switch control.
|
|
|
|
|
|
|
93 |
|
94 |
[See the previous changelogs here](https://github.com/kirki-framework/kirki/blob/master/CHANGELOG.md).
|