Kirki 3.1.4, added "Requires at least" and "Requires PHP" version to style.css

This commit is contained in:
Alexander Agnarson 2020-07-12 11:19:40 +02:00
parent a23986ae61
commit 29f5cb4dc9
150 changed files with 1061 additions and 835 deletions

View file

@ -1,3 +1,30 @@
## 3.1.4 - July 11, 2020
* Tweak: Updated Google-Fonts lists.
* Tweak: Tooltip styling.
* Fixed: Error in the WordPress customizer with WordPress 5.5.
## 3.1.3 - May 19, 2020
* Tweak: Updated Google-Fonts lists.
* Tweak: Slightly tweaked some of the default control styles.
## 3.1.2 - 2020-04-20
### Fixed
* Added back `font-display:swap` to Google Fonts.
### Changed
* Updated Google-Fonts lists.
## 3.1.1 - 2020-04-05
### Changed
* Updated Google-Fonts lists.
### Fixed
* False-positive error in Envato theme-check.
## 3.1.0 - 2020-03-01 ## 3.1.0 - 2020-03-01
### Changed ### Changed

View file

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2019 Ari Stathopoulos (@aristath) Copyright (c) 2020 Ari Stathopoulos (@aristath)
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -1,28 +1,36 @@
.select2-dropdown { .select2-dropdown {
border-color: rgba(0, 0, 0, 0.1); border-color: rgba(0, 0, 0, 0.1);
border-radius: 0; } border-radius: 0;
}
.select2-container { .select2-container {
min-width: 100px; min-width: 100px;
width: 100% !important; } width: 100% !important;
}
.select2-container--open .select2-dropdown--above, .select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below { .select2-container--open .select2-dropdown--below {
z-index: 9999999; z-index: 9999999;
min-width: 100px; } min-width: 100px;
}
.select2-container--default .select2-search--dropdown .select2-search__field { .select2-container--default .select2-search--dropdown .select2-search__field {
border-color: rgba(0, 0, 0, 0.1); } border-color: rgba(0, 0, 0, 0.1);
}
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single { .select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
border-color: rgba(0, 0, 0, 0.1); border-color: rgba(0, 0, 0, 0.1);
border-radius: 0; } border-radius: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice { .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: rgba(255, 255, 255, 0); background-color: rgba(255, 255, 255, 0);
background-color: transparent; background-color: transparent;
border: none; border: none;
border-radius: 0; } border-radius: 0;
}
.wp-customizer .select2-container { .wp-customizer .select2-container {
z-index: 8 !important; } z-index: 8 !important;
}
.wp-customizer .select2-container.select2-container--open { .wp-customizer .select2-container.select2-container--open {
z-index: 999999 !important; } z-index: 999999 !important;
}
/*# sourceMappingURL=kirki.css.map */ /*# sourceMappingURL=kirki.css.map */

View file

