first
@ -0,0 +1,57 @@
|
||||
jQuery(function($) {
|
||||
var autoCompleteEl = '#wpacu-search-form-assets-manager .search-field';
|
||||
|
||||
$(autoCompleteEl).autocomplete({
|
||||
source: function(request, response) {
|
||||
var wpacu_post_type;
|
||||
|
||||
if ($('#wpacu-custom-post-type-choice').length > 0) {
|
||||
// Custom Post Type
|
||||
wpacu_post_type = $('#wpacu-custom-post-type-choice').val();
|
||||
} else {
|
||||
// Post, Page or Attachment
|
||||
wpacu_post_type = wpacu_autocomplete_search_obj.post_type;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
dataType: 'json',
|
||||
url: wpacu_autocomplete_search_obj.ajax_url,
|
||||
cache: false,
|
||||
data: {
|
||||
wpacu_term: request.term,
|
||||
wpacu_post_type: wpacu_post_type,
|
||||
action: wpacu_autocomplete_search_obj.ajax_action,
|
||||
wpacu_security: wpacu_autocomplete_search_obj.ajax_nonce,
|
||||
wpacu_time: new Date().getTime()
|
||||
},
|
||||
success: function(data) {
|
||||
$('#wpacu-search-form-assets-manager-no-results').hide(); // in case it was ever shown
|
||||
response(data);
|
||||
console.log(data);
|
||||
},
|
||||
complete: function(jqXHR, textStatus) {
|
||||
if (jqXHR.responseText == 'no_results') {
|
||||
var noResultsArray = new Object();
|
||||
$('#wpacu-search-form-assets-manager-no-results').show();
|
||||
response(noResultsArray);
|
||||
//$(autoCompleteEl).val('');
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
select: function(event, ui) {
|
||||
$('#wpacu-search-form-assets-manager').hide();
|
||||
$('#wpacu-post-chosen-loading-assets').show();
|
||||
//console.log(ui.item.id);
|
||||
|
||||
window.location.href = wpacu_autocomplete_search_obj.redirect_to.replace('=post_id_here', '=' + ui.item.id);
|
||||
},
|
||||
close: function(el) {
|
||||
el.target.value = '';
|
||||
}
|
||||
}).data("ui-autocomplete")._renderItem = function (ul, item) {
|
||||
return $( "<li>" )
|
||||
.append( "<div>" + item.label + "<span style='display:block;color:green;font-size:11px;'>"+ item.link +"</span></div>" )
|
||||
.appendTo( ul );
|
||||
};
|
||||
});
|
1
wp-content/plugins/wp-asset-clean-up/assets/auto-complete/main.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
jQuery(function(e){e("#wpacu-search-form-assets-manager .search-field").autocomplete({source:function(a,o){var t;t=e("#wpacu-custom-post-type-choice").length>0?e("#wpacu-custom-post-type-choice").val():wpacu_autocomplete_search_obj.post_type,e.ajax({dataType:"json",url:wpacu_autocomplete_search_obj.ajax_url,cache:!1,data:{wpacu_term:a.term,wpacu_post_type:t,action:wpacu_autocomplete_search_obj.ajax_action,wpacu_security:wpacu_autocomplete_search_obj.ajax_nonce,wpacu_time:(new Date).getTime()},success:function(a){e("#wpacu-search-form-assets-manager-no-results").hide(),o(a),console.log(a)},complete:function(a,t){if("no_results"==a.responseText){var c=new Object;e("#wpacu-search-form-assets-manager-no-results").show(),o(c)}}})},select:function(a,o){e("#wpacu-search-form-assets-manager").hide(),e("#wpacu-post-chosen-loading-assets").show(),window.location.href=wpacu_autocomplete_search_obj.redirect_to.replace("=post_id_here","="+o.item.id)},close:function(e){e.target.value=""}}).data("ui-autocomplete")._renderItem=function(a,o){return e("<li>").append("<div>"+o.label+"<span style='display:block;color:green;font-size:11px;'>"+o.link+"</span></div>").appendTo(a)}});
|
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 562 B |
496
wp-content/plugins/wp-asset-clean-up/assets/chosen/chosen.css
Normal file
@ -0,0 +1,496 @@
|
||||
/*!
|
||||
Chosen, a Select Box Enhancer for jQuery and Prototype
|
||||
by Patrick Filler for Harvest, http://getharvest.com
|
||||
|
||||
Version 1.8.7
|
||||
Full source at https://github.com/harvesthq/chosen
|
||||
Copyright (c) 2011-2018 Harvest http://getharvest.com
|
||||
|
||||
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
|
||||
This file is generated by `grunt build`, do not edit it by hand.
|
||||
*/
|
||||
|
||||
/* @group Base */
|
||||
.chosen-container {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-size: 13px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.chosen-container * {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-drop {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
z-index: 1010;
|
||||
width: 100%;
|
||||
border: 1px solid #aaa;
|
||||
border-top: 0;
|
||||
background: #fff;
|
||||
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||||
clip: rect(0, 0, 0, 0);
|
||||
-webkit-clip-path: inset(100% 100%);
|
||||
clip-path: inset(100% 100%);
|
||||
}
|
||||
|
||||
.chosen-container.chosen-with-drop .chosen-drop {
|
||||
clip: auto;
|
||||
-webkit-clip-path: none;
|
||||
clip-path: none;
|
||||
}
|
||||
|
||||
.chosen-container a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
|
||||
margin-right: 4px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: normal;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
|
||||
content: ":";
|
||||
padding-left: 2px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Single Chosen */
|
||||
.chosen-container-single .chosen-single {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
padding: 0 0 0 8px;
|
||||
height: 25px;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 5px;
|
||||
background-color: #fff;
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
|
||||
background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
|
||||
background-clip: padding-box;
|
||||
-webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
color: #444;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-default {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single span {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin-right: 26px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single-with-deselect span {
|
||||
margin-right: 38px;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single abbr {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 26px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: url("chosen-sprite.png") -42px 1px no-repeat;
|
||||
font-size: 1px;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
|
||||
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single div b {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: url("chosen-sprite.png") no-repeat 0px 2px;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-search {
|
||||
position: relative;
|
||||
z-index: 1010;
|
||||
margin: 0;
|
||||
padding: 3px 4px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-search input[type="text"] {
|
||||
margin: 1px 0;
|
||||
padding: 4px 20px 4px 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
outline: 0;
|
||||
border: 1px solid #aaa;
|
||||
background: url("chosen-sprite.png") no-repeat 100% -20px;
|
||||
font-size: 1em;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-drop {
|
||||
margin-top: -1px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
|
||||
position: absolute;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
-webkit-clip-path: inset(100% 100%);
|
||||
clip-path: inset(100% 100%);
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Results */
|
||||
.chosen-container .chosen-results {
|
||||
color: #444;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
margin: 0 4px 4px 0;
|
||||
padding: 0 0 0 4px;
|
||||
max-height: 240px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li {
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 5px 6px;
|
||||
list-style: none;
|
||||
line-height: 15px;
|
||||
word-wrap: break-word;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.active-result {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.disabled-result {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.highlighted {
|
||||
background-color: #3875d7;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
|
||||
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.no-results {
|
||||
color: #777;
|
||||
display: list-item;
|
||||
background: #f4f4f4;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.group-result {
|
||||
display: list-item;
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.group-option {
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li em {
|
||||
font-style: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Multi Chosen */
|
||||
.chosen-container-multi .chosen-choices {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border: 1px solid #aaa;
|
||||
background-color: #fff;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
|
||||
background-image: linear-gradient(#eee 1%, #fff 15%);
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-field {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
|
||||
margin: 1px 0;
|
||||
padding: 0;
|
||||
height: 25px;
|
||||
outline: 0;
|
||||
border: 0 !important;
|
||||
background: transparent !important;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
color: #999;
|
||||
font-size: 100%;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice {
|
||||
position: relative;
|
||||
margin: 3px 5px 3px 0;
|
||||
padding: 3px 20px 3px 5px;
|
||||
border: 1px solid #aaa;
|
||||
max-width: 100%;
|
||||
border-radius: 3px;
|
||||
background-color: #eeeeee;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
|
||||
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
||||
background-size: 100% 19px;
|
||||
background-repeat: repeat-x;
|
||||
background-clip: padding-box;
|
||||
-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
|
||||
color: #333;
|
||||
line-height: 13px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice span {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 3px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: url("chosen-sprite.png") -42px 1px no-repeat;
|
||||
font-size: 1px;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice-disabled {
|
||||
padding-right: 5px;
|
||||
border: 1px solid #ccc;
|
||||
background-color: #e4e4e4;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
|
||||
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice-focus {
|
||||
background: #d4d4d4;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-results {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-drop .result-selected {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Active */
|
||||
.chosen-container-active .chosen-single {
|
||||
border: 1px solid #5897fb;
|
||||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.chosen-container-active.chosen-with-drop .chosen-single {
|
||||
border: 1px solid #aaa;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
|
||||
background-image: linear-gradient(#eee 20%, #fff 80%);
|
||||
-webkit-box-shadow: 0 1px 0 #fff inset;
|
||||
box-shadow: 0 1px 0 #fff inset;
|
||||
}
|
||||
|
||||
.chosen-container-active.chosen-with-drop .chosen-single div {
|
||||
border-left: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.chosen-container-active.chosen-with-drop .chosen-single div b {
|
||||
background-position: -18px 2px;
|
||||
}
|
||||
|
||||
.chosen-container-active .chosen-choices {
|
||||
border: 1px solid #5897fb;
|
||||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
|
||||
color: #222 !important;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Disabled Support */
|
||||
.chosen-disabled {
|
||||
opacity: 0.5 !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.chosen-disabled .chosen-single {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Right to Left */
|
||||
.chosen-rtl {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-single {
|
||||
overflow: visible;
|
||||
padding: 0 8px 0 0;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-single span {
|
||||
margin-right: 0;
|
||||
margin-left: 26px;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-single-with-deselect span {
|
||||
margin-left: 38px;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-single div {
|
||||
right: auto;
|
||||
left: 3px;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-single abbr {
|
||||
right: auto;
|
||||
left: 26px;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-choices li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-choices li.search-choice {
|
||||
margin: 3px 5px 3px 0;
|
||||
padding: 3px 5px 3px 19px;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
|
||||
right: auto;
|
||||
left: 4px;
|
||||
}
|
||||
|
||||
.chosen-rtl.chosen-container-single .chosen-results {
|
||||
margin: 0 0 4px 4px;
|
||||
padding: 0 4px 0 0;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-results li.group-option {
|
||||
padding-right: 15px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.chosen-rtl .chosen-search input[type="text"] {
|
||||
padding: 4px 5px 4px 20px;
|
||||
background: url("chosen-sprite.png") no-repeat -30px -20px;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.chosen-rtl.chosen-container-single .chosen-single div b {
|
||||
background-position: 6px 2px;
|
||||
}
|
||||
|
||||
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
|
||||
background-position: -12px 2px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Retina compatibility */
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
|
||||
.chosen-rtl .chosen-search input[type="text"],
|
||||
.chosen-container-single .chosen-single abbr,
|
||||
.chosen-container-single .chosen-single div b,
|
||||
.chosen-container-single .chosen-search input[type="text"],
|
||||
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
|
||||
.chosen-container .chosen-results-scroll-down span,
|
||||
.chosen-container .chosen-results-scroll-up span {
|
||||
background-image: url("chosen-sprite@2x.png") !important;
|
||||
background-size: 52px 37px !important;
|
||||
background-repeat: no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* @end */
|
1359
wp-content/plugins/wp-asset-clean-up/assets/chosen/chosen.jquery.js
Normal file
2
wp-content/plugins/wp-asset-clean-up/assets/chosen/chosen.jquery.min.js
vendored
Normal file
11
wp-content/plugins/wp-asset-clean-up/assets/chosen/chosen.min.css
vendored
Normal file
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,49 @@
|
||||
<svg class="lds-spinner" width="200px" height="200px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" style="background: none;"><g transform="rotate(0 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9166666666666666s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(30 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.8333333333333334s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(60 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.75s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(90 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.6666666666666666s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(120 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5833333333333334s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(150 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(180 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.4166666666666667s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(210 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.3333333333333333s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(240 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.25s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(270 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.16666666666666666s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(300 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.08333333333333333s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g><g transform="rotate(330 50 50)">
|
||||
<rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#007eb1">
|
||||
<animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"></animate>
|
||||
</rect>
|
||||
</g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"> <image id="image0" width="16" height="16" x="0" y="0"
|
||||
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJN
|
||||
AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAmVBMVEX////+/Pn71LP5wI/7
|
||||
zqj+9/L+8+r2mEf1jjX959X85dH83cL4qWb2lUL+/f372bv827L947/+/Pr+9vD4rW37vWT++fP1
|
||||
ii781Jr4qGT8w3P7zaf5voz6x5z94Lb81Z394731giD3o1v7v2r7rkD2kz/3pmH4qWf4rWz4sHL6
|
||||
wJD+9/H94778yH37s032lUL96cz7tE7////3kCn2AAAAIXRSTlMACFiCZhAa1OgyNkiy2gRQkFgI
|
||||
FKrQEvCItLxohoaGhlp839kJAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+QJDA8xJhnL648AAABeSURB
|
||||
VBjTY2CgGmBkYmZhReKzsSsqKnJwwrhc3DyKIMDLB+HzK8KAgKAQkC8sAuMrKauIijFwiSsqqiqp
|
||||
qWtoamnr6OpJMEjCNegbGKqoSDFIy8CArJy8vLwCNTwBAOyoCt8+ouIQAAAAJXRFWHRkYXRlOmNy
|
||||
ZWF0ZQAyMDIwLTA5LTEyVDE1OjQ5OjM4KzAzOjAwseD5SAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAy
|
||||
MC0wOS0xMlQxNTo0OTozOCswMzowMMC9QfQAAAAASUVORK5CYII=" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="256px"
|
||||
height="256px" viewBox="0 0 256 256" style="enable-background:new 0 0 256 256;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);stroke:#2064A9;stroke-miterlimit:10;}
|
||||
.st1{fill:url(#SVGID_2_);fill-opacity:0.95;}
|
||||
.st2{fill:#FFB700;fill-opacity:0.95;}
|
||||
.st3{filter:url(#AI_GaussianBlur_4);}
|
||||
.st4{fill:#FFFFA6;}
|
||||
.st5{fill:url(#SVGID_3_);fill-opacity:0.95;}
|
||||
</style>
|
||||
<filter id="AI_GaussianBlur_4">
|
||||
<feGaussianBlur stdDeviation="4"></feGaussianBlur>
|
||||
</filter>
|
||||
<g id="the_e">
|
||||
|
||||
<radialGradient id="SVGID_1_" cx="143.5159" cy="115.7612" r="104.4259" fx="138.9545" fy="113.5903" gradientTransform="matrix(0.6237 0.7816 -0.7859 0.6271 144.9713 -69.0107)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#89EAFE"/>
|
||||
<stop offset="0.2624" style="stop-color:#86E8FD"/>
|
||||
<stop offset="0.4357" style="stop-color:#7DDFF9"/>
|
||||
<stop offset="0.5832" style="stop-color:#6ED2F2"/>
|
||||
<stop offset="0.7163" style="stop-color:#59BEE9"/>
|
||||
<stop offset="0.8397" style="stop-color:#3EA5DD"/>
|
||||
<stop offset="0.9544" style="stop-color:#1C87CF"/>
|
||||
<stop offset="1" style="stop-color:#0D79C8"/>
|
||||
</radialGradient>
|
||||
<path class="st0" d="M100.5,117.8c2.6-23.3,21-42,43.9-42c25.7,0,43.4,18,45,42H100.5z M184.7,167c-6.5,13.4-20,22.1-40.4,22.6
|
||||
c-28.3,0.7-43.2-23.4-43.9-44.1h84h4.9h56.9c0.5-4.2,0.8-8.4,0.8-12.8c0-56.4-45.7-102.1-102.1-102.1
|
||||
c-56.4,0-102.1,45.7-102.1,102.1s45.7,102.1,102.1,102.1c44.4,0,82.1-28.3,96.2-67.8H184.7z"/>
|
||||
</g>
|
||||
<g id="halo">
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="237.8817" y1="64.2799" x2="234.5647" y2="79.6944">
|
||||
<stop offset="0" style="stop-color:#FFB700"/>
|
||||
<stop offset="0.8599" style="stop-color:#FFB700;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M235.5,63.7c-0.8,3.1-1.6,5.8-2.1,8.1c-0.4,1.8-0.6,7.1-0.6,7.1s3.8-2.4,4.7-3.6c0.8-1.1,1.9-5.8,2.9-10.5
|
||||
L235.5,63.7z"/>
|
||||
<path class="st2" d="M240.6,65c0.7-3.1,1.3-6.3,1.6-8.5c1.3-8.1,4-51.3-53.7-39C111.1,33.9,68.3,94.6,61.5,103
|
||||
c-12.9,16-51.3,77.8-41.2,115.8c5.9,22.2,29.5,22.1,46.7,18.6l-1.2-6.1c-29.2,4.7-33.6-17.5-29.6-34.8
|
||||
c4.9-21.6,20.8-57.1,72.2-107.1c45.6-44.4,94-69.2,119.2-56.9c13.4,6.5,10.8,20.6,7.9,31.4L240.6,65z"/>
|
||||
<g class="st3">
|
||||
<path class="st4" d="M188.5,17.5C111.1,33.9,68.3,94.6,61.5,103c-8.1,10-26.1,38-36,66.8c-0.6,2.3-1.3,4.6-2.1,6.6c0,0,0,0,0,0
|
||||
C55.2,94.9,134.2,37.2,191.6,16.9C190.6,17.1,189.5,17.3,188.5,17.5z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="66.431" y1="235.1271" x2="87.9329" y2="226.4992">
|
||||
<stop offset="0" style="stop-color:#FFB700"/>
|
||||
<stop offset="1" style="stop-color:#FFB700;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path class="st5" d="M67,237.3c9.4-2,17.1-5,18.8-5.9c1.6-0.9,7.1-3.9,12.1-6.9l-4.4-2.5c-2.4,0.9-5.2,2-8.3,3.3
|
||||
c-7.3,3-13.9,4.9-19.4,5.7L67,237.3z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" ?><svg height="32px" version="1.1" viewBox="0 0 32 32" width="32px" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" xmlns:xlink="http://www.w3.org/1999/xlink"><title/><desc/><defs/><g fill="none" fill-rule="evenodd" id="Page-1" stroke="none" stroke-width="1"><g fill="#157EFB" id="icon-114-lock"><path d="M16,21.9146472 L16,24.5089948 C16,24.7801695 16.2319336,25 16.5,25 C16.7761424,25 17,24.7721195 17,24.5089948 L17,21.9146472 C17.5825962,21.708729 18,21.1531095 18,20.5 C18,19.6715728 17.3284272,19 16.5,19 C15.6715728,19 15,19.6715728 15,20.5 C15,21.1531095 15.4174038,21.708729 16,21.9146472 L16,21.9146472 Z M9,14.0000125 L9,10.499235 C9,6.35670485 12.3578644,3 16.5,3 C20.6337072,3 24,6.35752188 24,10.499235 L24,14.0000125 C25.6591471,14.0047488 27,15.3503174 27,17.0094776 L27,26.9905224 C27,28.6633689 25.6529197,30 23.991212,30 L9.00878799,30 C7.34559019,30 6,28.652611 6,26.9905224 L6,17.0094776 C6,15.339581 7.34233349,14.0047152 9,14.0000125 L9,14.0000125 L9,14.0000125 Z M12,14 L12,10.5008537 C12,8.0092478 14.0147186,6 16.5,6 C18.9802243,6 21,8.01510082 21,10.5008537 L21,14 L12,14 L12,14 L12,14 Z" id="lock"/></g></g></svg>
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 50 50" height="50px" id="Layer_1" version="1.1" viewBox="0 0 50 50" width="50px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><rect fill="none" height="50" width="50"/><path d="M18,47c-1.104,0-2-0.896-2-2 V23c0-1.104,0.896-2,2-2h28c1.104,0,2,0.896,2,2v22c0,1.104-0.896,2-2,2H18z" fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M42,21c0-1.045,0-5.955,0-7 c0-5.523-4.477-10-10-10S22,8.477,22,14c0,1.045,0,5.955,0,7" fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/><path d="M35,32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222V37c0,1.104,0.896,2,2,2s2-0.896,2-2v-2.778 C34.609,33.673,35,32.885,35,32z"/></svg>
|
After Width: | Height: | Size: 932 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M21.533 18.002L33.768 5.768c.976-.976.976-2.559 0-3.535-.977-.977-2.559-.977-3.535 0L17.998 14.467 5.764 2.233c-.976-.977-2.56-.977-3.535 0-.977.976-.977 2.559 0 3.535l12.234 12.234L2.201 30.265c-.977.977-.977 2.559 0 3.535.488.488 1.128.732 1.768.732s1.28-.244 1.768-.732l12.262-12.263 12.234 12.234c.488.488 1.128.732 1.768.732.64 0 1.279-.244 1.768-.732.976-.977.976-2.559 0-3.535L21.533 18.002z"/></svg>
|
After Width: | Height: | Size: 491 B |
@ -0,0 +1 @@
|
||||
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M14.83 4.89l1.34.94-5.81 8.38H9.02L5.78 9.67l1.34-1.25 2.57 2.4z' fill='#cc0000'/></svg>
|
After Width: | Height: | Size: 157 B |
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: transparent; display: block; shape-rendering: auto;" width="180px" height="40px" viewBox="40 41 20 18" preserveAspectRatio="xMidYMid">
|
||||
<g transform="translate(20 50)">
|
||||
<circle cx="0" cy="0" r="6" fill="#064565">
|
||||
<animateTransform attributeName="transform" type="scale" begin="-0.375s" calcMode="spline" keySplines="0.3 0 0.7 1;0.3 0 0.7 1" values="0;1;0" keyTimes="0;0.5;1" dur="1s" repeatCount="indefinite"></animateTransform>
|
||||
</circle>
|
||||
</g><g transform="translate(40 50)">
|
||||
<circle cx="0" cy="0" r="6" fill="#0f6481">
|
||||
<animateTransform attributeName="transform" type="scale" begin="-0.25s" calcMode="spline" keySplines="0.3 0 0.7 1;0.3 0 0.7 1" values="0;1;0" keyTimes="0;0.5;1" dur="1s" repeatCount="indefinite"></animateTransform>
|
||||
</circle>
|
||||
</g><g transform="translate(60 50)">
|
||||
<circle cx="0" cy="0" r="6" fill="#1f8d9b">
|
||||
<animateTransform attributeName="transform" type="scale" begin="-0.125s" calcMode="spline" keySplines="0.3 0 0.7 1;0.3 0 0.7 1" values="0;1;0" keyTimes="0;0.5;1" dur="1s" repeatCount="indefinite"></animateTransform>
|
||||
</circle>
|
||||
</g><g transform="translate(80 50)">
|
||||
<circle cx="0" cy="0" r="6" fill="#4fa5a6">
|
||||
<animateTransform attributeName="transform" type="scale" begin="0s" calcMode="spline" keySplines="0.3 0 0.7 1;0.3 0 0.7 1" values="0;1;0" keyTimes="0;0.5;1" dur="1s" repeatCount="indefinite"></animateTransform>
|
||||
</circle>
|
||||
</g>
|
||||
<!-- [ldio] generated by https://loading.io/ --></svg>
|
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 4.5 KiB |
@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 256 256"><defs><style>.cls-1{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="3.74" y1="252.26" x2="252.26" y2="3.74" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#2e2975"/><stop offset="1" stop-color="#f2295b"/></linearGradient></defs><title>elementor-gradient-256px</title><path class="cls-1" d="M243.24,0H12.76A12.76,12.76,0,0,0,0,12.76V243.24A12.76,12.76,0,0,0,12.76,256H243.24A12.76,12.76,0,0,0,256,243.24V12.76A12.76,12.76,0,0,0,243.24,0ZM93.87,184.89H71.11V71.11H93.87V184.89Zm91,0H116.62V162.13h68.27v22.76Zm0-45.51H116.62V116.62h68.27v22.76Zm0-45.51H116.62V71.11h68.27V93.87Z" transform="translate(0 0)"/></svg>
|
After Width: | Height: | Size: 792 B |
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="248px" height="279px" viewBox="0 0 248 279" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>GF Blue Fill Logo</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="GF-Stroke-Logo" transform="translate(-727.000000, -134.000000)">
|
||||
<g id="GF-Blue-Fill-Logo" transform="translate(727.000000, 134.000000)">
|
||||
<path d="M223.492735,58.6304269 L147.95484,14.9305838 C141.399754,11.1848206 132.659848,9 123.919942,9 C115.179724,9 106.439817,11.1848206 99.8850437,14.9305838 L24.0345862,58.6304269 C10.6127878,66.7458313 0,84.5378947 0,100.145137 L0,187.856763 C0,203.463693 10.3005369,221.568008 24.0345862,229.371473 L99.8850437,273.071316 C106.439817,276.816767 115.179724,279.0019 123.919942,279.0019 C132.659848,279.0019 141.399754,276.816767 147.95484,273.071316 L223.804985,229.371473 C237.227096,221.255757 247.839884,203.463693 247.839884,187.856763 L247.839884,100.145137 C247.839884,84.2259557 237.539035,66.4338923 223.492735,58.6304269 Z" id="stroke-F-Copy" fill="#375767"></path>
|
||||
<path d="M95.6646347,129.3158 L191.026345,129.3158 L191.026345,105 L95.8647747,105 C83.5568047,105 73.2501347,109.3028 65.2449547,117.6082 C46.4327747,137.7212 49.1345247,175.5457 49.1345247,177.1467 L50.0351147,188.354 L190.025745,188.354 L190.025745,151.1299 L165.609945,151.1299 L165.609945,164.1383 L73.7504547,164.1383 C74.2507847,156.1331 76.2520747,141.9239 83.2566147,134.5191 C86.3586147,130.9168 90.2611447,129.3158 95.6646347,129.3158 Z" id="Fill-21" fill="#E7E9EB"></path>
|
||||
<path d="M225.670882,16.3598934 L200.770997,1.95492412 C198.610216,0.720191908 195.729242,0 192.848269,0 C189.967193,0 187.08622,0.720191908 184.925541,1.95492412 L159.922625,16.3598934 C155.498339,19.0350094 152,24.8998846 152,30.0445679 L152,58.9573321 C152,64.1019126 155.395411,70.0697164 159.922625,72.6420066 L184.925541,87.0469759 C187.08622,88.2816053 189.967193,89.0019 192.848269,89.0019 C195.729242,89.0019 198.610216,88.2816053 200.770997,87.0469759 L225.77381,72.6420066 C230.198199,69.9667878 233.696538,64.1019126 233.696538,58.9573321 L233.696538,30.0445679 C233.696538,24.7970588 230.301025,18.9321836 225.670882,16.3598934 Z" id="stroke-F" fill="#E7E9EB"></path>
|
||||
<path d="M178.179283,56.2747335 C178.079741,57.3692984 177.383146,57.8669093 176.288581,57.8669093 L172.407833,57.8669093 C171.313268,57.8669093 170.915199,57.3692984 171.014741,56.2747335 L173.701482,39.0600231 C174.49752,34.08471 177.084619,31 182.955612,31 L214.200781,31 C215.295345,31 215.693414,31.4975114 215.593872,32.5920763 L215.096361,35.6767863 C214.996819,36.7713512 214.300323,37.2689621 213.205758,37.2689621 L183.851192,37.2689621 C181.960489,37.2689621 180.865925,38.2639849 180.567398,40.0551453 L180.368413,41.8462063 L208.628414,41.8462063 C209.722979,41.8462063 210.120948,42.3438172 209.921964,43.4383821 L209.424452,46.5230921 C209.32491,47.617657 208.628414,48.1151684 207.533849,48.1151684 L179.273848,48.1151684 L178.179283,56.2747335 Z" id="Path" fill="#375767"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 535 B |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 250 B |
@ -0,0 +1,30 @@
|
||||
<svg width="78" height="78" viewBox="0 0 78 78" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>logo</title>
|
||||
<desc>Created using Figma</desc>
|
||||
<g id="Canvas" transform="translate(9211 -1154)">
|
||||
<g id="logo">
|
||||
<g id="Dark">
|
||||
<g id="M/opacity">
|
||||
<g id="Vector">
|
||||
<use xlink:href="#path0_fill" transform="translate(-9211 1154)" fill="url(#paint0_linear)"/>
|
||||
</g>
|
||||
<g id="Vector" opacity="0.5">
|
||||
<use xlink:href="#path1_fill" transform="translate(-9172 1154)" fill="url(#paint1_linear)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.38804e-15 77.998 -38.9997 4.776e-15 38.9997 -4.776e-15)">
|
||||
<stop offset="0.00552486" stop-color="#BC7FFF"/>
|
||||
<stop offset="1" stop-color="#6CA6D7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.38804e-15 77.998 -38.9997 4.776e-15 38.9997 -4.776e-15)">
|
||||
<stop offset="0.00552486" stop-color="#BC7FFF"/>
|
||||
<stop offset="1" stop-color="#6CA6D7"/>
|
||||
</linearGradient>
|
||||
<path id="path0_fill" d="M 38.9997 77.998L 38.9997 67.0614L 30.3201 58.3819L 38.9997 49.702L 38.9997 38.7653L 24.8514 52.9137L 10.9369 38.999L 38.9997 10.9363L 38.9997 -9.16485e-12L 0 38.999L 38.9997 77.998Z"/>
|
||||
<path id="path1_fill" d="M 6.00638e-07 10.9367L 28.0628 38.9994L 14.1483 52.9137L 6.00638e-07 38.7661L 6.00638e-07 49.7024L 8.68004 58.3823L 6.00638e-07 67.0618L 6.00638e-07 77.998L 19.6165 58.3823L 38.9997 38.9994L 6.00638e-07 0L 6.00638e-07 10.9367Z"/>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 932 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,10 @@
|
||||
<svg viewBox="0 0 314 314" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g stroke="none" stroke-width="1" fill-rule="evenodd">
|
||||
<g transform="translate(-465.000000, -660.000000)">
|
||||
<g transform="translate(465.000000, 660.000000)">
|
||||
<polygon points="92.2385914 87 123.226879 87 157.525701 139.018555 192.196599 87.0859375 221.951847 87.0859375 174.820623 156.598633 223.402654 227.489258 191.967905 227.489258 157.755193 175.689453 122.392888 227.351562 91 227.351562 140.283513 156.523438"></polygon>
|
||||
<path d="M157,314 C70.2912943,314 0,243.708706 0,157 C0,70.2912943 70.2912943,0 157,0 C243.708706,0 314,70.2912943 314,157 C314,243.708706 243.708706,314 157,314 Z M157,291 C231.006156,291 291,231.006156 291,157 C291,82.9938435 231.006156,23 157,23 C82.9938435,23 23,82.9938435 23,157 C23,231.006156 82.9938435,291 157,291 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 981 B |
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="1200px" height="1200px" viewBox="0 0 1200 1200" enable-background="new 0 0 1200 1200" xml:space="preserve">
|
||||
<path fill="#9B5C8F" d="M131.729,257.729h936.074c59.242,0,107.197,47.954,107.197,107.197v357.313
|
||||
c0,59.243-47.955,107.196-107.197,107.196H732.115l46.077,112.836l-202.64-112.836H132.196
|
||||
c-59.238,0-107.193-47.953-107.193-107.196V364.926C24.531,306.155,72.481,257.729,131.729,257.729z"/>
|
||||
<path fill="#FFFFFF" d="M90.486,355.434c6.545-8.886,16.359-13.558,29.451-14.491c23.845-1.874,37.401,9.344,40.672,33.654
|
||||
c14.492,97.705,30.385,180.452,47.213,248.234l102.377-194.939c9.353-17.767,21.041-27.114,35.064-28.049
|
||||
c20.57-1.4,33.188,11.686,38.332,39.267c11.689,62.172,26.648,115,44.41,159.877c12.156-118.737,32.727-204.287,61.709-257.11
|
||||
c7.008-13.09,17.295-19.635,30.854-20.574c10.754-0.93,20.568,2.34,29.449,9.354c8.882,7.012,13.559,15.893,14.492,26.646
|
||||
c0.467,8.414-0.934,15.426-4.672,22.438c-18.234,33.66-33.197,90.226-45.349,168.758c-11.686,76.201-15.895,135.575-13.09,178.116
|
||||
c0.938,11.679-0.935,21.967-5.606,30.852c-5.615,10.283-14.025,15.895-24.779,16.828c-12.154,0.935-24.773-4.672-36.93-17.295
|
||||
c-43.475-44.414-78.07-110.795-103.313-199.148c-30.39,59.837-52.827,104.714-67.319,134.632
|
||||
c-27.582,52.827-50.955,79.941-70.59,81.345c-12.623,0.934-23.373-9.82-32.722-32.254c-23.84-61.242-49.553-179.519-77.131-354.821
|
||||
C81.137,374.598,83.939,363.843,90.486,355.434L90.486,355.434z M1095.102,428.827c-16.827-29.451-41.605-47.213-74.795-54.229
|
||||
c-8.886-1.869-17.295-2.803-25.246-2.803c-44.877,0-81.341,23.373-109.856,70.123c-24.312,39.733-36.463,83.676-36.463,131.828
|
||||
c0,35.996,7.479,66.848,22.438,92.561c16.827,29.451,41.605,47.215,74.795,54.227c8.881,1.874,17.294,2.808,25.245,2.808
|
||||
c45.345,0,81.809-23.373,109.857-70.123c24.307-40.205,36.463-84.146,36.463-132.295
|
||||
C1118.007,484.458,1110.061,454.069,1095.102,428.827z M1036.2,558.319c-6.546,30.852-18.234,53.758-35.534,69.185
|
||||
c-13.552,12.155-26.176,17.295-37.859,14.959c-11.222-2.336-20.574-12.151-27.582-30.386c-5.615-14.491-8.414-28.983-8.414-42.541
|
||||
c0-11.686,0.936-23.373,3.271-34.123c4.209-19.168,12.155-37.869,24.773-55.631c15.431-22.911,31.791-32.254,48.619-28.984
|
||||
c11.223,2.336,20.574,12.156,27.582,30.385c5.61,14.492,8.413,28.984,8.413,42.541c0,12.156-0.935,23.841-3.27,34.591V558.319z
|
||||
M802.458,428.827c-16.828-29.45-42.074-47.213-74.795-54.229c-8.881-1.869-17.295-2.803-25.246-2.803
|
||||
c-44.877,0-81.34,23.373-109.857,70.123c-24.307,39.733-36.463,83.676-36.463,131.828c0,35.996,7.48,66.848,22.439,92.561
|
||||
c16.828,29.451,41.606,47.215,74.795,54.227c8.885,1.874,17.294,2.808,25.246,2.808c45.344,0,81.807-23.373,109.855-70.123
|
||||
c24.313-40.205,36.463-84.146,36.463-132.295C824.896,484.458,817.417,454.069,802.458,428.827L802.458,428.827z M743.089,558.319
|
||||
c-6.545,30.852-18.233,53.758-35.528,69.185c-13.558,12.155-26.181,17.295-37.868,14.959c-11.218-2.336-20.565-12.151-27.582-30.386
|
||||
c-5.606-14.491-8.409-28.983-8.409-42.541c0-11.686,0.935-23.373,3.27-34.123c4.21-19.168,12.156-37.869,24.779-55.631
|
||||
c15.427-22.911,31.787-32.254,48.614-28.984c11.222,2.336,20.573,12.156,27.582,30.385c5.614,14.492,8.414,28.984,8.414,42.541
|
||||
c0.472,12.156-0.935,23.841-3.271,34.591V558.319z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 336 KiB |
1594
wp-content/plugins/wp-asset-clean-up/assets/script.js
Normal file
1
wp-content/plugins/wp-asset-clean-up/assets/script.min.js
vendored
Normal file
4936
wp-content/plugins/wp-asset-clean-up/assets/style.css
Normal file
1
wp-content/plugins/wp-asset-clean-up/assets/style.min.css
vendored
Normal file
1628
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/CHANGELOG.md
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Tristan Edwards & Limon Monte
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
@ -0,0 +1,263 @@
|
||||
<p align="center">
|
||||
<a href="https://github.com/sponsors/limonte">[= Become the :trophy: Ultimate Sponsor of SweetAlert2 and place your banner here (100K+ unique visitors per month) =]</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://sweetalert2.github.io/">
|
||||
<img src="/assets/swal2-logo.png" alt="SweetAlert2">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
A beautiful, responsive, customizable, accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies.
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://sweetalert2.github.io/">
|
||||
<img src="https://raw.github.com/sweetalert2/sweetalert2/master/assets/sweetalert2.gif" width="562"><br>
|
||||
See SweetAlert2 in action ↗
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/sweetalert2/sweetalert2/actions"><img alt="Build Status" src="https://github.com/sweetalert2/sweetalert2/workflows/build/badge.svg"></a>
|
||||
<a href="https://codeclimate.com/github/sweetalert2/sweetalert2/test_coverage"><img alt="Coverage Status" src="https://api.codeclimate.com/v1/badges/eba34bb80477933854d4/test_coverage"></a>
|
||||
<a href="https://www.npmjs.com/package/sweetalert2"><img alt="Version" src="https://img.shields.io/npm/v/sweetalert2.svg"></a>
|
||||
<a href="https://www.jsdelivr.com/package/npm/sweetalert2"><img alt="jsdelivr" src="https://data.jsdelivr.com/v1/package/npm/sweetalert2/badge?style=rounded"></a>
|
||||
<a href="#support-and-donations"><img alt="Support Donate" src="https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=ea4aaa"></a>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
:shipit: The author of SweetAlert2 ([@limonte](https://github.com/limonte/)) is looking for short-term to medium-term working contracts in front-end, preferably OSS.
|
||||
|
||||
---
|
||||
|
||||
:point_right: **Upgrading from v9.x to v10.x?** [Read the release notes!](https://github.com/sweetalert2/sweetalert2/releases/tag/v10.0.0)
|
||||
<br>If you're upgrading from v8.x, please [upgrade from v8 to v9](https://github.com/sweetalert2/sweetalert2/releases/tag/v10.0.0) first!
|
||||
<br>If you're upgrading from v7.x, please [upgrade from v7 to v8](https://github.com/sweetalert2/sweetalert2/releases/tag/v8.0.0) first!
|
||||
<br>If you're upgrading from v6.x, please [upgrade from v6 to v7](https://github.com/sweetalert2/sweetalert2/releases/tag/v7.0.0) first!
|
||||
|
||||
:point_right: **Migrating from [SweetAlert](https://github.com/t4t5/sweetalert)?** [SweetAlert 1.x to SweetAlert2 migration guide](https://github.com/sweetalert2/sweetalert2/wiki/Migration-from-SweetAlert-to-SweetAlert2)
|
||||
|
||||
---
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
```sh
|
||||
npm install --save sweetalert2
|
||||
```
|
||||
|
||||
Or grab from [jsdelivr CDN](https://www.jsdelivr.com/package/npm/sweetalert2)
|
||||
:
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
|
||||
```
|
||||
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
```html
|
||||
<script src="sweetalert2/dist/sweetalert2.all.min.js"></script>
|
||||
|
||||
<!-- Include a polyfill for ES6 Promises (optional) for IE11 -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.js"></script>
|
||||
```
|
||||
|
||||
You can also include the stylesheet separately if desired:
|
||||
|
||||
```html
|
||||
<script src="sweetalert2/dist/sweetalert2.min.js"></script>
|
||||
<link rel="stylesheet" href="sweetalert2/dist/sweetalert2.min.css">
|
||||
```
|
||||
|
||||
Or:
|
||||
|
||||
```js
|
||||
// ES6 Modules or TypeScript
|
||||
import Swal from 'sweetalert2'
|
||||
|
||||
// CommonJS
|
||||
const Swal = require('sweetalert2')
|
||||
```
|
||||
|
||||
Or with JS modules:
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="sweetalert2/dist/sweetalert2.css">
|
||||
|
||||
<script type="module">
|
||||
import Swal from 'sweetalert2/src/sweetalert2.js'
|
||||
</script>
|
||||
```
|
||||
|
||||
It's possible to import JS and CSS separately, e.g. if you need to customize styles:
|
||||
|
||||
```js
|
||||
import Swal from 'sweetalert2/dist/sweetalert2.js'
|
||||
|
||||
import 'sweetalert2/src/sweetalert2.scss'
|
||||
```
|
||||
|
||||
Please note that [TypeScript is well-supported](https://github.com/sweetalert2/sweetalert2/blob/master/sweetalert2.d.ts), so you don't have to install a third-party declaration file.
|
||||
|
||||
|
||||
Examples
|
||||
--------
|
||||
|
||||
The most basic message:
|
||||
|
||||
```js
|
||||
Swal.fire('Hello world!')
|
||||
```
|
||||
|
||||
A message signaling an error:
|
||||
|
||||
```js
|
||||
Swal.fire('Oops...', 'Something went wrong!', 'error')
|
||||
```
|
||||
|
||||
Handling the result of SweetAlert2 modal:
|
||||
|
||||
```js
|
||||
Swal.fire({
|
||||
title: 'Are you sure?',
|
||||
text: 'You will not be able to recover this imaginary file!',
|
||||
icon: 'warning',
|
||||
showCancelButton: true,
|
||||
confirmButtonText: 'Yes, delete it!',
|
||||
cancelButtonText: 'No, keep it'
|
||||
}).then((result) => {
|
||||
if (result.value) {
|
||||
Swal.fire(
|
||||
'Deleted!',
|
||||
'Your imaginary file has been deleted.',
|
||||
'success'
|
||||
)
|
||||
// For more information about handling dismissals please visit
|
||||
// https://sweetalert2.github.io/#handling-dismissals
|
||||
} else if (result.dismiss === Swal.DismissReason.cancel) {
|
||||
Swal.fire(
|
||||
'Cancelled',
|
||||
'Your imaginary file is safe :)',
|
||||
'error'
|
||||
)
|
||||
}
|
||||
})
|
||||
```
|
||||
|
||||
## [Go here to see the docs and more examples ↗](https://sweetalert2.github.io/)
|
||||
|
||||
|
||||
Browser compatibility
|
||||
---------------------
|
||||
|
||||
IE11* | Edge | Chrome | Firefox | Safari | Opera | UC Browser
|
||||
-------|------|--------|---------|--------|-------|------------
|
||||
:heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
||||
|
||||
\* ES6 Promise polyfill should be included, see [usage example](#usage).
|
||||
|
||||
Note that SweetAlert2 **does not** and **will not** provide support or functionality of any kind on IE10 and lower.
|
||||
|
||||
|
||||
|
||||
Themes ([`sweetalert2-themes ↗`](https://github.com/sweetalert2/sweetalert2-themes))
|
||||
------
|
||||
|
||||
- [`Dark`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/dark)
|
||||
- [`Minimal`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/minimal)
|
||||
- [`Borderless`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/borderless)
|
||||
- [`Bootstrap 4`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/bootstrap-4)
|
||||
- [`Material UI`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/material-ui)
|
||||
- [`WordPress Admin`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/wordpress-admin)
|
||||
- [`Bulma`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/bulma)
|
||||
- [`Default`](https://github.com/sweetalert2/sweetalert2-themes/tree/master/default)
|
||||
|
||||
|
||||
Related projects
|
||||
-------------------------
|
||||
|
||||
- [ngx-sweetalert2](https://github.com/sweetalert2/ngx-sweetalert2) - Angular 4+ integration
|
||||
- [sweetalert2-react-content](https://github.com/sweetalert2/sweetalert2-react-content) - React integration
|
||||
- [sweetalert2-webpack-demo](https://github.com/sweetalert2/sweetalert2-webpack-demo) - webpack demo
|
||||
- [sweetalert2-parcel-demo](https://github.com/sweetalert2/sweetalert2-parcel-demo) - overriding SCSS variables demo
|
||||
|
||||
|
||||
Related community projects
|
||||
-------------------------
|
||||
|
||||
- [avil13/vue-sweetalert2](https://github.com/avil13/vue-sweetalert2) - Vue.js wrapper
|
||||
- [realrashid/sweet-alert](https://github.com/realrashid/sweet-alert) - Laravel 5 Package
|
||||
- [Basaingeal/Razor.SweetAlert2](https://github.com/Basaingeal/Razor.SweetAlert2) - Blazor Wrapper
|
||||
- [ElectronAlert](https://electron.guide/electron-alert/) - SweetAlert2 for Electron applications (main process)
|
||||
|
||||
|
||||
Collaborators
|
||||
-------------
|
||||
|
||||
[](https://github.com/gverni) | [](https://github.com/zenflow) | [](https://github.com/toverux)
|
||||
-|-|-
|
||||
[@gverni](https://github.com/gverni) | [@zenflow](https://github.com/zenflow) | [@toverux](https://github.com/toverux)
|
||||
|
||||
|
||||
Contributing
|
||||
------------
|
||||
|
||||
[](https://codeclimate.com/github/sweetalert2/sweetalert2/maintainability)
|
||||
[](https://github.com/sweetalert2/sweetalert2/blob/master/CHANGELOG.md)
|
||||
|
||||
If you would like to contribute enhancements or fixes, please do the following:
|
||||
|
||||
1. Fork the `sweetalert2` repository and clone it locally.
|
||||
|
||||
2. Make sure you have [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/) installed.
|
||||
|
||||
3. When in the SweetAlert2 directory, run `npm install` or `yarn install` to install dependencies.
|
||||
|
||||
4. To begin active development, run `npm start` or `yarn start`. This does several things for you:
|
||||
- Builds the `dist` folder
|
||||
- Serves sandbox.html @ http://localhost:8080/ (browser-sync ui: http://localhost:8081/)
|
||||
- Re-builds and re-loads as necessary when files change
|
||||
|
||||
Big Thanks
|
||||
----------
|
||||
|
||||
- [Serena Verni (@serenaperora)](https://serena.verni.xyz) for creating the amazing project logo
|
||||
- [Sauce Labs](https://saucelabs.com/) for providing the reliable cross-browser testing platform
|
||||
|
||||
Sponsors
|
||||
--------
|
||||
|
||||
[<img src="https://sweetalert2.github.io/images/sponsors/flowcrypt-banner.png">](https://flowcrypt.com/?utm_source=sweetalert2&utm_medium=banner)
|
||||
|
||||
[<img src="https://sweetalert2.github.io/images/plus.png" width="80">](SPONSORS.md) | [<img src="https://avatars2.githubusercontent.com/u/28631236?s=80&v=4" width="80">](https://flowcrypt.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/brainbi.png" width="80">](https://www.brainbi.dev/) | [<img src="https://avatars0.githubusercontent.com/u/3986989?s=80&v=4" width="80">](https://github.com/tiagostutz)
|
||||
-|-|-|-
|
||||
[Become a sponsor](SPONSORS.md) | [FlowCrypt](https://flowcrypt.com/?utm_source=sweetalert2&utm_medium=logo) | [brainbi price monitoring](https://www.brainbi.dev/) | [Tiago de Oliveira Stutz](https://github.com/tiagostutz)
|
||||
|
||||
[<img src="https://sweetalert2.github.io/images/sponsors/zillathemes.jpg" width="80">](https://zillathemes.com/) | [<img src="https://sweetalert2.github.io/images/sponsors/sebaebc.png" width="80">](https://github.com/sebaebc) | [<img src="https://sweetalert2.github.io/images/sponsors/wp-reset.png" width="80">](https://wpreset.com/?utm_source=sweetalert2&utm_medium=logo)
|
||||
-|-|-
|
||||
[Zilla Themes](https://zillathemes.com/) | [SebaEBC](https://github.com/sebaebc) | [WP Reset](https://wpreset.com/?utm_source=sweetalert2&utm_medium=logo)
|
||||
|
||||
NSFW Sponsors
|
||||
-------------
|
||||
|
||||
[<img src="https://sweetalert2.github.io/images/sponsors/twerkingbutt.jpg" width="80">](https://twerkingbutt.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/sex-toy-education.png" width="80">](https://sextoyeducation.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/sextopedia.png" width="80">](https://sextopedia.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/my-sex-toy-guide.jpg" width="80">](https://www.mysextoyguide.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/best-blowjob-machines.jpg" width="80">](https://www.bestblowjobmachines.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/yourdoll.jpg" width="80">](https://www.yourdoll.com/?utm_source=sweetalert2&utm_medium=logo)
|
||||
-|-|-|-|-|-
|
||||
[Twerking Butt](https://twerkingbutt.com/?utm_source=sweetalert2&utm_medium=logo) | [STED](https://sextoyeducation.com/?utm_source=sweetalert2&utm_medium=logo) | [Sextopedia](https://sextopedia.com/?utm_source=sweetalert2&utm_medium=logo) | [My Sex Toy Guide](https://www.mysextoyguide.com/?utm_source=sweetalert2&utm_medium=logo) | [Best Blowjob Machines](https://www.bestblowjobmachines.com/?utm_source=sweetalert2&utm_medium=logo) | [YourDoll](https://www.yourdoll.com/?utm_source=sweetalert2&utm_medium=logo)
|
||||
|
||||
[<img src="https://sweetalert2.github.io/images/sponsors/celebjihad.png" width="80">](https://celebjihad.ltd/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/sextoycollective.jpg" width="80">](https://sextoycollective.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/bingato.png" width="80">](https://bingato.com/?utm_source=sweetalert2&utm_medium=logo) | [<img src="https://sweetalert2.github.io/images/sponsors/realsexdoll.png" width="80">](https://realsexdoll.com/?utm_source=sweetalert2&utm_medium=logo)| [<img src="https://sweetalert2.github.io/images/sponsors/doctorclimax.png" width="80">](https://doctorclimax.com/)
|
||||
-|-|-|-|-
|
||||
[Celebjihad](https://celebjihad.ltd/?utm_source=sweetalert2&utm_medium=logo) | [STC](https://sextoycollective.com/?utm_source=sweetalert2&utm_medium=logo) | [Bingato](https://bingato.com/?utm_source=sweetalert2&utm_medium=logo) | [RealSexDoll](https://realsexdoll.com/?utm_source=sweetalert2&utm_medium=logo) | [DoctorClimax](https://doctorclimax.com/)
|
||||
|
||||
Support and Donations
|
||||
---------------------
|
||||
|
||||
Has SweetAlert2 helped you create an amazing application? You can show your support via [GitHub Sponsors](https://github.com/sponsors/limonte)
|
||||
|
||||
Alternative ways for donations (PayPal, cryptocurrencies, etc.) are listed here: https://sweetalert2.github.io/#donations
|
||||
|
||||
### [Hall of Donators :trophy:](DONATIONS.md)
|
2
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/dist/sweetalert2.all.min.js
vendored
Normal file
1372
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/dist/sweetalert2.css
vendored
Normal file
3369
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/dist/sweetalert2.js
vendored
Normal file
1
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/dist/sweetalert2.min.css
vendored
Normal file
1
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/dist/sweetalert2.min.js
vendored
Normal file
@ -0,0 +1,162 @@
|
||||
{
|
||||
"_from": "sweetalert2",
|
||||
"_id": "sweetalert2@10.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-5cIPtYldmZ+EljMVRd5ml9xT72STU+N4kk57nO0oECQmjkCsJypAcEdL+h045otoAd3t9962FtewJYSKyJxOFQ==",
|
||||
"_location": "/sweetalert2",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"registry": true,
|
||||
"raw": "sweetalert2",
|
||||
"name": "sweetalert2",
|
||||
"escapedName": "sweetalert2",
|
||||
"rawSpec": "",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-10.6.1.tgz",
|
||||
"_shasum": "343d980858494bd0073ac8de9be57bf2365df316",
|
||||
"_spec": "sweetalert2",
|
||||
"_where": "/Applications/MAMP/htdocs/asset-optimizer",
|
||||
"author": {
|
||||
"name": "Limon Monte",
|
||||
"email": "limon.monte@gmail.com",
|
||||
"url": "https://limonte.github.io"
|
||||
},
|
||||
"browser": "dist/sweetalert2.all.js",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sweetalert2/sweetalert2/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"bundlewatch": {
|
||||
"files": [
|
||||
{
|
||||
"path": "dist/sweetalert2.all.min.js",
|
||||
"maxSize": "20kB"
|
||||
}
|
||||
]
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Giuseppe Verni",
|
||||
"url": "https://github.com/gverni"
|
||||
},
|
||||
{
|
||||
"name": "Matthew Francis Brunetti",
|
||||
"email": "zenflow87@gmail.com",
|
||||
"url": "https://github.com/zenflow"
|
||||
},
|
||||
{
|
||||
"name": "Morgan Touverey-Quilling",
|
||||
"email": "mtouverey@alembic-dev.com",
|
||||
"url": "https://github.com/toverux"
|
||||
},
|
||||
{
|
||||
"name": "Sam Turrell",
|
||||
"email": "sam@samturrell.co.uk",
|
||||
"url": "https://github.com/samturrell"
|
||||
},
|
||||
{
|
||||
"name": "Joseph Schultz",
|
||||
"url": "https://github.com/acupajoe"
|
||||
},
|
||||
{
|
||||
"name": "Johan Fagerberg",
|
||||
"url": "https://github.com/birjolaxew"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.2.2",
|
||||
"@babel/plugin-transform-object-assign": "^7.2.0",
|
||||
"@babel/preset-env": "^7.3.1",
|
||||
"@rollup/plugin-json": "^4.0.2",
|
||||
"@sweetalert2/eslint-config": "^1.0.0",
|
||||
"@sweetalert2/execute": "^1.0.0",
|
||||
"@sweetalert2/stylelint-config": "^1.1.5",
|
||||
"babel-loader": "^8.0.4",
|
||||
"babel-plugin-array-includes": "^2.0.3",
|
||||
"browser-sync": "^2.26.3",
|
||||
"custom-event-polyfill": "^1.0.6",
|
||||
"eslint": "^7.0.0",
|
||||
"eslint-plugin-cypress": "^2.8.1",
|
||||
"gulp": "^4.0.0",
|
||||
"gulp-autoprefixer": "^7.0.0",
|
||||
"gulp-clean-css": "^4.0.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-css2js": "^1.1.2",
|
||||
"gulp-if": "^3.0.0",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-rollup": "^2.16.2",
|
||||
"gulp-uglify": "^3.0.0",
|
||||
"istanbul-lib-coverage": "^3.0.0",
|
||||
"jquery": "^3.3.1",
|
||||
"karma": "^5.0.0",
|
||||
"karma-chrome-launcher": "^3.0.0",
|
||||
"karma-firefox-launcher": "^1.1.0",
|
||||
"karma-ie-launcher": "^1.0.0",
|
||||
"karma-qunit": "^4.0.0",
|
||||
"karma-sauce-launcher": "^4.0.0",
|
||||
"karma-sourcemap-loader": "^0.3.7",
|
||||
"karma-spec-reporter": "^0.0.32",
|
||||
"karma-webpack": "^4.0.0",
|
||||
"merge2": "^1.2.3",
|
||||
"nyc": "^15.0.0",
|
||||
"promise-polyfill": "^8.1.0",
|
||||
"qunit": "^2.8.0",
|
||||
"replace-in-file": "^6.0.0",
|
||||
"rollup": "^2.0.0",
|
||||
"rollup-plugin-babel": "^4.3.2",
|
||||
"sass": "^1.22.1",
|
||||
"sinon": "^9.0.0",
|
||||
"stylelint": "^13.0.0",
|
||||
"typescript": "^4.0.0",
|
||||
"webpack": "^4.29.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"src",
|
||||
"sweetalert2.d.ts"
|
||||
],
|
||||
"funding": {
|
||||
"url": "https://sweetalert2.github.io/#donations"
|
||||
},
|
||||
"homepage": "https://sweetalert2.github.io/",
|
||||
"keywords": [
|
||||
"sweetalert",
|
||||
"sweetalert2",
|
||||
"alert",
|
||||
"modal",
|
||||
"popup",
|
||||
"prompt",
|
||||
"confirm",
|
||||
"toast",
|
||||
"accessible"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/sweetalert2.all.js",
|
||||
"module": "src/sweetalert2.js",
|
||||
"name": "sweetalert2",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sweetalert2/sweetalert2.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"cy:run": "cypress run --browser chrome --config supportFile=cypress/support/ci.js",
|
||||
"cy:run:headless": "cypress run --headless --browser chrome --config supportFile=cypress/support/ci.js",
|
||||
"cy:start": "cypress open",
|
||||
"lint": "stylelint src && eslint src test cypress tools *.js *.ts",
|
||||
"nyc:instrument": "nyc instrument --compact=false src src_instrumented && rm -rf src && mv src_instrumented src",
|
||||
"start": "gulp develop --continue-on-error --skip-minification --skip-standalone",
|
||||
"test": "karma start karma.conf.js --single-run"
|
||||
},
|
||||
"types": "sweetalert2.d.ts",
|
||||
"version": "10.6.1"
|
||||
}
|
1152
wp-content/plugins/wp-asset-clean-up/assets/sweetalert2/sweetalert2.d.ts
vendored
Normal file
1
wp-content/plugins/wp-asset-clean-up/assets/tooltipster/tooltipster.bundle.min.css
vendored
Normal file
2
wp-content/plugins/wp-asset-clean-up/assets/tooltipster/tooltipster.bundle.min.js
vendored
Normal file
165
wp-content/plugins/wp-asset-clean-up/assets/wpacu-debug.css
Normal file
@ -0,0 +1,165 @@
|
||||
#wpacu-debug-options {
|
||||
background: white;
|
||||
width: 90%;
|
||||
margin: 10px;
|
||||
border: 1px solid #cdcdcd;
|
||||
border-radius: 5px;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
#wpacu-debug-options p {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#wpacu-debug-options ul.wpacu-options {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
margin-top: 0;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
#wpacu-debug-options ul.wpacu-options li {
|
||||
line-height: normal;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
#wpacu-debug-options ul.wpacu-options li label {
|
||||
cursor: pointer;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
#wpacu-debug-options table td {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
ul#wpacu-debug-timing {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ul#wpacu-debug-timing > li {
|
||||
list-style: none;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul#wpacu-debug-timing li > ul > li {
|
||||
list-style: disc;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
tr.wpacu_plugin_row_debug_unload.wpacu_plugin_row_debug_unload_marked td {
|
||||
background: #ffe1e1 !important;
|
||||
}
|
||||
|
||||
/* The container */
|
||||
.wpacu_plugin_unload_debug_container {
|
||||
display: block;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
font-size: 22px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/* Hide the browser's default checkbox */
|
||||
.wpacu_plugin_unload_debug_container input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
height: 0;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
/* Create a custom checkbox */
|
||||
.wpacu_plugin_unload_debug_checkbox_checkmark {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
/* On mouse-over, add a grey background color */
|
||||
.wpacu_plugin_unload_debug_container:hover input ~ .wpacu_plugin_unload_debug_checkbox_checkmark {
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
/* When the checkbox is checked, add a blue background */
|
||||
.wpacu_plugin_unload_debug_container input:checked ~ .wpacu_plugin_unload_debug_checkbox_checkmark {
|
||||
background-color: #cc0000;
|
||||
}
|
||||
|
||||
/* Create the checkmark/indicator (hidden when not checked) */
|
||||
.wpacu_plugin_unload_debug_container .wpacu_plugin_unload_debug_checkbox_checkmark:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Show the checkmark when checked */
|
||||
.wpacu_plugin_unload_debug_container input:checked ~ .wpacu_plugin_unload_debug_checkbox_checkmark:after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Style the checkmark/indicator */
|
||||
.wpacu_plugin_unload_debug_container .wpacu_plugin_unload_debug_checkbox_checkmark:after {
|
||||
left: 9px;
|
||||
top: 5px;
|
||||
width: 5px;
|
||||
height: 10px;
|
||||
border: solid white;
|
||||
border-width: 0 3px 3px 0;
|
||||
-webkit-transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
/*
|
||||
* [Dashboard]
|
||||
*/
|
||||
#wpacu-debug-admin-area {
|
||||
line-height: 20px;
|
||||
background: white;
|
||||
padding: 15px 15px 30px;
|
||||
bottom: 0;
|
||||
z-index: 100000000;
|
||||
width: 100%;
|
||||
border-top: 1px solid #e7e7e7;
|
||||
}
|
||||
|
||||
#wpacu-debug-plugins-list .wpacu_plugin_icon > img {
|
||||
-webkit-border-radius: 3px;
|
||||
/* Chrome, Safari, Opera */
|
||||
-moz-border-radius: 3px;
|
||||
/* Firefox */
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
#wpacu-debug-plugins-list .wpacu_plugin_icon > div {
|
||||
background: #efefef;
|
||||
border: #cdcdcd;
|
||||
border-radius: 3px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#wpacu-debug-plugins-list .wpacu_plugin_icon > div > span {
|
||||
font-size: 20px;
|
||||
color: #b3b3b3;
|
||||
top: 50%;
|
||||
vertical-align: middle;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
}
|
||||
/*
|
||||
* [/Dashboard]
|
||||
*/
|
39
wp-content/plugins/wp-asset-clean-up/assets/wpacu-debug.js
Normal file
@ -0,0 +1,39 @@
|
||||
/* Dashboard */
|
||||
function wpacuChangeDebugAdminArea()
|
||||
{
|
||||
var $adminMenuWrap = jQuery('#adminmenuwrap'),
|
||||
$wpacuDebugAdminArea = jQuery('#wpacu-debug-admin-area');
|
||||
|
||||
if ($adminMenuWrap.length > 0 && $adminMenuWrap.is(':visible')) {
|
||||
$wpacuDebugAdminArea.css('margin-left', $adminMenuWrap.width() + 'px');
|
||||
} else {
|
||||
$wpacuDebugAdminArea.css('margin-left', '0');
|
||||
}
|
||||
}
|
||||
|
||||
if (jQuery('body.wp-admin').length > 0) {
|
||||
window.addEventListener('resize', function () {
|
||||
wpacuChangeDebugAdminArea();
|
||||
});
|
||||
|
||||
jQuery(document).ready(function ($) {
|
||||
wpacuChangeDebugAdminArea();
|
||||
});
|
||||
}
|
||||
|
||||
/* Front-end */
|
||||
jQuery(document).ready(function($) {
|
||||
var wpacuCheckboxDebugInput = '.wpacu_plugin_unload_debug_checkbox';
|
||||
|
||||
if ($(wpacuCheckboxDebugInput).length < 1) {
|
||||
return;
|
||||
}
|
||||
|
||||
$(wpacuCheckboxDebugInput).change(function() {
|
||||
if ($(this).prop('checked')) {
|
||||
$(this).parents('tr.wpacu_plugin_row_debug_unload').addClass('wpacu_plugin_row_debug_unload_marked');
|
||||
} else {
|
||||
$(this).parents('tr.wpacu_plugin_row_debug_unload').removeClass('wpacu_plugin_row_debug_unload_marked');
|
||||
}
|
||||
});
|
||||
});
|