@ -17,7 +17,8 @@
_wrap = '<div class="wp-picker-container" />', _wrap = '<div class="wp-picker-container" />',
_button = '<input type="button" class="button button-small" />', _button = '<input type="button" class="button button-small" />',
_wrappingLabel = '<label></label>', _wrappingLabel = '<label></label>',
_wrappingLabelText = '<span class="screen-reader-text"></span>'; _wrappingLabelText = '<span class="screen-reader-text"></span>',
__ = wp.i18n.__;
/** /**
* Overwrite Color * Overwrite Color
@ -88,7 +89,7 @@
// Insert the default label text. // Insert the default label text.
self.wrappingLabelText = $( _wrappingLabelText ) self.wrappingLabelText = $( _wrappingLabelText )
.insertBefore( el ) .insertBefore( el )
.text( wpColorPickerL10n.defaultLabel ); .text( __( 'Color value' ) );
} }
/* /*
@ -109,7 +110,7 @@
if ( el.data( 'label' ) ) { if ( el.data( 'label' ) ) {
self.toggler.find( '.wp-color-result-text' ).text( el.data( 'label' ) ); self.toggler.find( '.wp-color-result-text' ).text( el.data( 'label' ) );
} else { } else {
self.toggler.find( '.wp-color-result-text' ).text( wpColorPickerL10n.pick ); self.toggler.find( '.wp-color-result-text' ).text( __( 'Select Color' ) );
} }
// Set up the Iris container and insert it after the wrapping label. // Set up the Iris container and insert it after the wrapping label.
self.pickerContainer = $( _after ).insertAfter( self.wrappingLabel ); self.pickerContainer = $( _after ).insertAfter( self.wrappingLabel );
@ -120,13 +121,13 @@
if ( self.options.defaultColor ) { if ( self.options.defaultColor ) {
self.button self.button
.addClass( 'wp-picker-default' ) .addClass( 'wp-picker-default' )
.val( wpColorPickerL10n.defaultString ) .val( __( 'Default' ) )
.attr( 'aria-label', wpColorPickerL10n.defaultAriaLabel ); .attr( 'aria-label', __( 'Select default color' ) );
} else { } else {
self.button self.button
.addClass( 'wp-picker-clear' ) .addClass( 'wp-picker-clear' )
.val( wpColorPickerL10n.clear ) .val( __( 'Clear' ) )
.attr( 'aria-label', wpColorPickerL10n.clearAriaLabel ); .attr( 'aria-label', __( 'Clear color' ) );
} }
// Wrap the wrapping label in its wrapper and append the Clear/Default button. // Wrap the wrapping label in its wrapper and append the Clear/Default button.

View file

@ -6,7 +6,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -1,16 +1,19 @@
@charset "UTF-8"; @charset "UTF-8";
.customize-control-kirki-background { .customize-control-kirki-background {
position: relative; } position: relative;
}
.customize-control-kirki-background .background-attachment h4, .customize-control-kirki-background .background-attachment h4,
.customize-control-kirki-background .background-color h4, .customize-control-kirki-background .background-color h4,
.customize-control-kirki-background .background-position h4, .customize-control-kirki-background .background-position h4,
.customize-control-kirki-background .background-repeat h4, .customize-control-kirki-background .background-repeat h4,
.customize-control-kirki-background .background-size h4 { .customize-control-kirki-background .background-size h4 {
margin-bottom: 5px; } margin-bottom: 5px;
}
.customize-control-kirki-background .background-attachment .buttonset, .customize-control-kirki-background .background-attachment .buttonset,
.customize-control-kirki-background .background-size .buttonset { .customize-control-kirki-background .background-size .buttonset {
display: flex; display: flex;
flex-wrap: wrap; } flex-wrap: wrap;
}
.customize-control-kirki-background .background-attachment .buttonset .switch-label, .customize-control-kirki-background .background-attachment .buttonset .switch-label,
.customize-control-kirki-background .background-size .buttonset .switch-label { .customize-control-kirki-background .background-size .buttonset .switch-label {
background: rgba(0, 0, 0, 0.05); background: rgba(0, 0, 0, 0.05);
@ -19,225 +22,281 @@
padding: 0.5em 1em; padding: 0.5em 1em;
margin: 0; margin: 0;
text-align: center; text-align: center;
flex-grow: 1; } flex-grow: 1;
}
.customize-control-kirki-background .background-attachment .buttonset .switch-input:checked + .switch-label, .customize-control-kirki-background .background-attachment .buttonset .switch-input:checked + .switch-label,
.customize-control-kirki-background .background-size .buttonset .switch-input:checked + .switch-label { .customize-control-kirki-background .background-size .buttonset .switch-input:checked + .switch-label {
background-color: #3498DB; background-color: #3498DB;
color: #fff; } color: #fff;
}
.customize-control-kirki-code textarea { .customize-control-kirki-code textarea {
width: 100%; width: 100%;
min-height: 200px; } min-height: 200px;
}
.customize-control-kirki-color-palette { .customize-control-kirki-color-palette {
position: relative; } position: relative;
}
.customize-control-kirki-color-palette label { .customize-control-kirki-color-palette label {
position: relative; position: relative;
display: inline-block; display: inline-block;
padding: 0; padding: 0;
margin: 0; } margin: 0;
}
.customize-control-kirki-color-palette .colors-wrapper { .customize-control-kirki-color-palette .colors-wrapper {
max-height: 300px; max-height: 300px;
overflow-y: auto; overflow-y: auto;
padding: 10px; padding: 10px;
display: flex; display: flex;
flex-wrap: wrap; } flex-wrap: wrap;
}
.customize-control-kirki-color-palette .colors-wrapper .color-palette-color { .customize-control-kirki-color-palette .colors-wrapper .color-palette-color {
color: transparent; color: transparent;
display: block; display: block;
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.2); } border: 1px solid rgba(0, 0, 0, 0.2);
}
.customize-control-kirki-color-palette .colors-wrapper.round label { .customize-control-kirki-color-palette .colors-wrapper.round label {
padding: 3px; } padding: 3px;
}
.customize-control-kirki-color-palette .colors-wrapper.round .color-palette-color { .customize-control-kirki-color-palette .colors-wrapper.round .color-palette-color {
border-radius: 50%; } border-radius: 50%;
}
.customize-control-kirki-color-palette .colors-wrapper.box-shadow .color-palette-color { .customize-control-kirki-color-palette .colors-wrapper.box-shadow .color-palette-color {
box-shadow: inset 3px 3px 13px 2px rgba(0, 0, 0, 0.22); } box-shadow: inset 3px 3px 13px 2px rgba(0, 0, 0, 0.2);
}
.customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color { .customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color {
border: 0; border: 0;
width: 150%; border: 4px solid #3498DB;
height: 150%;
position: relative; position: relative;
left: -25%; left: -3px;
top: -25%; top: -3px;
z-index: 1; } z-index: 1;
}
.customize-control-kirki-color-palette .colors-wrapper.with-margin label { .customize-control-kirki-color-palette .colors-wrapper.with-margin label {
margin: 3px; } margin: 3px;
}
.customize-control-kirki-color-palette .colors-wrapper input { .customize-control-kirki-color-palette .colors-wrapper input {
display: none; } display: none;
.customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color { }
box-shadow: 1px 1px 10px 1px #333333; .customize-control-kirki-color input[data-type=hue] + .iris-strip-horiz .iris-slider {
border: 1px solid rgba(0, 0, 0, 0.3); } background-image: -webkit-linear-gradient(left, red, #ff7f00, yellow, #80ff00, lime, #00ff80, aqua, #007fff, blue, #7f00ff, fuchsia, #ff0080, red) !important;
widows: 100% !important;
.customize-control-kirki-color input[data-type="hue"] + .iris-strip-horiz .iris-slider { }
background-image: -webkit-linear-gradient(left, red, #ff7f00, yellow, #80ff00, lime, #00ff80, cyan, #007fff, blue, #7f00ff, magenta, #ff0080, red) !important;
widows: 100% !important; }
.customize-control-kirki-color .iris-picker .iris-square-handle { .customize-control-kirki-color .iris-picker .iris-square-handle {
z-index: 8; } z-index: 8;
}
.customize-control-kirki-color .iris-picker.iris-border { .customize-control-kirki-color .iris-picker.iris-border {
width: 100% !important; } width: 100% !important;
}
.customize-control-kirki-color .iris-picker-inner { .customize-control-kirki-color .iris-picker-inner {
display: grid; display: grid;
grid-template-columns: 1fr 20px; grid-template-columns: 1fr 20px;
grid-gap: 7px; } grid-gap: 7px;
}
.customize-control-kirki-color .iris-picker-inner > * { .customize-control-kirki-color .iris-picker-inner > * {
width: 100% !important; width: 100% !important;
margin-left: 0 !important; margin-left: 0 !important;
margin-right: 0 !important; } margin-right: 0 !important;
}
.customize-control-kirki-color .kirki-input-container[data-has-alpha=true] .iris-picker-inner { .customize-control-kirki-color .kirki-input-container[data-has-alpha=true] .iris-picker-inner {
grid-template-columns: 1fr 20px 20px; } grid-template-columns: 1fr 20px 20px;
}
.customize-control-kirki-color .iris-only-strip { .customize-control-kirki-color .iris-only-strip {
width: 100% !important; } width: 100% !important;
}
.customize-control-kirki-color .iris-only-strip .iris-picker-inner { .customize-control-kirki-color .iris-only-strip .iris-picker-inner {
grid-template-columns: 1fr; } grid-template-columns: 1fr;
}
.customize-control-kirki-dashicons { .customize-control-kirki-dashicons {
position: relative; } position: relative;
}
.customize-control-kirki-dashicons label { .customize-control-kirki-dashicons label {
position: relative; position: relative;
display: inline-block; } display: inline-block;
}
.customize-control-kirki-dashicons .icons-wrapper { .customize-control-kirki-dashicons .icons-wrapper {
max-height: 300px; max-height: 300px;
overflow-y: scroll; } overflow-y: scroll;
}
.customize-control-kirki-dashicons .icons-wrapper h4 { .customize-control-kirki-dashicons .icons-wrapper h4 {
font-weight: 300; font-weight: 300;
margin: 0.7em 0; } margin: 0.7em 0;
}
.customize-control-kirki-dashicons .icons-wrapper .dashicons { .customize-control-kirki-dashicons .icons-wrapper .dashicons {
padding: 3px; padding: 3px;
font-size: 25px; font-size: 25px;
width: 25px; width: 25px;
height: 25px; height: 25px;
border: 1px solid transparent; } border: 2px solid transparent;
}
.customize-control-kirki-dashicons .icons-wrapper input { .customize-control-kirki-dashicons .icons-wrapper input {
display: none; } display: none;
}
.customize-control-kirki-dashicons .icons-wrapper input:checked + label .dashicons { .customize-control-kirki-dashicons .icons-wrapper input:checked + label .dashicons {
border: 1px solid #3498DB; border: 2px solid #3498DB;
color: #000; } color: #000;
}
.wp-customizer div.ui-datepicker { .wp-customizer div.ui-datepicker {
z-index: 500001 !important; z-index: 500001 !important;
width: 255px; width: 255px;
background: #fff; background: #fff;
border: 1px solid #dedede; } border: 1px solid #dedede;
padding: 4px;
}
.wp-customizer div.ui-datepicker .ui-datepicker-header { .wp-customizer div.ui-datepicker .ui-datepicker-header {
padding: 10px; padding: 10px;
background: #e5e5e5; font-weight: 700;
border-bottom: 1px solid #fff; } }
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
padding: 10px;
display: block; display: block;
position: absolute; position: absolute;
width: 1em; width: 1em;
overflow: hidden; } overflow: hidden;
cursor: pointer;
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before,
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after,
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
font-family: dashicons; } font-family: dashicons;
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after:hover, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before:hover, }
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after:hover,
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before:hover {
cursor: pointer; }
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon,
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
display: none; } display: none;
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
left: 10px; } left: 0;
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
content: "\f341"; } content: "";
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
right: 10px; } right: 0;
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
content: "\f345"; } content: "";
}
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-title { .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
text-align: center; } text-align: center;
}
.wp-customizer div.ui-datepicker .ui-datepicker-calendar { .wp-customizer div.ui-datepicker .ui-datepicker-calendar {
border-collapse: collapse; border-collapse: collapse;
width: 100%; } width: 100%;
}
.wp-customizer div.ui-datepicker .ui-datepicker-calendar thead { .wp-customizer div.ui-datepicker .ui-datepicker-calendar thead {
background: #e5e5e5; background: #f3f5f7;
padding: 5px; } padding: 5px;
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td { }
text-align: center; }
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a { .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a {
display: block; display: block;
padding: 5px; padding: 5px;
color: #333; color: #333;
text-decoration: none; } text-decoration: none;
text-align: center;
}
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a.ui-state-active, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a:hover { .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a.ui-state-active, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a:hover {
color: #fff; color: #fff;
background-color: #0073aa; } background-color: #3498DB;
}
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled a, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled .ui-state-default a { .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled a, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled .ui-state-default a {
color: #999; } color: #999;
}
.customize-control-kirki-dimensions { .customize-control-kirki-dimensions {
position: relative; } position: relative;
}
.customize-control-kirki-dimensions .wrapper { .customize-control-kirki-dimensions .wrapper {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px; } padding: 10px;
}
.customize-control-kirki-dimensions .wrapper .control { .customize-control-kirki-dimensions .wrapper .control {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; } justify-content: space-between;
}
.customize-control-kirki-dimensions .wrapper .control > div { .customize-control-kirki-dimensions .wrapper .control > div {
width: 48%; } width: 48%;
}
.customize-control-kirki-dimensions .wrapper .control > div h5 { .customize-control-kirki-dimensions .wrapper .control > div h5 {
margin: 10px 0 7px; } margin: 10px 0 7px;
}
.customize-control-kirki-dimensions .wrapper .control > div .inner { .customize-control-kirki-dimensions .wrapper .control > div .inner {
display: flex; } display: flex;
}
.customize-control-kirki-editor textarea { .customize-control-kirki-editor textarea {
width: 100%; } width: 100%;
}
.customize-control-kirki-generic input { .customize-control-kirki-generic input {
width: 100%; } width: 100%;
}
.customize-control-kirki-generic textarea { .customize-control-kirki-generic textarea {
width: 100%; width: 100%;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; } box-shadow: none;
}
.customize-control-kirki-multicolor .multicolor-single-color-wrapper { .customize-control-kirki-multicolor .multicolor-single-color-wrapper {
display: flex; display: flex;
justify-content: space-between; } justify-content: space-between;
}
.customize-control-kirki-multicolor .multicolor-single-label { .customize-control-kirki-multicolor .multicolor-single-label {
order: 2; } order: 2;
}
.customize-control-kirki-multicolor .wp-picker-container { .customize-control-kirki-multicolor .wp-picker-container {
width: 100%; } width: 100%;
}
.customize-control-kirki-multicolor .wp-picker-container > .wp-color-result { .customize-control-kirki-multicolor .wp-picker-container > .wp-color-result {
width: 100%; } width: 100%;
}
.customize-control-kirki-multicolor .wp-picker-container.wp-picker-active + .multicolor-single-label { .customize-control-kirki-multicolor .wp-picker-container.wp-picker-active + .multicolor-single-label {
display: none; } display: none;
}
.customize-control-kirki-number .customize-control-content { .customize-control-kirki-number .customize-control-content {
display: flex; display: flex;
align-items: stretch; } align-items: stretch;
}
.customize-control-kirki-number .customize-control-content input { .customize-control-kirki-number .customize-control-content input {
width: 100%; width: 100%;
-moz-appearance: textfield; } -moz-appearance: textfield;
}
.customize-control-kirki-number .customize-control-content input::-webkit-inner-spin-button, .customize-control-kirki-number .customize-control-content input::-webkit-outer-spin-button { .customize-control-kirki-number .customize-control-content input::-webkit-inner-spin-button, .customize-control-kirki-number .customize-control-content input::-webkit-outer-spin-button {
-webkit-appearance: none; -webkit-appearance: none;
margin: 0; } margin: 0;
}
.customize-control-kirki-number .customize-control-content .quantity { .customize-control-kirki-number .customize-control-content .quantity {
min-width: 2rem; min-width: 2rem;
max-width: 2rem; max-width: 2rem;
text-align: center; text-align: center;
line-height: 24px; } line-height: 24px;
}
.customize-control-kirki-palette { .customize-control-kirki-palette {
position: relative; } position: relative;
.customize-control-kirki-palette input[type="radio"] { }
display: none; } .customize-control-kirki-palette input[type=radio] {
.customize-control-kirki-palette input[type="radio"]:checked + label { display: none;
border: 3px solid rgba(0, 0, 0, 0.4); } }
.customize-control-kirki-palette input[type=radio]:checked + label {
border: 2px solid #3498DB;
}
.customize-control-kirki-palette label { .customize-control-kirki-palette label {
background: none; background: none;
padding: 0; padding: 0;
border-top: 3px solid transparent; border-top: 3px solid transparent;
border-bottom: 3px solid transparent; border-bottom: 3px solid transparent;
margin-bottom: 5px; margin-bottom: 5px;
display: flex; } display: flex;
}
.customize-control-kirki-palette label span { .customize-control-kirki-palette label span {
padding: 10px 0; padding: 10px 0;
flex-grow: 1; flex-grow: 1;
@ -250,22 +309,27 @@
-o-transition: all 200ms ease-in-out; -o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out; transition: all 200ms ease-in-out;
border-top: 1px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1); } border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.customize-control-kirki-palette label span:first-child { .customize-control-kirki-palette label span:first-child {
border-left: 1px solid rgba(0, 0, 0, 0.1); } border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.customize-control-kirki-palette label span:last-child { .customize-control-kirki-palette label span:last-child {
border-right: 1px solid rgba(0, 0, 0, 0.1); } border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.customize-control-kirki-palette label span:hover { .customize-control-kirki-palette label span:hover {
padding: 10px; padding: 10px;
flex-grow: 3; flex-grow: 3;
min-width: 60px; min-width: 60px;
font-size: 10px; font-size: 10px;
line-height: 10px; line-height: 10px;
color: #000; } color: #000;
}
.customize-control-kirki-radio-buttonset .buttonset { .customize-control-kirki-radio-buttonset .buttonset {
display: flex; display: flex;
flex-wrap: wrap; } flex-wrap: wrap;
}
.customize-control-kirki-radio-buttonset .buttonset .switch-label { .customize-control-kirki-radio-buttonset .buttonset .switch-label {
background: rgba(0, 0, 0, 0.1); background: rgba(0, 0, 0, 0.1);
border: 1px rgba(0, 0, 0, 0.1); border: 1px rgba(0, 0, 0, 0.1);
@ -273,17 +337,21 @@
margin: 0; margin: 0;
text-align: center; text-align: center;
padding: 0.5em 1em; padding: 0.5em 1em;
flex-grow: 1; } flex-grow: 1;
}
.customize-control-kirki-radio-buttonset .buttonset .switch-input:checked + .switch-label { .customize-control-kirki-radio-buttonset .buttonset .switch-input:checked + .switch-label {
background-color: #00a0d2; background-color: #00a0d2;
color: rgba(255, 255, 255, 0.8); } color: rgba(255, 255, 255, 0.8);
}
.customize-control-kirki-radio-image > .image { .customize-control-kirki-radio-image > .image {
display: flex; display: flex;
flex-wrap: wrap; } flex-wrap: wrap;
}
.customize-control-kirki-radio-image label { .customize-control-kirki-radio-image label {
position: relative; position: relative;
display: inline-block; } display: inline-block;
}
.customize-control-kirki-radio-image label .image-label { .customize-control-kirki-radio-image label .image-label {
display: none; display: none;
position: absolute; position: absolute;
@ -292,23 +360,29 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
background: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.7);
font-weight: bold; } font-weight: bold;
}
.customize-control-kirki-radio-image label .image-label .inner { .customize-control-kirki-radio-image label .image-label .inner {
width: 100%; width: 100%;
height: 100%; height: 100%;
text-align: center; text-align: center;
padding: 0.5em; padding: 0.5em;
vertical-align: middle; } vertical-align: middle;
}
.customize-control-kirki-radio-image label:hover .image-label { .customize-control-kirki-radio-image label:hover .image-label {
display: block; } display: block;
}
.customize-control-kirki-radio-image input { .customize-control-kirki-radio-image input {
display: none; } display: none;
}
.customize-control-kirki-radio-image input img { .customize-control-kirki-radio-image input img {
border: 1px solid transparent; } border: 1px solid transparent;
}
.customize-control-kirki-radio-image input:checked + label img { .customize-control-kirki-radio-image input:checked + label img {
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25); -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25); box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
border: 1px solid #3498DB; } border: 1px solid #3498DB;
}
.customize-control-kirki-radio-image input + label .image-clickable { .customize-control-kirki-radio-image input + label .image-clickable {
position: absolute; position: absolute;
top: 0; top: 0;
@ -316,87 +390,114 @@
left: 0; left: 0;
right: 0; right: 0;
width: 100%; width: 100%;
height: 100%; } height: 100%;
}
.customize-control-kirki-radio { .customize-control-kirki-radio {
position: relative; } position: relative;
}
.customize-control-kirki-radio input[type=radio] { .customize-control-kirki-radio input[type=radio] {
width: 18px; width: 18px;
height: 18px; } height: 18px;
}
.customize-control-kirki-radio input[type=radio]:checked:before { .customize-control-kirki-radio input[type=radio]:checked:before {
width: 10px; width: 10px;
height: 10px; height: 10px;
margin: 3px; } margin: 3px;
}
.customize-control-kirki-radio label { .customize-control-kirki-radio label {
display: list-item; display: list-item;
margin-bottom: 7px; } margin-bottom: 7px;
}
.customize-control-kirki-radio label .option-description { .customize-control-kirki-radio label .option-description {
display: block; display: block;
color: rgba(0, 0, 0, 0.35); color: rgba(0, 0, 0, 0.35);
font-size: 0.9em; font-size: 0.9em;
padding-left: 25px; } padding-left: 25px;
}
.customize-control-repeater { .customize-control-repeater {
position: relative; } position: relative;
}
.customize-control-repeater .repeater-fields .repeater-row { .customize-control-repeater .repeater-fields .repeater-row {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
margin-top: 0.5rem; margin-top: 0.5rem;
background: #eee; background: #eee;
position: relative; } position: relative;
}
.customize-control-repeater .repeater-fields .repeater-row.minimized { .customize-control-repeater .repeater-fields .repeater-row.minimized {
border: 1px solid #dfdfdf; border: 1px solid #dfdfdf;
padding: 0; } padding: 0;
}
.customize-control-repeater .repeater-fields .repeater-row.minimized:hover { .customize-control-repeater .repeater-fields .repeater-row.minimized:hover {
border: 1px solid #e5e5e5; } border: 1px solid #e5e5e5;
}
.customize-control-repeater .repeater-fields .repeater-row.minimized .repeater-row-content { .customize-control-repeater .repeater-fields .repeater-row.minimized .repeater-row-content {
display: none; } display: none;
}
.customize-control-repeater .repeater-fields .repeater-row label { .customize-control-repeater .repeater-fields .repeater-row label {
margin-bottom: 12px; margin-bottom: 12px;
clear: both; } clear: both;
}
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field- { .customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field- {
display: none; } display: none;
}
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input { .customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input {
display: none; } display: none;
}
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input img { .customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input img {
border: 1px solid transparent; } border: 1px solid transparent;
}
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input:checked + label img { .customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input:checked + label img {
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25); -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25); box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
border: 1px solid #3498DB; } border: 1px solid #3498DB;
}
.customize-control-repeater .repeater-fields .repeater-row .repeater-field:last-child { .customize-control-repeater .repeater-fields .repeater-row .repeater-field:last-child {
border-bottom: none; border-bottom: none;
padding-bottom: 0; } padding-bottom: 0;
}
.customize-control-repeater button.repeater-add { .customize-control-repeater button.repeater-add {
margin-top: 1rem; } margin-top: 1rem;
}
.customize-control-repeater .repeater-row-content { .customize-control-repeater .repeater-row-content {
padding: 10px 15px; padding: 10px 15px;
background: #fff; } background: #fff;
}
.customize-control-repeater .repeater-field { .customize-control-repeater .repeater-field {
margin-bottom: 12px; margin-bottom: 12px;
width: 100%; width: 100%;
clear: both; clear: both;
padding-bottom: 12px; padding-bottom: 12px;
border-bottom: 1px dotted #CCC; } border-bottom: 1px dotted #CCC;
}
.customize-control-repeater .repeater-field .customize-control-title { .customize-control-repeater .repeater-field .customize-control-title {
font-size: 13px; font-size: 13px;
line-height: initial; } line-height: initial;
}
.customize-control-repeater .repeater-field .customize-control-description { .customize-control-repeater .repeater-field .customize-control-description {
font-size: 13px; font-size: 13px;
line-height: initial; } line-height: initial;
}
.customize-control-repeater .repeater-field.repeater-field-hidden { .customize-control-repeater .repeater-field.repeater-field-hidden {
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 0; } border: 0;
}
.customize-control-repeater .repeater-field-select select { .customize-control-repeater .repeater-field-select select {
margin-left: 0; } margin-left: 0;
}
.customize-control-repeater .repeater-field-checkbox label { .customize-control-repeater .repeater-field-checkbox label {
line-height: 28px; } line-height: 28px;
}
.customize-control-repeater .repeater-field-checkbox input { .customize-control-repeater .repeater-field-checkbox input {
line-height: 28px; line-height: 28px;
margin-right: 5px; } margin-right: 5px;
}
.customize-control-repeater .repeater-field-textarea textarea { .customize-control-repeater .repeater-field-textarea textarea {
width: 100%; width: 100%;
resize: vertical; } resize: vertical;
}
.customize-control-repeater .repeater-row-header { .customize-control-repeater .repeater-row-header {
background: white; background: white;
border-bottom: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf;
@ -406,15 +507,18 @@
min-height: 20px; min-height: 20px;
line-height: 30px; line-height: 30px;
overflow: hidden; overflow: hidden;
word-wrap: break-word; } word-wrap: break-word;
}
.customize-control-repeater .repeater-row-header:hover { .customize-control-repeater .repeater-row-header:hover {
cursor: move; } cursor: move;
}
.customize-control-repeater .repeater-row-header .dashicons { .customize-control-repeater .repeater-row-header .dashicons {
font-size: 18px; font-size: 18px;
position: absolute; position: absolute;
right: 12px; right: 12px;
top: 2px; top: 2px;
color: #a0a5aa; } color: #a0a5aa;
}
.customize-control-repeater .repeater-row-label { .customize-control-repeater .repeater-row-label {
font-size: 13px; font-size: 13px;
font-weight: 600; font-weight: 600;
@ -422,57 +526,71 @@
display: block; display: block;
width: 90%; width: 90%;
overflow: hidden; overflow: hidden;
height: 18px; } height: 18px;
}
.customize-control-repeater .repeater-row-remove { .customize-control-repeater .repeater-row-remove {
color: #a00; } color: #a00;
}
.customize-control-repeater .repeater-row-remove:hover { .customize-control-repeater .repeater-row-remove:hover {
color: #f00; } color: #f00;
}
.customize-control-repeater .repeater-minimize { .customize-control-repeater .repeater-minimize {
line-height: 36px; } line-height: 36px;
}
.customize-control-repeater .remove-button, .customize-control-repeater .remove-button,
.customize-control-repeater .upload-button { .customize-control-repeater .upload-button {
width: 48%; } width: 48%;
}
.kirki-image-attachment { .kirki-image-attachment {
margin: 0; margin: 0;
text-align: center; text-align: center;
margin-bottom: 10px; } margin-bottom: 10px;
}
.kirki-image-attachment img { .kirki-image-attachment img {
display: inline-block; } display: inline-block;
}
.kirki-file-attachment { .kirki-file-attachment {
margin: 0; margin: 0;
text-align: center; text-align: center;
margin-bottom: 10px; } margin-bottom: 10px;
}
.kirki-file-attachment .file { .kirki-file-attachment .file {
display: block; display: block;
padding: 10px 5px; padding: 10px 5px;
border: 1px dotted #c3c3c3; border: 1px dotted #c3c3c3;
background: #f9f9f9; } background: #f9f9f9;
}
.limit { .limit {
padding: 3px; padding: 3px;
border-radius: 3px; } border-radius: 3px;
}
.limit.highlight { .limit.highlight {
background: #D32F2F; background: #D32F2F;
color: #fff; } color: #fff;
}
.customize-control-kirki-slider .wrapper { .customize-control-kirki-slider .wrapper {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 15px 0 7px; padding: 15px 0 7px;
position: relative; } position: relative;
}
.customize-control-kirki-slider .wrapper .slider-reset { .customize-control-kirki-slider .wrapper .slider-reset {
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;
font-size: 12px; font-size: 12px;
transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;
color: rgba(0, 0, 0, 0.3); } color: rgba(0, 0, 0, 0.3);
}
.customize-control-kirki-slider .wrapper .slider-reset:hover { .customize-control-kirki-slider .wrapper .slider-reset:hover {
transform: scale(1.3); transform: scale(1.3);
color: #DC3232; } color: #DC3232;
.customize-control-kirki-slider .wrapper input[type="range"] { }
.customize-control-kirki-slider .wrapper input[type=range] {
display: block; display: block;
-webkit-appearance: none; -webkit-appearance: none;
background-color: #bdc3c7; background-color: #bdc3c7;
@ -480,8 +598,9 @@
height: 5px; height: 5px;
border-radius: 5px; border-radius: 5px;
margin: 0 auto; margin: 0 auto;
outline: 0; } outline: 0;
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb { }
.customize-control-kirki-slider .wrapper input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none; -webkit-appearance: none;
background-color: #0085ba; background-color: #0085ba;
width: 17px; width: 17px;
@ -489,58 +608,75 @@
border-radius: 50%; border-radius: 50%;
border: 1px solid #006799; border: 1px solid #006799;
cursor: pointer; cursor: pointer;
transition: 0.3s ease-in-out; } transition: 0.3s ease-in-out;
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb:hover { }
.customize-control-kirki-slider .wrapper input[type=range]::-webkit-slider-thumb:hover {
background-color: #006799; background-color: #006799;
border: 2px solid #0085ba; } border: 2px solid #0085ba;
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb:active { }
transform: scale(1.2); } .customize-control-kirki-slider .wrapper input[type=range]::-webkit-slider-thumb:active {
.customize-control-kirki-slider .wrapper input[type="text"] { transform: scale(1.2);
}
.customize-control-kirki-slider .wrapper input[type=text] {
font-size: 13px; font-size: 13px;
background: transparent; background: transparent;
border: none; border: none;
box-shadow: none; box-shadow: none;
text-align: right; text-align: right;
padding: 0; padding: 0;
width: 40px; } width: 40px;
}
.customize-control-kirki-slider .wrapper .value { .customize-control-kirki-slider .wrapper .value {
display: flex; display: flex;
align-items: baseline; } align-items: baseline;
}
.customize-control-kirki-sortable ul.ui-sortable li { .customize-control-kirki-sortable ul.ui-sortable li {
padding: 5px 10px; padding: 5px 10px;
border: 1px solid #333; border: 1px solid #333;
background: #fff; } background: #fff;
}
.customize-control-kirki-sortable ul.ui-sortable li .dashicons.dashicons-menu { .customize-control-kirki-sortable ul.ui-sortable li .dashicons.dashicons-menu {
float: right; } float: right;
}
.customize-control-kirki-sortable ul.ui-sortable li .dashicons.visibility { .customize-control-kirki-sortable ul.ui-sortable li .dashicons.visibility {
margin-right: 10px; } margin-right: 10px;
}
.customize-control-kirki-sortable ul.ui-sortable li.invisible { .customize-control-kirki-sortable ul.ui-sortable li.invisible {
color: #aaa; color: #aaa;
border: 1px dashed #aaa; } border: 1px dashed #aaa;
}
.customize-control-kirki-sortable ul.ui-sortable li.invisible .dashicons.visibility { .customize-control-kirki-sortable ul.ui-sortable li.invisible .dashicons.visibility {
color: #aaa; } color: #aaa;
}
.customize-control-kirki-switch { .customize-control-kirki-switch {
position: relative; } position: relative;
}
.customize-control-kirki-switch .switch-off, .customize-control-kirki-switch .switch-off,
.customize-control-kirki-switch .switch-on { .customize-control-kirki-switch .switch-on {
opacity: 1; opacity: 1;
padding: 8px; padding: 8px;
font-size: 14px; font-size: 14px;
line-height: 18px; } line-height: 18px;
}
.customize-control-kirki-switch .switch-on { .customize-control-kirki-switch .switch-on {
color: #fff; color: #fff;
opacity: 0; } opacity: 0;
padding-right: 0;
}
.customize-control-kirki-switch .switch-off { .customize-control-kirki-switch .switch-off {
color: #777; } color: #777;
padding-left: 0;
}
.customize-control-kirki-switch .switch { .customize-control-kirki-switch .switch {
border: none; border: none;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
outline: 0; outline: 0;
padding: 0; padding: 0;
user-select: none; user-select: none;
border-radius: 3rem; } border-radius: 3rem;
}
.customize-control-kirki-switch label { .customize-control-kirki-switch label {
background: #b4b9be; background: #b4b9be;
float: left; float: left;
@ -550,7 +686,8 @@
margin-bottom: 1rem; margin-bottom: 1rem;
position: relative; position: relative;
transition: left 0.15s ease-out; transition: left 0.15s ease-out;
border-radius: 3rem; } border-radius: 3rem;
}
.customize-control-kirki-switch label:after { .customize-control-kirki-switch label:after {
background: #FFFFFF; background: #FFFFFF;
content: ""; content: "";
@ -561,30 +698,40 @@
width: calc(.85rem + 10px); width: calc(.85rem + 10px);
height: calc(.85rem + 10px); height: calc(.85rem + 10px);
transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out;
border-radius: 3rem; } border-radius: 3rem;
}
.customize-control-kirki-switch input + label { .customize-control-kirki-switch input + label {
margin-left: 0; margin-left: 0;
margin-right: 0; } margin-right: 0;
}
.customize-control-kirki-switch input:checked + label { .customize-control-kirki-switch input:checked + label {
background: #0073aa; } background: #0073aa;
}
.customize-control-kirki-switch input:checked + label:after { .customize-control-kirki-switch input:checked + label:after {
left: auto; left: auto;
right: 5px; right: 5px;
background: #ffffff; } background: #ffffff;
}
.customize-control-kirki-switch input:checked + label .switch-on { .customize-control-kirki-switch input:checked + label .switch-on {
opacity: 1; } opacity: 1;
}
.customize-control-kirki-switch input:checked + label .switch-off { .customize-control-kirki-switch input:checked + label .switch-off {
opacity: 0; } opacity: 0;
}
.customize-control-kirki-toggle { .customize-control-kirki-toggle {
position: relative; } position: relative;
}
.customize-control-kirki-toggle label { .customize-control-kirki-toggle label {
display: flex; display: flex;
flex-wrap: wrap; } flex-wrap: wrap;
}
.customize-control-kirki-toggle label .customize-control-title { .customize-control-kirki-toggle label .customize-control-title {
width: calc(100% - 55px); } width: calc(100% - 40px);
}
.customize-control-kirki-toggle label .description { .customize-control-kirki-toggle label .description {
order: 99; } order: 99;
}
.customize-control-kirki-toggle .switch { .customize-control-kirki-toggle .switch {
border: 1px solid #b4b9be; border: 1px solid #b4b9be;
display: inline-block; display: inline-block;
@ -597,7 +744,8 @@
top: 4px; top: 4px;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
transition: background 350ms ease; } transition: background 350ms ease;
}
.customize-control-kirki-toggle .switch:after, .customize-control-kirki-toggle .switch:before { .customize-control-kirki-toggle .switch:after, .customize-control-kirki-toggle .switch:before {
content: ""; content: "";
display: block; display: block;
@ -607,36 +755,46 @@
position: absolute; position: absolute;
top: 50%; top: 50%;
left: -3px; left: -3px;
transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease; } transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease;
}
.customize-control-kirki-toggle .switch:before { .customize-control-kirki-toggle .switch:before {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
transform: translate3d(0, -50%, 0) scale(0); } transform: translate3d(0, -50%, 0) scale(0);
}
.customize-control-kirki-toggle .switch:after { .customize-control-kirki-toggle .switch:after {
background: #999; background: #999;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
transform: translate3d(0, -50%, 0); } transform: translate3d(0, -50%, 0);
}
.customize-control-kirki-toggle .switch:active:before { .customize-control-kirki-toggle .switch:active:before {
transform: translate3d(0, -50%, 0) scale(3); } transform: translate3d(0, -50%, 0) scale(3);
}
.customize-control-kirki-toggle input:checked + .switch:before { .customize-control-kirki-toggle input:checked + .switch:before {
background: rgba(0, 115, 170, 0.075); background: rgba(0, 115, 170, 0.075);
transform: translate3d(100%, -50%, 0) scale(1); } transform: translate3d(100%, -50%, 0) scale(1);
}
.customize-control-kirki-toggle input:checked + .switch:after { .customize-control-kirki-toggle input:checked + .switch:after {
background: #0073aa; background: #0073aa;
transform: translate3d(100%, -50%, 0); } transform: translate3d(100%, -50%, 0);
}
.customize-control-kirki-toggle input:checked + .switch:active:before { .customize-control-kirki-toggle input:checked + .switch:active:before {
background: rgba(0, 115, 170, 0.075); background: rgba(0, 115, 170, 0.075);
transform: translate3d(100%, -50%, 0) scale(3); } transform: translate3d(100%, -50%, 0) scale(3);
}
.customize-control-kirki-typography { .customize-control-kirki-typography {
position: relative; } position: relative;
}
.customize-control-kirki-typography .wrapper { .customize-control-kirki-typography .wrapper {
padding: 10px; padding: 10px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
border: 1px solid rgba(0, 0, 0, 0.1); } border: 1px solid rgba(0, 0, 0, 0.1);
}
.customize-control-kirki-typography .wrapper h5 { .customize-control-kirki-typography .wrapper h5 {
margin: 0.67em 0 0; } margin: 0.67em 0 0;
}
.customize-control-kirki-typography .wrapper .color, .customize-control-kirki-typography .wrapper .color,
.customize-control-kirki-typography .wrapper .font-backup, .customize-control-kirki-typography .wrapper .font-backup,
.customize-control-kirki-typography .wrapper .font-family, .customize-control-kirki-typography .wrapper .font-family,
@ -650,26 +808,33 @@
.customize-control-kirki-typography .wrapper .variant { .customize-control-kirki-typography .wrapper .variant {
width: 100%; width: 100%;
float: none; float: none;
clear: both; } clear: both;
}
.customize-control-kirki-typography .wrapper .font-size, .customize-control-kirki-typography .wrapper .font-size,
.customize-control-kirki-typography .wrapper .letter-spacing, .customize-control-kirki-typography .wrapper .letter-spacing,
.customize-control-kirki-typography .wrapper .line-height, .customize-control-kirki-typography .wrapper .line-height,
.customize-control-kirki-typography .wrapper .margin-bottom, .customize-control-kirki-typography .wrapper .margin-bottom,
.customize-control-kirki-typography .wrapper .margin-top, .customize-control-kirki-typography .wrapper .margin-top,
.customize-control-kirki-typography .wrapper .text-transform { .customize-control-kirki-typography .wrapper .text-transform {
width: 48%; } width: 48%;
}
.customize-control-kirki-typography .wrapper .text-align .text-align-choices { .customize-control-kirki-typography .wrapper .text-align .text-align-choices {
display: flex; } display: flex;
}
.customize-control-kirki-typography .wrapper .text-align .text-align-choices label { .customize-control-kirki-typography .wrapper .text-align .text-align-choices label {
width: 100%; width: 100%;
padding: 5px; padding: 5px;
text-align: center; text-align: center;
border: 1px solid rgba(255, 255, 255, 0); } border: 1px solid rgba(255, 255, 255, 0);
}
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input { .customize-control-kirki-typography .wrapper .text-align .text-align-choices input {
display: none; } display: none;
}
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input:checked + label { .customize-control-kirki-typography .wrapper .text-align .text-align-choices input:checked + label {
border-color: #0085ba; } border-color: #0085ba;
}
.customize-control-kirki-typography .wrapper .color { .customize-control-kirki-typography .wrapper .color {
width: auto; } width: auto;
}
/*# sourceMappingURL=styles.css.map */ /*# sourceMappingURL=styles.css.map */

File diff suppressed because one or more lines are too long

View file

@ -7,7 +7,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -6,7 +6,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.12 * @since 3.0.12
*/ */

View file

@ -7,7 +7,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.26 * @since 3.0.26
*/ */

View file

@ -7,7 +7,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.6 * @since 2.2.6
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.23 * @since 3.0.23
*/ */

View file

@ -7,7 +7,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.4 * @since 2.2.4
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2 * @since 2.2
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.0 * @since 2.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.1 * @since 2.1
*/ */

View file

@ -6,7 +6,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.0 * @since 2.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.0 * @since 3.0.0
*/ */

View file

@ -7,7 +7,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.0 * @since 2.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -6,7 +6,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.0 * @since 2.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.23 * @since 3.0.23
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.0 * @since 2.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.34 * @since 3.0.34
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.27 * @since 3.0.27
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.0 * @since 3.0.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -6,7 +6,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.17 * @since 3.0.17
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -5,7 +5,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.9 * @since 3.0.9
*/ */

View file

@ -8,7 +8,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -7,7 +7,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -7,7 +7,7 @@
* @package Kirki * @package Kirki
* @category Core * @category Core
* @author Ari Stathopoulos (@aristath) * @author Ari Stathopoulos (@aristath)
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 1.0 * @since 1.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.0 * @since 3.0.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.3.2 * @since 2.3.2
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.3.2 * @since 2.3.2
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.36 * @since 3.0.36
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 3.0.0 * @since 3.0.0
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.3.2 * @since 2.3.2
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.3.2 * @since 2.3.2
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

View file

@ -4,7 +4,7 @@
* *
* @package Kirki * @package Kirki
* @subpackage Controls * @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries
* @license https://opensource.org/licenses/MIT * @license https://opensource.org/licenses/MIT
* @since 2.2.7 * @since 2.2.7
*/ */

Some files were not shown because too many files have changed in this diff Show more