Version Description
- January 13th, 2017 =
- Refactored sections of the plugin.
- Refactored .js file.
- Re-styles custom icons modal (to better match default icon styles)
- Cleared a few warnings on custom pack upload page.
- Prepping for re-write.
Download this release
Release Info
Developer | eherman24 |
Plugin | WP SVG Icons |
Version | 3.2.0 |
Comparing to | |
See all releases |
Code changes from version 3.1.8.4 to 3.2.0
- admin/class-wp-svg-icons-admin.php +120 -155
- admin/css/default-icon-styles.css +282 -276
- admin/css/default-icon-styles.min.css +1 -6
- admin/css/jquery.dropdown.css +125 -1
- admin/css/wp-svg-icons-admin.css +39 -28
- admin/css/wp-svg-icons-admin.min.css +1 -2
- admin/js/custom-icon-menu-script.js +0 -33
- admin/js/wordpress-svg-icon-plugin-scripts.js +251 -1
- admin/js/wp-svg-delete-custom-pack-ajax.js +39 -5
- admin/min/wordpress-svg-icon-plugin-style.min.css +1 -0
- admin/partials/wp-svg-icons-custom-icons-page.php +402 -406
- admin/partials/wp-svg-icons-default-icons-page.php +2520 -2518
- admin/partials/wp-svg-icons-icon-page.php +227 -231
- admin/partials/wp-svg-icons-upgrade-page.php +152 -154
- admin/partials/wp-svg-icons-views-test.php +146 -146
- includes/class-wp-svg-icons-activator.php +2 -3
- includes/class-wp-svg-icons-deactivator.php +3 -3
- includes/class-wp-svg-icons-i18n.php +3 -3
- includes/class-wp-svg-icons-loader.php +3 -3
- includes/class-wp-svg-icons-uninstall.php +67 -67
- includes/class-wp-svg-icons.php +3 -3
- license.txt +0 -339
- public/class-wp-svg-icons-public.php +14 -15
- public/partials/wp-svg-icons-shortcodes.php +15 -16
- readme.txt +14 -106
- wp-svg-icons.php +2 -2
admin/class-wp-svg-icons-admin.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
|
6 |
/**
|
7 |
* The dashboard-specific functionality of the plugin.
|
@@ -21,57 +21,57 @@ class WP_SVG_Icons_Admin {
|
|
21 |
* @since 3.0.0
|
22 |
* @access private
|
23 |
* @var string $plugin_name The ID of this plugin.
|
24 |
-
|
25 |
private $plugin_name;
|
26 |
-
|
27 |
/**
|
28 |
* The version of this plugin.
|
29 |
*
|
30 |
* @since 3.0.0
|
31 |
* @access private
|
32 |
* @var string $version The current version of this plugin.
|
33 |
-
|
34 |
private $version;
|
35 |
-
|
36 |
/**
|
37 |
* Initialize the class and set its properties.
|
38 |
*
|
39 |
* @since 3.0.0
|
40 |
* @var string $plugin_name The name of this plugin.
|
41 |
* @var string $version The version of this plugin.
|
42 |
-
|
43 |
public function __construct( $plugin_name, $version ) {
|
44 |
$this->plugin_name = $plugin_name;
|
45 |
$this->version = $version;
|
46 |
-
|
47 |
// load our dependencies
|
48 |
-
$this->include_dependencies();
|
49 |
-
|
50 |
// add custom button to edit.php page
|
51 |
-
add_action('media_buttons', array( &$this , 'add_insert_icon_button'), 999999 );
|
52 |
-
|
53 |
// add our custom field to the menus
|
54 |
add_filter( 'wp_setup_nav_menu_item', array( $this, 'wp_svg_icons_add_custom_nav_fields' ) );
|
55 |
-
|
56 |
// save menu custom fields
|
57 |
-
add_action( 'wp_update_nav_menu_item', array( $this, 'wp_svg_icons_update_custom_nav_fields'), 10, 3 );
|
58 |
-
|
59 |
// action hook which handles the ajax request of deleting files
|
60 |
-
add_action('wp_ajax_svg_delete_custom_pack', array( &$this
|
61 |
|
62 |
// custom font pack found error
|
63 |
-
add_action('admin_notices', array( &$this
|
64 |
|
65 |
// set the custom upload directory
|
66 |
-
add_action( 'admin_head', array( &$this
|
67 |
-
|
68 |
// check the users plugin installation date
|
69 |
-
add_action( 'admin_init', array( &$this
|
70 |
-
|
71 |
// dismissable notice admin side
|
72 |
-
add_action( 'admin_init', array( &$this
|
73 |
}
|
74 |
-
|
75 |
/**
|
76 |
* Register the stylesheets for the Dashboard.
|
77 |
*
|
@@ -90,51 +90,43 @@ class WP_SVG_Icons_Admin {
|
|
90 |
* class.
|
91 |
*/
|
92 |
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/wp-svg-icons-admin.min.css', array(), $this->version, 'all' );
|
93 |
-
|
94 |
wp_enqueue_style( 'admin-icon-page-styles' , plugin_dir_url( __FILE__ ) . 'css/wordpress-svg-icon-plugin-style.min.css' );
|
95 |
wp_enqueue_style( 'default-icon-styles' , plugin_dir_url( __FILE__ ) . 'css/default-icon-styles.min.css' );
|
96 |
-
|
97 |
}
|
98 |
-
|
99 |
/**
|
100 |
* Register the JavaScript for the dashboard.
|
101 |
*
|
102 |
* @since 3.0.0
|
103 |
*/
|
104 |
-
public function enqueue_scripts() {
|
105 |
-
|
106 |
$dest = wp_upload_dir();
|
107 |
$dest_path = explode( '/uploads/' , $dest['path'] );
|
108 |
$customFontPackPath = $dest_path[0] . '/uploads/wp-svg-icons/custom-pack/style.css';
|
109 |
-
if ( file_exists( $customFontPackPath ) ) {
|
110 |
-
$active_pack = 'true';
|
111 |
-
} else {
|
112 |
-
$active_pack = 'false';
|
113 |
-
}
|
114 |
|
115 |
// enqueue our necessary JS and CSS files
|
116 |
wp_register_script( 'admin-icon-page-script.js', plugin_dir_url( __FILE__ ) . 'js/wordpress-svg-icon-plugin-scripts.js', array( 'jquery' , 'jquery-ui-core' , 'jquery-ui-slider' ), $this->version , false );
|
117 |
$localized_data = array(
|
118 |
'site_url' => site_url(),
|
119 |
-
'custom_pack_active' => $
|
120 |
'default_icon_element' => get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ),
|
121 |
);
|
122 |
wp_localize_script( 'admin-icon-page-script.js' , 'localized_data' , $localized_data );
|
123 |
wp_enqueue_script( 'admin-icon-page-script.js' );
|
124 |
-
|
125 |
// enqueue our color picker js + styles
|
126 |
/* Enqueue the color picker dependencies */
|
127 |
wp_enqueue_script( 'wp-color-picker' );
|
128 |
-
wp_enqueue_style( 'wp-color-picker' );
|
129 |
-
|
130 |
// custom font pack scripts
|
131 |
$this->wordpress_svg_icon_plugin_custom_icon_pack_scripts();
|
132 |
-
|
133 |
-
// enqueue our nav scripts/styles
|
134 |
-
$this->enqueue_custom_nav_scripts_on_nav_menu_page();
|
135 |
-
|
136 |
}
|
137 |
-
|
138 |
// ajax delete our .zip and entire directory for the custom pack!
|
139 |
function svg_delete_custom_pack_ajax() {
|
140 |
$dest = wp_upload_dir();
|
@@ -147,17 +139,17 @@ class WP_SVG_Icons_Admin {
|
|
147 |
$delete_directory = $this->recursive_delete_directory( $customFontPackFolderPath );
|
148 |
die();
|
149 |
}
|
150 |
-
|
151 |
/* Here, were going to create a new field for the 'menu' - to allow users to add icons to menus */
|
152 |
function wp_svg_icons_add_custom_nav_fields( $menu_item ) {
|
153 |
$menu_item->subtitle = get_post_meta( $menu_item->ID, '_menu_item_icon', true );
|
154 |
return $menu_item;
|
155 |
}
|
156 |
-
|
157 |
-
|
158 |
/* Save custom menu field */
|
159 |
function wp_svg_icons_update_custom_nav_fields( $menu_id, $menu_item_db_id, $args ) {
|
160 |
-
|
161 |
// Check if element is properly sent
|
162 |
if( isset( $_REQUEST['menu-item-icon'] ) ) {
|
163 |
if ( is_array( $_REQUEST['menu-item-icon'] ) ) {
|
@@ -165,19 +157,19 @@ class WP_SVG_Icons_Admin {
|
|
165 |
update_post_meta( $menu_item_db_id, '_menu_item_icon', $subtitle_value );
|
166 |
}
|
167 |
}
|
168 |
-
|
169 |
}
|
170 |
-
|
171 |
-
/*
|
172 |
-
* Set custom upload directory
|
173 |
*/
|
174 |
function wp_svg_change_downloads_upload_dir() {
|
175 |
$page_base = get_current_screen()->base;
|
176 |
if ( $page_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
177 |
add_filter( 'upload_dir', array( &$this , 'wp_svg_set_upload_dir' ) );
|
178 |
-
}
|
179 |
}
|
180 |
-
|
181 |
/*
|
182 |
* set our custom upload directory
|
183 |
*/
|
@@ -187,7 +179,7 @@ class WP_SVG_Icons_Admin {
|
|
187 |
$upload['url'] = $upload['baseurl'] . $upload['subdir'];
|
188 |
return $upload;
|
189 |
}
|
190 |
-
|
191 |
// load our dependencies here
|
192 |
private function include_dependencies() {
|
193 |
/**
|
@@ -195,85 +187,58 @@ class WP_SVG_Icons_Admin {
|
|
195 |
*/
|
196 |
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/wp-svg-icons-icon-page.php';
|
197 |
}
|
198 |
-
|
199 |
/*
|
200 |
-
* 'Insert Icon' Button
|
201 |
*/
|
202 |
function add_insert_icon_button() {
|
203 |
echo '<a href="'.plugin_dir_url( dirname( __FILE__ ) ).'admin/partials/wp-svg-icons-default-icons-page.php?" class="thickbox button" title="'.__( "WP SVG Icons" , "wp-svg-icons" ).'"><span class="wp-svg-wordpress"></span> Add Icon</a>';
|
204 |
}
|
205 |
-
|
206 |
/*
|
207 |
* Enqueue scripts on custom icon pack page
|
208 |
*/
|
209 |
-
function wordpress_svg_icon_plugin_custom_icon_pack_scripts() {
|
210 |
-
|
211 |
$screen_base = get_current_screen()->base;
|
212 |
-
|
213 |
$dest = wp_upload_dir();
|
214 |
-
|
215 |
$dest_path = $dest['basedir'] . '/wp-svg-icons/custom-pack';
|
216 |
-
|
217 |
-
if ( $screen_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
218 |
|
219 |
-
|
|
|
|
|
220 |
// enqueue our custom delete script
|
221 |
-
wp_register_script( 'wp-svg-delete-custom-pack', plugin_dir_url(__FILE__).'js/wp-svg-delete-custom-pack-ajax.js');
|
222 |
// localize an array of text to translate
|
223 |
$translation_array = array(
|
224 |
-
'confirm' => __( 'Are you sure you want to uninstall your custom icon pack? This cannot be undone.'
|
225 |
-
'success' => __( 'Custom font pack successfully uninstalled!'
|
226 |
-
'error'
|
227 |
);
|
228 |
wp_localize_script( 'wp-svg-delete-custom-pack', 'translation_array', $translation_array );
|
229 |
wp_enqueue_script( 'wp-svg-delete-custom-pack' );
|
230 |
// jquery dropdown scripts
|
231 |
-
wp_register_script( 'wp-svg-jquery-dropdown',
|
232 |
wp_enqueue_script( 'wp-svg-jquery-dropdown' );
|
233 |
-
}
|
234 |
|
235 |
// jquery dropdown styles
|
236 |
-
wp_register_style( 'wp-svg-jquery-dropdown-style', plugin_dir_url(__FILE__).'css/jquery.dropdown.css');
|
237 |
wp_enqueue_style( 'wp-svg-jquery-dropdown-style' );
|
238 |
-
|
239 |
-
}
|
240 |
-
|
241 |
-
}
|
242 |
-
|
243 |
-
/*
|
244 |
-
* Enqueue scripts on nav menu page
|
245 |
-
*/
|
246 |
-
function enqueue_custom_nav_scripts_on_nav_menu_page() {
|
247 |
-
$screen_base = get_current_screen()->base;
|
248 |
-
// load jQuery dropdown on nav menu, to add our icons to the menu
|
249 |
-
if( $screen_base == 'nav-menus' ) {
|
250 |
-
// scripts
|
251 |
-
wp_register_script( 'wp-svg-icon-dropdown' , plugin_dir_url(__FILE__).'js/bootstrap-select.min.js' , array( 'jquery' ), 'all' );
|
252 |
-
wp_enqueue_script( 'wp-svg-icon-dropdown' );
|
253 |
-
|
254 |
-
wp_register_script( 'custom-icon-menu-script' , plugin_dir_url(__FILE__).'js/custom-icon-menu-script.js' , array( 'jquery' , 'jquery-ui-core', 'jquery-ui-selectable' ), 'all' );
|
255 |
-
wp_enqueue_script( 'custom-icon-menu-script' );
|
256 |
-
|
257 |
-
//styles
|
258 |
-
wp_register_style( 'wp-svg-icon-dropdown-styles', plugin_dir_url(__FILE__).'css/bootstrap-select.min.css');
|
259 |
-
wp_enqueue_style( 'wp-svg-icon-dropdown-styles' );
|
260 |
-
|
261 |
-
wp_register_style( 'bootstrap-dropdown-css', plugin_dir_url(__FILE__).'css/bootstrap.css');
|
262 |
-
wp_enqueue_style( 'bootstrap-dropdown-css' );
|
263 |
-
|
264 |
-
// load our custom icons!
|
265 |
-
$this->enqueue_custom_icons();
|
266 |
-
|
267 |
}
|
|
|
268 |
}
|
269 |
-
|
270 |
function enqueue_custom_icons() {
|
271 |
// enqueue our custom icon pack styles if they exist
|
272 |
$dest = wp_upload_dir();
|
273 |
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
274 |
$path = $dest['basedir'] . $upload['subdir'];
|
275 |
$customPackStyles = '/style.css';
|
276 |
-
|
277 |
// Check if there is a custom pack style file
|
278 |
// if there is enqueue it
|
279 |
if ( file_exists( $path . $customPackStyles ) ) {
|
@@ -281,10 +246,10 @@ class WP_SVG_Icons_Admin {
|
|
281 |
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
282 |
}
|
283 |
}
|
284 |
-
|
285 |
-
|
286 |
-
/*
|
287 |
-
* Custom Pack Already Installed Admin Notification Error
|
288 |
*/
|
289 |
function wp_svg_customPack_installed_error() {
|
290 |
$page_base = get_current_screen()->base;
|
@@ -295,60 +260,60 @@ class WP_SVG_Icons_Admin {
|
|
295 |
if ( file_exists( $dest_path . '/wp-svg-custom-pack.zip' ) ) {
|
296 |
?>
|
297 |
<script>
|
298 |
-
jQuery(document).ready(function() {
|
299 |
-
jQuery(".wp-svg-custom-pack-preloader").show();
|
300 |
-
jQuery(".svg-custom-pack-buttons").after("<div class=error><p><?php _e('You already have a font pack installed. If you want to install a new font pack, you must first uninstall the current one.','wp-svg-icons'); ?></p></div>");
|
301 |
-
jQuery(".preview-icon-code-box").show();
|
302 |
jQuery( '#uninstall-pack-button' ).removeAttr( 'disabled' );
|
303 |
-
jQuery(".dropDownButton").removeAttr("disabled");
|
304 |
-
jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
|
305 |
jQuery("input[value=Import]").attr("disabled","disabled");
|
306 |
-
|
307 |
jQuery.get( "<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/demo.html", function( data ) {
|
308 |
jQuery( ".current-font-pack" ).html( data );
|
309 |
});
|
310 |
-
|
311 |
-
jQuery.get("<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
312 |
-
jQuery("head").append("<style>"+data+"</style>");
|
313 |
-
});
|
314 |
-
|
315 |
});
|
316 |
</script>
|
317 |
-
<?php
|
318 |
-
} else {
|
319 |
/*
|
320 |
* Custom icon pack does not exist...
|
321 |
*/
|
322 |
?>
|
323 |
<script>
|
324 |
-
jQuery(document).ready(function() {
|
325 |
-
jQuery(".wp-svg-custom-pack-preloader").hide();
|
326 |
-
jQuery("#uninstall-pack-button").attr("disabled","disabled");
|
327 |
jQuery("#dropDownButton").attr("disabled","disabled"); });
|
328 |
</script>
|
329 |
<?php
|
330 |
}
|
331 |
-
}
|
332 |
}
|
333 |
-
|
334 |
-
|
335 |
-
/*
|
336 |
-
Function To Recursively Delete an entire directory
|
337 |
*/
|
338 |
-
public function recursive_delete_directory( $dir ) {
|
339 |
-
if ( is_dir( $dir ) ) {
|
340 |
-
$objects = scandir( $dir );
|
341 |
-
foreach ($objects as $object ) {
|
342 |
-
if ( $object != "." && $object != ".." ) {
|
343 |
-
if ( filetype( $dir."/".$object) == "dir" ) $this->recursive_delete_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
344 |
-
}
|
345 |
-
}
|
346 |
-
reset( $objects );
|
347 |
-
rmdir( $dir );
|
348 |
-
}
|
349 |
-
}
|
350 |
-
|
351 |
-
/*
|
352 |
wp_svg_icons_stop_bugging_me()
|
353 |
Remove the Review us notification when user clicks 'Dismiss'
|
354 |
@since v3.1.1
|
@@ -362,24 +327,24 @@ class WP_SVG_Icons_Admin {
|
|
362 |
add_option( 'wp_svg_icons_review_stop_bugging_me', TRUE );
|
363 |
}
|
364 |
}
|
365 |
-
|
366 |
/*
|
367 |
wp_svg_icons_check_installation_date()
|
368 |
-
checks the user installation date, and adds our action
|
369 |
- if it's past 2 weeks we ask the user for a review :)
|
370 |
@since v3.1.1
|
371 |
*/
|
372 |
-
public function wp_svg_icons_check_installation_date() {
|
373 |
-
|
374 |
// add a new option to store the plugin activation date/time
|
375 |
// @since v3.1.1
|
376 |
// this is used to notify the user that they should review after 2 weeks
|
377 |
if ( !get_option( 'wp_svg_icons_activation_date' ) ) {
|
378 |
add_option( 'wp_svg_icons_activation_date', strtotime( "now" ) );
|
379 |
}
|
380 |
-
|
381 |
$stop_bugging_me = get_option( 'wp_svg_icons_review_stop_bugging_me' );
|
382 |
-
|
383 |
if( !$stop_bugging_me ) {
|
384 |
$install_date = get_option( 'wp_svg_icons_activation_date' );
|
385 |
$past_date = strtotime( '-14 days' );
|
@@ -387,15 +352,15 @@ class WP_SVG_Icons_Admin {
|
|
387 |
add_action( 'admin_notices', array( &$this , 'wp_svg_icons_display_review_us_notice' ) );
|
388 |
}
|
389 |
}
|
390 |
-
|
391 |
}
|
392 |
-
|
393 |
-
/*
|
394 |
Display our admin notification
|
395 |
-
asking for a review, and for user feedback
|
396 |
@since v3.1.1
|
397 |
*/
|
398 |
-
public function wp_svg_icons_display_review_us_notice() {
|
399 |
/* Lets only display our admin notice on YT4WP pages to not annoy the hell out of people :) */
|
400 |
if ( in_array( get_current_screen()->base , array( 'dashboard' , 'toplevel_page_wp-svg-icons' , 'wp-svg-icons_page_wp-svg-icons-custom-set' , 'wp-svg-icons_page_wp_svg_icons' , 'wp-svg-icons_page_wp-svg-icons-upgrade' , 'post' ) ) ) {
|
401 |
// Review URL - Change to the URL of your plugin on WordPress.org
|
@@ -417,7 +382,7 @@ class WP_SVG_Icons_Admin {
|
|
417 |
<?php
|
418 |
}
|
419 |
}
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
} // end Class
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
|
6 |
/**
|
7 |
* The dashboard-specific functionality of the plugin.
|
21 |
* @since 3.0.0
|
22 |
* @access private
|
23 |
* @var string $plugin_name The ID of this plugin.
|
24 |
+
*/
|
25 |
private $plugin_name;
|
26 |
+
|
27 |
/**
|
28 |
* The version of this plugin.
|
29 |
*
|
30 |
* @since 3.0.0
|
31 |
* @access private
|
32 |
* @var string $version The current version of this plugin.
|
33 |
+
*/
|
34 |
private $version;
|
35 |
+
|
36 |
/**
|
37 |
* Initialize the class and set its properties.
|
38 |
*
|
39 |
* @since 3.0.0
|
40 |
* @var string $plugin_name The name of this plugin.
|
41 |
* @var string $version The version of this plugin.
|
42 |
+
*/
|
43 |
public function __construct( $plugin_name, $version ) {
|
44 |
$this->plugin_name = $plugin_name;
|
45 |
$this->version = $version;
|
46 |
+
|
47 |
// load our dependencies
|
48 |
+
$this->include_dependencies();
|
49 |
+
|
50 |
// add custom button to edit.php page
|
51 |
+
add_action( 'media_buttons', array( &$this , 'add_insert_icon_button' ), 999999 );
|
52 |
+
|
53 |
// add our custom field to the menus
|
54 |
add_filter( 'wp_setup_nav_menu_item', array( $this, 'wp_svg_icons_add_custom_nav_fields' ) );
|
55 |
+
|
56 |
// save menu custom fields
|
57 |
+
add_action( 'wp_update_nav_menu_item', array( $this, 'wp_svg_icons_update_custom_nav_fields' ), 10, 3 );
|
58 |
+
|
59 |
// action hook which handles the ajax request of deleting files
|
60 |
+
add_action( 'wp_ajax_svg_delete_custom_pack', array( &$this, 'svg_delete_custom_pack_ajax' ) );
|
61 |
|
62 |
// custom font pack found error
|
63 |
+
add_action( 'admin_notices', array( &$this, 'wp_svg_customPack_installed_error' ) );
|
64 |
|
65 |
// set the custom upload directory
|
66 |
+
add_action( 'admin_head', array( &$this, 'wp_svg_change_downloads_upload_dir' ) , 999 );
|
67 |
+
|
68 |
// check the users plugin installation date
|
69 |
+
add_action( 'admin_init', array( &$this, 'wp_svg_icons_check_installation_date' ) );
|
70 |
+
|
71 |
// dismissable notice admin side
|
72 |
+
add_action( 'admin_init', array( &$this, 'wp_svg_icons_stop_bugging_me' ), 5 );
|
73 |
}
|
74 |
+
|
75 |
/**
|
76 |
* Register the stylesheets for the Dashboard.
|
77 |
*
|
90 |
* class.
|
91 |
*/
|
92 |
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/wp-svg-icons-admin.min.css', array(), $this->version, 'all' );
|
93 |
+
|
94 |
wp_enqueue_style( 'admin-icon-page-styles' , plugin_dir_url( __FILE__ ) . 'css/wordpress-svg-icon-plugin-style.min.css' );
|
95 |
wp_enqueue_style( 'default-icon-styles' , plugin_dir_url( __FILE__ ) . 'css/default-icon-styles.min.css' );
|
96 |
+
|
97 |
}
|
98 |
+
|
99 |
/**
|
100 |
* Register the JavaScript for the dashboard.
|
101 |
*
|
102 |
* @since 3.0.0
|
103 |
*/
|
104 |
+
public function enqueue_scripts() {
|
105 |
+
|
106 |
$dest = wp_upload_dir();
|
107 |
$dest_path = explode( '/uploads/' , $dest['path'] );
|
108 |
$customFontPackPath = $dest_path[0] . '/uploads/wp-svg-icons/custom-pack/style.css';
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
// enqueue our necessary JS and CSS files
|
111 |
wp_register_script( 'admin-icon-page-script.js', plugin_dir_url( __FILE__ ) . 'js/wordpress-svg-icon-plugin-scripts.js', array( 'jquery' , 'jquery-ui-core' , 'jquery-ui-slider' ), $this->version , false );
|
112 |
$localized_data = array(
|
113 |
'site_url' => site_url(),
|
114 |
+
'custom_pack_active' => file_exists( $customFontPackPath ),
|
115 |
'default_icon_element' => get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ),
|
116 |
);
|
117 |
wp_localize_script( 'admin-icon-page-script.js' , 'localized_data' , $localized_data );
|
118 |
wp_enqueue_script( 'admin-icon-page-script.js' );
|
119 |
+
|
120 |
// enqueue our color picker js + styles
|
121 |
/* Enqueue the color picker dependencies */
|
122 |
wp_enqueue_script( 'wp-color-picker' );
|
123 |
+
wp_enqueue_style( 'wp-color-picker' );
|
124 |
+
|
125 |
// custom font pack scripts
|
126 |
$this->wordpress_svg_icon_plugin_custom_icon_pack_scripts();
|
127 |
+
|
|
|
|
|
|
|
128 |
}
|
129 |
+
|
130 |
// ajax delete our .zip and entire directory for the custom pack!
|
131 |
function svg_delete_custom_pack_ajax() {
|
132 |
$dest = wp_upload_dir();
|
139 |
$delete_directory = $this->recursive_delete_directory( $customFontPackFolderPath );
|
140 |
die();
|
141 |
}
|
142 |
+
|
143 |
/* Here, were going to create a new field for the 'menu' - to allow users to add icons to menus */
|
144 |
function wp_svg_icons_add_custom_nav_fields( $menu_item ) {
|
145 |
$menu_item->subtitle = get_post_meta( $menu_item->ID, '_menu_item_icon', true );
|
146 |
return $menu_item;
|
147 |
}
|
148 |
+
|
149 |
+
|
150 |
/* Save custom menu field */
|
151 |
function wp_svg_icons_update_custom_nav_fields( $menu_id, $menu_item_db_id, $args ) {
|
152 |
+
|
153 |
// Check if element is properly sent
|
154 |
if( isset( $_REQUEST['menu-item-icon'] ) ) {
|
155 |
if ( is_array( $_REQUEST['menu-item-icon'] ) ) {
|
157 |
update_post_meta( $menu_item_db_id, '_menu_item_icon', $subtitle_value );
|
158 |
}
|
159 |
}
|
160 |
+
|
161 |
}
|
162 |
+
|
163 |
+
/*
|
164 |
+
* Set custom upload directory
|
165 |
*/
|
166 |
function wp_svg_change_downloads_upload_dir() {
|
167 |
$page_base = get_current_screen()->base;
|
168 |
if ( $page_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
169 |
add_filter( 'upload_dir', array( &$this , 'wp_svg_set_upload_dir' ) );
|
170 |
+
}
|
171 |
}
|
172 |
+
|
173 |
/*
|
174 |
* set our custom upload directory
|
175 |
*/
|
179 |
$upload['url'] = $upload['baseurl'] . $upload['subdir'];
|
180 |
return $upload;
|
181 |
}
|
182 |
+
|
183 |
// load our dependencies here
|
184 |
private function include_dependencies() {
|
185 |
/**
|
187 |
*/
|
188 |
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/wp-svg-icons-icon-page.php';
|
189 |
}
|
190 |
+
|
191 |
/*
|
192 |
+
* 'Insert Icon' Button
|
193 |
*/
|
194 |
function add_insert_icon_button() {
|
195 |
echo '<a href="'.plugin_dir_url( dirname( __FILE__ ) ).'admin/partials/wp-svg-icons-default-icons-page.php?" class="thickbox button" title="'.__( "WP SVG Icons" , "wp-svg-icons" ).'"><span class="wp-svg-wordpress"></span> Add Icon</a>';
|
196 |
}
|
197 |
+
|
198 |
/*
|
199 |
* Enqueue scripts on custom icon pack page
|
200 |
*/
|
201 |
+
function wordpress_svg_icon_plugin_custom_icon_pack_scripts() {
|
202 |
+
|
203 |
$screen_base = get_current_screen()->base;
|
204 |
+
|
205 |
$dest = wp_upload_dir();
|
206 |
+
|
207 |
$dest_path = $dest['basedir'] . '/wp-svg-icons/custom-pack';
|
|
|
|
|
208 |
|
209 |
+
if ( 'wp-svg-icons_page_wp-svg-icons-custom-set' === $screen_base ) {
|
210 |
+
|
211 |
+
if ( file_exists( $dest_path . '/wp-svg-custom-pack.zip' ) ) {
|
212 |
// enqueue our custom delete script
|
213 |
+
wp_register_script( 'wp-svg-delete-custom-pack', plugin_dir_url( __FILE__ ) . 'js/wp-svg-delete-custom-pack-ajax.js' );
|
214 |
// localize an array of text to translate
|
215 |
$translation_array = array(
|
216 |
+
'confirm' => __( 'Are you sure you want to uninstall your custom icon pack? This cannot be undone.', 'wp-svg-icons' ),
|
217 |
+
'success' => __( 'Custom font pack successfully uninstalled!', 'wp-svg-icons' ),
|
218 |
+
'error' => __( 'Error uninstalling your custom font pack. Try again. If the error persists you will have to delete the file manually.', 'wp-svg-icons' ),
|
219 |
);
|
220 |
wp_localize_script( 'wp-svg-delete-custom-pack', 'translation_array', $translation_array );
|
221 |
wp_enqueue_script( 'wp-svg-delete-custom-pack' );
|
222 |
// jquery dropdown scripts
|
223 |
+
wp_register_script( 'wp-svg-jquery-dropdown', plugin_dir_url( __FILE__ ) . 'js/jquery.dropdown.min.js' );
|
224 |
wp_enqueue_script( 'wp-svg-jquery-dropdown' );
|
225 |
+
}
|
226 |
|
227 |
// jquery dropdown styles
|
228 |
+
wp_register_style( 'wp-svg-jquery-dropdown-style', plugin_dir_url( __FILE__ ) . 'css/jquery.dropdown.css' );
|
229 |
wp_enqueue_style( 'wp-svg-jquery-dropdown-style' );
|
230 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
}
|
232 |
+
|
233 |
}
|
234 |
+
|
235 |
function enqueue_custom_icons() {
|
236 |
// enqueue our custom icon pack styles if they exist
|
237 |
$dest = wp_upload_dir();
|
238 |
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
239 |
$path = $dest['basedir'] . $upload['subdir'];
|
240 |
$customPackStyles = '/style.css';
|
241 |
+
|
242 |
// Check if there is a custom pack style file
|
243 |
// if there is enqueue it
|
244 |
if ( file_exists( $path . $customPackStyles ) ) {
|
246 |
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
247 |
}
|
248 |
}
|
249 |
+
|
250 |
+
|
251 |
+
/*
|
252 |
+
* Custom Pack Already Installed Admin Notification Error
|
253 |
*/
|
254 |
function wp_svg_customPack_installed_error() {
|
255 |
$page_base = get_current_screen()->base;
|
260 |
if ( file_exists( $dest_path . '/wp-svg-custom-pack.zip' ) ) {
|
261 |
?>
|
262 |
<script>
|
263 |
+
jQuery(document).ready(function() {
|
264 |
+
jQuery(".wp-svg-custom-pack-preloader").show();
|
265 |
+
jQuery(".svg-custom-pack-buttons").after("<div class=error><p><?php _e('You already have a font pack installed. If you want to install a new font pack, you must first uninstall the current one.','wp-svg-icons'); ?></p></div>");
|
266 |
+
jQuery(".preview-icon-code-box").show();
|
267 |
jQuery( '#uninstall-pack-button' ).removeAttr( 'disabled' );
|
268 |
+
jQuery(".dropDownButton").removeAttr("disabled");
|
269 |
+
jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
|
270 |
jQuery("input[value=Import]").attr("disabled","disabled");
|
271 |
+
|
272 |
jQuery.get( "<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/demo.html", function( data ) {
|
273 |
jQuery( ".current-font-pack" ).html( data );
|
274 |
});
|
275 |
+
|
276 |
+
jQuery.get("<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
277 |
+
jQuery("head").append("<style>"+data+"</style>");
|
278 |
+
});
|
279 |
+
|
280 |
});
|
281 |
</script>
|
282 |
+
<?php
|
283 |
+
} else {
|
284 |
/*
|
285 |
* Custom icon pack does not exist...
|
286 |
*/
|
287 |
?>
|
288 |
<script>
|
289 |
+
jQuery(document).ready(function() {
|
290 |
+
jQuery(".wp-svg-custom-pack-preloader").hide();
|
291 |
+
jQuery("#uninstall-pack-button").attr("disabled","disabled");
|
292 |
jQuery("#dropDownButton").attr("disabled","disabled"); });
|
293 |
</script>
|
294 |
<?php
|
295 |
}
|
296 |
+
}
|
297 |
}
|
298 |
+
|
299 |
+
|
300 |
+
/*
|
301 |
+
Function To Recursively Delete an entire directory
|
302 |
*/
|
303 |
+
public function recursive_delete_directory( $dir ) {
|
304 |
+
if ( is_dir( $dir ) ) {
|
305 |
+
$objects = scandir( $dir );
|
306 |
+
foreach ($objects as $object ) {
|
307 |
+
if ( $object != "." && $object != ".." ) {
|
308 |
+
if ( filetype( $dir."/".$object) == "dir" ) $this->recursive_delete_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
309 |
+
}
|
310 |
+
}
|
311 |
+
reset( $objects );
|
312 |
+
rmdir( $dir );
|
313 |
+
}
|
314 |
+
}
|
315 |
+
|
316 |
+
/*
|
317 |
wp_svg_icons_stop_bugging_me()
|
318 |
Remove the Review us notification when user clicks 'Dismiss'
|
319 |
@since v3.1.1
|
327 |
add_option( 'wp_svg_icons_review_stop_bugging_me', TRUE );
|
328 |
}
|
329 |
}
|
330 |
+
|
331 |
/*
|
332 |
wp_svg_icons_check_installation_date()
|
333 |
+
checks the user installation date, and adds our action
|
334 |
- if it's past 2 weeks we ask the user for a review :)
|
335 |
@since v3.1.1
|
336 |
*/
|
337 |
+
public function wp_svg_icons_check_installation_date() {
|
338 |
+
|
339 |
// add a new option to store the plugin activation date/time
|
340 |
// @since v3.1.1
|
341 |
// this is used to notify the user that they should review after 2 weeks
|
342 |
if ( !get_option( 'wp_svg_icons_activation_date' ) ) {
|
343 |
add_option( 'wp_svg_icons_activation_date', strtotime( "now" ) );
|
344 |
}
|
345 |
+
|
346 |
$stop_bugging_me = get_option( 'wp_svg_icons_review_stop_bugging_me' );
|
347 |
+
|
348 |
if( !$stop_bugging_me ) {
|
349 |
$install_date = get_option( 'wp_svg_icons_activation_date' );
|
350 |
$past_date = strtotime( '-14 days' );
|
352 |
add_action( 'admin_notices', array( &$this , 'wp_svg_icons_display_review_us_notice' ) );
|
353 |
}
|
354 |
}
|
355 |
+
|
356 |
}
|
357 |
+
|
358 |
+
/*
|
359 |
Display our admin notification
|
360 |
+
asking for a review, and for user feedback
|
361 |
@since v3.1.1
|
362 |
*/
|
363 |
+
public function wp_svg_icons_display_review_us_notice() {
|
364 |
/* Lets only display our admin notice on YT4WP pages to not annoy the hell out of people :) */
|
365 |
if ( in_array( get_current_screen()->base , array( 'dashboard' , 'toplevel_page_wp-svg-icons' , 'wp-svg-icons_page_wp-svg-icons-custom-set' , 'wp-svg-icons_page_wp_svg_icons' , 'wp-svg-icons_page_wp-svg-icons-upgrade' , 'post' ) ) ) {
|
366 |
// Review URL - Change to the URL of your plugin on WordPress.org
|
382 |
<?php
|
383 |
}
|
384 |
}
|
385 |
+
|
386 |
+
|
387 |
+
|
388 |
+
} // end Class
|
admin/css/default-icon-styles.css
CHANGED
@@ -1,276 +1,282 @@
|
|
1 |
-
/*
|
2 |
-
Default Styles for the Default Icon Pack Page
|
3 |
-
WP SVG Icons - Compiled by Evan Herman
|
4 |
-
https://www.Evan-Herman.com
|
5 |
-
*/
|
6 |
-
|
7 |
-
.toplevel_page_wp-svg-icons #wpfooter {
|
8 |
-
display: none;
|
9 |
-
}
|
10 |
-
|
11 |
-
#wp-svg-nav-tab-wrapper {
|
12 |
-
display: block;
|
13 |
-
float: left;
|
14 |
-
width: 95%;
|
15 |
-
}
|
16 |
-
|
17 |
-
.
|
18 |
-
margin-
|
19 |
-
}
|
20 |
-
|
21 |
-
|
22 |
-
margin-
|
23 |
-
}
|
24 |
-
|
25 |
-
.
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
font-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
-
|
52 |
-
|
53 |
-
transition:.15s;
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
}
|
60 |
-
|
61 |
-
.
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
}
|
91 |
-
|
92 |
-
.
|
93 |
-
|
94 |
-
}
|
95 |
-
|
96 |
-
.
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
body.
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
body.
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
.
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
.
|
165 |
-
|
166 |
-
}
|
167 |
-
|
168 |
-
.
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
.
|
173 |
-
.
|
174 |
-
.
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
margin:
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
margin:
|
235 |
-
}
|
236 |
-
|
237 |
-
.
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
border: none
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
Default Styles for the Default Icon Pack Page
|
3 |
+
WP SVG Icons - Compiled by Evan Herman
|
4 |
+
https://www.Evan-Herman.com
|
5 |
+
*/
|
6 |
+
|
7 |
+
.toplevel_page_wp-svg-icons #wpfooter {
|
8 |
+
display: none;
|
9 |
+
}
|
10 |
+
|
11 |
+
#wp-svg-nav-tab-wrapper {
|
12 |
+
display: block;
|
13 |
+
float: left;
|
14 |
+
width: 95%;
|
15 |
+
}
|
16 |
+
|
17 |
+
.preview-icon-code-box {
|
18 |
+
margin-bottom: 2em;
|
19 |
+
}
|
20 |
+
|
21 |
+
.toplevel_page_wp-svg-icons .wrap, .svg-custom-upload-wrap {
|
22 |
+
margin-top: 2.5em !important;
|
23 |
+
}
|
24 |
+
|
25 |
+
#TB_ajaxContent .wp-svg-icons-wrap {
|
26 |
+
margin-right: 0;
|
27 |
+
}
|
28 |
+
|
29 |
+
.copy_paste_input {
|
30 |
+
border: none !important;
|
31 |
+
box-shadow: none !important;
|
32 |
+
background: transparent !important;
|
33 |
+
font-weight: 600 !important;
|
34 |
+
}
|
35 |
+
|
36 |
+
.yes-adv-attr:before {
|
37 |
+
font-family: 'dashicons';
|
38 |
+
content: "\f147";
|
39 |
+
padding-right: 2px;
|
40 |
+
color: rgb(91, 159, 107);
|
41 |
+
}
|
42 |
+
|
43 |
+
.glyph, .expansion-Glyph {
|
44 |
+
font-size: .75em;
|
45 |
+
float: left;
|
46 |
+
text-align: center;
|
47 |
+
padding: .15em;
|
48 |
+
margin: 1em;
|
49 |
+
height: 35px;
|
50 |
+
width: 35px;
|
51 |
+
border-radius: .25em;
|
52 |
+
color:#333333;
|
53 |
+
-o-transition:.15s;
|
54 |
+
-ms-transition:.15s;
|
55 |
+
-moz-transition:.15s;
|
56 |
+
-webkit-transition:.15s;
|
57 |
+
transition:.15s;
|
58 |
+
margin-top:0;
|
59 |
+
}
|
60 |
+
|
61 |
+
.expansion-Glyph {
|
62 |
+
font-size:2em !important;
|
63 |
+
}
|
64 |
+
|
65 |
+
.glyph:hover {
|
66 |
+
color:#FF8000;
|
67 |
+
cursor:pointer;
|
68 |
+
}
|
69 |
+
|
70 |
+
.glyph input, .expansion-Glyph input {
|
71 |
+
font-family: consolas, monospace;
|
72 |
+
font-size: 13px;
|
73 |
+
width: 100%;
|
74 |
+
text-align: center;
|
75 |
+
border: 0;
|
76 |
+
box-shadow: 0 0 0 1px #ccc;
|
77 |
+
padding: .125em;
|
78 |
+
display:none;
|
79 |
+
}
|
80 |
+
|
81 |
+
.selected {
|
82 |
+
color:#FF8000;
|
83 |
+
background:#d8d8d8;
|
84 |
+
border-radius:5px;
|
85 |
+
}
|
86 |
+
|
87 |
+
.expansion-Glyph:hover {
|
88 |
+
background-color: #CCCCCC !important;
|
89 |
+
cursor:pointer !important;
|
90 |
+
}
|
91 |
+
|
92 |
+
.w-main {
|
93 |
+
width: 98%;
|
94 |
+
}
|
95 |
+
|
96 |
+
.centered {
|
97 |
+
margin-right: auto;
|
98 |
+
}
|
99 |
+
|
100 |
+
.wp-svg-title {
|
101 |
+
font-size: 2em;
|
102 |
+
font-weight: normal;
|
103 |
+
line-height: 1.2;
|
104 |
+
}
|
105 |
+
|
106 |
+
.clearfix:before,
|
107 |
+
.clearfix:after {
|
108 |
+
content: "";
|
109 |
+
display: table;
|
110 |
+
}
|
111 |
+
|
112 |
+
.clearfix:after,
|
113 |
+
.clear {
|
114 |
+
clear: both;
|
115 |
+
}
|
116 |
+
|
117 |
+
footer {
|
118 |
+
margin-top: 2em;
|
119 |
+
padding: .5em 0;
|
120 |
+
box-shadow: 0 -2px #eee;
|
121 |
+
}
|
122 |
+
|
123 |
+
body.toplevel_page_wp-svg-icons a,
|
124 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set a,
|
125 |
+
body.wp-svg-icons_page_wp_svg_icons a,
|
126 |
+
body.p-svg-icons_page_wp-svg-icons-support a {
|
127 |
+
color: #333;
|
128 |
+
}
|
129 |
+
|
130 |
+
body.toplevel_page_wp-svg-icons a:hover,
|
131 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set a:hover,
|
132 |
+
body.wp-svg-icons_page_wp_svg_icons a:hover,
|
133 |
+
body.p-svg-icons_page_wp-svg-icons-support a:hover {
|
134 |
+
color: #B35047;
|
135 |
+
}
|
136 |
+
|
137 |
+
body.toplevel_page_wp-svg-icons a:visited,
|
138 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set a:visited,
|
139 |
+
body.wp-svg-icons_page_wp_svg_icons a:visited,
|
140 |
+
body.p-svg-icons_page_wp-svg-icons-support a:visited {
|
141 |
+
color: #333;
|
142 |
+
text-decoration: none;
|
143 |
+
}
|
144 |
+
|
145 |
+
body.toplevel_page_wp-svg-icons a:active,
|
146 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set a:active,
|
147 |
+
body.wp-svg-icons_page_wp_svg_icons a:active,
|
148 |
+
body.p-svg-icons_page_wp-svg-icons-support a:active {
|
149 |
+
color: none;
|
150 |
+
}
|
151 |
+
|
152 |
+
.box1 {
|
153 |
+
font-size: 16px;
|
154 |
+
display: inline-block;
|
155 |
+
width: 15em;
|
156 |
+
padding: .25em .5em;
|
157 |
+
background: #eee;
|
158 |
+
margin: .5em 1em .5em 0;
|
159 |
+
}
|
160 |
+
|
161 |
+
body.toplevel_page_wp-svg-icons input:focus,
|
162 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set input:focus,
|
163 |
+
body.wp-svg-icons_page_wp_svg_icons input:focus,
|
164 |
+
body.p-svg-icons_page_wp-svg-icons-support input:focus {
|
165 |
+
background: #E1E1E1;
|
166 |
+
}
|
167 |
+
|
168 |
+
.wp-svg-icon-preview {
|
169 |
+
width: 30px;
|
170 |
+
}
|
171 |
+
|
172 |
+
.fs1,
|
173 |
+
.fs2,
|
174 |
+
.fs3,
|
175 |
+
.fs4,
|
176 |
+
.fs5,
|
177 |
+
.fs6,
|
178 |
+
.fs7 {
|
179 |
+
padding:.85em;
|
180 |
+
border-radius:5px;
|
181 |
+
}
|
182 |
+
|
183 |
+
.wp-svg-iconset1-preview {
|
184 |
+
font-size:90px;
|
185 |
+
display: block;
|
186 |
+
margin: 0 auto;
|
187 |
+
margin-top: 10px;
|
188 |
+
}
|
189 |
+
|
190 |
+
.wp-svg-icon-preview-box {
|
191 |
+
max-width: 316px;
|
192 |
+
min-width: 200px;
|
193 |
+
border: 1px dashed #CCCCCC;
|
194 |
+
height:145px;
|
195 |
+
padding: 1em;
|
196 |
+
margin-bottom:10px;
|
197 |
+
text-align:center;
|
198 |
+
margin: 1.5em 2em 0 0;
|
199 |
+
}
|
200 |
+
|
201 |
+
.wp-svg-icon-preview-box.default-icons {
|
202 |
+
float: right;
|
203 |
+
}
|
204 |
+
|
205 |
+
.wp-svg-paypal-donation-button {
|
206 |
+
margin-top: -50px;
|
207 |
+
right:0;
|
208 |
+
}
|
209 |
+
|
210 |
+
body.toplevel_page_wp-svg-icons .how-to-use,
|
211 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set .how-to-use,
|
212 |
+
body.wp-svg-icons_page_wp_svg_icons .how-to-use,
|
213 |
+
body.p-svg-icons_page_wp-svg-icons-support .how-to-use {
|
214 |
+
width:100%;
|
215 |
+
border: 1px solid #CCCCCC;
|
216 |
+
margin-bottom: 5px;
|
217 |
+
float:left;
|
218 |
+
padding-bottom:20px;
|
219 |
+
}
|
220 |
+
|
221 |
+
body.toplevel_page_wp-svg-icons .help-boxes,
|
222 |
+
body.wp-svg-icons_page_wp-svg-icons-custom-set .help-boxes,
|
223 |
+
body.wp-svg-icons_page_wp_svg_icons .help-boxes,
|
224 |
+
body.p-svg-icons_page_wp-svg-icons-support .help-boxes {
|
225 |
+
width: 100%;
|
226 |
+
}
|
227 |
+
|
228 |
+
.glyph-demo .fs1 {
|
229 |
+
padding: .35em !important;
|
230 |
+
font-size: 2em !important;
|
231 |
+
}
|
232 |
+
|
233 |
+
.insert-wp-svg-icon {
|
234 |
+
margin-left: 2.7em !important;
|
235 |
+
}
|
236 |
+
|
237 |
+
.element_selection_container {
|
238 |
+
width: 100%;
|
239 |
+
display: block;
|
240 |
+
margin: 1em 0;
|
241 |
+
}
|
242 |
+
|
243 |
+
.selected-element-wrap {
|
244 |
+
color: #ff8000 !important;
|
245 |
+
}
|
246 |
+
|
247 |
+
.wp-svg-how-to-use-container {
|
248 |
+
float: left;
|
249 |
+
width: 50%;
|
250 |
+
}
|
251 |
+
|
252 |
+
/* 710px Break point */
|
253 |
+
@media only screen and (max-width: 710px) {
|
254 |
+
|
255 |
+
#social-icons {
|
256 |
+
display: none;
|
257 |
+
}
|
258 |
+
|
259 |
+
}
|
260 |
+
|
261 |
+
/* 625px Break point */
|
262 |
+
@media only screen and (max-width: 625px) {
|
263 |
+
|
264 |
+
.wp-svg-how-to-use-container {
|
265 |
+
width: 100%;
|
266 |
+
}
|
267 |
+
|
268 |
+
.copy_paste_input {
|
269 |
+
width: 90% !important;
|
270 |
+
border: none;
|
271 |
+
box-shadow: none;
|
272 |
+
background: transparent;
|
273 |
+
}
|
274 |
+
|
275 |
+
.wp-svg-icon-preview-box {
|
276 |
+
border: none !important;
|
277 |
+
width: 100%;
|
278 |
+
max-width: 100%;
|
279 |
+
margin: 0 auto;
|
280 |
+
}
|
281 |
+
|
282 |
+
}
|
admin/css/default-icon-styles.min.css
CHANGED
@@ -1,6 +1 @@
|
|
1 |
-
|
2 |
-
Default Styles for the Default Icon Pack Page
|
3 |
-
WP SVG Icons - Compiled by Evan Herman
|
4 |
-
https://www.Evan-Herman.com
|
5 |
-
*/
|
6 |
-
.toplevel_page_wp-svg-icons #wpfooter{display:none}#wp-svg-nav-tab-wrapper{display:block;float:left;width:95%}.svg-custom-upload-wrap,.toplevel_page_wp-svg-icons .wrap{margin-top:2.5em!important}#TB_ajaxContent .wp-svg-icons-wrap{margin-right:0}.copy_paste_input{border:none!important;box-shadow:none!important;background:0 0!important;font-weight:600!important}.yes-adv-attr:before{font-family:dashicons;content:"\f147";padding-right:2px;color:#5b9f6b}.expansion-Glyph,.glyph{font-size:.75em;float:left;text-align:center;padding:.15em;margin:0 1em 1em;height:35px;width:35px;border-radius:.25em;color:#333;-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.15s}.expansion-Glyph{font-size:2em!important}.glyph:hover{color:#FF8000;cursor:pointer}.expansion-Glyph input,.glyph input{font-family:consolas,monospace;font-size:13px;width:100%;text-align:center;border:0;box-shadow:0 0 0 1px #ccc;padding:.125em;display:none}.selected{color:#FF8000;background:#d8d8d8;border-radius:5px}.expansion-Glyph:hover{background-color:#CCC!important;cursor:pointer!important}.w-main{width:98%}.centered{margin-right:auto}.wp-svg-title{font-size:2em;font-weight:400;line-height:1.2}.clearfix:after,.clearfix:before{content:"";display:table}.clear,.clearfix:after{clear:both}footer{margin-top:2em;padding:.5em 0;box-shadow:0 -2px #eee}body.p-svg-icons_page_wp-svg-icons-support a,body.toplevel_page_wp-svg-icons a,body.wp-svg-icons_page_wp-svg-icons-custom-set a,body.wp-svg-icons_page_wp_svg_icons a{color:#333}body.p-svg-icons_page_wp-svg-icons-support a:hover,body.toplevel_page_wp-svg-icons a:hover,body.wp-svg-icons_page_wp-svg-icons-custom-set a:hover,body.wp-svg-icons_page_wp_svg_icons a:hover{color:#B35047}body.p-svg-icons_page_wp-svg-icons-support a:visited,body.toplevel_page_wp-svg-icons a:visited,body.wp-svg-icons_page_wp-svg-icons-custom-set a:visited,body.wp-svg-icons_page_wp_svg_icons a:visited{color:#333;text-decoration:none}body.p-svg-icons_page_wp-svg-icons-support a:active,body.toplevel_page_wp-svg-icons a:active,body.wp-svg-icons_page_wp-svg-icons-custom-set a:active,body.wp-svg-icons_page_wp_svg_icons a:active{color:none}.box1{font-size:16px;display:inline-block;width:15em;padding:.25em .5em;background:#eee;margin:.5em 1em .5em 0}body.p-svg-icons_page_wp-svg-icons-support input:focus,body.toplevel_page_wp-svg-icons input:focus,body.wp-svg-icons_page_wp-svg-icons-custom-set input:focus,body.wp-svg-icons_page_wp_svg_icons input:focus{background:#E1E1E1}.wp-svg-icon-preview{width:30px}.fs1,.fs2,.fs3,.fs4,.fs5,.fs6,.fs7{padding:.85em;border-radius:5px}.wp-svg-iconset1-preview{font-size:90px;display:block;margin:10px auto 0}.wp-svg-icon-preview-box{width:30%;max-width:316px;min-width:200px;float:right;border:1px dashed #CCC;height:145px;padding:1em;text-align:center;margin:1.5em 2em 0 0}.wp-svg-paypal-donation-button{margin-top:-50px;right:0}body.p-svg-icons_page_wp-svg-icons-support .how-to-use,body.toplevel_page_wp-svg-icons .how-to-use,body.wp-svg-icons_page_wp-svg-icons-custom-set .how-to-use,body.wp-svg-icons_page_wp_svg_icons .how-to-use{width:100%;border:1px solid #CCC;margin-bottom:5px;float:left;padding-bottom:20px}body.p-svg-icons_page_wp-svg-icons-support .help-boxes,body.toplevel_page_wp-svg-icons .help-boxes,body.wp-svg-icons_page_wp-svg-icons-custom-set .help-boxes,body.wp-svg-icons_page_wp_svg_icons .help-boxes{width:100%}.glyph-demo .fs1{padding:.35em!important;font-size:2em!important}.insert-wp-svg-icon{margin-left:2.7em!important}.element_selection_container{width:100%;display:block;margin:1em 0}.selected-element-wrap{color:#ff8000!important}.wp-svg-how-to-use-container{float:left;width:50%}@media only screen and (max-width:710px){#social-icons{display:none}}@media only screen and (max-width:625px){.wp-svg-how-to-use-container{width:100%}.copy_paste_input{width:90%!important;border:none;box-shadow:none;background:0 0}.wp-svg-icon-preview-box{border:none!important;width:100%;max-width:100%;margin:0 auto}}
|
1 |
+
.toplevel_page_wp-svg-icons #wpfooter{display:none}#wp-svg-nav-tab-wrapper{display:block;float:left;width:95%}.preview-icon-code-box{margin-bottom:2em}.svg-custom-upload-wrap,.toplevel_page_wp-svg-icons .wrap{margin-top:2.5em!important}#TB_ajaxContent .wp-svg-icons-wrap{margin-right:0}.copy_paste_input{border:none!important;box-shadow:none!important;background:0 0!important;font-weight:600!important}.yes-adv-attr:before{font-family:dashicons;content:"\f147";padding-right:2px;color:#5b9f6b}.expansion-Glyph,.glyph{font-size:.75em;float:left;text-align:center;padding:.15em;margin:0 1em 1em;height:35px;width:35px;border-radius:.25em;color:#333;-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.15s}.expansion-Glyph{font-size:2em!important}.glyph:hover{color:#FF8000;cursor:pointer}.expansion-Glyph input,.glyph input{font-family:consolas,monospace;font-size:13px;width:100%;text-align:center;border:0;box-shadow:0 0 0 1px #ccc;padding:.125em;display:none}.selected{color:#FF8000;background:#d8d8d8;border-radius:5px}.expansion-Glyph:hover{background-color:#CCC!important;cursor:pointer!important}.w-main{width:98%}.centered{margin-right:auto}.wp-svg-title{font-size:2em;font-weight:400;line-height:1.2}.clearfix:after,.clearfix:before{content:"";display:table}.clear,.clearfix:after{clear:both}footer{margin-top:2em;padding:.5em 0;box-shadow:0 -2px #eee}body.p-svg-icons_page_wp-svg-icons-support a,body.toplevel_page_wp-svg-icons a,body.wp-svg-icons_page_wp-svg-icons-custom-set a,body.wp-svg-icons_page_wp_svg_icons a{color:#333}body.p-svg-icons_page_wp-svg-icons-support a:hover,body.toplevel_page_wp-svg-icons a:hover,body.wp-svg-icons_page_wp-svg-icons-custom-set a:hover,body.wp-svg-icons_page_wp_svg_icons a:hover{color:#B35047}body.p-svg-icons_page_wp-svg-icons-support a:visited,body.toplevel_page_wp-svg-icons a:visited,body.wp-svg-icons_page_wp-svg-icons-custom-set a:visited,body.wp-svg-icons_page_wp_svg_icons a:visited{color:#333;text-decoration:none}body.p-svg-icons_page_wp-svg-icons-support a:active,body.toplevel_page_wp-svg-icons a:active,body.wp-svg-icons_page_wp-svg-icons-custom-set a:active,body.wp-svg-icons_page_wp_svg_icons a:active{color:none}.box1{font-size:16px;display:inline-block;width:15em;padding:.25em .5em;background:#eee;margin:.5em 1em .5em 0}body.p-svg-icons_page_wp-svg-icons-support input:focus,body.toplevel_page_wp-svg-icons input:focus,body.wp-svg-icons_page_wp-svg-icons-custom-set input:focus,body.wp-svg-icons_page_wp_svg_icons input:focus{background:#E1E1E1}.wp-svg-icon-preview{width:30px}.fs1,.fs2,.fs3,.fs4,.fs5,.fs6,.fs7{padding:.85em;border-radius:5px}.wp-svg-iconset1-preview{font-size:90px;display:block;margin:10px auto 0}.wp-svg-icon-preview-box{max-width:316px;min-width:200px;border:1px dashed #CCC;height:145px;padding:1em;text-align:center;margin:1.5em 2em 0 0}.wp-svg-icon-preview-box.default-icons{float:right}.wp-svg-paypal-donation-button{margin-top:-50px;right:0}body.p-svg-icons_page_wp-svg-icons-support .how-to-use,body.toplevel_page_wp-svg-icons .how-to-use,body.wp-svg-icons_page_wp-svg-icons-custom-set .how-to-use,body.wp-svg-icons_page_wp_svg_icons .how-to-use{width:100%;border:1px solid #CCC;margin-bottom:5px;float:left;padding-bottom:20px}body.p-svg-icons_page_wp-svg-icons-support .help-boxes,body.toplevel_page_wp-svg-icons .help-boxes,body.wp-svg-icons_page_wp-svg-icons-custom-set .help-boxes,body.wp-svg-icons_page_wp_svg_icons .help-boxes{width:100%}.glyph-demo .fs1{padding:.35em!important;font-size:2em!important}.insert-wp-svg-icon{margin-left:2.7em!important}.element_selection_container{width:100%;display:block;margin:1em 0}.selected-element-wrap{color:#ff8000!important}.wp-svg-how-to-use-container{float:left;width:50%}@media only screen and (max-width:710px){#social-icons{display:none}}@media only screen and (max-width:625px){.wp-svg-how-to-use-container{width:100%}.copy_paste_input{width:90%!important;border:none;box-shadow:none;background:0 0}.wp-svg-icon-preview-box{border:none!important;width:100%;max-width:100%;margin:0 auto}}
|
|
|
|
|
|
|
|
|
|
admin/css/jquery.dropdown.css
CHANGED
@@ -1 +1,125 @@
|
|
1 |
-
.dropdown {
|
2 |
position: absolute;
|
3 |
top: -6px;
|
4 |
left: 9px;
|
5 |
content: '';
|
6 |
border-left: 7px solid transparent;
|
7 |
border-right: 7px solid transparent;
|
8 |
border-bottom: 7px solid #CCC;
|
9 |
border-bottom-color: rgba(0, 0, 0, 0.2);
|
10 |
display: inline-block;
|
11 |
position: absolute;
|
12 |
top: -5px;
|
13 |
left: 10px;
|
14 |
content: '';
|
15 |
border-left: 6px solid transparent;
|
16 |
border-right: 6px solid transparent;
|
17 |
border-bottom: 6px solid #FFF;
|
18 |
display: inline-block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
position: absolute;
|
2 |
top: -6px;
|
3 |
left: 9px;
|
4 |
content: '';
|
5 |
border-left: 7px solid transparent;
|
6 |
border-right: 7px solid transparent;
|
7 |
border-bottom: 7px solid #CCC;
|
8 |
border-bottom-color: rgba(0, 0, 0, 0.2);
|
9 |
display: inline-block;
|
10 |
position: absolute;
|
11 |
top: -5px;
|
12 |
left: 10px;
|
13 |
content: '';
|
14 |
border-left: 6px solid transparent;
|
15 |
border-right: 6px solid transparent;
|
16 |
border-bottom: 6px solid #FFF;
|
17 |
display: inline-block;
|
18 |
+
.dropdown {
|
19 |
+
position: absolute;
|
20 |
+
z-index: 9999999;
|
21 |
+
display: none;
|
22 |
+
}
|
23 |
+
.dropdown .dropdown-menu,
|
24 |
+
.dropdown .dropdown-panel {
|
25 |
+
min-width: 160px;
|
26 |
+
max-width: 360px;
|
27 |
+
list-style: none;
|
28 |
+
background: #FFF;
|
29 |
+
border: solid 1px #DDD;
|
30 |
+
border: solid 1px rgba(0, 0, 0, .2);
|
31 |
+
border-radius: 6px;
|
32 |
+
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
33 |
+
overflow: visible;
|
34 |
+
padding: 4px 0;
|
35 |
+
margin: 0;
|
36 |
+
}
|
37 |
+
.dropdown .dropdown-panel {
|
38 |
+
padding: 10px;
|
39 |
+
}
|
40 |
+
.dropdown.dropdown-tip {
|
41 |
+
margin-top: -20px;
|
42 |
+
left: 220px !important;
|
43 |
+
}
|
44 |
+
.dropdown.dropdown-tip:before {
|
45 |
+
position: absolute;
|
46 |
+
top: -6px;
|
47 |
+
left: 9px;
|
48 |
+
content: '';
|
49 |
+
border-left: 7px solid transparent;
|
50 |
+
border-right: 7px solid transparent;
|
51 |
+
border-bottom: 7px solid #CCC;
|
52 |
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
53 |
+
display: inline-block;
|
54 |
+
}
|
55 |
+
.dropdown.dropdown-tip.dropdown-anchor-right:before {
|
56 |
+
left: auto;
|
57 |
+
right: 9px;
|
58 |
+
}
|
59 |
+
.dropdown.dropdown-tip:after {
|
60 |
+
position: absolute;
|
61 |
+
top: -5px;
|
62 |
+
left: 10px;
|
63 |
+
content: '';
|
64 |
+
border-left: 6px solid transparent;
|
65 |
+
border-right: 6px solid transparent;
|
66 |
+
border-bottom: 6px solid #FFF;
|
67 |
+
display: inline-block;
|
68 |
+
}
|
69 |
+
.dropdown.dropdown-tip.dropdown-anchor-right:after {
|
70 |
+
left: auto;
|
71 |
+
right: 10px;
|
72 |
+
}
|
73 |
+
.dropdown.dropdown-scroll .dropdown-menu,
|
74 |
+
.dropdown.dropdown-scroll .dropdown-panel {
|
75 |
+
max-height: 358px;
|
76 |
+
overflow: auto;
|
77 |
+
}
|
78 |
+
.dropdown .dropdown-menu LI {
|
79 |
+
list-style: none;
|
80 |
+
padding: 0 0;
|
81 |
+
margin: 0;
|
82 |
+
line-height: 10px;
|
83 |
+
}
|
84 |
+
.dropdown .dropdown-menu LI > A,
|
85 |
+
.dropdown .dropdown-menu LABEL {
|
86 |
+
display: block;
|
87 |
+
color: #555;
|
88 |
+
text-decoration: none;
|
89 |
+
line-height: 18px;
|
90 |
+
padding: 3px 15px;
|
91 |
+
white-space: nowrap;
|
92 |
+
}
|
93 |
+
.dropdown .dropdown-menu LI > A:hover,
|
94 |
+
.dropdown .dropdown-menu LABEL:hover {
|
95 |
+
background-color: rgba(255, 128, 0, 0.6);
|
96 |
+
color: #FFF;
|
97 |
+
cursor: pointer;
|
98 |
+
}
|
99 |
+
.dropdown .dropdown-menu .dropdown-divider {
|
100 |
+
font-size: 1px;
|
101 |
+
border-top: solid 1px #E5E5E5;
|
102 |
+
padding: 0;
|
103 |
+
margin: 5px 0;
|
104 |
+
}
|
105 |
+
/* Icon Examples - icons courtesy of http://p.yusukekamiyamane.com/ */
|
106 |
+
.dropdown.has-icons LI > A {
|
107 |
+
padding-left: 30px;
|
108 |
+
background-position: 8px center;
|
109 |
+
background-repeat: no-repeat;
|
110 |
+
}
|
111 |
+
.dropdown .undo A { background-image: url(icons/arrow-curve-180-left.png); }
|
112 |
+
.dropdown .redo A { background-image: url(icons/arrow-curve.png); }
|
113 |
+
.dropdown .cut A { background-image: url(icons/scissors.png); }
|
114 |
+
.dropdown .copy A { background-image: url(icons/document-copy.png); }
|
115 |
+
.dropdown .paste A { background-image: url(icons/clipboard.png); }
|
116 |
+
.dropdown .delete A { background-image: url(icons/cross-script.png); }
|
117 |
+
.glyph {
|
118 |
+
font-size: 16px;
|
119 |
+
float: left;
|
120 |
+
text-align: center;
|
121 |
+
background: #eee;
|
122 |
+
padding: .75em;
|
123 |
+
margin: .75em 1.5em .75em 0;
|
124 |
+
width: 7.5em;
|
125 |
+
border-radius: .25em;
|
126 |
+
box-shadow: inset 0 0 0 1px #f8f8f8, 0 0 0 1px #CCC;
|
127 |
+
}
|
128 |
+
|
129 |
+
.fs1 {
|
130 |
+
font-size: 2em;
|
131 |
+
}
|
132 |
+
|
133 |
+
.wp-svg-icon-preview-box {
|
134 |
+
display:inline-block;
|
135 |
+
border: 1px dashed #CCCCCC;
|
136 |
+
height: 125px;
|
137 |
+
padding:.8em;
|
138 |
+
margin-bottom:10px;
|
139 |
+
text-align:center;
|
140 |
+
}
|
141 |
+
|
142 |
+
.wp-svg-icons_page_wp-svg-icons-custom-set footer { float:left; }
|
admin/css/wp-svg-icons-admin.css
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
/**
|
2 |
-
* WP SVG Icons
|
3 |
* Compiled by Evan Herman
|
4 |
* https://www.evan-herman.com
|
5 |
* All of the CSS for your dashboard-specific functionality should be
|
6 |
* included in this file.
|
7 |
*/
|
8 |
-
|
9 |
/* Hide Duplicate Child Submenu in Admin */
|
10 |
.custom-pack-container-ajax {
|
11 |
width: 100%;
|
12 |
}
|
13 |
-
|
14 |
-
|
15 |
.custom-pack-container-ajax [class^="wp-svg-custom-"], .custom-pack-container-ajax [class*=" wp-svg-custom-"] {
|
16 |
font-size: 2.75em !important;
|
17 |
}
|
18 |
-
|
19 |
.mhl > h1:first-child, .mbl, .bgc1 > .mhl { display:none; }
|
20 |
.glyph fieldset, .glyph .fs0 { display:none; }
|
21 |
.glyph span:first-child { display:block; width:100%; font-size:1.5em; }
|
@@ -23,10 +23,8 @@
|
|
23 |
.glyph { color:#333333; }
|
24 |
.selected { color: #FF8800; background:#d8d8d8; }
|
25 |
.selected span:last-child { color:#666666; }
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
/* Custom Icon Preview Contianer */
|
31 |
.wp-svg-icon-preview .previewIcon {
|
32 |
font-size: 90px;
|
@@ -34,11 +32,24 @@
|
|
34 |
margin:0 auto;
|
35 |
margin-top: 10px;
|
36 |
}
|
37 |
-
|
38 |
-
.wp-svg-icons-wrap .custom-pack-container-ajax .glyph {
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
}
|
41 |
-
|
42 |
/* Custom Icon Pack Styles */
|
43 |
.wrap .current-font-pack .mhl > h1:first-child, .mbl, .bgc1 > .mhl { display:none; }
|
44 |
.wrap .current-font-pack .glyph { background:transparent; margin: .25em .35em .25em 0; width:1.5em; padding:.35em; box-shadow:none; -o-transition:.15s; -ms-transition:.15s; -moz-transition:.15s; -webkit-transition:.15s; transition:.15s; font-size: 1.75em; }
|
@@ -54,66 +65,66 @@
|
|
54 |
.wrap .current-font-pack .wp-svg-icon-preview-box i { display:block; margin-top:-.5em; padding-top:5px; }
|
55 |
.wrap .current-font-pack .wp-svg-icon-preview div { margin-top: 10px; }
|
56 |
.wp-svg-icons_page_wp-svg-icons-custom-set ::selection { background: #FF8000; }
|
57 |
-
|
58 |
.toplevel_page_wp-svg-icons .wp-menu-image img {
|
59 |
margin-top: -3px;
|
60 |
}
|
61 |
-
|
62 |
.dashicons-wp-svg-gift:before {
|
63 |
content: "\e099" !important;
|
64 |
font-size: 18px;
|
65 |
}
|
66 |
-
|
67 |
/** Advanced Shortcode Attrs */
|
68 |
#advanced-shortcode-attr-list {
|
69 |
display: none;
|
70 |
margin: 0 35px 0 35px;
|
71 |
}
|
72 |
-
|
73 |
#advanced-shortcode-attr-list li {
|
74 |
width: 46.5%;
|
75 |
float: left;
|
76 |
}
|
77 |
-
|
78 |
.shortcode-attr-right-column {
|
79 |
float: right !important;
|
80 |
}
|
81 |
-
|
82 |
.wp-svg-advanced-shortcode-attr-row strong {
|
83 |
display: block;
|
84 |
margin-bottom: .25em;
|
85 |
}
|
86 |
-
|
87 |
.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container {
|
88 |
width: 100%;
|
89 |
}
|
90 |
-
|
91 |
/*
|
92 |
.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container .wp-picker-holder {
|
93 |
position: absolute;
|
94 |
}
|
95 |
*/
|
96 |
-
|
97 |
.wp-svg-advanced-shortcode-attr-row {
|
98 |
display: block;
|
99 |
width: 100%;
|
100 |
float:left;
|
101 |
}
|
102 |
-
|
103 |
.wp-svg-advanced-shortcode-attr-row:nth-child(2) {
|
104 |
margin-top: 1em;
|
105 |
}
|
106 |
-
|
107 |
#advanced-shortcode-attr-toggle {
|
108 |
font-size:11px;
|
109 |
}
|
110 |
-
|
111 |
#icon-size-input {
|
112 |
max-width: 75px;
|
113 |
margin-top: 1em;
|
114 |
text-align: center;
|
115 |
}
|
116 |
-
|
117 |
.wp-svg-happy {
|
118 |
-o-transition:.15s;
|
119 |
-ms-transition:.15s;
|
@@ -125,7 +136,7 @@
|
|
125 |
.wp-svg-happy:hover {
|
126 |
color: #FF8000;
|
127 |
}
|
128 |
-
|
129 |
#review-wp-svg-icons-notice {
|
130 |
display: block;
|
131 |
border-left: 4px solid #FF8000;
|
@@ -142,4 +153,4 @@
|
|
142 |
#review-wp-svg-icons-notice .button-container {
|
143 |
display: block;
|
144 |
text-align: center;
|
145 |
-
}
|
1 |
/**
|
2 |
+
* WP SVG Icons
|
3 |
* Compiled by Evan Herman
|
4 |
* https://www.evan-herman.com
|
5 |
* All of the CSS for your dashboard-specific functionality should be
|
6 |
* included in this file.
|
7 |
*/
|
8 |
+
|
9 |
/* Hide Duplicate Child Submenu in Admin */
|
10 |
.custom-pack-container-ajax {
|
11 |
width: 100%;
|
12 |
}
|
13 |
+
|
14 |
+
|
15 |
.custom-pack-container-ajax [class^="wp-svg-custom-"], .custom-pack-container-ajax [class*=" wp-svg-custom-"] {
|
16 |
font-size: 2.75em !important;
|
17 |
}
|
18 |
+
|
19 |
.mhl > h1:first-child, .mbl, .bgc1 > .mhl { display:none; }
|
20 |
.glyph fieldset, .glyph .fs0 { display:none; }
|
21 |
.glyph span:first-child { display:block; width:100%; font-size:1.5em; }
|
23 |
.glyph { color:#333333; }
|
24 |
.selected { color: #FF8800; background:#d8d8d8; }
|
25 |
.selected span:last-child { color:#666666; }
|
26 |
+
|
27 |
+
|
|
|
|
|
28 |
/* Custom Icon Preview Contianer */
|
29 |
.wp-svg-icon-preview .previewIcon {
|
30 |
font-size: 90px;
|
32 |
margin:0 auto;
|
33 |
margin-top: 10px;
|
34 |
}
|
35 |
+
|
36 |
+
.wp-svg-icons-wrap .custom-pack-container-ajax .glyph {
|
37 |
+
height: auto;
|
38 |
+
padding: 0.55em;
|
39 |
+
width: auto;
|
40 |
+
margin: 0 0.55em 1em;
|
41 |
+
font-size: 1.15em;
|
42 |
+
}
|
43 |
+
|
44 |
+
.wp-svg-icons-wrap .custom-pack-container-ajax h1.mhmm {
|
45 |
+
text-align: center;
|
46 |
+
margin-bottom: 0.5em;
|
47 |
+
}
|
48 |
+
|
49 |
+
#TB_ajaxContent .wp-svg-icons-wrap .insert-wp-svg-icon {
|
50 |
+
margin-bottom: 15px;
|
51 |
}
|
52 |
+
|
53 |
/* Custom Icon Pack Styles */
|
54 |
.wrap .current-font-pack .mhl > h1:first-child, .mbl, .bgc1 > .mhl { display:none; }
|
55 |
.wrap .current-font-pack .glyph { background:transparent; margin: .25em .35em .25em 0; width:1.5em; padding:.35em; box-shadow:none; -o-transition:.15s; -ms-transition:.15s; -moz-transition:.15s; -webkit-transition:.15s; transition:.15s; font-size: 1.75em; }
|
65 |
.wrap .current-font-pack .wp-svg-icon-preview-box i { display:block; margin-top:-.5em; padding-top:5px; }
|
66 |
.wrap .current-font-pack .wp-svg-icon-preview div { margin-top: 10px; }
|
67 |
.wp-svg-icons_page_wp-svg-icons-custom-set ::selection { background: #FF8000; }
|
68 |
+
|
69 |
.toplevel_page_wp-svg-icons .wp-menu-image img {
|
70 |
margin-top: -3px;
|
71 |
}
|
72 |
+
|
73 |
.dashicons-wp-svg-gift:before {
|
74 |
content: "\e099" !important;
|
75 |
font-size: 18px;
|
76 |
}
|
77 |
+
|
78 |
/** Advanced Shortcode Attrs */
|
79 |
#advanced-shortcode-attr-list {
|
80 |
display: none;
|
81 |
margin: 0 35px 0 35px;
|
82 |
}
|
83 |
+
|
84 |
#advanced-shortcode-attr-list li {
|
85 |
width: 46.5%;
|
86 |
float: left;
|
87 |
}
|
88 |
+
|
89 |
.shortcode-attr-right-column {
|
90 |
float: right !important;
|
91 |
}
|
92 |
+
|
93 |
.wp-svg-advanced-shortcode-attr-row strong {
|
94 |
display: block;
|
95 |
margin-bottom: .25em;
|
96 |
}
|
97 |
+
|
98 |
.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container {
|
99 |
width: 100%;
|
100 |
}
|
101 |
+
|
102 |
/*
|
103 |
.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container .wp-picker-holder {
|
104 |
position: absolute;
|
105 |
}
|
106 |
*/
|
107 |
+
|
108 |
.wp-svg-advanced-shortcode-attr-row {
|
109 |
display: block;
|
110 |
width: 100%;
|
111 |
float:left;
|
112 |
}
|
113 |
+
|
114 |
.wp-svg-advanced-shortcode-attr-row:nth-child(2) {
|
115 |
margin-top: 1em;
|
116 |
}
|
117 |
+
|
118 |
#advanced-shortcode-attr-toggle {
|
119 |
font-size:11px;
|
120 |
}
|
121 |
+
|
122 |
#icon-size-input {
|
123 |
max-width: 75px;
|
124 |
margin-top: 1em;
|
125 |
text-align: center;
|
126 |
}
|
127 |
+
|
128 |
.wp-svg-happy {
|
129 |
-o-transition:.15s;
|
130 |
-ms-transition:.15s;
|
136 |
.wp-svg-happy:hover {
|
137 |
color: #FF8000;
|
138 |
}
|
139 |
+
|
140 |
#review-wp-svg-icons-notice {
|
141 |
display: block;
|
142 |
border-left: 4px solid #FF8000;
|
153 |
#review-wp-svg-icons-notice .button-container {
|
154 |
display: block;
|
155 |
text-align: center;
|
156 |
+
}
|
admin/css/wp-svg-icons-admin.min.css
CHANGED
@@ -1,2 +1 @@
|
|
1 |
-
|
2 |
-
.custom-pack-container-ajax{width:100%}.custom-pack-container-ajax [class*=" wp-svg-custom-"],.custom-pack-container-ajax [class^=wp-svg-custom-]{font-size:2.75em!important}.bgc1>.mhl,.glyph .fs0,.glyph fieldset,.mbl,.mhl>h1:first-child{display:none}.glyph span:first-child{display:block;width:100%;font-size:1.5em}.glyph span:last-child{line-height:.9;font-size:15px;display:none}.glyph{color:#333}.selected{color:#F80;background:#d8d8d8}.selected span:last-child{color:#666}.custom-pack-container-ajax .glyph{width:29px}.wp-svg-icon-preview .previewIcon{font-size:90px;display:block;margin:10px auto 0}.wp-svg-icons-wrap .custom-pack-container-ajax .glyph{padding:10px 7px 0!important}.bgc1>.mhl,.mbl,.wrap .current-font-pack .mhl>h1:first-child{display:none}.wrap .current-font-pack .glyph{background:0 0;margin:.25em .35em .25em 0;width:1.5em;padding:.35em;box-shadow:none;-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.15s;font-size:1.75em}.wrap .current-font-pack .glyph:hover{cursor:pointer;color:#ff8000}.glyph .fs0,.wrap .current-font-pack .glyph fieldset{display:none}.wrap .current-font-pack .glyph span:first-child{display:block;width:100%;font-size:1.5em}.wrap .current-font-pack .glyph span:last-child{line-height:.9;font-size:15px;display:none}.wrap .current-font-pack .glyph{color:#333}.wrap .current-font-pack .selected{color:#F80;background:#d8d8d8}.wrap .current-font-pack .selected span:last-child{color:#666}.wrap .current-font-pack .wp-svg-icon-preview-box{margin-top:-6em}.wrap .current-font-pack .wp-svg-icon-preview{font-size:8em}.wrap .current-font-pack .wp-svg-icon-preview-box i{display:block;margin-top:-.5em;padding-top:5px}.wrap .current-font-pack .wp-svg-icon-preview div{margin-top:10px}.wp-svg-icons_page_wp-svg-icons-custom-set ::selection{background:#FF8000}.toplevel_page_wp-svg-icons .wp-menu-image img{margin-top:-3px}.dashicons-wp-svg-gift:before{content:"\e099"!important;font-size:18px}#advanced-shortcode-attr-list{display:none;margin:0 35px}#advanced-shortcode-attr-list li{width:46.5%;float:left}.shortcode-attr-right-column{float:right!important}.wp-svg-advanced-shortcode-attr-row strong{display:block;margin-bottom:.25em}.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container{width:100%}.wp-svg-advanced-shortcode-attr-row{display:block;width:100%;float:left}.wp-svg-advanced-shortcode-attr-row:nth-child(2){margin-top:1em}#advanced-shortcode-attr-toggle{font-size:11px}#icon-size-input{max-width:75px;margin-top:1em;text-align:center}.wp-svg-happy{-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.15s}.wp-svg-happy:hover{color:#FF8000}#review-wp-svg-icons-notice{display:block;margin:5px 20px 2px 0px;border-left:4px solid #FF8000;margin-top:2.5em;padding:2px 10px;background:url(../images/evan-herman-mascot.png) right bottom no-repeat #fff;background-size:120px;background-position-y:29px}#review-wp-svg-icons-notice .button-container{display:block;text-align:center}
|
1 |
+
.custom-pack-container-ajax{width:100%}.custom-pack-container-ajax [class*=" wp-svg-custom-"],.custom-pack-container-ajax [class^=wp-svg-custom-]{font-size:2.75em!important}.bgc1>.mhl,.glyph .fs0,.glyph fieldset,.mbl,.mhl>h1:first-child{display:none}.glyph span:first-child{display:block;width:100%;font-size:1.5em}.glyph span:last-child{line-height:.9;font-size:15px;display:none}.glyph{color:#333}.selected{color:#F80;background:#d8d8d8}.selected span:last-child{color:#666}.wp-svg-icon-preview .previewIcon{font-size:90px;display:block;margin:10px auto 0}.bgc1>.mhl,.glyph .fs0,.mbl,.wrap .current-font-pack .glyph fieldset,.wrap .current-font-pack .mhl>h1:first-child{display:none}.wp-svg-icons-wrap .custom-pack-container-ajax .glyph{height:auto;padding:.55em;width:auto;margin:0 .55em 1em;font-size:1.15em}.wp-svg-icons-wrap .custom-pack-container-ajax h1.mhmm{text-align:center;margin-bottom:.5em}#TB_ajaxContent .wp-svg-icons-wrap .insert-wp-svg-icon{margin-bottom:15px}.wrap .current-font-pack .glyph{background:0 0;margin:.25em .35em .25em 0;width:1.5em;padding:.35em;box-shadow:none;-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.15s;font-size:1.75em}.wrap .current-font-pack .glyph:hover{cursor:pointer;color:#ff8000}.wrap .current-font-pack .glyph span:first-child{display:block;width:100%;font-size:1.5em}.wrap .current-font-pack .glyph span:last-child{line-height:.9;font-size:15px;display:none}.wrap .current-font-pack .glyph{color:#333}.wrap .current-font-pack .selected{color:#F80;background:#d8d8d8}.wrap .current-font-pack .selected span:last-child{color:#666}.wrap .current-font-pack .wp-svg-icon-preview-box{margin-top:-6em}.wrap .current-font-pack .wp-svg-icon-preview{font-size:8em}.wrap .current-font-pack .wp-svg-icon-preview-box i{display:block;margin-top:-.5em;padding-top:5px}.wrap .current-font-pack .wp-svg-icon-preview div{margin-top:10px}.wp-svg-icons_page_wp-svg-icons-custom-set ::selection{background:#FF8000}.toplevel_page_wp-svg-icons .wp-menu-image img{margin-top:-3px}.dashicons-wp-svg-gift:before{content:"\e099"!important;font-size:18px}#advanced-shortcode-attr-list{display:none;margin:0 35px}#advanced-shortcode-attr-list li{width:46.5%;float:left}.shortcode-attr-right-column{float:right!important}.wp-svg-advanced-shortcode-attr-row strong{display:block;margin-bottom:.25em}.wp-svg-advanced-shortcode-attr-row .shortcode-attr-right-column .wp-picker-container{width:100%}.wp-svg-advanced-shortcode-attr-row{display:block;width:100%;float:left}.wp-svg-advanced-shortcode-attr-row:nth-child(2){margin-top:1em}#advanced-shortcode-attr-toggle{font-size:11px}#icon-size-input{max-width:75px;margin-top:1em;text-align:center}.wp-svg-happy{-o-transition:.15s;-ms-transition:.15s;-moz-transition:.15s;-webkit-transition:.15s;transition:.5s}.wp-svg-happy:hover{color:#FF8000}#review-wp-svg-icons-notice{display:block;border-left:4px solid #FF8000;margin:2.5em 20px 2px 0;padding:2px 10px;background:url(../images/evan-herman-mascot.png) right bottom no-repeat #fff;background-size:120px;background-position-y:29px}#review-wp-svg-icons-notice .button-container{display:block;text-align:center}
|
|
admin/js/custom-icon-menu-script.js
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
jQuery(function() {
|
2 |
-
jQuery( document ).ready( function() {
|
3 |
-
|
4 |
-
|
5 |
-
// initialize the select field, when adding new pages to the nav menu
|
6 |
-
jQuery('#menu-settings-column').bind('click', function(e) {
|
7 |
-
var menu_length = jQuery( '.menu-item' ).length;
|
8 |
-
|
9 |
-
setInterval( function() {
|
10 |
-
var new_length = jQuery( '.menu-item' ).length;
|
11 |
-
if( menu_length != new_length ) {
|
12 |
-
menu_length = new_length;
|
13 |
-
jQuery( '.selectpicker' ).each( function() {
|
14 |
-
if( jQuery( this ).next().hasClass( 'bootstrap-select' ) ) {
|
15 |
-
return;
|
16 |
-
} else {
|
17 |
-
jQuery( '.selectpicker' ).selectpicker({
|
18 |
-
size: 8
|
19 |
-
});
|
20 |
-
}
|
21 |
-
});
|
22 |
-
}
|
23 |
-
}, 1800); // end interval
|
24 |
-
|
25 |
-
});
|
26 |
-
|
27 |
-
// initialize the ones that are already set
|
28 |
-
jQuery( '.selectpicker' ).selectpicker({
|
29 |
-
size: 8
|
30 |
-
});
|
31 |
-
|
32 |
-
});
|
33 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/js/wordpress-svg-icon-plugin-scripts.js
CHANGED
@@ -1 +1,251 @@
|
|
1 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
WP SVG ICON PLUGIN SCRIPTS
|
3 |
+
Compiled by Evan Herman - www.Evan-Herman.com
|
4 |
+
*/
|
5 |
+
jQuery(document).ready( function() {
|
6 |
+
|
7 |
+
// select default icon element wrapper on initial page load
|
8 |
+
// iconWrapperClick( jQuery( this ) , localized_data.default_icon_element );
|
9 |
+
|
10 |
+
var interval = null;
|
11 |
+
var x = 0;
|
12 |
+
function check_thick() {
|
13 |
+
interval = setInterval(function() {
|
14 |
+
if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
|
15 |
+
x = 0;
|
16 |
+
if( jQuery( '.icon-wrapper' ).hasClass( 'selected-element-wrap' ) ) {
|
17 |
+
return;
|
18 |
+
}
|
19 |
+
jQuery( '.custom-pack-tab' ).removeAttr( 'style' );
|
20 |
+
// iconWrapperClick( jQuery( this ) , localized_data.default_icon_element );
|
21 |
+
jQuery( '.element_selection_container' ).find( jQuery( '.icon-wrapper[alt="' + localized_data.default_icon_element + '"]' ) ).addClass( 'selected-element-wrap' );
|
22 |
+
} else {
|
23 |
+
x = 1;
|
24 |
+
}
|
25 |
+
}, 50);
|
26 |
+
};
|
27 |
+
// run our check thickbox function
|
28 |
+
// on initial page load
|
29 |
+
check_thick();
|
30 |
+
|
31 |
+
// if a custom icon pack is not installed,
|
32 |
+
// lets make sure that the custom tab remains hidden
|
33 |
+
if ( ! localized_data.custom_pack_active ) {
|
34 |
+
jQuery( '.custom-pack-tab' ).attr( 'style', 'display:none !important;' );
|
35 |
+
}
|
36 |
+
|
37 |
+
|
38 |
+
// when a user clicks on an icon,
|
39 |
+
// load'er up to the preview box
|
40 |
+
function buttonClick() {
|
41 |
+
|
42 |
+
var glyphUnicode = jQuery( 'input[type=text].glyph_unicode', this ).val();
|
43 |
+
var iconClass = jQuery( this ).find( 'div' ).attr( 'class' ).replace( 'fs1' , '' );
|
44 |
+
var selectedIconWrapper = jQuery( '.selected-element-wrap' ).attr( 'alt' );
|
45 |
+
|
46 |
+
jQuery('.glyph').removeClass('selected');
|
47 |
+
|
48 |
+
jQuery(this).addClass('selected');
|
49 |
+
|
50 |
+
jQuery('.copy_paste_input').text('[wp-svg-icons icon="'+iconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
51 |
+
jQuery('input[type=text].expansion_glyph_unicode').css('background-color','#eee');
|
52 |
+
jQuery('input[type=text].glyph_unicode').css('background-color','#eee');
|
53 |
+
jQuery('input[type=text].glyph_unicode', this).css('background-color','#FF8000', 'font-color', '#000');
|
54 |
+
jQuery('.wp-svg-icon-preview').html('<span class="wp-svg-iconset1-preview iconClass" data-icon="'+glyphUnicode+'" style="display:none;"></div>');
|
55 |
+
jQuery( '.wp-svg-iconset1-preview' ).fadeIn( 'fast' );
|
56 |
+
|
57 |
+
// Fade in the insert icon button
|
58 |
+
if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
|
59 |
+
jQuery( '.insert-wp-svg-icon' ).fadeIn();
|
60 |
+
jQuery('#TB_ajaxContent').animate({ scrollTop: 0 }, 'slow'); // scroll thickbox back up
|
61 |
+
} else {
|
62 |
+
jQuery('html, body').animate({ scrollTop: 0 }, 'slow'); // scroll html body
|
63 |
+
}
|
64 |
+
|
65 |
+
};
|
66 |
+
|
67 |
+
function iconWrapperClick( button, element ) {
|
68 |
+
|
69 |
+
if ( jQuery( '.custom-pack-tab' ).hasClass( 'nav-tab-active' ) ) {
|
70 |
+
var active_tab = 'custom';
|
71 |
+
} else {
|
72 |
+
var active_tab = 'default';
|
73 |
+
}
|
74 |
+
|
75 |
+
var iconClass = jQuery( '.wp-svg-iconset1-all-glyphs' ).find( '.glyph-demo.selected' ).find( 'div' ).attr( 'class' );
|
76 |
+
// if the icon class is undefined, we're probably on the custom pack tab
|
77 |
+
if( iconClass === undefined ) {
|
78 |
+
// reset up the variable
|
79 |
+
var iconClass = jQuery( '.custom-pack-container-ajax' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
|
80 |
+
}
|
81 |
+
|
82 |
+
if ( ! button.hasClass( 'glyph' ) ) {
|
83 |
+
|
84 |
+
jQuery( '.icon-wrapper' ).removeClass( 'selected-element-wrap' );
|
85 |
+
|
86 |
+
jQuery( button ).addClass( 'selected-element-wrap' );
|
87 |
+
|
88 |
+
}
|
89 |
+
|
90 |
+
var selectedIconWrapper = ( element === undefined ) ? 'undefined-here' : element;
|
91 |
+
|
92 |
+
if( iconClass ) {
|
93 |
+
iconClass = iconClass.replace( 'fs1' , '' );
|
94 |
+
if( active_tab === 'custom' ) {
|
95 |
+
var newIconClass = iconClass.replace( 'wp-svg-custom-' , '' );
|
96 |
+
jQuery( '.copy_paste_input' ).text('[wp-svg-icons custom_icon="'+newIconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
97 |
+
} else {
|
98 |
+
jQuery( '.copy_paste_input' ).text('[wp-svg-icons icon="'+iconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
99 |
+
}
|
100 |
+
} else {
|
101 |
+
// no icon was selected yet...but we can still add our wrap
|
102 |
+
// swap out the example container for the new element
|
103 |
+
jQuery( '.copy_paste_input' ).text('[wp-svg-icons icon="" wrap=""]');
|
104 |
+
}
|
105 |
+
};
|
106 |
+
|
107 |
+
|
108 |
+
/* Change selected icon wrapper */
|
109 |
+
jQuery( 'body' ).on( 'click' , '.icon-wrapper ' , function() {
|
110 |
+
iconWrapperClick( jQuery( this ) , jQuery( this ).attr( 'alt' ) );
|
111 |
+
});
|
112 |
+
|
113 |
+
/* Change the icon */
|
114 |
+
jQuery( 'body' ).on( 'click' , '.glyph-demo' , buttonClick );
|
115 |
+
jQuery( 'body' ).on( 'click' , '.glyph', function() {
|
116 |
+
if ( jQuery( this ).hasClass( 'glyph-demo' ) ) {
|
117 |
+
return;
|
118 |
+
}
|
119 |
+
iconWrapperClick( jQuery( this ), jQuery( '.selected-element-wrap' ).attr( 'alt' ) );
|
120 |
+
} );
|
121 |
+
|
122 |
+
// set up a timer...
|
123 |
+
var delay = (function(){
|
124 |
+
var timer = 0;
|
125 |
+
return function(callback, ms){
|
126 |
+
clearTimeout (timer);
|
127 |
+
timer = setTimeout(callback, ms);
|
128 |
+
};
|
129 |
+
})();
|
130 |
+
|
131 |
+
});
|
132 |
+
|
133 |
+
// insert our icon into the editor
|
134 |
+
function insert_wp_SVG_icon_to_editor() {
|
135 |
+
var icon_code = jQuery( '.copy_paste_input' ).text();
|
136 |
+
tb_remove();
|
137 |
+
window.send_to_editor( icon_code );
|
138 |
+
event.preventDefault();
|
139 |
+
}
|
140 |
+
|
141 |
+
// click the tab nav, to toggle between default and custom pcaks on edit.php
|
142 |
+
function load_custom_pack( e ) {
|
143 |
+
|
144 |
+
jQuery( '.nav-tab' ).removeClass( 'nav-tab-active' );
|
145 |
+
jQuery( e ).addClass( 'nav-tab-active' );
|
146 |
+
|
147 |
+
if( jQuery( '.custom-pack-container-ajax' ).is( ":empty" ) ) {
|
148 |
+
|
149 |
+
jQuery( '.wp-svg-iconset1-all-glyphs' ).fadeOut( 'fast' , function() {
|
150 |
+
jQuery(".custom-pack-container-ajax").load( localized_data.site_url + "/wp-content/uploads/wp-svg-icons/custom-pack/demo.html" );
|
151 |
+
jQuery.get( localized_data.site_url + "/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
152 |
+
jQuery("head").append("<style>"+data+"</style>");
|
153 |
+
});
|
154 |
+
});
|
155 |
+
|
156 |
+
jQuery('.custom-pack-container-ajax').on( 'click' , '.glyph' , function() {
|
157 |
+
|
158 |
+
jQuery('.glyph').removeClass("selected");
|
159 |
+
jQuery(this).addClass("selected");
|
160 |
+
jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
|
161 |
+
|
162 |
+
var glyphCode = jQuery(this).find('.mls').text();
|
163 |
+
var newGlyphCode = glyphCode.replace( 'wp-svg-' , '' );
|
164 |
+
|
165 |
+
var glyphCode = jQuery.trim(glyphCode);
|
166 |
+
glyphCode = glyphCode.replace( 'wp-svg-custom-' , '' );
|
167 |
+
var selectedIconWrapper = jQuery( '.selected-element-wrap' ).attr( 'alt' );
|
168 |
+
|
169 |
+
// Fade in the insert icon button
|
170 |
+
if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
|
171 |
+
jQuery( '.insert-wp-svg-icon' ).fadeIn();
|
172 |
+
jQuery('#TB_ajaxContent').animate({ scrollTop: 0 }, 'slow'); // scroll thickbox back up
|
173 |
+
} else {
|
174 |
+
jQuery('html, body').animate({ scrollTop: 0 }, 'slow'); // scroll html body
|
175 |
+
}
|
176 |
+
|
177 |
+
jQuery('.copy_paste_input').text('[wp-svg-icons custom_icon="'+glyphCode.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
178 |
+
jQuery('.wp-svg-icon-preview').remove();
|
179 |
+
jQuery('.wp-svg-icon-preview-box > i').after("<b class='wp-svg-icon-preview'><span class='"+glyphCode+" previewIcon' style='display:none;'></span></b>");
|
180 |
+
jQuery('.previewIcon').fadeIn();
|
181 |
+
|
182 |
+
|
183 |
+
});
|
184 |
+
|
185 |
+
|
186 |
+
} else {
|
187 |
+
jQuery( '.wp-svg-iconset1-all-glyphs' ).fadeOut( 'fast' , function() {
|
188 |
+
jQuery(".custom-pack-container-ajax").fadeIn();
|
189 |
+
});
|
190 |
+
}
|
191 |
+
|
192 |
+
}
|
193 |
+
|
194 |
+
function show_defualt_pack( e ) {
|
195 |
+
if( jQuery( '.default-icon-pack ' ).hasClass( 'nav-tab-active' ) ) {
|
196 |
+
return false;
|
197 |
+
} else {
|
198 |
+
jQuery( '.nav-tab' ).removeClass( 'nav-tab-active' );
|
199 |
+
jQuery( e ).addClass( 'nav-tab-active' );
|
200 |
+
jQuery( '.custom-pack-container-ajax' ).fadeOut( 'fast' , function() {
|
201 |
+
jQuery( '.wp-svg-iconset1-all-glyphs' ).fadeIn( 'fast' );
|
202 |
+
});
|
203 |
+
}
|
204 |
+
}
|
205 |
+
|
206 |
+
|
207 |
+
function build_the_icon_shortcode( e ) {
|
208 |
+
// store the element wrap variable
|
209 |
+
var element_wrap = jQuery( '.element_selection_container' ).find( '.selected-element-wrap' ).attr( 'alt' );
|
210 |
+
var icon_name = jQuery( '.glyph.selected' ).find( '.mls' ).text().replace( 'wp-svg-' , '' ).replace( 'custom-' , '' ).trim();
|
211 |
+
|
212 |
+
if( jQuery( e ).hasClass( 'yes-adv-attr' ) ) {
|
213 |
+
var selected_element = jQuery( '.glyph.selected' ).length;
|
214 |
+
if( selected_element > 0 ) { // check if an icon was selected
|
215 |
+
|
216 |
+
// check if were on a custom icon pack, or the default icon pack
|
217 |
+
if ( jQuery( '.custom-pack-tab' ).hasClass( 'nav-tab-active' ) ) {
|
218 |
+
var active_tab = 'custom';
|
219 |
+
} else {
|
220 |
+
var active_tab = 'default';
|
221 |
+
}
|
222 |
+
|
223 |
+
// create an array for our attributes
|
224 |
+
var custom_shortcode_attr_array = [];
|
225 |
+
|
226 |
+
var shortcode = jQuery( '.copy_paste_input' ).text();
|
227 |
+
|
228 |
+
// icon name
|
229 |
+
if( icon_name ) {
|
230 |
+
if( active_tab == 'custom' ) {
|
231 |
+
custom_shortcode_attr_array.push( 'custom_icon="'+icon_name+'"' );
|
232 |
+
} else { // defualt icon
|
233 |
+
custom_shortcode_attr_array.push( 'icon="'+icon_name+'"' );
|
234 |
+
}
|
235 |
+
}
|
236 |
+
|
237 |
+
// element icon wrap
|
238 |
+
if( element_wrap ) {
|
239 |
+
custom_shortcode_attr_array.push( 'wrap="'+element_wrap+'"' );
|
240 |
+
}
|
241 |
+
|
242 |
+
jQuery( '.copy_paste_input' ).text( '[wp-svg-icons '+custom_shortcode_attr_array.join( ' ' )+']' );
|
243 |
+
|
244 |
+
} else { // if not...just toggle the advanced attrs
|
245 |
+
|
246 |
+
}
|
247 |
+
} else {
|
248 |
+
// store default
|
249 |
+
jQuery( '.copy_paste_input' ).text( '[wp-svg-icons icon="'+icon_name+'" wrap="'+element_wrap+'"]' );
|
250 |
+
}
|
251 |
+
}
|
admin/js/wp-svg-delete-custom-pack-ajax.js
CHANGED
@@ -1,5 +1,39 @@
|
|
1 |
-
/*
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* WP SVG Icons
|
3 |
+
* Custom fucntion to uninstall a custom icon pack
|
4 |
+
* Compiled by Evan Herman, https://www.evan-herman.com
|
5 |
+
*/
|
6 |
+
function wp_svg_uninstall_font_pack() {
|
7 |
+
|
8 |
+
if (confirm( translation_array.confirm ) == true) { // translation array passed in via wp_localize_script
|
9 |
+
var data = {
|
10 |
+
action : 'svg_delete_custom_pack'
|
11 |
+
};
|
12 |
+
|
13 |
+
jQuery.ajax({
|
14 |
+
type: "POST",
|
15 |
+
url: ajaxurl,
|
16 |
+
data: data,
|
17 |
+
success: function( response ) {
|
18 |
+
jQuery("footer p:last-child").html("");
|
19 |
+
jQuery(".current-font-pack").html("");
|
20 |
+
jQuery(".preview-icon-code-box").hide();
|
21 |
+
jQuery("#uninstall-pack-button").attr("disabled","disabled");
|
22 |
+
jQuery(".dropDownButton").attr("disabled","disabled");
|
23 |
+
jQuery(".svg-custom-pack-buttons").after("<div class=updated customFontUninstalledMessage><p>"+translation_array.success+"</p></div>");
|
24 |
+
jQuery('input[value="Import"]').removeAttr("disabled");
|
25 |
+
jQuery('#wp_svg_custom_pack_field').removeAttr("disabled");
|
26 |
+
jQuery('.error').remove();
|
27 |
+
setTimeout(function() {
|
28 |
+
jQuery(".updated").fadeOut();
|
29 |
+
},3500);
|
30 |
+
},
|
31 |
+
error: function(response) {
|
32 |
+
console.log('Error deleting icon pack.');
|
33 |
+
jQuery('#delete_succes_and_error_message').html('<div class="error customFontUninstalledMessage"><p>'+translation_array.error+'</p></div>');
|
34 |
+
}
|
35 |
+
});
|
36 |
+
}
|
37 |
+
|
38 |
+
return false;
|
39 |
+
}
|
admin/min/wordpress-svg-icon-plugin-style.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.wpSVGanimatedSpin-fast,.wpSVGanimatedSpin-medium{-webkit-animation-name:rotate;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:rotate;-ms-animation-timing-function:linear}@font-face{font-family:wp-svg-plugin-icon-set1;src:url(icon-font/wp-svg-plugin-icon-set1.eot);src:url(icon-font/wp-svg-plugin-icon-set1.eot?#iefix) format('embedded-opentype'),url(icon-font/wp-svg-plugin-icon-set1.woff) format('woff'),url(icon-font/wp-svg-plugin-icon-set1.ttf) format('truetype'),url(icon-font/wp-svg-plugin-icon-set1.svg#wp-svg-plugin-icon-set1) format('svg');font-weight:400;font-style:normal}.dashicons-wp-svg-gift:before,[data-icon]:before{font-family:wp-svg-plugin-icon-set1!important;content:attr(data-icon);speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.dropDownButton{background:url(../images/download-icon-small.png) 6px 6px no-repeat!important;padding-left:24px!important;background-size:13px 14px!important}.wp-svg-Celsius,.wp-svg-Fahrenheit,.wp-svg-IE,.wp-svg-IcoMoon,.wp-svg-accessibility,.wp-svg-address-book,.wp-svg-aid,.wp-svg-airplane,.wp-svg-alarm,.wp-svg-alarm-2,.wp-svg-android,.wp-svg-angry,.wp-svg-angry-2,.wp-svg-aperture,.wp-svg-apple,.wp-svg-arrow-down,.wp-svg-arrow-down-2,.wp-svg-arrow-down-3,.wp-svg-arrow-down-left,.wp-svg-arrow-down-left-2,.wp-svg-arrow-down-left-3,.wp-svg-arrow-down-right,.wp-svg-arrow-down-right-2,.wp-svg-arrow-down-right-3,.wp-svg-arrow-left,.wp-svg-arrow-left-2,.wp-svg-arrow-left-3,.wp-svg-arrow-right,.wp-svg-arrow-right-2,.wp-svg-arrow-right-3,.wp-svg-arrow-up,.wp-svg-arrow-up-2,.wp-svg-arrow-up-3,.wp-svg-arrow-up-left,.wp-svg-arrow-up-left-2,.wp-svg-arrow-up-left-3,.wp-svg-arrow-up-right,.wp-svg-arrow-up-right-2,.wp-svg-arrow-up-right-3,.wp-svg-attachment,.wp-svg-backward,.wp-svg-backward-2,.wp-svg-barcode,.wp-svg-bars,.wp-svg-bars-2,.wp-svg-bell,.wp-svg-binoculars,.wp-svg-blocked,.wp-svg-blog,.wp-svg-blogger,.wp-svg-blogger-2,.wp-svg-bold,.wp-svg-book,.wp-svg-bookmark,.wp-svg-bookmarks,.wp-svg-books,.wp-svg-box-add,.wp-svg-box-remove,.wp-svg-briefcase,.wp-svg-brightness-contrast,.wp-svg-brightness-medium,.wp-svg-bubble,.wp-svg-bubble-2,.wp-svg-bubbles,.wp-svg-bubbles-2,.wp-svg-bubbles-3,.wp-svg-bubbles-4,.wp-svg-bug,.wp-svg-bullhorn,.wp-svg-busy,.wp-svg-cabinet,.wp-svg-calculate,.wp-svg-calendar,.wp-svg-calendar-2,.wp-svg-camera,.wp-svg-camera-2,.wp-svg-camera-3,.wp-svg-cancel-circle,.wp-svg-cart,.wp-svg-cart-2,.wp-svg-cart-3,.wp-svg-checkbox-checked,.wp-svg-checkbox-partial,.wp-svg-checkbox-unchecked,.wp-svg-checkmark,.wp-svg-checkmark-2,.wp-svg-checkmark-circle,.wp-svg-chrome,.wp-svg-clock,.wp-svg-clock-2,.wp-svg-close,.wp-svg-cloud,.wp-svg-cloud-2,.wp-svg-cloud-3,.wp-svg-cloud-4,.wp-svg-cloud-5,.wp-svg-cloud-6,.wp-svg-cloud-download,.wp-svg-cloud-upload,.wp-svg-cloudy,.wp-svg-cloudy-2,.wp-svg-cloudy-3,.wp-svg-cloudy-4,.wp-svg-clubs,.wp-svg-code,.wp-svg-cog,.wp-svg-cog-2,.wp-svg-cogs,.wp-svg-coin,.wp-svg-compass,.wp-svg-compass-2,.wp-svg-confused,.wp-svg-confused-2,.wp-svg-connection,.wp-svg-console,.wp-svg-contract,.wp-svg-contract-2,.wp-svg-contrast,.wp-svg-cool,.wp-svg-cool-2,.wp-svg-copy,.wp-svg-copy-2,.wp-svg-copy-3,.wp-svg-credit,.wp-svg-crop,.wp-svg-css3,.wp-svg-dashboard,.wp-svg-delicious,.wp-svg-deviantart,.wp-svg-deviantart-2,.wp-svg-diamonds,.wp-svg-dice,.wp-svg-disk,.wp-svg-download,.wp-svg-download-2,.wp-svg-download-3,.wp-svg-drawer,.wp-svg-drawer-2,.wp-svg-drawer-3,.wp-svg-dribbble,.wp-svg-dribbble-2,.wp-svg-dribbble-3,.wp-svg-droplet,.wp-svg-earth,.wp-svg-eject,.wp-svg-embed,.wp-svg-enter,.wp-svg-envelop,.wp-svg-equalizer,.wp-svg-evil,.wp-svg-evil-2,.wp-svg-exit,.wp-svg-expand,.wp-svg-expand-2,.wp-svg-eye,.wp-svg-eye-2,.wp-svg-eye-blocked,.wp-svg-facebook,.wp-svg-facebook-2,.wp-svg-facebook-3,.wp-svg-feed,.wp-svg-feed-2,.wp-svg-feed-3,.wp-svg-feed-4,.wp-svg-file,.wp-svg-file-2,.wp-svg-file-3,.wp-svg-file-4,.wp-svg-file-css,.wp-svg-file-excel,.wp-svg-file-openoffice,.wp-svg-file-pdf,.wp-svg-file-powerpoint,.wp-svg-file-word,.wp-svg-file-xml,.wp-svg-file-zip,.wp-svg-film,.wp-svg-filter,.wp-svg-filter-2,.wp-svg-finder,.wp-svg-fire,.wp-svg-firefox,.wp-svg-first,.wp-svg-flag,.wp-svg-flattr,.wp-svg-flickr,.wp-svg-flickr-2,.wp-svg-flickr-3,.wp-svg-flickr-4,.wp-svg-flip,.wp-svg-flip-2,.wp-svg-folder,.wp-svg-folder-open,.wp-svg-font,.wp-svg-food,.wp-svg-forrst,.wp-svg-forrst-2,.wp-svg-forward,.wp-svg-forward-2,.wp-svg-forward-3,.wp-svg-foursquare,.wp-svg-foursquare-2,.wp-svg-gift,.wp-svg-github,.wp-svg-github-2,.wp-svg-github-3,.wp-svg-github-4,.wp-svg-github-5,.wp-svg-glass,.wp-svg-globe,.wp-svg-google,.wp-svg-google-drive,.wp-svg-google-plus,.wp-svg-google-plus-2,.wp-svg-google-plus-3,.wp-svg-google-plus-4,.wp-svg-grin,.wp-svg-grin-2,.wp-svg-hammer,.wp-svg-hammer-2,.wp-svg-happy,.wp-svg-happy-2,.wp-svg-headphones,.wp-svg-heart,.wp-svg-heart-2,.wp-svg-heart-broken,.wp-svg-history,.wp-svg-home,.wp-svg-home-2,.wp-svg-home-3,.wp-svg-html5,.wp-svg-html5-2,.wp-svg-image,.wp-svg-image-2,.wp-svg-images,.wp-svg-indent-decrease,.wp-svg-indent-increase,.wp-svg-info,.wp-svg-info-2,.wp-svg-insert-template,.wp-svg-instagram,.wp-svg-italic,.wp-svg-joomla,.wp-svg-key,.wp-svg-key-2,.wp-svg-keyboard,.wp-svg-lab,.wp-svg-lanyrd,.wp-svg-laptop,.wp-svg-last,.wp-svg-lastfm,.wp-svg-lastfm-2,.wp-svg-leaf,.wp-svg-left-to-right,.wp-svg-library,.wp-svg-libreoffice,.wp-svg-lightning,.wp-svg-lightning-2,.wp-svg-lightning-3,.wp-svg-lightning-4,.wp-svg-lightning-5,.wp-svg-lightning-6,.wp-svg-lines,.wp-svg-link,.wp-svg-linkedin,.wp-svg-list,.wp-svg-list-2,.wp-svg-location,.wp-svg-location-2,.wp-svg-lock,.wp-svg-lock-2,.wp-svg-loop,.wp-svg-loop-2,.wp-svg-loop-3,.wp-svg-magnet,.wp-svg-mail,.wp-svg-mail-2,.wp-svg-mail-3,.wp-svg-mail-4,.wp-svg-map,.wp-svg-map-2,.wp-svg-menu,.wp-svg-menu-2,.wp-svg-meter,.wp-svg-meter2,.wp-svg-minus,.wp-svg-mobile,.wp-svg-mobile-2,.wp-svg-moon,.wp-svg-moon-2,.wp-svg-mug,.wp-svg-music,.wp-svg-neutral,.wp-svg-neutral-2,.wp-svg-new-tab,.wp-svg-newspaper,.wp-svg-next,.wp-svg-none,.wp-svg-notebook,.wp-svg-notification,.wp-svg-numbered-list,.wp-svg-office,.wp-svg-omega,.wp-svg-opera,.wp-svg-pacman,.wp-svg-paint-format,.wp-svg-paragraph-center,.wp-svg-paragraph-center-2,.wp-svg-paragraph-justify,.wp-svg-paragraph-justify-2,.wp-svg-paragraph-left,.wp-svg-paragraph-left-2,.wp-svg-paragraph-right,.wp-svg-paragraph-right-2,.wp-svg-paste,.wp-svg-paste-2,.wp-svg-paste-3,.wp-svg-pause,.wp-svg-pause-2,.wp-svg-pawn,.wp-svg-paypal,.wp-svg-paypal-2,.wp-svg-paypal-3,.wp-svg-pen,.wp-svg-pencil,.wp-svg-pencil-2,.wp-svg-phone,.wp-svg-phone-hang-up,.wp-svg-picassa,.wp-svg-picassa-2,.wp-svg-pie,.wp-svg-pilcrow,.wp-svg-pinterest,.wp-svg-pinterest-2,.wp-svg-play,.wp-svg-play-2,.wp-svg-play-3,.wp-svg-plus,.wp-svg-podcast,.wp-svg-point-down,.wp-svg-point-left,.wp-svg-point-right,.wp-svg-point-up,.wp-svg-power-cord,.wp-svg-previous,.wp-svg-print,.wp-svg-profile,.wp-svg-pushpin,.wp-svg-qrcode,.wp-svg-question,.wp-svg-quill,.wp-svg-quotes-left,.wp-svg-radio-checked,.wp-svg-radio-unchecked,.wp-svg-rainy,.wp-svg-rainy-2,.wp-svg-rainy-3,.wp-svg-rainy-4,.wp-svg-reddit,.wp-svg-redo,.wp-svg-redo-2,.wp-svg-remove,.wp-svg-remove-2,.wp-svg-reply,.wp-svg-right-to-left,.wp-svg-road,.wp-svg-rocket,.wp-svg-sad,.wp-svg-sad-2,.wp-svg-safari,.wp-svg-scissors,.wp-svg-screen,.wp-svg-search-2,.wp-svg-settings,.wp-svg-share,.wp-svg-shield,.wp-svg-shocked,.wp-svg-shocked-2,.wp-svg-shuffle,.wp-svg-sigma,.wp-svg-signup,.wp-svg-skype,.wp-svg-smiley,.wp-svg-smiley-2,.wp-svg-snowflake,.wp-svg-snowy,.wp-svg-snowy-2,.wp-svg-snowy-3,.wp-svg-snowy-4,.wp-svg-snowy-5,.wp-svg-soundcloud,.wp-svg-soundcloud-2,.wp-svg-spades,.wp-svg-spam,.wp-svg-spell-check,.wp-svg-spinner-1,.wp-svg-spinner-2,.wp-svg-spinner-3,.wp-svg-spinner-4,.wp-svg-spinner-5,.wp-svg-spinner-6,.wp-svg-stack,.wp-svg-stackoverflow,.wp-svg-star,.wp-svg-star-2,.wp-svg-star-3,.wp-svg-stats,.wp-svg-steam,.wp-svg-steam-2,.wp-svg-stop,.wp-svg-stop-2,.wp-svg-stopwatch,.wp-svg-storage,.wp-svg-strikethrough,.wp-svg-stumbleupon,.wp-svg-stumbleupon-2,.wp-svg-sun,.wp-svg-sun-2,.wp-svg-sun-3,.wp-svg-sunrise,.wp-svg-support,.wp-svg-switch,.wp-svg-tab,.wp-svg-table,.wp-svg-table-2,.wp-svg-tablet,.wp-svg-tag,.wp-svg-tags,.wp-svg-target,.wp-svg-text-height,.wp-svg-text-width,.wp-svg-thermometer,.wp-svg-thumbs-up,.wp-svg-thumbs-up-2,.wp-svg-ticket,.wp-svg-tongue,.wp-svg-tongue-2,.wp-svg-tree,.wp-svg-trophy,.wp-svg-truck,.wp-svg-tumblr,.wp-svg-tumblr-2,.wp-svg-tux,.wp-svg-tv,.wp-svg-twitter,.wp-svg-twitter-2,.wp-svg-twitter-3,.wp-svg-underline,.wp-svg-undo,.wp-svg-undo-2,.wp-svg-unlocked,.wp-svg-upload,.wp-svg-upload-2,.wp-svg-upload-3,.wp-svg-user,.wp-svg-user-2,.wp-svg-user-3,.wp-svg-user-4,.wp-svg-users,.wp-svg-users-2,.wp-svg-vimeo,.wp-svg-vimeo-2,.wp-svg-vimeo2,.wp-svg-volume-decrease,.wp-svg-volume-high,.wp-svg-volume-increase,.wp-svg-volume-low,.wp-svg-volume-medium,.wp-svg-volume-mute,.wp-svg-volume-mute-2,.wp-svg-wand,.wp-svg-warning,.wp-svg-weather,.wp-svg-weather-2,.wp-svg-weather-3,.wp-svg-weather-4,.wp-svg-weather-5,.wp-svg-wind,.wp-svg-windows,.wp-svg-windows8,.wp-svg-windy,.wp-svg-windy-2,.wp-svg-windy-3,.wp-svg-windy-4,.wp-svg-windy-5,.wp-svg-wink,.wp-svg-wink-2,.wp-svg-wondering,.wp-svg-wondering-2,.wp-svg-wordpress,.wp-svg-wordpress-2,.wp-svg-wrench,.wp-svg-xing,.wp-svg-xing-2,.wp-svg-yahoo,.wp-svg-yelp,.wp-svg-youtube,.wp-svg-youtube-2,.wp-svg-zoom-in,.wp-svg-zoom-out{font-family:wp-svg-plugin-icon-set1!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.wp-svg-home:before{content:"\e000"}.wp-svg-home-2:before{content:"\e001"}.wp-svg-home-3:before{content:"\e002"}.wp-svg-office:before{content:"\e003"}.wp-svg-newspaper:before{content:"\e004"}.wp-svg-pencil:before{content:"\e005"}.wp-svg-pencil-2:before{content:"\e006"}.wp-svg-quill:before{content:"\e007"}.wp-svg-pen:before{content:"\e008"}.wp-svg-blog:before{content:"\e009"}.wp-svg-droplet:before{content:"\e00a"}.wp-svg-paint-format:before{content:"\e00b"}.wp-svg-image:before{content:"\e00c"}.wp-svg-image-2:before{content:"\e00d"}.wp-svg-images:before{content:"\e00e"}.wp-svg-camera:before{content:"\e00f"}.wp-svg-music:before{content:"\e010"}.wp-svg-headphones:before{content:"\e011"}.wp-svg-play:before{content:"\e012"}.wp-svg-film:before{content:"\e013"}.wp-svg-camera-2:before{content:"\e014"}.wp-svg-dice:before{content:"\e015"}.wp-svg-pacman:before{content:"\e016"}.wp-svg-spades:before{content:"\e017"}.wp-svg-clubs:before{content:"\e018"}.wp-svg-diamonds:before{content:"\e019"}.wp-svg-pawn:before{content:"\e01a"}.wp-svg-bullhorn:before{content:"\e01b"}.wp-svg-connection:before{content:"\e01c"}.wp-svg-podcast:before{content:"\e01d"}.wp-svg-feed:before{content:"\e01e"}.wp-svg-book:before{content:"\e01f"}.wp-svg-books:before{content:"\e020"}.wp-svg-library:before{content:"\e021"}.wp-svg-file:before{content:"\e022"}.wp-svg-profile:before{content:"\e023"}.wp-svg-file-2:before{content:"\e024"}.wp-svg-file-3:before{content:"\e025"}.wp-svg-file-4:before{content:"\e026"}.wp-svg-copy:before{content:"\e027"}.wp-svg-copy-2:before{content:"\e028"}.wp-svg-copy-3:before{content:"\e029"}.wp-svg-paste:before{content:"\e02a"}.wp-svg-paste-2:before{content:"\e02b"}.wp-svg-paste-3:before{content:"\e02c"}.wp-svg-stack:before{content:"\e02d"}.wp-svg-folder:before{content:"\e02e"}.wp-svg-folder-open:before{content:"\e02f"}.wp-svg-tag:before{content:"\e030"}.wp-svg-tags:before{content:"\e031"}.wp-svg-barcode:before{content:"\e032"}.wp-svg-qrcode:before{content:"\e033"}.wp-svg-ticket:before{content:"\e034"}.wp-svg-cart:before{content:"\e035"}.wp-svg-cart-2:before{content:"\e036"}.wp-svg-cart-3:before{content:"\e037"}.wp-svg-coin:before{content:"\e038"}.wp-svg-credit:before{content:"\e039"}.wp-svg-calculate:before{content:"\e03a"}.wp-svg-support:before{content:"\e03b"}.wp-svg-phone:before{content:"\e03c"}.wp-svg-phone-hang-up:before{content:"\e03d"}.wp-svg-address-book:before{content:"\e03e"}.wp-svg-notebook:before{content:"\e03f"}.wp-svg-envelop:before{content:"\e040"}.wp-svg-pushpin:before{content:"\e041"}.wp-svg-location:before{content:"\e042"}.wp-svg-location-2:before{content:"\e043"}.wp-svg-compass:before{content:"\e044"}.wp-svg-map:before{content:"\e045"}.wp-svg-map-2:before{content:"\e046"}.wp-svg-history:before{content:"\e047"}.wp-svg-clock:before{content:"\e048"}.wp-svg-clock-2:before{content:"\e049"}.wp-svg-alarm:before{content:"\e04a"}.wp-svg-alarm-2:before{content:"\e04b"}.wp-svg-bell:before{content:"\e04c"}.wp-svg-stopwatch:before{content:"\e04d"}.wp-svg-calendar:before{content:"\e04e"}.wp-svg-calendar-2:before{content:"\e04f"}.wp-svg-print:before{content:"\e050"}.wp-svg-keyboard:before{content:"\e051"}.wp-svg-screen:before{content:"\e052"}.wp-svg-laptop:before{content:"\e053"}.wp-svg-mobile:before{content:"\e054"}.wp-svg-mobile-2:before{content:"\e055"}.wp-svg-tablet:before{content:"\e056"}.wp-svg-tv:before{content:"\e057"}.wp-svg-cabinet:before{content:"\e058"}.wp-svg-drawer:before{content:"\e059"}.wp-svg-drawer-2:before{content:"\e05a"}.wp-svg-drawer-3:before{content:"\e05b"}.wp-svg-box-add:before{content:"\e05c"}.wp-svg-box-remove:before{content:"\e05d"}.wp-svg-download:before{content:"\e05e"}.wp-svg-upload:before{content:"\e05f"}.wp-svg-disk:before{content:"\e060"}.wp-svg-storage:before{content:"\e061"}.wp-svg-undo:before{content:"\e062"}.wp-svg-redo:before{content:"\e063"}.wp-svg-flip:before{content:"\e064"}.wp-svg-flip-2:before{content:"\e065"}.wp-svg-undo-2:before{content:"\e066"}.wp-svg-redo-2:before{content:"\e067"}.wp-svg-forward:before{content:"\e068"}.wp-svg-reply:before{content:"\e069"}.wp-svg-bubble:before{content:"\e06a"}.wp-svg-bubbles:before{content:"\e06b"}.wp-svg-bubbles-2:before{content:"\e06c"}.wp-svg-bubble-2:before{content:"\e06d"}.wp-svg-bubbles-3:before{content:"\e06e"}.wp-svg-bubbles-4:before{content:"\e06f"}.wp-svg-user:before{content:"\e070"}.wp-svg-users:before{content:"\e071"}.wp-svg-user-2:before{content:"\e072"}.wp-svg-users-2:before{content:"\e073"}.wp-svg-user-3:before{content:"\e074"}.wp-svg-user-4:before{content:"\e075"}.wp-svg-quotes-left:before{content:"\e076"}.wp-svg-busy:before{content:"\e077"}.wp-svg-spinner-1:before{content:"\e078"}.wp-svg-spinner-2:before{content:"\e079"}.wp-svg-spinner-3:before{content:"\e07a"}.wp-svg-spinner-4:before{content:"\e07b"}.wp-svg-spinner-5:before{content:"\e07c"}.wp-svg-spinner-6:before{content:"\e07d"}.wp-svg-binoculars:before{content:"\e07e"}.wp-svg-search-2:before{content:"\e07f"}.wp-svg-zoom-in:before{content:"\e080"}.wp-svg-zoom-out:before{content:"\e081"}.wp-svg-expand:before{content:"\e082"}.wp-svg-contract:before{content:"\e083"}.wp-svg-expand-2:before{content:"\e084"}.wp-svg-contract-2:before{content:"\e085"}.wp-svg-key:before{content:"\e086"}.wp-svg-key-2:before{content:"\e087"}.wp-svg-lock:before{content:"\e088"}.wp-svg-lock-2:before{content:"\e089"}.wp-svg-unlocked:before{content:"\e08a"}.wp-svg-wrench:before{content:"\e08b"}.wp-svg-settings:before{content:"\e08c"}.wp-svg-equalizer:before{content:"\e08d"}.wp-svg-cog:before{content:"\e08e"}.wp-svg-cogs:before{content:"\e08f"}.wp-svg-cog-2:before{content:"\e090"}.wp-svg-hammer:before{content:"\e091"}.wp-svg-wand:before{content:"\e092"}.wp-svg-aid:before{content:"\e093"}.wp-svg-bug:before{content:"\e094"}.wp-svg-pie:before{content:"\e095"}.wp-svg-stats:before{content:"\e096"}.wp-svg-bars:before{content:"\e097"}.wp-svg-bars-2:before{content:"\e098"}.wp-svg-gift:before{content:"\e099"}.wp-svg-trophy:before{content:"\e09a"}.wp-svg-glass:before{content:"\e09b"}.wp-svg-mug:before{content:"\e09c"}.wp-svg-food:before{content:"\e09d"}.wp-svg-leaf:before{content:"\e09e"}.wp-svg-rocket:before{content:"\e09f"}.wp-svg-meter:before{content:"\e0a0"}.wp-svg-meter2:before{content:"\e0a1"}.wp-svg-dashboard:before{content:"\e0a2"}.wp-svg-hammer-2:before{content:"\e0a3"}.wp-svg-fire:before{content:"\e0a4"}.wp-svg-lab:before{content:"\e0a5"}.wp-svg-magnet:before{content:"\e0a6"}.wp-svg-remove:before{content:"\e0a7"}.wp-svg-remove-2:before{content:"\e0a8"}.wp-svg-briefcase:before{content:"\e0a9"}.wp-svg-airplane:before{content:"\e0aa"}.wp-svg-truck:before{content:"\e0ab"}.wp-svg-road:before{content:"\e0ac"}.wp-svg-accessibility:before{content:"\e0ad"}.wp-svg-target:before{content:"\e0ae"}.wp-svg-shield:before{content:"\e0af"}.wp-svg-lightning:before{content:"\e0b0"}.wp-svg-switch:before{content:"\e0b1"}.wp-svg-power-cord:before{content:"\e0b2"}.wp-svg-signup:before{content:"\e0b3"}.wp-svg-list:before{content:"\e0b4"}.wp-svg-list-2:before{content:"\e0b5"}.wp-svg-numbered-list:before{content:"\e0b6"}.wp-svg-menu:before{content:"\e0b7"}.wp-svg-menu-2:before{content:"\e0b8"}.wp-svg-tree:before{content:"\e0b9"}.wp-svg-cloud:before{content:"\e0ba"}.wp-svg-cloud-download:before{content:"\e0bb"}.wp-svg-cloud-upload:before{content:"\e0bc"}.wp-svg-download-2:before{content:"\e0bd"}.wp-svg-upload-2:before{content:"\e0be"}.wp-svg-download-3:before{content:"\e0bf"}.wp-svg-upload-3:before{content:"\e0c0"}.wp-svg-globe:before{content:"\e0c1"}.wp-svg-earth:before{content:"\e0c2"}.wp-svg-link:before{content:"\e0c3"}.wp-svg-flag:before{content:"\e0c4"}.wp-svg-attachment:before{content:"\e0c5"}.wp-svg-eye:before{content:"\e0c6"}.wp-svg-eye-blocked:before{content:"\e0c7"}.wp-svg-eye-2:before{content:"\e0c8"}.wp-svg-bookmark:before{content:"\e0c9"}.wp-svg-bookmarks:before{content:"\e0ca"}.wp-svg-brightness-medium:before{content:"\e0cb"}.wp-svg-brightness-contrast:before{content:"\e0cc"}.wp-svg-contrast:before{content:"\e0cd"}.wp-svg-star:before{content:"\e0ce"}.wp-svg-star-2:before{content:"\e0cf"}.wp-svg-star-3:before{content:"\e0d0"}.wp-svg-heart:before{content:"\e0d1"}.wp-svg-heart-2:before{content:"\e0d2"}.wp-svg-heart-broken:before{content:"\e0d3"}.wp-svg-thumbs-up:before{content:"\e0d4"}.wp-svg-thumbs-up-2:before{content:"\e0d5"}.wp-svg-happy:before{content:"\e0d6"}.wp-svg-happy-2:before{content:"\e0d7"}.wp-svg-smiley:before{content:"\e0d8"}.wp-svg-smiley-2:before{content:"\e0d9"}.wp-svg-tongue:before{content:"\e0da"}.wp-svg-tongue-2:before{content:"\e0db"}.wp-svg-sad:before{content:"\e0dc"}.wp-svg-sad-2:before{content:"\e0dd"}.wp-svg-wink:before{content:"\e0de"}.wp-svg-wink-2:before{content:"\e0df"}.wp-svg-grin:before{content:"\e0e0"}.wp-svg-grin-2:before{content:"\e0e1"}.wp-svg-cool:before{content:"\e0e2"}.wp-svg-cool-2:before{content:"\e0e3"}.wp-svg-angry:before{content:"\e0e4"}.wp-svg-angry-2:before{content:"\e0e5"}.wp-svg-evil:before{content:"\e0e6"}.wp-svg-evil-2:before{content:"\e0e7"}.wp-svg-shocked:before{content:"\e0e8"}.wp-svg-shocked-2:before{content:"\e0e9"}.wp-svg-confused:before{content:"\e0ea"}.wp-svg-confused-2:before{content:"\e0eb"}.wp-svg-neutral:before{content:"\e0ec"}.wp-svg-neutral-2:before{content:"\e0ed"}.wp-svg-wondering:before{content:"\e0ee"}.wp-svg-wondering-2:before{content:"\e0ef"}.wp-svg-point-up:before{content:"\e0f0"}.wp-svg-point-right:before{content:"\e0f1"}.wp-svg-point-down:before{content:"\e0f2"}.wp-svg-point-left:before{content:"\e0f3"}.wp-svg-warning:before{content:"\e0f4"}.wp-svg-notification:before{content:"\e0f5"}.wp-svg-question:before{content:"\e0f6"}.wp-svg-info:before{content:"\e0f7"}.wp-svg-info-2:before{content:"\e0f8"}.wp-svg-blocked:before{content:"\e0f9"}.wp-svg-cancel-circle:before{content:"\e0fa"}.wp-svg-checkmark-circle:before{content:"\e0fb"}.wp-svg-spam:before{content:"\e0fc"}.wp-svg-close:before{content:"\e0fd"}.wp-svg-checkmark:before{content:"\e0fe"}.wp-svg-checkmark-2:before{content:"\e0ff"}.wp-svg-spell-check:before{content:"\e100"}.wp-svg-minus:before{content:"\e101"}.wp-svg-plus:before{content:"\e102"}.wp-svg-enter:before{content:"\e103"}.wp-svg-exit:before{content:"\e104"}.wp-svg-play-2:before{content:"\e105"}.wp-svg-pause:before{content:"\e106"}.wp-svg-stop:before{content:"\e107"}.wp-svg-backward:before{content:"\e108"}.wp-svg-forward-2:before{content:"\e109"}.wp-svg-play-3:before{content:"\e10a"}.wp-svg-pause-2:before{content:"\e10b"}.wp-svg-stop-2:before{content:"\e10c"}.wp-svg-backward-2:before{content:"\e10d"}.wp-svg-forward-3:before{content:"\e10e"}.wp-svg-first:before{content:"\e10f"}.wp-svg-last:before{content:"\e110"}.wp-svg-previous:before{content:"\e111"}.wp-svg-next:before{content:"\e112"}.wp-svg-eject:before{content:"\e113"}.wp-svg-volume-high:before{content:"\e114"}.wp-svg-volume-medium:before{content:"\e115"}.wp-svg-volume-low:before{content:"\e116"}.wp-svg-volume-mute:before{content:"\e117"}.wp-svg-volume-mute-2:before{content:"\e118"}.wp-svg-volume-increase:before{content:"\e119"}.wp-svg-volume-decrease:before{content:"\e11a"}.wp-svg-loop:before{content:"\e11b"}.wp-svg-loop-2:before{content:"\e11c"}.wp-svg-loop-3:before{content:"\e11d"}.wp-svg-shuffle:before{content:"\e11e"}.wp-svg-arrow-up-left:before{content:"\e11f"}.wp-svg-arrow-up:before{content:"\e120"}.wp-svg-arrow-up-right:before{content:"\e121"}.wp-svg-arrow-right:before{content:"\e122"}.wp-svg-arrow-down-right:before{content:"\e123"}.wp-svg-arrow-down:before{content:"\e124"}.wp-svg-arrow-down-left:before{content:"\e125"}.wp-svg-arrow-left:before{content:"\e126"}.wp-svg-arrow-up-left-2:before{content:"\e127"}.wp-svg-arrow-up-2:before{content:"\e128"}.wp-svg-arrow-up-right-2:before{content:"\e129"}.wp-svg-arrow-right-2:before{content:"\e12a"}.wp-svg-arrow-down-right-2:before{content:"\e12b"}.wp-svg-arrow-down-2:before{content:"\e12c"}.wp-svg-arrow-down-left-2:before{content:"\e12d"}.wp-svg-arrow-left-2:before{content:"\e12e"}.wp-svg-arrow-up-left-3:before{content:"\e12f"}.wp-svg-arrow-up-3:before{content:"\e130"}.wp-svg-arrow-up-right-3:before{content:"\e131"}.wp-svg-arrow-right-3:before{content:"\e132"}.wp-svg-arrow-down-right-3:before{content:"\e133"}.wp-svg-arrow-down-3:before{content:"\e134"}.wp-svg-arrow-down-left-3:before{content:"\e135"}.wp-svg-arrow-left-3:before{content:"\e136"}.wp-svg-tab:before{content:"\e137"}.wp-svg-checkbox-checked:before{content:"\e138"}.wp-svg-checkbox-unchecked:before{content:"\e139"}.wp-svg-checkbox-partial:before{content:"\e13a"}.wp-svg-radio-checked:before{content:"\e13b"}.wp-svg-radio-unchecked:before{content:"\e13c"}.wp-svg-crop:before{content:"\e13d"}.wp-svg-scissors:before{content:"\e13e"}.wp-svg-filter:before{content:"\e13f"}.wp-svg-filter-2:before{content:"\e140"}.wp-svg-italic:before{content:"\e146"}.wp-svg-strikethrough:before{content:"\e147"}.wp-svg-omega:before{content:"\e148"}.wp-svg-sigma:before{content:"\e149"}.wp-svg-table:before{content:"\e14a"}.wp-svg-table-2:before{content:"\e14b"}.wp-svg-insert-template:before{content:"\e14c"}.wp-svg-pilcrow:before{content:"\e14d"}.wp-svg-left-to-right:before{content:"\e14e"}.wp-svg-right-to-left:before{content:"\e14f"}.wp-svg-paragraph-left:before{content:"\e150"}.wp-svg-paragraph-center:before{content:"\e151"}.wp-svg-paragraph-right:before{content:"\e152"}.wp-svg-paragraph-justify:before{content:"\e153"}.wp-svg-paragraph-left-2:before{content:"\e154"}.wp-svg-paragraph-center-2:before{content:"\e155"}.wp-svg-paragraph-right-2:before{content:"\e156"}.wp-svg-paragraph-justify-2:before{content:"\e157"}.wp-svg-indent-increase:before{content:"\e158"}.wp-svg-indent-decrease:before{content:"\e159"}.wp-svg-new-tab:before{content:"\e15a"}.wp-svg-embed:before{content:"\e15b"}.wp-svg-code:before{content:"\e15c"}.wp-svg-console:before{content:"\e15d"}.wp-svg-share:before{content:"\e15e"}.wp-svg-mail:before{content:"\e15f"}.wp-svg-mail-2:before{content:"\e160"}.wp-svg-mail-3:before{content:"\e161"}.wp-svg-mail-4:before{content:"\e162"}.wp-svg-google:before{content:"\e163"}.wp-svg-google-plus:before{content:"\e164"}.wp-svg-google-plus-2:before{content:"\e165"}.wp-svg-google-plus-3:before{content:"\e166"}.wp-svg-google-plus-4:before{content:"\e167"}.wp-svg-google-drive:before{content:"\e168"}.wp-svg-facebook:before{content:"\e169"}.wp-svg-facebook-2:before{content:"\e16a"}.wp-svg-facebook-3:before{content:"\e16b"}.wp-svg-instagram:before{content:"\e16c"}.wp-svg-twitter:before{content:"\e16d"}.wp-svg-twitter-2:before{content:"\e16e"}.wp-svg-twitter-3:before{content:"\e16f"}.wp-svg-feed-2:before{content:"\e170"}.wp-svg-feed-3:before{content:"\e171"}.wp-svg-feed-4:before{content:"\e172"}.wp-svg-youtube:before{content:"\e173"}.wp-svg-youtube-2:before{content:"\e174"}.wp-svg-vimeo:before{content:"\e175"}.wp-svg-vimeo2:before{content:"\e176"}.wp-svg-vimeo-2:before{content:"\e177"}.wp-svg-lanyrd:before{content:"\e178"}.wp-svg-flickr:before{content:"\e179"}.wp-svg-flickr-2:before{content:"\e17a"}.wp-svg-flickr-3:before{content:"\e17b"}.wp-svg-flickr-4:before{content:"\e17c"}.wp-svg-picassa:before{content:"\e17d"}.wp-svg-picassa-2:before{content:"\e17e"}.wp-svg-dribbble:before{content:"\e17f"}.wp-svg-dribbble-2:before{content:"\e180"}.wp-svg-dribbble-3:before{content:"\e181"}.wp-svg-forrst:before{content:"\e182"}.wp-svg-forrst-2:before{content:"\e183"}.wp-svg-deviantart:before{content:"\e184"}.wp-svg-deviantart-2:before{content:"\e185"}.wp-svg-steam:before{content:"\e186"}.wp-svg-steam-2:before{content:"\e187"}.wp-svg-github:before{content:"\e188"}.wp-svg-github-2:before{content:"\e189"}.wp-svg-github-3:before{content:"\e18a"}.wp-svg-github-4:before{content:"\e18b"}.wp-svg-github-5:before{content:"\e18c"}.wp-svg-wordpress:before{content:"\e18d"}.wp-svg-wordpress-2:before{content:"\e18e"}.wp-svg-joomla:before{content:"\e18f"}.wp-svg-blogger:before{content:"\e190"}.wp-svg-blogger-2:before{content:"\e191"}.wp-svg-tumblr:before{content:"\e192"}.wp-svg-tumblr-2:before{content:"\e193"}.wp-svg-yahoo:before{content:"\e194"}.wp-svg-tux:before{content:"\e195"}.wp-svg-apple:before{content:"\e196"}.wp-svg-finder:before{content:"\e197"}.wp-svg-android:before{content:"\e198"}.wp-svg-windows:before{content:"\e199"}.wp-svg-windows8:before{content:"\e19a"}.wp-svg-soundcloud:before{content:"\e19b"}.wp-svg-soundcloud-2:before{content:"\e19c"}.wp-svg-skype:before{content:"\e19d"}.wp-svg-reddit:before{content:"\e19e"}.wp-svg-linkedin:before{content:"\e19f"}.wp-svg-lastfm:before{content:"\e1a0"}.wp-svg-lastfm-2:before{content:"\e1a1"}.wp-svg-delicious:before{content:"\e1a2"}.wp-svg-stumbleupon:before{content:"\e1a3"}.wp-svg-stumbleupon-2:before{content:"\e1a4"}.wp-svg-stackoverflow:before{content:"\e1a5"}.wp-svg-pinterest:before{content:"\e1a6"}.wp-svg-pinterest-2:before{content:"\e1a7"}.wp-svg-xing:before{content:"\e1a8"}.wp-svg-xing-2:before{content:"\e1a9"}.wp-svg-flattr:before{content:"\e1aa"}.wp-svg-foursquare:before{content:"\e1ab"}.wp-svg-foursquare-2:before{content:"\e1ac"}.wp-svg-paypal:before{content:"\e1ad"}.wp-svg-paypal-2:before{content:"\e1ae"}.wp-svg-paypal-3:before{content:"\e1af"}.wp-svg-yelp:before{content:"\e1b0"}.wp-svg-libreoffice:before{content:"\e1b1"}.wp-svg-file-pdf:before{content:"\e1b2"}.wp-svg-file-openoffice:before{content:"\e1b3"}.wp-svg-file-word:before{content:"\e1b4"}.wp-svg-file-excel:before{content:"\e1b5"}.wp-svg-file-zip:before{content:"\e1b6"}.wp-svg-file-powerpoint:before{content:"\e1b7"}.wp-svg-file-xml:before{content:"\e1b8"}.wp-svg-file-css:before{content:"\e1b9"}.wp-svg-html5:before{content:"\e1ba"}.wp-svg-html5-2:before{content:"\e1bb"}.wp-svg-css3:before{content:"\e1bc"}.wp-svg-chrome:before{content:"\e1bd"}.wp-svg-firefox:before{content:"\e1be"}.wp-svg-IE:before{content:"\e1bf"}.wp-svg-opera:before{content:"\e1c0"}.wp-svg-safari:before{content:"\e1c1"}.wp-svg-IcoMoon:before{content:"\e1c2"}.wp-svg-sunrise:before{content:"\e1c3"}.wp-svg-sun:before{content:"\e1c4"}.wp-svg-moon:before{content:"\e1c5"}.wp-svg-sun-2:before{content:"\e1c6"}.wp-svg-windy:before{content:"\e1c7"}.wp-svg-wind:before{content:"\e1c8"}.wp-svg-snowflake:before{content:"\e1c9"}.wp-svg-cloudy:before{content:"\e1ca"}.wp-svg-cloud-2:before{content:"\e1cb"}.wp-svg-weather:before{content:"\e1cc"}.wp-svg-weather-2:before{content:"\e1cd"}.wp-svg-weather-3:before{content:"\e1ce"}.wp-svg-lines:before{content:"\e1cf"}.wp-svg-cloud-3:before{content:"\e1d0"}.wp-svg-lightning-2:before{content:"\e1d1"}.wp-svg-lightning-3:before{content:"\e1d2"}.wp-svg-rainy:before{content:"\e1d3"}.wp-svg-rainy-2:before{content:"\e1d4"}.wp-svg-windy-2:before{content:"\e1d5"}.wp-svg-windy-3:before{content:"\e1d6"}.wp-svg-snowy:before{content:"\e1d7"}.wp-svg-snowy-2:before{content:"\e1d8"}.wp-svg-snowy-3:before{content:"\e1d9"}.wp-svg-weather-4:before{content:"\e1da"}.wp-svg-cloudy-2:before{content:"\e1db"}.wp-svg-cloud-4:before{content:"\e1dc"}.wp-svg-lightning-4:before{content:"\e1dd"}.wp-svg-sun-3:before{content:"\e1de"}.wp-svg-moon-2:before{content:"\e1df"}.wp-svg-cloudy-3:before{content:"\e1e0"}.wp-svg-cloud-5:before{content:"\e1e1"}.wp-svg-cloud-6:before{content:"\e1e2"}.wp-svg-lightning-5:before{content:"\e1e3"}.wp-svg-rainy-3:before{content:"\e1e4"}.wp-svg-rainy-4:before{content:"\e1e5"}.wp-svg-windy-4:before{content:"\e1e6"}.wp-svg-windy-5:before{content:"\e1e7"}.wp-svg-snowy-4:before{content:"\e1e8"}.wp-svg-snowy-5:before{content:"\e1e9"}.wp-svg-weather-5:before{content:"\e1ea"}.wp-svg-cloudy-4:before{content:"\e1eb"}.wp-svg-lightning-6:before{content:"\e1ec"}.wp-svg-thermometer:before{content:"\e1ed"}.wp-svg-compass-2:before{content:"\e1ee"}.wp-svg-none:before{content:"\e1ef"}.wp-svg-Celsius:before{content:"\e1f0"}.wp-svg-Fahrenheit:before{content:"\e1f1"}.wp-svg-aperture:before{content:"\e1f2"}.wp-svg-camera-3:before{content:"\e1f3"}.wpSVGiconDropShadow{text-shadow:3px 3px 8px #888}.wpSVGanimatedSpin-fast{-webkit-animation-duration:1.5s;-moz-animation-duration:1s;-ms-animation-duration:1s;-ms-animation-iteration-count:infinite;animation-name:rotate;animation-duration:1s;animation-iteration-count:infinite;animation-timing-function:linear}.wpSVGanimatedSpin-medium{-webkit-animation-duration:3s;-moz-animation-duration:3s;-ms-animation-duration:3s;-ms-animation-iteration-count:infinite;animation-name:rotate;animation-duration:3s;animation-iteration-count:infinite;animation-timing-function:linear}.wpSVGanimatedSpin-slow{-webkit-animation-name:rotate;-webkit-animation-duration:5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-duration:5s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:rotate;-ms-animation-duration:5s;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;animation-name:rotate;animation-duration:5s;animation-iteration-count:infinite;animation-timing-function:linear}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@-ms-keyframes rotate{from{-ms-transform:rotate(0)}to{-ms-transform:rotate(360deg)}}@-moz-keyframes rotate{from{-moz-transform:rotate(0)}to{-moz-transform:rotate(360deg)}}@keyframes rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.wpSVGlink{-o-transition:color .2s ease-out;-ms-transition:color .2s ease-out;-moz-transition:color .2s ease-out;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}.wpSVGsmall{font-size:1.5em!important}.wpSVGmedium{font-size:4em!important}.wpSVGlarge{font-size:6.5em!important}.wpSVGxlarge{font-size:9em!important}.wpSVGroundedCorners{-moz-border-radius:50%;border-radius:50%}.wpSVGfloatRight{float:right;margin-left:13px}.wpSVGfloatLeft{float:left;margin-right:13px}.wpSVGnoFloat{float:none!important}.custom-icons-file-upload-note{font-size:10px;color:#EE3B3B}.wp-svg-custom-upload-wrap{margin:10px 30px 0 50px}.wp-sv-gcustom-icon-upload-new-image{width:41px;position:absolute;margin-top:.5em}.svg-custom-pack-buttons{display:inline-block;width:430px;height:55px}.svg-custom-pack-buttons>p{float:left}.svg-custom-pack-buttons>p:last-child{margin-left:1em}
|
admin/partials/wp-svg-icons-custom-icons-page.php
CHANGED
@@ -1,406 +1,402 @@
|
|
1 |
-
<?php
|
2 |
-
if(
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
<a href="https://
|
22 |
-
<a href="
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
$
|
48 |
-
|
49 |
-
$
|
50 |
-
$
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
<p>
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
jQuery("
|
84 |
-
jQuery("
|
85 |
-
jQuery("
|
86 |
-
jQuery("
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
$
|
96 |
-
|
97 |
-
$
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
// rename the
|
140 |
-
$
|
141 |
-
|
142 |
-
$
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
$current = str_replace('<
|
152 |
-
$current = str_replace(
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
}
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
}
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
<
|
213 |
-
|
214 |
-
<p
|
215 |
-
<p
|
216 |
-
|
217 |
-
<
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
var
|
238 |
-
var
|
239 |
-
|
240 |
-
jQuery( '.
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
jQuery('
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
echo
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
reset( $objects );
|
404 |
-
rmdir( $dir );
|
405 |
-
}
|
406 |
-
}
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
+
|
4 |
+
if( file_exists( '../../../../../wp-load.php' ) ) {
|
5 |
+
// required for _e() to work inside of the modal
|
6 |
+
include_once( "../../../../../wp-load.php" );
|
7 |
+
}
|
8 |
+
?>
|
9 |
+
|
10 |
+
<div class="svg-custom-upload-wrap wrap" style="min-width:900px;">
|
11 |
+
|
12 |
+
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?>
|
13 |
+
<!-- review us container -->
|
14 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;text-align:center;">
|
15 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
16 |
+
<p style="margin-top:-8px;"><a href="https://wordpress.org/support/view/plugin-reviews/svg-vector-icon-plugin" target="_blank" style="text-decoration:none;"><b class="wp-svg-happy" style="font-size:2.5em;"></b></a></p>
|
17 |
+
</div>
|
18 |
+
<!-- social media icons -->
|
19 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
20 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
21 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
22 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
23 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
24 |
+
<a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
25 |
+
</div>
|
26 |
+
<?php } ?>
|
27 |
+
|
28 |
+
<!-- get uploaded file, unzip .zip, store files in appropriate locations, populate page with custom icons -->
|
29 |
+
<!-- wp_handle_upload ( http://codex.wordpress.org/Function_Reference/wp_handle_upload ) -->
|
30 |
+
<?php
|
31 |
+
|
32 |
+
if ( isset( $_FILES['custom_icon_pack'] ) ) {
|
33 |
+
|
34 |
+
/*
|
35 |
+
Validate our nonce for security reasons
|
36 |
+
@since 3.1.8.2
|
37 |
+
*/
|
38 |
+
if ( ! empty( $_POST['wp_svg_icons_upload_validation'] ) ) {
|
39 |
+
if( ! check_admin_referer( 'validate_wp_svg_icons', 'wp_svg_icons_upload_validation' ) ) {
|
40 |
+
wp_die( __( 'Sorry, your nonce did not verify. Please try again.', 'wp-svg-icons' ) );
|
41 |
+
exit;
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
|
46 |
+
$uploadedfile = $_FILES['custom_icon_pack'];
|
47 |
+
$upload_overrides = array( 'test_form' => false );
|
48 |
+
|
49 |
+
$filename = $uploadedfile['name'];
|
50 |
+
$break = explode('.', $filename);
|
51 |
+
$count = count( $break );
|
52 |
+
$file_extension = $break[intval( $count - 1 )];
|
53 |
+
|
54 |
+
if( $file_extension != 'zip' ) {
|
55 |
+
?>
|
56 |
+
<style>
|
57 |
+
#social-icons, #review-wp-svg-icons { display: none; }
|
58 |
+
</style>
|
59 |
+
<div class="error">
|
60 |
+
<p><?php _e( "There was a problem importing the file. Ensure that you are uploading a .zip file.", "wp-svg-icons" ); ?></p>
|
61 |
+
<p><?php _e( "There was a problem with the file you uploaded. Make sure that you're uploading a .zip file from","wp-svg-icons"); echo " <a href='https://icomoon.io/app/#/select' target='_blank'>icomoon</a>. "; _e( "If you're still having issues, please contact support.", "wp-svg-icons" ); ?></p>
|
62 |
+
<p>
|
63 |
+
<a class="button-secondary" href="<?php echo admin_url(); ?>/admin.php?page=wp-svg-icons-custom-set"><?php _e( 'Try again' , 'wp-svg-icons' ); ?></a>
|
64 |
+
<a class="button-secondary" href="https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
|
65 |
+
</p>
|
66 |
+
</div>
|
67 |
+
<?php
|
68 |
+
exit();
|
69 |
+
}
|
70 |
+
|
71 |
+
// move the file to the custom upload path set above on line 63
|
72 |
+
$movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
|
73 |
+
if( is_wp_error( $movefile ) ) {
|
74 |
+
$error_string = $movefile->get_error_message();
|
75 |
+
wp_die( '<div id="message" class="error"><p>' . $error_string . '</p></div>' );
|
76 |
+
}
|
77 |
+
|
78 |
+
// if upload was successful
|
79 |
+
if ( $movefile ) {
|
80 |
+
|
81 |
+
echo '<script>
|
82 |
+
jQuery(document).ready(function() {
|
83 |
+
jQuery(".preview-icon-code-box").show();
|
84 |
+
jQuery(".wp-svg-custom-pack-preloader").show();
|
85 |
+
jQuery("#uninstall-pack-button").removeAttr("disabled");
|
86 |
+
jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
|
87 |
+
jQuery("input[value=Import]").attr("disabled","disabled");
|
88 |
+
jQuery(".svg-custom-pack-buttons").after("<div class=updated><p class=fontPackUploadedSuccess>' . __( "Custom font pack successfully uploaded!" , "wp-svg-icons" ) . '</p></div>");
|
89 |
+
});
|
90 |
+
</script>';
|
91 |
+
|
92 |
+
// unzip the file contents to the same directory
|
93 |
+
WP_Filesystem();
|
94 |
+
|
95 |
+
$dest = wp_upload_dir();
|
96 |
+
$dest_path = $dest['path'];
|
97 |
+
$fileNameNoSpaces = str_replace(' ', '-',$uploadedfile['name']);
|
98 |
+
|
99 |
+
$unzipfile = unzip_file( $dest_path.'/'.$fileNameNoSpaces, $dest_path );
|
100 |
+
if( is_wp_error( $unzipfile ) ) {
|
101 |
+
?>
|
102 |
+
<style>
|
103 |
+
#social-icons, #review-wp-svg-icons { display: none; }
|
104 |
+
</style>
|
105 |
+
<?php
|
106 |
+
$error_string = $unzipfile->get_error_message();
|
107 |
+
if( $error_string = 'Incompatible Archive.' ) {
|
108 |
+
if (function_exists('is_multisite') && is_multisite()) {
|
109 |
+
$error_string .= " This looks like a multi-site install. You'll want to head into the <a href='" . admin_url( 'network/settings.php#upload_filetypes' ) . "' title='Network Admin Settings'>network settings</a> page and add 'zip' to the list of acceptable upload file types.";
|
110 |
+
}
|
111 |
+
}
|
112 |
+
wp_die( '<div id="message" class="error"><p>' . $error_string . '</p></div>' );
|
113 |
+
}
|
114 |
+
|
115 |
+
if ( $unzipfile ) {
|
116 |
+
|
117 |
+
// check for the json file
|
118 |
+
// to ensure we've got a icomoon .zip
|
119 |
+
if( !file_exists( $dest_path.'/'.'selection.json' ) ) {
|
120 |
+
echo $dest_path.'/'.'selection.json';
|
121 |
+
?>
|
122 |
+
<style>
|
123 |
+
#social-icons, #review-wp-svg-icons { display: none; }
|
124 |
+
</style>
|
125 |
+
<div class="error">
|
126 |
+
<p><?php _e( "There was a problem with the file you uploaded. Make sure that you're uploading a .zip file from","wp-svg-icons"); echo " <a href='https://icomoon.io/app/#/select' target='_blank'>icomoon</a>. "; _e( "If you're still having issues, please contact support.", "wp-svg-icons" ); ?></p>
|
127 |
+
<p>
|
128 |
+
<a class="button-secondary" href="<?php echo admin_url(); ?>/admin.php?page=wp-svg-icons-custom-set"><?php _e( 'Try again' , 'wp-svg-icons' ); ?></a>
|
129 |
+
<a class="button-secondary" href="https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
|
130 |
+
</p>
|
131 |
+
</div>
|
132 |
+
<?php
|
133 |
+
// delete the files from the directory
|
134 |
+
wp_svg_icons_delete_entire_directory( $dest_path );
|
135 |
+
exit();
|
136 |
+
}
|
137 |
+
|
138 |
+
|
139 |
+
// rename the initial .zip file
|
140 |
+
$test_rename_zip = rename($dest_path.'/'.$fileNameNoSpaces,$dest_path.'/'.'wp-svg-custom-pack.zip');
|
141 |
+
// rename the json file that comes with icomoon files
|
142 |
+
$test_rename_json = rename($dest_path.'/'.'selection.json',$dest_path.'/'.'wp-svg-custom-pack.json');
|
143 |
+
|
144 |
+
$file = $dest_path.'/demo.html';
|
145 |
+
|
146 |
+
// Open the file to get existing content
|
147 |
+
$current = file_get_contents($file);
|
148 |
+
|
149 |
+
// remove the link tags
|
150 |
+
// for css and js files that are not needed any more
|
151 |
+
$current = str_replace('<link rel="stylesheet" href="demo-files/demo.css">','',$current);
|
152 |
+
$current = str_replace('<link rel="stylesheet" href="style.css"></head>','',$current);
|
153 |
+
$current = str_replace('<script src="demo-files/demo.js"></script>','',$current);
|
154 |
+
$current = str_replace( 'icon-' , 'wp-svg-custom-' , $current );
|
155 |
+
|
156 |
+
// Write the contents back to the file
|
157 |
+
$file_put_contents = file_put_contents($file, $current);
|
158 |
+
|
159 |
+
// change path of linked font files in style.css
|
160 |
+
$styleCSS = $dest_path.'/style.css';
|
161 |
+
$currentStyles = file_get_contents($styleCSS);
|
162 |
+
|
163 |
+
// remove the link tags
|
164 |
+
// for css and js files that are not needed any more
|
165 |
+
$newStyles = str_replace( "url('fonts/" , "url( '" . site_url() . "/wp-content/uploads/wp-svg-icons/custom-pack/fonts/" , $currentStyles );
|
166 |
+
$newStyles = str_replace( 'icon-' , 'wp-svg-custom-' , $newStyles );
|
167 |
+
|
168 |
+
// Write the contents back to the file
|
169 |
+
$file_put_contents = file_put_contents($styleCSS, $newStyles);
|
170 |
+
|
171 |
+
// delete unecessary files
|
172 |
+
if ( file_exists( $dest_path . '/demo-files' ) ) {
|
173 |
+
$admin_class = new WP_SVG_Icons_Admin( 'wp-svg-icons' , '1.0' );
|
174 |
+
$admin_class->recursive_delete_directory($dest_path.'/demo-files');
|
175 |
+
}
|
176 |
+
|
177 |
+
// delete the readme file
|
178 |
+
if ( file_exists( $dest_path . '/Read Me.txt' ) ) {
|
179 |
+
unlink($dest_path.'/Read Me.txt');
|
180 |
+
}
|
181 |
+
|
182 |
+
// display success message
|
183 |
+
// disable file upload field
|
184 |
+
echo '<script>jQuery(document).ready(function() { jQuery(".dropDownButton").removeAttr("disabled"); jQuery(".fontPackUploadedSuccess").parent("div").after("<div class=updated><p class=fontPackSuccessUnzip>' . __( "Custom font pack successfully unzipped!" , "wp-svg-icons" ) . '</p></div>"); });</script>';
|
185 |
+
|
186 |
+
echo '<script>jQuery(document).ready(function() { jQuery(".fontPackSuccessUnzip").parent("div").after("<div class=updated><p>' . __( "Custom font pack successfully installed, enjoy!" , "wp-svg-icons" ) . '</p></div>"); setTimeout(function() { jQuery(".updated").fadeOut(); }, 5000); });</script>';
|
187 |
+
|
188 |
+
// ajax get demo.html file
|
189 |
+
// ajax get style.css file and append to head to show icons
|
190 |
+
echo '<script>
|
191 |
+
jQuery(document).ready(function() {
|
192 |
+
jQuery(".current-font-pack").load("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/demo.html");
|
193 |
+
jQuery.get("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
194 |
+
jQuery("head").append("<style>"+data+"</style>");
|
195 |
+
});
|
196 |
+
});
|
197 |
+
</script>';
|
198 |
+
|
199 |
+
|
200 |
+
} else { // error unzipping the file
|
201 |
+
echo '<script>jQuery(document).ready(function() { jQuery(".fontPackUploadedSuccess").parent("div").after("<div class=error><p>' . __( "There was a problem unzipping the file." , "wp-svg-icons" ) . '</p></div>"); });</script>';
|
202 |
+
}
|
203 |
+
|
204 |
+
} else { // error importing the file
|
205 |
+
echo '<script>jQuery(document).ready(function() { jQuery(".svg-custom-pack-buttons").after("<div class=error><p class=fontPackUploadedError>' . __( "There was a problem importing the file.", "wp-svg-icons" ) . '</p></div>"); });</script>';
|
206 |
+
}
|
207 |
+
|
208 |
+
}
|
209 |
+
?>
|
210 |
+
|
211 |
+
|
212 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Import a Custom Icon Pack' , 'wp-svg-icons' ); ?></h1>
|
213 |
+
|
214 |
+
<p><?php _e( 'Welcome to the highly requested Custom Font Pack section! Use the importer below to import custom icon packs downloaded from' , 'wp-svg-icons' ); ?> <a href="http://icomoon.io/app/#/select" target="_blank">IcoMoon</a>.</p>
|
215 |
+
<p><?php _e( 'For a step-by-step tutorial on how to download and install a custom icon pack visit the' , 'wp-svg-icons' ); ?> <a href="https://www.evan-herman.com/wp-svg-icons/#customPackUploader" target="_blank"><?php _e( 'plugin site' , 'wp-svg-icons' ); ?></a>.</p>
|
216 |
+
<p><span style="font-size:11px; color: #EE3B3B;"><?php _e( 'Note:' , 'wp-svg-icons' ); ?></span> <?php _e( 'Only one icon pack may be active at a time.' , 'wp-svg-icons' ); ?></p>
|
217 |
+
<p><span style="font-size:11px; color: #EE3B3B;"><?php _e( 'Note:' , 'wp-svg-icons' ); ?></span> <?php _e( 'If you install a new icon pack, and your old icons appear you may need to empty your browsers cache.' , 'wp-svg-icons' ); ?></p>
|
218 |
+
|
219 |
+
<script>
|
220 |
+
var run_interval = null;
|
221 |
+
|
222 |
+
jQuery(document).ready(function() {
|
223 |
+
|
224 |
+
// check if the pack has loaded
|
225 |
+
run_interval = setInterval(function() {
|
226 |
+
// console.log( jQuery( '.current-font-pack' ).children().length );
|
227 |
+
if( jQuery( '.glyph' ).length <= 10 ) {
|
228 |
+
return;
|
229 |
+
// re-run the interval
|
230 |
+
} else {
|
231 |
+
var num_icons = jQuery( '.current-font-pack' ).find( '.glyph' ).length;
|
232 |
+
var i = 1;
|
233 |
+
jQuery( '.glyph' ).each( function() { if( i > 10 ) { jQuery( this ).remove();}i++; });
|
234 |
+
jQuery( '.ten-icon-limit-reached' ).show();
|
235 |
+
var fontNameString = jQuery(".mhmm").text();
|
236 |
+
var newfontNameString = fontNameString.replace("Font Name:","");
|
237 |
+
var customPackFontName = newfontNameString.split("(")[0];
|
238 |
+
var customPackFontName = jQuery.trim(customPackFontName);
|
239 |
+
// replace - with a space, just for looks sake
|
240 |
+
var custom_font_pack_title = jQuery( '.current-font-pack' ).find( 'h1' ).first().html( function(index, text) {
|
241 |
+
return text.replace( /-/g , " ");
|
242 |
+
});
|
243 |
+
jQuery('.downloadFontZipLink').parent('li').find('img').remove();
|
244 |
+
jQuery('.downloadFontZipLink').text('Download '+customPackFontName+'.zip');
|
245 |
+
jQuery('.downloadFontjSonLink').parent('li').find('img').remove();
|
246 |
+
jQuery('.downloadFontjSonLink').text('Download '+customPackFontName+'.json');
|
247 |
+
}
|
248 |
+
|
249 |
+
clearInterval(run_interval);
|
250 |
+
// kill off the interval, once we've got it
|
251 |
+
|
252 |
+
}, 50);
|
253 |
+
|
254 |
+
jQuery('body').on( 'click', '.glyph', function() {
|
255 |
+
|
256 |
+
jQuery('.glyph').removeClass("selected");
|
257 |
+
jQuery(this).addClass("selected");
|
258 |
+
|
259 |
+
var glyphCode = jQuery(this).find('.mls').text();
|
260 |
+
var glyphCode = jQuery.trim(glyphCode);
|
261 |
+
|
262 |
+
//console.log(glyphCode);
|
263 |
+
jQuery('.wp-svg-icon-preview').remove();
|
264 |
+
jQuery('.wp-svg-icon-preview-box > i').after("<b class='wp-svg-icon-preview'><div class='"+glyphCode+" previewIcon' style='display:none;'></div></b>");
|
265 |
+
jQuery('.previewIcon').fadeIn();
|
266 |
+
|
267 |
+
<?php if( get_current_screen()->base != 'wp-svg-icons_page_wp-svg-icons-custom-set' ) { ?>
|
268 |
+
var iconClass = jQuery( '.custom-pack-container-ajax' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
|
269 |
+
var selectedIconWrapper = jQuery( '.selected-element-wrap' ).attr( 'alt' );
|
270 |
+
<?php } else { ?>
|
271 |
+
var iconClass = jQuery( '.current-font-pack' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
|
272 |
+
iconClass = iconClass.replace( 'wp-svg-custom-' , '' );
|
273 |
+
var selectedIconWrapper = '<?php echo get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ); ?>';
|
274 |
+
<?php } ?>
|
275 |
+
jQuery('.copy_paste_input').val('[wp-svg-icons custom_icon="'+iconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
276 |
+
|
277 |
+
});
|
278 |
+
|
279 |
+
});
|
280 |
+
</script>
|
281 |
+
|
282 |
+
<style>
|
283 |
+
.dropdown-menu img {
|
284 |
+
display:block;
|
285 |
+
width:15px;
|
286 |
+
margin:0 auto;
|
287 |
+
}
|
288 |
+
.ptl { min-width:540px; }
|
289 |
+
#wpbody-content { min-width:900px; }
|
290 |
+
|
291 |
+
|
292 |
+
.dropdown-menu .downloadFontZipLink { padding: 4px 25px !important; background-image: url("<?php echo plugin_dir_url( __FILE__ );?>../../includes/images/zip-icon-small.png");background-repeat:no-repeat; background-size:13px 16px; background-position:6px 4px; }
|
293 |
+
.dropdown-menu .downloadFontjSonLink { padding: 4px 25px !important; background-image: url("<?php echo plugin_dir_url( __FILE__ );?>../../includes/images/json-icon-small.png");background-repeat:no-repeat; background-size:13px 16px; background-position:6px 4px; }
|
294 |
+
#uninstall-pack-button { background-image: url("<?php echo plugin_dir_url( __FILE__ );?>../../includes/images/trash-icon-small.png") !important;background-repeat:no-repeat !important; background-size:13px 14px !important; background-position:6px 6px !important; }
|
295 |
+
</style>
|
296 |
+
|
297 |
+
<!-- file upload input field -->
|
298 |
+
<!-- Handling Custom Font Pack Uploads -->
|
299 |
+
<!-- currently uploads to Uploads > WP SVG Icons > Custom Pack -->
|
300 |
+
<form id="wp_svg_icons_upload_custom_pack_form" enctype="multipart/form-data" action="" method="POST">
|
301 |
+
<?php
|
302 |
+
/* Security Nonces */
|
303 |
+
wp_nonce_field( 'validate_wp_svg_icons', 'wp_svg_icons_upload_validation' );
|
304 |
+
?>
|
305 |
+
<p id="async-upload-wrap" style="margin-bottom:0;">
|
306 |
+
<label for="async-upload"><?php _e( 'Import a Custom Font Pack' , 'wp-svg-icons' ); ?> :</label><br />
|
307 |
+
<input type="file" id="wp_svg_custom_pack_field" name="custom_icon_pack" required="required">
|
308 |
+
<p style="margin:0;">
|
309 |
+
<span class="custom-icons-file-upload-note"><?php _e( 'note: file must be a .zip downloaded from icomoon' , 'wp-svg-icons' ); ?><span>
|
310 |
+
</p>
|
311 |
+
<span class="svg-custom-pack-buttons">
|
312 |
+
<p>
|
313 |
+
<?php
|
314 |
+
// print form submission button
|
315 |
+
echo submit_button( 'Import', 'primary', '', false, '' );
|
316 |
+
?>
|
317 |
+
</p>
|
318 |
+
<p style="margin-left:1em;">
|
319 |
+
<?php
|
320 |
+
$other_attributes = array( 'onclick' => 'wp_svg_uninstall_font_pack(); return false;' , 'disabled' => 'disabled' );
|
321 |
+
echo submit_button( ' ' . __( "Uninstall Pack" , "wp-svg-icons" ) , 'delete', 'uninstall-pack-button', false, $other_attributes );
|
322 |
+
$dest = wp_upload_dir();
|
323 |
+
$dest_url = $dest['url'];
|
324 |
+
$dest_path = $dest['path'];
|
325 |
+
?>
|
326 |
+
</p>
|
327 |
+
|
328 |
+
<p style="margin-left:1em;">
|
329 |
+
<a style="height:28px; background-image: url('<?php echo plugin_dir_url( __FILE__ );?>../../includes/images/download-icon-small.png') !important;background-repeat:no-repeat !important; background-size:13px 14px !important;background-position:6px 6px !important" href="#" onclick="return false;" data-dropdown="#dropdown-1" class="dropDownButton button-secondary" disabled="disabled"><?php _e( 'Download' , 'wp-svg-icons' ); ?></a>
|
330 |
+
</p>
|
331 |
+
|
332 |
+
<?php if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) { ?>
|
333 |
+
<!-- jquery download dropdown menu -->
|
334 |
+
<div id="dropdown-1" class="dropdown dropdown-anchor-left dropdown-tip">
|
335 |
+
<ul class="dropdown-menu">
|
336 |
+
<li>
|
337 |
+
<a class="downloadFontZipLink" href="<?php echo $dest_url.'/wp-svg-custom-pack.zip'; ?>">Download .zip</a>
|
338 |
+
</li>
|
339 |
+
<li class="dropdown-divider"></li>
|
340 |
+
<li>
|
341 |
+
<a title="<?php _e( 'You can use this .json file to export your custom icon pack back into icomoon and then add or remove icons as you please' , 'wp-svg-icons' ); ?>" class="downloadFontjSonLink" download="wp-svg-custom-pack.json" href="<?php echo $dest_url.'/wp-svg-custom-pack.json'; ?>">Download .json</a>
|
342 |
+
</li>
|
343 |
+
</ul>
|
344 |
+
</div>
|
345 |
+
<?php } ?>
|
346 |
+
|
347 |
+
</span>
|
348 |
+
<!-- display success or error message after font pack deletion -->
|
349 |
+
<p id="delete_succes_and_error_message"></p>
|
350 |
+
<p id="unzip_succes_and_error_message"></p>
|
351 |
+
</p>
|
352 |
+
</form>
|
353 |
+
|
354 |
+
<div class="preview-icon-code-box">
|
355 |
+
<div class="wp-svg-icon-preview-box">
|
356 |
+
<i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i>
|
357 |
+
</div>
|
358 |
+
<p style="color: #EE3B3B;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></p>
|
359 |
+
<input class="copy_paste_input" style="padding-left:0;width:100%;border-radius:3px;border:1px solid rgba(255, 128, 0, 0.51);box-shadowinset 0 1px 2px rgba(0,0,0,.07);" readonly="" type="text" value='[wp-svg-icons icon="" wrap=""]'>
|
360 |
+
</div>
|
361 |
+
|
362 |
+
<section class="ten-icon-limit-reached" style="display:none;margin:2em 0;text-align:center;font-size:15px;color:rgb(238, 110, 81);padding:10px;">
|
363 |
+
<span class="dashicons dashicons-welcome-comments"></span> <?php _e( "It looks like you're trying to install and use more than 10 icons. Unfortunately the free version limits the number of custom icons to 10. If you'd like to access more than 10 custom icons, please consider upgrading to the", 'wp-svg-icons' ); ?> <a href="https://www.evan-herman.com/wp-svg-icons-pro/" target="_blank" title="<?php _e( 'Upgrade to pro' , 'wp-svg-icons' ); ?>"><?php _e( 'Pro Version' , 'wp-svg-icons' ); ?></a>
|
364 |
+
</section>
|
365 |
+
|
366 |
+
<div class="current-font-pack">
|
367 |
+
<!-- scandir, or some other php function to loop through the upload directory to check if any files exist -->
|
368 |
+
<!-- if files exist, list the files meta data. if user uploads new files, warn them the will overwrite active fonts, delete old font files, move new font files, ajax load font-file html files -->
|
369 |
+
<img style="display:none;" class="wp-svg-custom-pack-preloader" src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader">
|
370 |
+
</div>
|
371 |
+
|
372 |
+
<!-- plugin footer -->
|
373 |
+
<?php
|
374 |
+
if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) {
|
375 |
+
$fontPackLocationString = __( 'Your Custom Icon Pack is located in' , 'wp-svg-icons' ) . ' : ';
|
376 |
+
} else {
|
377 |
+
$fontPackLocationString = __( 'Your Custom Icon Pack will be installed to' , 'wp-svg-icons' ) . ' : ';
|
378 |
+
}
|
379 |
+
?>
|
380 |
+
|
381 |
+
<footer style="padding-left:0;margin-left:0; width: 100%;">
|
382 |
+
<p style="float:left;"><?php _e( 'Plugin Created By' , 'wp-svg-icons' ); ?> <a style="color:#B35047;" href="https://www.evan-herman.com" target="_blank">Evan Herman</a></p><p style="float:right;"><?php echo $fontPackLocationString.'<b>'.$dest_path.'</b>'; ?></p>
|
383 |
+
</footer>
|
384 |
+
</div>
|
385 |
+
<?php
|
386 |
+
|
387 |
+
/*
|
388 |
+
Function To Recursively Delete an entire directory
|
389 |
+
used on fail upload/rename
|
390 |
+
*/
|
391 |
+
function wp_svg_icons_delete_entire_directory( $dir ) {
|
392 |
+
if ( is_dir( $dir ) ) {
|
393 |
+
$objects = scandir( $dir );
|
394 |
+
foreach ($objects as $object ) {
|
395 |
+
if ( $object != "." && $object != ".." ) {
|
396 |
+
if ( filetype( $dir."/".$object) == "dir" ) wp_svg_icons_delete_entire_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
397 |
+
}
|
398 |
+
}
|
399 |
+
reset( $objects );
|
400 |
+
rmdir( $dir );
|
401 |
+
}
|
402 |
+
}
|
|
|
|
|
|
|
|
admin/partials/wp-svg-icons-default-icons-page.php
CHANGED
@@ -1,2518 +1,2520 @@
|
|
1 |
-
<?php
|
2 |
-
if( file_exists( '../../../../../wp-load.php' ) ) {
|
3 |
-
// required for _e() to work inside of the modal
|
4 |
-
include_once( "../../../../../wp-load.php" );
|
5 |
-
}
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
jQuery(
|
13 |
-
|
14 |
-
jQuery( '
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
<style>
|
20 |
-
#TB_ajaxContent {
|
21 |
-
display: block;
|
22 |
-
width: auto !important;
|
23 |
-
height: 94% !important;
|
24 |
-
}
|
25 |
-
.mls { display: none !important; }
|
26 |
-
::selection { background: #FF8000; }
|
27 |
-
</style>
|
28 |
-
|
29 |
-
<!-- display our icons and stuff -->
|
30 |
-
<div class="wrap wp-svg-icons-wrap">
|
31 |
-
|
32 |
-
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?>
|
33 |
-
<!-- review us container -->
|
34 |
-
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;
|
35 |
-
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
36 |
-
<p style="margin-top:-8px;"><a href="https://wordpress.org/support/view/plugin-reviews/svg-vector-icon-plugin" target="_blank" style="text-decoration:none;"><b class="wp-svg-happy" style="font-size:2.5em;"></b></a></p>
|
37 |
-
</div>
|
38 |
-
<!-- social media icons -->
|
39 |
-
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
40 |
-
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
41 |
-
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
42 |
-
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
43 |
-
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
44 |
-
<a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
45 |
-
</div>
|
46 |
-
<?php } ?>
|
47 |
-
|
48 |
-
<div class="w-main centered">
|
49 |
-
|
50 |
-
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> <?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?> | <?php _e( "Default Icon Pack" , "wp-svg-icons" ); } ?></h1>
|
51 |
-
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?> <h4><?php _e( "These icons are scaleable vector graphics, meaning you can set them to whatever size you want with out any loss in quality." , "wp-svg-icons" ); ?> <span style="color:#FF8000;"><?php _e( "Enjoy!" , "wp-svg-icons" ); ?></span></h3> <?php } ?>
|
52 |
-
|
53 |
-
<div class="help-boxes" >
|
54 |
-
|
55 |
-
<div class="how-to-use">
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
<
|
63 |
-
|
64 |
-
|
65 |
-
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="
|
66 |
-
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="
|
67 |
-
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="
|
68 |
-
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="
|
69 |
-
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
<li
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
<
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
<
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
<
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
<
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
<
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
<
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
<
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
<
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
<
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
<
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
<
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
<
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
<
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
<
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
<
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
<
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
<
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
<
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
<
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
<
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
<
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
<
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
<
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
<
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
<
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
<
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
<
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
<
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
<
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
<
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
<
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
<
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
<
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
<
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
<
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
<
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
<
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
<
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
<
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
<
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
<
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
<
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
<
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
<
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
<
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
<
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
<
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
<
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
<
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
<
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
<
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
<
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
<
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
<
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
<
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
<
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
<
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
<
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
<
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
<
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
<
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
<
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
<
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
<
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
<
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
<
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
<
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
<
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
<
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
<
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
<
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
<
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
<
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
<
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
<
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
<
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
<
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
<
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
<
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
<
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
<
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
<
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
<
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
<
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
<
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
<
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
<
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
<
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
<
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
<
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
<
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
<
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
<
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
<
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
<
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
<
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
<div class="
|
2511 |
-
|
2512 |
-
<
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
|
|
|
1 |
+
<?php
|
2 |
+
if( file_exists( '../../../../../wp-load.php' ) ) {
|
3 |
+
// required for _e() to work inside of the modal
|
4 |
+
include_once( "../../../../../wp-load.php" );
|
5 |
+
}
|
6 |
+
|
7 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
8 |
+
?>
|
9 |
+
|
10 |
+
<script>
|
11 |
+
jQuery( document ).ready( function() {
|
12 |
+
if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
|
13 |
+
jQuery( '.how-to-use' ).css( 'margin-bottom' , '20px' );
|
14 |
+
jQuery( '#wp-svg-nav-tab-wrapper' ).show();
|
15 |
+
}
|
16 |
+
});
|
17 |
+
</script>
|
18 |
+
|
19 |
+
<style>
|
20 |
+
#TB_ajaxContent {
|
21 |
+
display: block;
|
22 |
+
width: auto !important;
|
23 |
+
height: 94% !important;
|
24 |
+
}
|
25 |
+
.mls { display: none !important; }
|
26 |
+
::selection { background: #FF8000; }
|
27 |
+
</style>
|
28 |
+
|
29 |
+
<!-- display our icons and stuff -->
|
30 |
+
<div class="wrap wp-svg-icons-wrap">
|
31 |
+
|
32 |
+
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?>
|
33 |
+
<!-- review us container -->
|
34 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;text-align:center;">
|
35 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
36 |
+
<p style="margin-top:-8px;"><a href="https://wordpress.org/support/view/plugin-reviews/svg-vector-icon-plugin" target="_blank" style="text-decoration:none;"><b class="wp-svg-happy" style="font-size:2.5em;"></b></a></p>
|
37 |
+
</div>
|
38 |
+
<!-- social media icons -->
|
39 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
40 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
41 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
42 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
43 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
44 |
+
<a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
45 |
+
</div>
|
46 |
+
<?php } ?>
|
47 |
+
|
48 |
+
<div class="w-main centered">
|
49 |
+
|
50 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> <?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?> | <?php _e( "Default Icon Pack" , "wp-svg-icons" ); } ?></h1>
|
51 |
+
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?> <h4><?php _e( "These icons are scaleable vector graphics, meaning you can set them to whatever size you want with out any loss in quality." , "wp-svg-icons" ); ?> <span style="color:#FF8000;"><?php _e( "Enjoy!" , "wp-svg-icons" ); ?></span></h3> <?php } ?>
|
52 |
+
|
53 |
+
<div class="help-boxes" >
|
54 |
+
|
55 |
+
<div class="how-to-use">
|
56 |
+
|
57 |
+
<?php $selected = get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ); ?>
|
58 |
+
|
59 |
+
<section class="wp-svg-how-to-use-container">
|
60 |
+
<h3 style="padding-left:10px;"><?php _e( "How to use:" , "wp-svg-icons" ); ?></h3>
|
61 |
+
<ul style="margin-left:35px; list-style-type:square; margin-bottom: 20px;">
|
62 |
+
<li><?php _e( "Step 1: Locate and click the icon you want to use." , "wp-svg-icons" ); ?></li>
|
63 |
+
<li><?php _e( "Step 2: Select the element to wrap your icon with." , "wp-svg-icons" ); ?></li>
|
64 |
+
<span class="element_selection_container">
|
65 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'h1' ) { echo ' selected-element-wrap'; } ?>" alt="h1">h1</a>
|
66 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'h2' ) { echo ' selected-element-wrap'; } ?>" alt="h2">h2</a>
|
67 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'h3' ) { echo ' selected-element-wrap'; } ?>" alt="h3">h3</a>
|
68 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'span' ) { echo ' selected-element-wrap'; } ?>" alt="span">span</a>
|
69 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'div' ) { echo ' selected-element-wrap'; } ?>" alt="div">div</a>
|
70 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'i' ) { echo ' selected-element-wrap'; } ?>" alt="i">i</a>
|
71 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper<?php if ( $selected === 'b' ) { echo ' selected-element-wrap'; } ?>" alt="b">b</a>
|
72 |
+
</span>
|
73 |
+
<li><?php _e( "Step 3: Click 'Insert Icon' on a post or page, or use the generated shortcode anywhere on your site, or in any template file." , "wp-svg-icons" ); ?></li>
|
74 |
+
<!-- copy paste input field -->
|
75 |
+
<li style="list-style-type:none !important; display:block;margin-top:.75em;">
|
76 |
+
<i style="color:red;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></i>
|
77 |
+
<div class="copy_paste_input" style="padding-left:0;width:100%;resize:none;" contentEditable="true">[wp-svg-icons icon="<?php _e( 'icon-name' , 'wp-svg-icons' ); ?>" wrap=""]</div>
|
78 |
+
</li>
|
79 |
+
<li style="list-style:none;margin-top:1em;display:none;" id="advanced-attr-toggle-list-item">
|
80 |
+
<a href="#" class="button-secondary" id="advanced-shortcode-attr-toggle" onclick="jQuery('#advanced-shortcode-attr-list').slideToggle();jQuery(this).toggleClass('yes-adv-attr');return false;"><?php _e( "Advanced Attributes" , "wp-svg-icons" ); ?></a>
|
81 |
+
</li>
|
82 |
+
</ul>
|
83 |
+
|
84 |
+
</section>
|
85 |
+
|
86 |
+
<!-- preview box -->
|
87 |
+
<div class="wp-svg-icon-preview-box default-icons">
|
88 |
+
<i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i><b class="wp-svg-icon-preview"></b>
|
89 |
+
</div>
|
90 |
+
|
91 |
+
<section style="float:left;width:100%;">
|
92 |
+
|
93 |
+
<!-- insert the code into a post or page -->
|
94 |
+
<a href="#" onclick="insert_wp_SVG_icon_to_editor();" class="button-primary insert-wp-svg-icon" style="display: none;"><?php _e( 'Insert Icon' , 'wp-svg-icons' ); ?></a>
|
95 |
+
|
96 |
+
</section>
|
97 |
+
|
98 |
+
|
99 |
+
</div> <!-- end how to use -->
|
100 |
+
|
101 |
+
</div><!-- end help boxes -->
|
102 |
+
|
103 |
+
<!-- tabs, to switch between default and custom packs on edit.php -->
|
104 |
+
<h2 class="nav-tab-wrapper" id="wp-svg-nav-tab-wrapper" style="display:none;">
|
105 |
+
<a href="#" class="nav-tab default-icon-pack nav-tab-active" onclick="show_defualt_pack( this );"><?php _e( 'Default Pack' , 'wp-svg-icons' ); ?></a>
|
106 |
+
<a href="#" class="nav-tab custom-pack-tab" onclick="load_custom_pack( this );"><?php _e( 'Custom Pack' , 'wp-svg-icons' ); ?></a>
|
107 |
+
</h2>
|
108 |
+
|
109 |
+
<div class="wp-svg-iconset1-all-glyphs" style="display:inline-block; margin-top:1em; ">
|
110 |
+
|
111 |
+
<section class="mtm clearfix" id="glyphs">
|
112 |
+
|
113 |
+
<div class="glyph glyph-demo">
|
114 |
+
<span class="mls">wp-svg-home</span>
|
115 |
+
<div class="fs1 home" aria-hidden="true" data-icon="" ></div>
|
116 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe000;"> </a>
|
117 |
+
</div>
|
118 |
+
|
119 |
+
<div class="glyph glyph-demo">
|
120 |
+
<span class="mls"> wp-svg-home-2 </span>
|
121 |
+
<div class="fs1 home-2" aria-hidden="true" data-icon=""></div>
|
122 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe001;"> </a>
|
123 |
+
</div>
|
124 |
+
|
125 |
+
|
126 |
+
<div class="glyph glyph-demo">
|
127 |
+
<span class="mls"> wp-svg-home-3 </span>
|
128 |
+
<div class="fs1 home-3" aria-hidden="true" data-icon=""></div>
|
129 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe002;"> </a>
|
130 |
+
</div>
|
131 |
+
|
132 |
+
<div class="glyph glyph-demo">
|
133 |
+
<span class="mls"> wp-svg-office </span>
|
134 |
+
<div class="fs1 office" aria-hidden="true" data-icon=""></div>
|
135 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe003;" > </a>
|
136 |
+
</div>
|
137 |
+
|
138 |
+
<div class="glyph glyph-demo">
|
139 |
+
<span class="mls"> wp-svg-newspaper </span>
|
140 |
+
<div class="fs1 newspaper" aria-hidden="true" data-icon=""></div>
|
141 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe004;" > </a>
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<div class="glyph glyph-demo">
|
145 |
+
<span class="mls"> wp-svg-pencil </span>
|
146 |
+
<div class="fs1 pencil" aria-hidden="true" data-icon=""></div>
|
147 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe005;" > </a>
|
148 |
+
</div>
|
149 |
+
|
150 |
+
<div class="glyph glyph-demo">
|
151 |
+
<span class="mls"> wp-svg-pencil-2 </span>
|
152 |
+
<div class="fs1 pencil-2" aria-hidden="true" data-icon=""></div>
|
153 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe006;" > </a>
|
154 |
+
</div>
|
155 |
+
|
156 |
+
<div class="glyph glyph-demo">
|
157 |
+
<span class="mls"> wp-svg-quill </span>
|
158 |
+
<div class="fs1 quill" aria-hidden="true" data-icon=""></div>
|
159 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe007;" > </a>
|
160 |
+
</div>
|
161 |
+
|
162 |
+
<div class="glyph glyph-demo">
|
163 |
+
<span class="mls"> wp-svg-pen </span>
|
164 |
+
<div class="fs1 pen" aria-hidden="true" data-icon=""></div>
|
165 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe008;" > </a>
|
166 |
+
</div>
|
167 |
+
|
168 |
+
<div class="glyph glyph-demo">
|
169 |
+
<span class="mls"> wp-svg-blog </span>
|
170 |
+
<div class="fs1 blog" aria-hidden="true" data-icon=""></div>
|
171 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe009;" > </a>
|
172 |
+
</div>
|
173 |
+
|
174 |
+
<div class="glyph glyph-demo">
|
175 |
+
<span class="mls"> wp-svg-droplet </span>
|
176 |
+
<div class="fs1 droplet" aria-hidden="true" data-icon=""></div>
|
177 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00a;" > </a>
|
178 |
+
</div>
|
179 |
+
|
180 |
+
<div class="glyph glyph-demo">
|
181 |
+
<span class="mls"> wp-svg-image </span>
|
182 |
+
<div class="fs1 image" aria-hidden="true" data-icon=""></div>
|
183 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00c;" > </a>
|
184 |
+
</div>
|
185 |
+
|
186 |
+
<div class="glyph glyph-demo">
|
187 |
+
<span class="mls"> wp-svg-image-2 </span>
|
188 |
+
<div class="fs1 image-2" aria-hidden="true" data-icon=""></div>
|
189 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00d;" > </a>
|
190 |
+
</div>
|
191 |
+
|
192 |
+
<div class="glyph glyph-demo">
|
193 |
+
<span class="mls"> wp-svg-images </span>
|
194 |
+
<div class="fs1 images" aria-hidden="true" data-icon=""></div>
|
195 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00e;" > </a>
|
196 |
+
</div>
|
197 |
+
|
198 |
+
<div class="glyph glyph-demo">
|
199 |
+
<span class="mls"> wp-svg-camera </span>
|
200 |
+
<div class="fs1 camera" aria-hidden="true" data-icon=""></div>
|
201 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00f;" > </a>
|
202 |
+
</div>
|
203 |
+
|
204 |
+
<div class="glyph glyph-demo">
|
205 |
+
<span class="mls"> wp-svg-music </span>
|
206 |
+
<div class="fs1 music" aria-hidden="true" data-icon=""></div>
|
207 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe010;" > </a>
|
208 |
+
</div>
|
209 |
+
|
210 |
+
<div class="glyph glyph-demo">
|
211 |
+
<span class="mls"> wp-svg-headphones </span>
|
212 |
+
<div class="fs1 headphones" aria-hidden="true" data-icon=""></div>
|
213 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe011;" > </a>
|
214 |
+
</div>
|
215 |
+
|
216 |
+
<div class="glyph glyph-demo">
|
217 |
+
<span class="mls"> wp-svg-play </span>
|
218 |
+
<div class="fs1 play" aria-hidden="true" data-icon=""></div>
|
219 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe012;" > </a>
|
220 |
+
</div>
|
221 |
+
|
222 |
+
<div class="glyph glyph-demo">
|
223 |
+
<span class="mls"> wp-svg-film </span>
|
224 |
+
<div class="fs1 film" aria-hidden="true" data-icon=""></div>
|
225 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe013;" > </a>
|
226 |
+
</div>
|
227 |
+
|
228 |
+
<div class="glyph glyph-demo">
|
229 |
+
<span class="mls"> wp-svg-camera-2 </span>
|
230 |
+
<div class="fs1 camera-2" aria-hidden="true" data-icon=""></div>
|
231 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe014;" > </a>
|
232 |
+
</div>
|
233 |
+
|
234 |
+
<div class="glyph glyph-demo">
|
235 |
+
<span class="mls"> wp-svg-dice </span>
|
236 |
+
<div class="fs1 dice" aria-hidden="true" data-icon=""></div>
|
237 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe015;" > </a>
|
238 |
+
</div>
|
239 |
+
|
240 |
+
<div class="glyph glyph-demo">
|
241 |
+
<span class="mls"> wp-svg-pacman </span>
|
242 |
+
<div class="fs1 pacman" aria-hidden="true" data-icon=""></div>
|
243 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe016;" > </a>
|
244 |
+
</div>
|
245 |
+
|
246 |
+
<div class="glyph glyph-demo">
|
247 |
+
<span class="mls"> wp-svg-spades </span>
|
248 |
+
<div class="fs1 spades" aria-hidden="true" data-icon=""></div>
|
249 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe017;" > </a>
|
250 |
+
</div>
|
251 |
+
|
252 |
+
<div class="glyph glyph-demo">
|
253 |
+
<span class="mls"> wp-svg-clubs </span>
|
254 |
+
<div class="fs1 clubs" aria-hidden="true" data-icon=""></div>
|
255 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe018;" > </a>
|
256 |
+
</div>
|
257 |
+
|
258 |
+
<div class="glyph glyph-demo">
|
259 |
+
<span class="mls"> wp-svg-diamonds </span>
|
260 |
+
<div class="fs1 diamonds" aria-hidden="true" data-icon=""></div>
|
261 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe019;" > </a>
|
262 |
+
</div>
|
263 |
+
|
264 |
+
<div class="glyph glyph-demo">
|
265 |
+
<span class="mls"> wp-svg-pawn </span>
|
266 |
+
<div class="fs1 pawn" aria-hidden="true" data-icon=""></div>
|
267 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01a;" > </a>
|
268 |
+
</div>
|
269 |
+
|
270 |
+
<div class="glyph glyph-demo">
|
271 |
+
<span class="mls"> wp-svg-bullhorn </span>
|
272 |
+
<div class="fs1 bullhorn" aria-hidden="true" data-icon=""></div>
|
273 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01b;" > </a>
|
274 |
+
</div>
|
275 |
+
|
276 |
+
<div class="glyph glyph-demo">
|
277 |
+
<span class="mls"> wp-svg-connection </span>
|
278 |
+
<div class="fs1 connection" aria-hidden="true" data-icon=""></div>
|
279 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01c;" > </a>
|
280 |
+
</div>
|
281 |
+
|
282 |
+
<div class="glyph glyph-demo">
|
283 |
+
<span class="mls"> wp-svg-podcast </span>
|
284 |
+
<div class="fs1 podcast" aria-hidden="true" data-icon=""></div>
|
285 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01d;" > </a>
|
286 |
+
</div>
|
287 |
+
|
288 |
+
<div class="glyph glyph-demo">
|
289 |
+
<span class="mls"> wp-svg-feed </span>
|
290 |
+
<div class="fs1 feed" aria-hidden="true" data-icon=""></div>
|
291 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01e;" > </a>
|
292 |
+
</div>
|
293 |
+
|
294 |
+
<div class="glyph glyph-demo">
|
295 |
+
<span class="mls"> wp-svg-book </span>
|
296 |
+
<div class="fs1 book" aria-hidden="true" data-icon=""></div>
|
297 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01f;" > </a>
|
298 |
+
</div>
|
299 |
+
|
300 |
+
<div class="glyph glyph-demo">
|
301 |
+
<span class="mls"> wp-svg-books </span>
|
302 |
+
<div class="fs1 books" aria-hidden="true" data-icon=""></div>
|
303 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe020;" > </a>
|
304 |
+
</div>
|
305 |
+
|
306 |
+
<div class="glyph glyph-demo">
|
307 |
+
<span class="mls"> wp-svg-library </span>
|
308 |
+
<div class="fs1 library" aria-hidden="true" data-icon=""></div>
|
309 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe021;" > </a>
|
310 |
+
</div>
|
311 |
+
|
312 |
+
<div class="glyph glyph-demo">
|
313 |
+
<span class="mls"> wp-svg-file </span>
|
314 |
+
<div class="fs1 file" aria-hidden="true" data-icon=""></div>
|
315 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe022;" > </a>
|
316 |
+
</div>
|
317 |
+
|
318 |
+
<div class="glyph glyph-demo">
|
319 |
+
<span class="mls"> wp-svg-profile </span>
|
320 |
+
<div class="fs1 profile" aria-hidden="true" data-icon=""></div>
|
321 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe023;" > </a>
|
322 |
+
</div>
|
323 |
+
|
324 |
+
<div class="glyph glyph-demo">
|
325 |
+
<span class="mls"> wp-svg-file-2 </span>
|
326 |
+
<div class="fs1 file-2" aria-hidden="true" data-icon=""></div>
|
327 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe024;" > </a>
|
328 |
+
</div>
|
329 |
+
|
330 |
+
<div class="glyph glyph-demo">
|
331 |
+
<span class="mls"> wp-svg-file-3 </span>
|
332 |
+
<div class="fs1 file-3" aria-hidden="true" data-icon=""></div>
|
333 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe025;" > </a>
|
334 |
+
</div>
|
335 |
+
|
336 |
+
<div class="glyph glyph-demo">
|
337 |
+
<span class="mls"> wp-svg-file-4 </span>
|
338 |
+
<div class="fs1 file-4" aria-hidden="true" data-icon=""></div>
|
339 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe026;" > </a>
|
340 |
+
</div>
|
341 |
+
|
342 |
+
<div class="glyph glyph-demo">
|
343 |
+
<span class="mls"> wp-svg-copy </span>
|
344 |
+
<div class="fs1 copy" aria-hidden="true" data-icon=""></div>
|
345 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe027;" > </a>
|
346 |
+
</div>
|
347 |
+
|
348 |
+
<div class="glyph glyph-demo">
|
349 |
+
<span class="mls"> wp-svg-copy-2 </span>
|
350 |
+
<div class="fs1 copy-2" aria-hidden="true" data-icon=""></div>
|
351 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe028;" > </a>
|
352 |
+
</div>
|
353 |
+
|
354 |
+
<div class="glyph glyph-demo">
|
355 |
+
<span class="mls"> wp-svg-copy-3 </span>
|
356 |
+
<div class="fs1 copy-3" aria-hidden="true" data-icon=""></div>
|
357 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe029;" > </a>
|
358 |
+
</div>
|
359 |
+
|
360 |
+
<div class="glyph glyph-demo">
|
361 |
+
<span class="mls"> wp-svg-paste </span>
|
362 |
+
<div class="fs1 paste" aria-hidden="true" data-icon=""></div>
|
363 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02a;" > </a>
|
364 |
+
</div>
|
365 |
+
|
366 |
+
<div class="glyph glyph-demo">
|
367 |
+
<span class="mls"> wp-svg-paste-2 </span>
|
368 |
+
<div class="fs1 paste-2" aria-hidden="true" data-icon=""></div>
|
369 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02b;" > </a>
|
370 |
+
</div>
|
371 |
+
|
372 |
+
<div class="glyph glyph-demo">
|
373 |
+
<span class="mls"> wp-svg-paste-3 </span>
|
374 |
+
<div class="fs1 paste-3" aria-hidden="true" data-icon=""></div>
|
375 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02c;" > </a>
|
376 |
+
</div>
|
377 |
+
|
378 |
+
<div class="glyph glyph-demo">
|
379 |
+
<span class="mls"> wp-svg-stack </span>
|
380 |
+
<div class="fs1 stack" aria-hidden="true" data-icon=""></div>
|
381 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02d;" > </a>
|
382 |
+
</div>
|
383 |
+
|
384 |
+
<div class="glyph glyph-demo">
|
385 |
+
<span class="mls"> wp-svg-folder </span>
|
386 |
+
<div class="fs1 folder" aria-hidden="true" data-icon=""></div>
|
387 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02e;" > </a>
|
388 |
+
</div>
|
389 |
+
|
390 |
+
<div class="glyph glyph-demo">
|
391 |
+
<span class="mls"> wp-svg-folder-open </span>
|
392 |
+
<div class="fs1 folder-open" aria-hidden="true" data-icon=""></div>
|
393 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02f;" > </a>
|
394 |
+
</div>
|
395 |
+
|
396 |
+
<div class="glyph glyph-demo">
|
397 |
+
<span class="mls"> wp-svg-tag </span>
|
398 |
+
<div class="fs1 tag" aria-hidden="true" data-icon=""></div>
|
399 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe030;" > </a>
|
400 |
+
</div>
|
401 |
+
|
402 |
+
<div class="glyph glyph-demo">
|
403 |
+
<span class="mls"> wp-svg-tags </span>
|
404 |
+
<div class="fs1 tags" aria-hidden="true" data-icon=""></div>
|
405 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe031;" > </a>
|
406 |
+
</div>
|
407 |
+
|
408 |
+
<div class="glyph glyph-demo">
|
409 |
+
<span class="mls"> wp-svg-barcode </span>
|
410 |
+
<div class="fs1 barcode" aria-hidden="true" data-icon=""></div>
|
411 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe032;" > </a>
|
412 |
+
</div>
|
413 |
+
|
414 |
+
<div class="glyph glyph-demo">
|
415 |
+
<span class="mls"> wp-svg-qrcode </span>
|
416 |
+
<div class="fs1 qrcode" aria-hidden="true" data-icon=""></div>
|
417 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe033;" > </a>
|
418 |
+
</div>
|
419 |
+
|
420 |
+
<div class="glyph glyph-demo">
|
421 |
+
<span class="mls"> wp-svg-ticket </span>
|
422 |
+
<div class="fs1 ticket" aria-hidden="true" data-icon=""></div>
|
423 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe034;" > </a>
|
424 |
+
</div>
|
425 |
+
|
426 |
+
<div class="glyph glyph-demo">
|
427 |
+
<span class="mls"> wp-svg-cart </span>
|
428 |
+
<div class="fs1 cart" aria-hidden="true" data-icon=""></div>
|
429 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe035;" > </a>
|
430 |
+
</div>
|
431 |
+
|
432 |
+
<div class="glyph glyph-demo">
|
433 |
+
<span class="mls"> wp-svg-cart-2 </span>
|
434 |
+
<div class="fs1 cart-2" aria-hidden="true" data-icon=""></div>
|
435 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe036;" > </a>
|
436 |
+
</div>
|
437 |
+
|
438 |
+
<div class="glyph glyph-demo">
|
439 |
+
<span class="mls"> wp-svg-cart-3 </span>
|
440 |
+
<div class="fs1 cart-3" aria-hidden="true" data-icon=""></div>
|
441 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe037;" > </a>
|
442 |
+
</div>
|
443 |
+
|
444 |
+
<div class="glyph glyph-demo">
|
445 |
+
<span class="mls"> wp-svg-coin </span>
|
446 |
+
<div class="fs1 coin" aria-hidden="true" data-icon=""></div>
|
447 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe038;" > </a>
|
448 |
+
</div>
|
449 |
+
|
450 |
+
<div class="glyph glyph-demo">
|
451 |
+
<span class="mls"> wp-svg-credit </span>
|
452 |
+
<div class="fs1 credit" aria-hidden="true" data-icon=""></div>
|
453 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe039;" > </a>
|
454 |
+
</div>
|
455 |
+
|
456 |
+
<div class="glyph glyph-demo">
|
457 |
+
<span class="mls"> wp-svg-calculate </span>
|
458 |
+
<div class="fs1 calculate" aria-hidden="true" data-icon=""></div>
|
459 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03a;" > </a>
|
460 |
+
</div>
|
461 |
+
|
462 |
+
<div class="glyph glyph-demo">
|
463 |
+
<span class="mls"> wp-svg-support </span>
|
464 |
+
<div class="fs1 support" aria-hidden="true" data-icon=""></div>
|
465 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03b;" > </a>
|
466 |
+
</div>
|
467 |
+
|
468 |
+
<div class="glyph glyph-demo">
|
469 |
+
<span class="mls"> wp-svg-phone </span>
|
470 |
+
<div class="fs1 phone" aria-hidden="true" data-icon=""></div>
|
471 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03c;" > </a>
|
472 |
+
</div>
|
473 |
+
|
474 |
+
<div class="glyph glyph-demo">
|
475 |
+
<span class="mls"> wp-svg-phone-hang-up </span>
|
476 |
+
<div class="fs1 phone-hang-up" aria-hidden="true" data-icon=""></div>
|
477 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03d;" > </a>
|
478 |
+
</div>
|
479 |
+
|
480 |
+
<div class="glyph glyph-demo">
|
481 |
+
<span class="mls"> wp-svg-address-book </span>
|
482 |
+
<div class="fs1 address-book" aria-hidden="true" data-icon=""></div>
|
483 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03e;" > </a>
|
484 |
+
</div>
|
485 |
+
|
486 |
+
<div class="glyph glyph-demo">
|
487 |
+
<span class="mls"> wp-svg-notebook </span>
|
488 |
+
<div class="fs1 notebook" aria-hidden="true" data-icon=""></div>
|
489 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03f;" > </a>
|
490 |
+
</div>
|
491 |
+
|
492 |
+
<div class="glyph glyph-demo">
|
493 |
+
<span class="mls"> wp-svg-envelop </span>
|
494 |
+
<div class="fs1 envelop" aria-hidden="true" data-icon=""></div>
|
495 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe040;" > </a>
|
496 |
+
</div>
|
497 |
+
|
498 |
+
<div class="glyph glyph-demo">
|
499 |
+
<span class="mls"> wp-svg-pushpin </span>
|
500 |
+
<div class="fs1 pushpin" aria-hidden="true" data-icon=""></div>
|
501 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe041;" > </a>
|
502 |
+
</div>
|
503 |
+
|
504 |
+
<div class="glyph glyph-demo">
|
505 |
+
<span class="mls"> wp-svg-location </span>
|
506 |
+
<div class="fs1 location" aria-hidden="true" data-icon=""></div>
|
507 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe042;" > </a>
|
508 |
+
</div>
|
509 |
+
|
510 |
+
<div class="glyph glyph-demo">
|
511 |
+
<span class="mls"> wp-svg-location-2 </span>
|
512 |
+
<div class="fs1 location-2" aria-hidden="true" data-icon=""></div>
|
513 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe043;" > </a>
|
514 |
+
</div>
|
515 |
+
|
516 |
+
<div class="glyph glyph-demo">
|
517 |
+
<span class="mls"> wp-svg-compass </span>
|
518 |
+
<div class="fs1 compass" aria-hidden="true" data-icon=""></div>
|
519 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe044;" > </a>
|
520 |
+
</div>
|
521 |
+
|
522 |
+
<div class="glyph glyph-demo">
|
523 |
+
<span class="mls"> wp-svg-map </span>
|
524 |
+
<div class="fs1 map" aria-hidden="true" data-icon=""></div>
|
525 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe045;" > </a>
|
526 |
+
</div>
|
527 |
+
|
528 |
+
<div class="glyph glyph-demo">
|
529 |
+
<span class="mls"> wp-svg-map-2 </span>
|
530 |
+
<div class="fs1 map-2" aria-hidden="true" data-icon=""></div>
|
531 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe046;" > </a>
|
532 |
+
</div>
|
533 |
+
|
534 |
+
<div class="glyph glyph-demo">
|
535 |
+
<span class="mls"> wp-svg-history </span>
|
536 |
+
<div class="fs1 history" aria-hidden="true" data-icon=""></div>
|
537 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe047;" > </a>
|
538 |
+
</div>
|
539 |
+
|
540 |
+
<div class="glyph glyph-demo">
|
541 |
+
<span class="mls"> wp-svg-clock </span>
|
542 |
+
<div class="fs1 clock" aria-hidden="true" data-icon=""></div>
|
543 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe048;" > </a>
|
544 |
+
</div>
|
545 |
+
|
546 |
+
<div class="glyph glyph-demo">
|
547 |
+
<span class="mls"> wp-svg-clock-2 </span>
|
548 |
+
<div class="fs1 clock-2" aria-hidden="true" data-icon=""></div>
|
549 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe049;" > </a>
|
550 |
+
</div>
|
551 |
+
|
552 |
+
<div class="glyph glyph-demo">
|
553 |
+
<span class="mls"> wp-svg-alarm </span>
|
554 |
+
<div class="fs1 alarm" aria-hidden="true" data-icon=""></div>
|
555 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04a;" > </a>
|
556 |
+
</div>
|
557 |
+
|
558 |
+
<div class="glyph glyph-demo">
|
559 |
+
<span class="mls"> wp-svg-alarm-2 </span>
|
560 |
+
<div class="fs1 alarm-2" aria-hidden="true" data-icon=""></div>
|
561 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04b;" > </a>
|
562 |
+
</div>
|
563 |
+
|
564 |
+
<div class="glyph glyph-demo">
|
565 |
+
<span class="mls"> wp-svg-bell </span>
|
566 |
+
<div class="fs1 bell" aria-hidden="true" data-icon=""></div>
|
567 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04c;" > </a>
|
568 |
+
</div>
|
569 |
+
|
570 |
+
<div class="glyph glyph-demo">
|
571 |
+
<span class="mls"> wp-svg-stopwatch </span>
|
572 |
+
<div class="fs1 stopwatch" aria-hidden="true" data-icon=""></div>
|
573 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04d;" > </a>
|
574 |
+
</div>
|
575 |
+
|
576 |
+
<div class="glyph glyph-demo">
|
577 |
+
<span class="mls"> wp-svg-calendar </span>
|
578 |
+
<div class="fs1 calendar" aria-hidden="true" data-icon=""></div>
|
579 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04e;" > </a>
|
580 |
+
</div>
|
581 |
+
|
582 |
+
<div class="glyph glyph-demo">
|
583 |
+
<span class="mls"> wp-svg-calendar-2 </span>
|
584 |
+
<div class="fs1 calendar-2" aria-hidden="true" data-icon=""></div>
|
585 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04f;" > </a>
|
586 |
+
</div>
|
587 |
+
|
588 |
+
<div class="glyph glyph-demo">
|
589 |
+
<span class="mls"> wp-svg-print </span>
|
590 |
+
<div class="fs1 print" aria-hidden="true" data-icon=""></div>
|
591 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe050;" > </a>
|
592 |
+
</div>
|
593 |
+
|
594 |
+
<div class="glyph glyph-demo">
|
595 |
+
<span class="mls"> wp-svg-keyboard </span>
|
596 |
+
<div class="fs1 keyboard" aria-hidden="true" data-icon=""></div>
|
597 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe051;" > </a>
|
598 |
+
</div>
|
599 |
+
|
600 |
+
<div class="glyph glyph-demo">
|
601 |
+
<span class="mls"> wp-svg-screen </span>
|
602 |
+
<div class="fs1 screen" aria-hidden="true" data-icon=""></div>
|
603 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe052;" > </a>
|
604 |
+
</div>
|
605 |
+
|
606 |
+
<div class="glyph glyph-demo">
|
607 |
+
<span class="mls"> wp-svg-laptop </span>
|
608 |
+
<div class="fs1 laptop" aria-hidden="true" data-icon=""></div>
|
609 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe053;" > </a>
|
610 |
+
</div>
|
611 |
+
|
612 |
+
<div class="glyph glyph-demo">
|
613 |
+
<span class="mls"> wp-svg-mobile </span>
|
614 |
+
<div class="fs1 mobile" aria-hidden="true" data-icon=""></div>
|
615 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe054;" > </a>
|
616 |
+
</div>
|
617 |
+
|
618 |
+
<div class="glyph glyph-demo">
|
619 |
+
<span class="mls"> wp-svg-mobile-2 </span>
|
620 |
+
<div class="fs1 mobile-2" aria-hidden="true" data-icon=""></div>
|
621 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe055;" > </a>
|
622 |
+
</div>
|
623 |
+
|
624 |
+
<div class="glyph glyph-demo">
|
625 |
+
<span class="mls"> wp-svg-tablet </span>
|
626 |
+
<div class="fs1 tablet" aria-hidden="true" data-icon=""></div>
|
627 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe056;" > </a>
|
628 |
+
</div>
|
629 |
+
|
630 |
+
<div class="glyph glyph-demo">
|
631 |
+
<span class="mls"> wp-svg-tv </span>
|
632 |
+
<div class="fs1 tv" aria-hidden="true" data-icon=""></div>
|
633 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe057;" > </a>
|
634 |
+
</div>
|
635 |
+
|
636 |
+
<div class="glyph glyph-demo">
|
637 |
+
<span class="mls"> wp-svg-cabinet </span>
|
638 |
+
<div class="fs1 cabinet" aria-hidden="true" data-icon=""></div>
|
639 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe058;" > </a>
|
640 |
+
</div>
|
641 |
+
|
642 |
+
<div class="glyph glyph-demo">
|
643 |
+
<span class="mls"> wp-svg-drawer </span>
|
644 |
+
<div class="fs1 drawer" aria-hidden="true" data-icon=""></div>
|
645 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe059;" > </a>
|
646 |
+
</div>
|
647 |
+
|
648 |
+
<div class="glyph glyph-demo">
|
649 |
+
<span class="mls"> wp-svg-drawer-2 </span>
|
650 |
+
<div class="fs1 drawer-2" aria-hidden="true" data-icon=""></div>
|
651 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05a;" > </a>
|
652 |
+
</div>
|
653 |
+
|
654 |
+
<div class="glyph glyph-demo">
|
655 |
+
<span class="mls"> wp-svg-drawer-3 </span>
|
656 |
+
<div class="fs1 drawer-3" aria-hidden="true" data-icon=""></div>
|
657 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05b;" > </a>
|
658 |
+
</div>
|
659 |
+
|
660 |
+
<div class="glyph glyph-demo">
|
661 |
+
<span class="mls"> wp-svg-box-add </span>
|
662 |
+
<div class="fs1 box-add" aria-hidden="true" data-icon=""></div>
|
663 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05c;" > </a>
|
664 |
+
</div>
|
665 |
+
|
666 |
+
<div class="glyph glyph-demo">
|
667 |
+
<span class="mls"> wp-svg-box-remove </span>
|
668 |
+
<div class="fs1 box-remove" aria-hidden="true" data-icon=""></div>
|
669 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05d;" > </a>
|
670 |
+
</div>
|
671 |
+
|
672 |
+
<div class="glyph glyph-demo">
|
673 |
+
<span class="mls"> wp-svg-download </span>
|
674 |
+
<div class="fs1 download" aria-hidden="true" data-icon=""></div>
|
675 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05e;" > </a>
|
676 |
+
</div>
|
677 |
+
|
678 |
+
<div class="glyph glyph-demo">
|
679 |
+
<span class="mls"> wp-svg-upload </span>
|
680 |
+
<div class="fs1 upload" aria-hidden="true" data-icon=""></div>
|
681 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05f;" > </a>
|
682 |
+
</div>
|
683 |
+
|
684 |
+
<div class="glyph glyph-demo">
|
685 |
+
<span class="mls"> wp-svg-disk </span>
|
686 |
+
<div class="fs1 disk" aria-hidden="true" data-icon=""></div>
|
687 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe060;" > </a>
|
688 |
+
</div>
|
689 |
+
|
690 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-storage </span>
|
691 |
+
<div class="fs1 storage" aria-hidden="true" data-icon=""></div>
|
692 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe061;" > </a>
|
693 |
+
</div>
|
694 |
+
|
695 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-undo </span>
|
696 |
+
<div class="fs1 undo" aria-hidden="true" data-icon=""></div>
|
697 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe062;" > </a>
|
698 |
+
</div>
|
699 |
+
|
700 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-redo </span>
|
701 |
+
<div class="fs1 redo" aria-hidden="true" data-icon=""></div>
|
702 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe063;" > </a>
|
703 |
+
</div>
|
704 |
+
|
705 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flip </span>
|
706 |
+
<div class="fs1 flip" aria-hidden="true" data-icon=""></div>
|
707 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe064;" > </a>
|
708 |
+
</div>
|
709 |
+
|
710 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flip-2 </span>
|
711 |
+
<div class="fs1 flip-2" aria-hidden="true" data-icon=""></div>
|
712 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe065;" > </a>
|
713 |
+
</div>
|
714 |
+
|
715 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-undo-2 </span>
|
716 |
+
<div class="fs1 undo-2" aria-hidden="true" data-icon=""></div>
|
717 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe066;" > </a>
|
718 |
+
</div>
|
719 |
+
|
720 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-redo-2 </span>
|
721 |
+
<div class="fs1 redo-2" aria-hidden="true" data-icon=""></div>
|
722 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe067;" > </a>
|
723 |
+
</div>
|
724 |
+
|
725 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward </span>
|
726 |
+
<div class="fs1 forward" aria-hidden="true" data-icon=""></div>
|
727 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe068;" > </a>
|
728 |
+
</div>
|
729 |
+
|
730 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-reply </span>
|
731 |
+
<div class="fs1 reply" aria-hidden="true" data-icon=""></div>
|
732 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe069;" > </a>
|
733 |
+
</div>
|
734 |
+
|
735 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble </span>
|
736 |
+
<div class="fs1 bubble" aria-hidden="true" data-icon=""></div>
|
737 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06a;" > </a>
|
738 |
+
</div>
|
739 |
+
|
740 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles </span>
|
741 |
+
<div class="fs1 bubbles" aria-hidden="true" data-icon=""></div>
|
742 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06b;" > </a>
|
743 |
+
</div>
|
744 |
+
|
745 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-2 </span>
|
746 |
+
<div class="fs1 bubbles-2" aria-hidden="true" data-icon=""></div>
|
747 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06c;" > </a>
|
748 |
+
</div>
|
749 |
+
|
750 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble-2 </span>
|
751 |
+
<div class="fs1 bubble-2" aria-hidden="true" data-icon=""></div>
|
752 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06d;" > </a>
|
753 |
+
</div>
|
754 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-3 </span>
|
755 |
+
<div class="fs1 bubbles-3" aria-hidden="true" data-icon=""></div>
|
756 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06e;" > </a>
|
757 |
+
</div>
|
758 |
+
|
759 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-4 </span>
|
760 |
+
<div class="fs1 bubbles-4" aria-hidden="true" data-icon=""></div>
|
761 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06f;" > </a>
|
762 |
+
</div>
|
763 |
+
|
764 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user </span>
|
765 |
+
<div class="fs1 user" aria-hidden="true" data-icon=""></div>
|
766 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe070;" > </a>
|
767 |
+
</div>
|
768 |
+
|
769 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-users </span>
|
770 |
+
<div class="fs1 users" aria-hidden="true" data-icon=""></div>
|
771 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe071;" > </a>
|
772 |
+
</div>
|
773 |
+
|
774 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-2 </span>
|
775 |
+
<div class="fs1 user-2" aria-hidden="true" data-icon=""></div>
|
776 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe072;" > </a>
|
777 |
+
</div>
|
778 |
+
|
779 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-users-2 </span>
|
780 |
+
<div class="fs1 users-2" aria-hidden="true" data-icon=""></div>
|
781 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe073;" > </a>
|
782 |
+
</div>
|
783 |
+
|
784 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-3 </span>
|
785 |
+
<div class="fs1 user-3" aria-hidden="true" data-icon=""></div>
|
786 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe074;" > </a>
|
787 |
+
</div>
|
788 |
+
|
789 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-4 </span>
|
790 |
+
<div class="fs1 user-4" aria-hidden="true" data-icon=""></div>
|
791 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe075;" > </a>
|
792 |
+
</div>
|
793 |
+
|
794 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-quotes-left </span>
|
795 |
+
<div class="fs1 quotes-left" aria-hidden="true" data-icon=""></div>
|
796 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe076;" > </a>
|
797 |
+
</div>
|
798 |
+
|
799 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-busy </span>
|
800 |
+
<div class="fs1 busy" aria-hidden="true" data-icon=""></div>
|
801 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe077;" > </a>
|
802 |
+
</div>
|
803 |
+
|
804 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-1 </span>
|
805 |
+
<div class="fs1 spinner-1" aria-hidden="true" data-icon=""></div>
|
806 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe078;" > </a>
|
807 |
+
</div>
|
808 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-2 </span>
|
809 |
+
<div class="fs1 spinner-2" aria-hidden="true" data-icon=""></div>
|
810 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe079;" > </a>
|
811 |
+
</div>
|
812 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-3 </span>
|
813 |
+
<div class="fs1 spinner-3" aria-hidden="true" data-icon=""></div>
|
814 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07a;" > </a>
|
815 |
+
</div>
|
816 |
+
|
817 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-4 </span>
|
818 |
+
<div class="fs1 spinner-4" aria-hidden="true" data-icon=""></div>
|
819 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07b;" > </a>
|
820 |
+
</div>
|
821 |
+
|
822 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-5 </span>
|
823 |
+
<div class="fs1 spinner-5" aria-hidden="true" data-icon=""></div>
|
824 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07c;" > </a>
|
825 |
+
</div>
|
826 |
+
|
827 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-6 </span>
|
828 |
+
<div class="fs1 spinner-6" aria-hidden="true" data-icon=""></div>
|
829 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07d;" > </a>
|
830 |
+
</div>
|
831 |
+
|
832 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-binoculars </span>
|
833 |
+
<div class="fs1 binoculars" aria-hidden="true" data-icon=""></div>
|
834 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07e;" > </a>
|
835 |
+
</div>
|
836 |
+
|
837 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-search-2 </span>
|
838 |
+
<div class="fs1 search-2" aria-hidden="true" data-icon=""></div>
|
839 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07f;" > </a>
|
840 |
+
</div>
|
841 |
+
|
842 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-in </span>
|
843 |
+
<div class="fs1 zoom-in" aria-hidden="true" data-icon=""></div>
|
844 |
+
<a class="glyph-link contract-2" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe080;" > </a>
|
845 |
+
</div>
|
846 |
+
|
847 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-out </span>
|
848 |
+
<div class="fs1 zoom-out" aria-hidden="true" data-icon=""></div>
|
849 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe081;" > </a>
|
850 |
+
</div>
|
851 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-expand </span>
|
852 |
+
<div class="fs1 expand" aria-hidden="true" data-icon=""></div>
|
853 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe082;" > </a>
|
854 |
+
</div>
|
855 |
+
|
856 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contract </span>
|
857 |
+
<div class="fs1 contract" aria-hidden="true" data-icon=""></div>
|
858 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe083;" > </a>
|
859 |
+
</div>
|
860 |
+
|
861 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-expand-2 </span>
|
862 |
+
<div class="fs1 expand-2" aria-hidden="true" data-icon=""></div>
|
863 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe084;" > </a>
|
864 |
+
</div>
|
865 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contract-2 </span>
|
866 |
+
<div class="fs1 contract-2" aria-hidden="true" data-icon=""></div>
|
867 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe085;" > </a>
|
868 |
+
</div>
|
869 |
+
|
870 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-key </span>
|
871 |
+
<div class="fs1 key" aria-hidden="true" data-icon=""></div>
|
872 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe086;" > </a>
|
873 |
+
</div>
|
874 |
+
|
875 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-key-2 </span>
|
876 |
+
<div class="fs1 key-2" aria-hidden="true" data-icon=""></div>
|
877 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe087;" > </a>
|
878 |
+
</div>
|
879 |
+
|
880 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lock </span>
|
881 |
+
<div class="fs1 lock" aria-hidden="true" data-icon=""></div>
|
882 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe088;" > </a>
|
883 |
+
</div>
|
884 |
+
|
885 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lock-2 </span>
|
886 |
+
<div class="fs1 lock-2" aria-hidden="true" data-icon=""></div>
|
887 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe089;" > </a>
|
888 |
+
</div>
|
889 |
+
|
890 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-unlocked </span>
|
891 |
+
<div class="fs1 unlocked" aria-hidden="true" data-icon=""></div>
|
892 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08a;" > </a>
|
893 |
+
</div>
|
894 |
+
|
895 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wrench </span>
|
896 |
+
<div class="fs1 wrench" aria-hidden="true" data-icon=""></div>
|
897 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08b;" > </a>
|
898 |
+
</div>
|
899 |
+
|
900 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-settings </span>
|
901 |
+
<div class="fs1 settings" aria-hidden="true" data-icon=""></div>
|
902 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08c;" > </a>
|
903 |
+
</div>
|
904 |
+
|
905 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-equalizer </span>
|
906 |
+
<div class="fs1 equalizer" aria-hidden="true" data-icon=""></div>
|
907 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08d;" > </a>
|
908 |
+
</div>
|
909 |
+
|
910 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cog </span>
|
911 |
+
<div class="fs1 cog" aria-hidden="true" data-icon=""></div>
|
912 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08e;" > </a>
|
913 |
+
</div>
|
914 |
+
|
915 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cogs </span>
|
916 |
+
<div class="fs1 cogs" aria-hidden="true" data-icon=""></div>
|
917 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08f;" > </a>
|
918 |
+
</div>
|
919 |
+
|
920 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cog-2 </span>
|
921 |
+
<div class="fs1 cog-2" aria-hidden="true" data-icon=""></div>
|
922 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe090;" > </a>
|
923 |
+
</div>
|
924 |
+
|
925 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer </span>
|
926 |
+
<div class="fs1 hammer" aria-hidden="true" data-icon=""></div>
|
927 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe091;" > </a>
|
928 |
+
</div>
|
929 |
+
|
930 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wand </span>
|
931 |
+
<div class="fs1 wand" aria-hidden="true" data-icon=""></div>
|
932 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe092;" > </a>
|
933 |
+
</div>
|
934 |
+
|
935 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-aid </span>
|
936 |
+
<div class="fs1 aid" aria-hidden="true" data-icon=""></div>
|
937 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe093;" > </a>
|
938 |
+
</div>
|
939 |
+
|
940 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bug </span>
|
941 |
+
<div class="fs1 bug" aria-hidden="true" data-icon=""></div>
|
942 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe094;" > </a>
|
943 |
+
</div>
|
944 |
+
|
945 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pie </span>
|
946 |
+
<div class="fs1 pie" aria-hidden="true" data-icon=""></div>
|
947 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe095;" > </a>
|
948 |
+
</div>
|
949 |
+
|
950 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stats </span>
|
951 |
+
<div class="fs1 stats" aria-hidden="true" data-icon=""></div>
|
952 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe096;" > </a>
|
953 |
+
</div>
|
954 |
+
|
955 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bars </span>
|
956 |
+
<div class="fs1 bars" aria-hidden="true" data-icon=""></div>
|
957 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe097;" > </a>
|
958 |
+
</div>
|
959 |
+
|
960 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bars-2 </span>
|
961 |
+
<div class="fs1 bars-2" aria-hidden="true" data-icon=""></div>
|
962 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe098;" > </a>
|
963 |
+
</div>
|
964 |
+
|
965 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-gift </span>
|
966 |
+
<div class="fs1 gift" aria-hidden="true" data-icon=""></div>
|
967 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe099;" > </a>
|
968 |
+
</div>
|
969 |
+
|
970 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-trophy </span>
|
971 |
+
<div class="fs1 trophy" aria-hidden="true" data-icon=""></div>
|
972 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09a;" > </a>
|
973 |
+
</div>
|
974 |
+
|
975 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-glass </span>
|
976 |
+
<div class="fs1 glass" aria-hidden="true" data-icon=""></div>
|
977 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09b;" > </a>
|
978 |
+
</div>
|
979 |
+
|
980 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mug </span>
|
981 |
+
<div class="fs1 mug" aria-hidden="true" data-icon=""></div>
|
982 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09c;" > </a>
|
983 |
+
</div>
|
984 |
+
|
985 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-food </span>
|
986 |
+
<div class="fs1 food" aria-hidden="true" data-icon=""></div>
|
987 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09d;" > </a>
|
988 |
+
</div>
|
989 |
+
|
990 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-leaf </span>
|
991 |
+
<div class="fs1 leaf" aria-hidden="true" data-icon=""></div>
|
992 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09e;" > </a>
|
993 |
+
</div>
|
994 |
+
|
995 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rocket </span>
|
996 |
+
<div class="fs1 rocket" aria-hidden="true" data-icon=""></div>
|
997 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09f;" > </a>
|
998 |
+
</div>
|
999 |
+
|
1000 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-meter </span>
|
1001 |
+
<div class="fs1 meter" aria-hidden="true" data-icon=""></div>
|
1002 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a0;" > </a>
|
1003 |
+
</div>
|
1004 |
+
|
1005 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-meter2 </span>
|
1006 |
+
<div class="fs1 meter2" aria-hidden="true" data-icon=""></div>
|
1007 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a1;" > </a>
|
1008 |
+
</div>
|
1009 |
+
|
1010 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dashboard </span>
|
1011 |
+
<div class="fs1 dashboard" aria-hidden="true" data-icon=""></div>
|
1012 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a2;" > </a>
|
1013 |
+
</div>
|
1014 |
+
|
1015 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer-2 </span>
|
1016 |
+
<div class="fs1 hammer-2" aria-hidden="true" data-icon=""></div>
|
1017 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a3;" > </a>
|
1018 |
+
</div>
|
1019 |
+
|
1020 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-fire </span>
|
1021 |
+
<div class="fs1 fire" aria-hidden="true" data-icon=""></div>
|
1022 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a4;" > </a>
|
1023 |
+
</div>
|
1024 |
+
|
1025 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lab </span>
|
1026 |
+
<div class="fs1 lab" aria-hidden="true" data-icon=""></div>
|
1027 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a5;" > </a>
|
1028 |
+
</div>
|
1029 |
+
|
1030 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-magnet </span>
|
1031 |
+
<div class="fs1 magnet" aria-hidden="true" data-icon=""></div>
|
1032 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a6;" > </a>
|
1033 |
+
</div>
|
1034 |
+
|
1035 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-remove </span>
|
1036 |
+
<div class="fs1 remove" aria-hidden="true" data-icon=""></div>
|
1037 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a7;" > </a>
|
1038 |
+
</div>
|
1039 |
+
|
1040 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-remove-2 </span>
|
1041 |
+
<div class="fs1 remove-2" aria-hidden="true" data-icon=""></div>
|
1042 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a8;" > </a>
|
1043 |
+
</div>
|
1044 |
+
|
1045 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-briefcase </span>
|
1046 |
+
<div class="fs1 briefcase" aria-hidden="true" data-icon=""></div>
|
1047 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a9;" > </a>
|
1048 |
+
</div>
|
1049 |
+
|
1050 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-airplane </span>
|
1051 |
+
<div class="fs1 airplane" aria-hidden="true" data-icon=""></div>
|
1052 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0aa;" > </a>
|
1053 |
+
</div>
|
1054 |
+
|
1055 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-truck </span>
|
1056 |
+
<div class="fs1 truck" aria-hidden="true" data-icon=""></div>
|
1057 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ab;" > </a>
|
1058 |
+
</div>
|
1059 |
+
|
1060 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-road </span>
|
1061 |
+
<div class="fs1 road" aria-hidden="true" data-icon=""></div>
|
1062 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ac;" > </a>
|
1063 |
+
</div>
|
1064 |
+
|
1065 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-accessibility </span>
|
1066 |
+
<div class="fs1 accessibility" aria-hidden="true" data-icon=""></div>
|
1067 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ad;" > </a>
|
1068 |
+
</div>
|
1069 |
+
|
1070 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-target </span>
|
1071 |
+
<div class="fs1 target" aria-hidden="true" data-icon=""></div>
|
1072 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ae;" > </a>
|
1073 |
+
</div>
|
1074 |
+
|
1075 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shield </span>
|
1076 |
+
<div class="fs1 shield" aria-hidden="true" data-icon=""></div>
|
1077 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0af;" > </a>
|
1078 |
+
</div>
|
1079 |
+
|
1080 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning </span>
|
1081 |
+
<div class="fs1 lightning" aria-hidden="true" data-icon=""></div>
|
1082 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b0;" > </a>
|
1083 |
+
</div>
|
1084 |
+
|
1085 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-switch </span>
|
1086 |
+
<div class="fs1 switch" aria-hidden="true" data-icon=""></div>
|
1087 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b1;" > </a>
|
1088 |
+
</div>
|
1089 |
+
|
1090 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-power-cord </span>
|
1091 |
+
<div class="fs1 power-cord" aria-hidden="true" data-icon=""></div>
|
1092 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b2;" > </a>
|
1093 |
+
</div>
|
1094 |
+
|
1095 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-signup </span>
|
1096 |
+
<div class="fs1 signup" aria-hidden="true" data-icon=""></div>
|
1097 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b3;" > </a>
|
1098 |
+
</div>
|
1099 |
+
|
1100 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-list </span>
|
1101 |
+
<div class="fs1 list" aria-hidden="true" data-icon=""></div>
|
1102 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b4;" > </a>
|
1103 |
+
</div>
|
1104 |
+
|
1105 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-list-2 </span>
|
1106 |
+
<div class="fs1 list-2" aria-hidden="true" data-icon=""></div>
|
1107 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b5;" > </a>
|
1108 |
+
</div>
|
1109 |
+
|
1110 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-numbered-list </span>
|
1111 |
+
<div class="fs1 numbered-list" aria-hidden="true" data-icon=""></div>
|
1112 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b6;" > </a>
|
1113 |
+
</div>
|
1114 |
+
|
1115 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-menu </span>
|
1116 |
+
<div class="fs1 menu" aria-hidden="true" data-icon=""></div>
|
1117 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b7;" > </a>
|
1118 |
+
</div>
|
1119 |
+
|
1120 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-menu-2 </span>
|
1121 |
+
<div class="fs1 menu-2" aria-hidden="true" data-icon=""></div>
|
1122 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b8;" > </a>
|
1123 |
+
</div>
|
1124 |
+
|
1125 |
+
|
1126 |
+
|
1127 |
+
|
1128 |
+
|
1129 |
+
|
1130 |
+
|
1131 |
+
|
1132 |
+
|
1133 |
+
<!-- continue with icon classes for the dropdown here -->
|
1134 |
+
<!-- Continue ---- tree icon -->
|
1135 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tree </span>
|
1136 |
+
<div class="fs1 tree" aria-hidden="true" data-icon=""></div>
|
1137 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b9;" > </a>
|
1138 |
+
</div>
|
1139 |
+
|
1140 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud </span>
|
1141 |
+
<div class="fs1 cloud" aria-hidden="true" data-icon=""></div>
|
1142 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ba;" > </a>
|
1143 |
+
</div>
|
1144 |
+
|
1145 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-download </span>
|
1146 |
+
<div class="fs1 cloud-download" aria-hidden="true" data-icon=""></div>
|
1147 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bb;" > </a>
|
1148 |
+
</div>
|
1149 |
+
|
1150 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-upload </span>
|
1151 |
+
<div class="fs1 cloud-upload" aria-hidden="true" data-icon=""></div>
|
1152 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bc;" > </a>
|
1153 |
+
</div>
|
1154 |
+
|
1155 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-download-2 </span>
|
1156 |
+
<div class="fs1 download-2" aria-hidden="true" data-icon=""></div>
|
1157 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bd;" > </a>
|
1158 |
+
</div>
|
1159 |
+
|
1160 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-2 </span>
|
1161 |
+
<div class="fs1 upload-2" aria-hidden="true" data-icon=""></div>
|
1162 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0be;" > </a>
|
1163 |
+
</div>
|
1164 |
+
|
1165 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-download-3 </span>
|
1166 |
+
<div class="fs1 download-3" aria-hidden="true" data-icon=""></div>
|
1167 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bf;" > </a>
|
1168 |
+
</div>
|
1169 |
+
|
1170 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-3 </span>
|
1171 |
+
<div class="fs1 upload-3" aria-hidden="true" data-icon=""></div>
|
1172 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c0;" > </a>
|
1173 |
+
</div>
|
1174 |
+
|
1175 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-globe </span>
|
1176 |
+
<div class="fs1 globe" aria-hidden="true" data-icon=""></div>
|
1177 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c1;" > </a>
|
1178 |
+
</div>
|
1179 |
+
|
1180 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-earth </span>
|
1181 |
+
<div class="fs1 earth" aria-hidden="true" data-icon=""></div>
|
1182 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c2;" > </a>
|
1183 |
+
</div>
|
1184 |
+
|
1185 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-link </span>
|
1186 |
+
<div class="fs1 link" aria-hidden="true" data-icon=""></div>
|
1187 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c3;" > </a>
|
1188 |
+
</div>
|
1189 |
+
|
1190 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flag </span>
|
1191 |
+
<div class="fs1 flag" aria-hidden="true" data-icon=""></div>
|
1192 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c4;" > </a>
|
1193 |
+
</div>
|
1194 |
+
|
1195 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-attachment </span>
|
1196 |
+
<div class="fs1 attachment" aria-hidden="true" data-icon=""></div>
|
1197 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c5;" > </a>
|
1198 |
+
</div>
|
1199 |
+
|
1200 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye </span>
|
1201 |
+
<div class="fs1 eye" aria-hidden="true" data-icon=""></div>
|
1202 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c6;" > </a>
|
1203 |
+
</div>
|
1204 |
+
|
1205 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-blocked </span>
|
1206 |
+
<div class="fs1 eye-blocked" aria-hidden="true" data-icon=""></div>
|
1207 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c7;" > </a>
|
1208 |
+
</div>
|
1209 |
+
|
1210 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-2 </span>
|
1211 |
+
<div class="fs1 eye-2" aria-hidden="true" data-icon=""></div>
|
1212 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c8;" > </a>
|
1213 |
+
</div>
|
1214 |
+
|
1215 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmark </span>
|
1216 |
+
<div class="fs1 bookmark" aria-hidden="true" data-icon=""></div>
|
1217 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c9;" > </a>
|
1218 |
+
</div>
|
1219 |
+
|
1220 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmarks </span>
|
1221 |
+
<div class="fs1 bookmarks" aria-hidden="true" data-icon=""></div>
|
1222 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ca;" > </a>
|
1223 |
+
</div>
|
1224 |
+
|
1225 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-medium </span>
|
1226 |
+
<div class="fs1 brightness-medium" aria-hidden="true" data-icon=""></div>
|
1227 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cb;" > </a>
|
1228 |
+
</div>
|
1229 |
+
|
1230 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-contrast </span>
|
1231 |
+
<div class="fs1 brightness-contrast" aria-hidden="true" data-icon=""></div>
|
1232 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cc;" > </a>
|
1233 |
+
</div>
|
1234 |
+
|
1235 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contrast </span>
|
1236 |
+
<div class="fs1 contrast" aria-hidden="true" data-icon=""></div>
|
1237 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cd;" > </a>
|
1238 |
+
</div>
|
1239 |
+
|
1240 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star </span>
|
1241 |
+
<div class="fs1 star" aria-hidden="true" data-icon=""></div>
|
1242 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ce;" > </a>
|
1243 |
+
</div>
|
1244 |
+
|
1245 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star-2 </span>
|
1246 |
+
<div class="fs1 star-2" aria-hidden="true" data-icon=""></div>
|
1247 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cf;" > </a>
|
1248 |
+
</div>
|
1249 |
+
|
1250 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star-3 </span>
|
1251 |
+
<div class="fs1 star-3" aria-hidden="true" data-icon=""></div>
|
1252 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d0;" > </a>
|
1253 |
+
</div>
|
1254 |
+
|
1255 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart </span>
|
1256 |
+
<div class="fs1 heart" aria-hidden="true" data-icon=""></div>
|
1257 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d1;" > </a>
|
1258 |
+
</div>
|
1259 |
+
|
1260 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-2 </span>
|
1261 |
+
<div class="fs1 heart-2" aria-hidden="true" data-icon=""></div>
|
1262 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d2;" > </a>
|
1263 |
+
</div>
|
1264 |
+
|
1265 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-broken </span>
|
1266 |
+
<div class="fs1 heart-broken" aria-hidden="true" data-icon=""></div>
|
1267 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d3;" > </a>
|
1268 |
+
</div>
|
1269 |
+
|
1270 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up </span>
|
1271 |
+
<div class="fs1 thumbs-up" aria-hidden="true" data-icon=""></div>
|
1272 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d4;" > </a>
|
1273 |
+
</div>
|
1274 |
+
|
1275 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up-2 </span>
|
1276 |
+
<div class="fs1 thumpbs-up-2" aria-hidden="true" data-icon=""></div>
|
1277 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d5;" > </a>
|
1278 |
+
</div>
|
1279 |
+
|
1280 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-happy </span>
|
1281 |
+
<div class="fs1 happy" aria-hidden="true" data-icon=""></div>
|
1282 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d6;" > </a>
|
1283 |
+
</div>
|
1284 |
+
|
1285 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-happy-2 </span>
|
1286 |
+
<div class="fs1 happy-2" aria-hidden="true" data-icon=""></div>
|
1287 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d7;" > </a>
|
1288 |
+
</div>
|
1289 |
+
|
1290 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley </span>
|
1291 |
+
<div class="fs1 smiley" aria-hidden="true" data-icon=""></div>
|
1292 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d8;" > </a>
|
1293 |
+
</div>
|
1294 |
+
|
1295 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley-2 </span>
|
1296 |
+
<div class="fs1 smiley-2" aria-hidden="true" data-icon=""></div>
|
1297 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d9;" > </a>
|
1298 |
+
</div>
|
1299 |
+
|
1300 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue </span>
|
1301 |
+
<div class="fs1 tongue" aria-hidden="true" data-icon=""></div>
|
1302 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0da;" > </a>
|
1303 |
+
</div>
|
1304 |
+
|
1305 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue-2 </span>
|
1306 |
+
<div class="fs1 tongue-2" aria-hidden="true" data-icon=""></div>
|
1307 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0db;" > </a>
|
1308 |
+
</div>
|
1309 |
+
|
1310 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sad </span>
|
1311 |
+
<div class="fs1 sad" aria-hidden="true" data-icon=""></div>
|
1312 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dc;" > </a>
|
1313 |
+
</div>
|
1314 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sad-2 </span>
|
1315 |
+
<div class="fs1 sad-2" aria-hidden="true" data-icon=""></div>
|
1316 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dd;" > </a>
|
1317 |
+
</div>
|
1318 |
+
|
1319 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wink </span>
|
1320 |
+
<div class="fs1 wink" aria-hidden="true" data-icon=""></div>
|
1321 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0de;" > </a>
|
1322 |
+
</div>
|
1323 |
+
|
1324 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wink-2 </span>
|
1325 |
+
<div class="fs1 wink-2" aria-hidden="true" data-icon=""></div>
|
1326 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0df;" > </a>
|
1327 |
+
</div>
|
1328 |
+
|
1329 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-grin </span>
|
1330 |
+
<div class="fs1 grin" aria-hidden="true" data-icon=""></div>
|
1331 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e0;" > </a>
|
1332 |
+
</div>
|
1333 |
+
|
1334 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-grin-2 </span>
|
1335 |
+
<div class="fs1 grin-2" aria-hidden="true" data-icon=""></div>
|
1336 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e1;" > </a>
|
1337 |
+
</div>
|
1338 |
+
|
1339 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cool </span>
|
1340 |
+
<div class="fs1 cool" aria-hidden="true" data-icon=""></div>
|
1341 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e2;" > </a>
|
1342 |
+
</div>
|
1343 |
+
|
1344 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cool-2 </span>
|
1345 |
+
<div class="fs1 cool-2" aria-hidden="true" data-icon=""></div>
|
1346 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e3;" > </a>
|
1347 |
+
</div>
|
1348 |
+
|
1349 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-angry </span>
|
1350 |
+
<div class="fs1 angry" aria-hidden="true" data-icon=""></div>
|
1351 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e4;" > </a>
|
1352 |
+
</div>
|
1353 |
+
|
1354 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-angry-2 </span>
|
1355 |
+
<div class="fs1 angry-2" aria-hidden="true" data-icon=""></div>
|
1356 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e5;" > </a>
|
1357 |
+
</div>
|
1358 |
+
|
1359 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-evil </span>
|
1360 |
+
<div class="fs1 evil" aria-hidden="true" data-icon=""></div>
|
1361 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e6;" > </a>
|
1362 |
+
</div>
|
1363 |
+
|
1364 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-evil-2 </span>
|
1365 |
+
<div class="fs1 evil-2" aria-hidden="true" data-icon=""></div>
|
1366 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e7;" > </a>
|
1367 |
+
</div>
|
1368 |
+
|
1369 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked </span>
|
1370 |
+
<div class="fs1 shocked" aria-hidden="true" data-icon=""></div>
|
1371 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e8;" > </a>
|
1372 |
+
</div>
|
1373 |
+
|
1374 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked-2 </span>
|
1375 |
+
<div class="fs1 shocked-2" aria-hidden="true" data-icon=""></div>
|
1376 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e9;" > </a>
|
1377 |
+
</div>
|
1378 |
+
|
1379 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-confused </span>
|
1380 |
+
<div class="fs1 confused" aria-hidden="true" data-icon=""></div>
|
1381 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ea;" > </a>
|
1382 |
+
</div>
|
1383 |
+
|
1384 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-confused-2 </span>
|
1385 |
+
<div class="fs1 confused-2" aria-hidden="true" data-icon=""></div>
|
1386 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0eb;" > </a>
|
1387 |
+
</div>
|
1388 |
+
|
1389 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral </span>
|
1390 |
+
<div class="fs1 neutral" aria-hidden="true" data-icon=""></div>
|
1391 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ec;" > </a>
|
1392 |
+
</div>
|
1393 |
+
|
1394 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral-2 </span>
|
1395 |
+
<div class="fs1 neutral-2" aria-hidden="true" data-icon=""></div>
|
1396 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ed;" > </a>
|
1397 |
+
</div>
|
1398 |
+
|
1399 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering </span>
|
1400 |
+
<div class="fs1 wondering" aria-hidden="true" data-icon=""></div>
|
1401 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ee;" > </a>
|
1402 |
+
</div>
|
1403 |
+
|
1404 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering-2 </span>
|
1405 |
+
<div class="fs1 wondering-2" aria-hidden="true" data-icon=""></div>
|
1406 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ef;" > </a>
|
1407 |
+
</div>
|
1408 |
+
|
1409 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-up </span>
|
1410 |
+
<div class="fs1 point-up" aria-hidden="true" data-icon=""></div>
|
1411 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f0;" > </a>
|
1412 |
+
</div>
|
1413 |
+
|
1414 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-right </span>
|
1415 |
+
<div class="fs1 point-right" aria-hidden="true" data-icon=""></div>
|
1416 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f1;" > </a>
|
1417 |
+
</div>
|
1418 |
+
|
1419 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-down </span>
|
1420 |
+
<div class="fs1 point-down" aria-hidden="true" data-icon=""></div>
|
1421 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f2;" > </a>
|
1422 |
+
</div>
|
1423 |
+
|
1424 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-left </span>
|
1425 |
+
<div class="fs1 point-left" aria-hidden="true" data-icon=""></div>
|
1426 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f3;" > </a>
|
1427 |
+
</div>
|
1428 |
+
|
1429 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-warning </span>
|
1430 |
+
<div class="fs1 warning" aria-hidden="true" data-icon=""></div>
|
1431 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f4;" > </a>
|
1432 |
+
</div>
|
1433 |
+
|
1434 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-notification </span>
|
1435 |
+
<div class="fs1 notification" aria-hidden="true" data-icon=""></div>
|
1436 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f5;" > </a>
|
1437 |
+
</div>
|
1438 |
+
|
1439 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-question </span>
|
1440 |
+
<div class="fs1 question" aria-hidden="true" data-icon=""></div>
|
1441 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f6;" > </a>
|
1442 |
+
</div>
|
1443 |
+
|
1444 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-info </span>
|
1445 |
+
<div class="fs1 info" aria-hidden="true" data-icon=""></div>
|
1446 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f7;" > </a>
|
1447 |
+
</div>
|
1448 |
+
|
1449 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-info-2 </span>
|
1450 |
+
<div class="fs1 info-2" aria-hidden="true" data-icon=""></div>
|
1451 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f8;" > </a>
|
1452 |
+
</div>
|
1453 |
+
|
1454 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blocked </span>
|
1455 |
+
<div class="fs1 blocked" aria-hidden="true" data-icon=""></div>
|
1456 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f9;" > </a>
|
1457 |
+
</div>
|
1458 |
+
|
1459 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cancel-circle </span>
|
1460 |
+
<div class="fs1 cancel-circle" aria-hidden="true" data-icon=""></div>
|
1461 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fa;" > </a>
|
1462 |
+
</div>
|
1463 |
+
|
1464 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-circle </span>
|
1465 |
+
<div class="fs1 checkmark-circle" aria-hidden="true" data-icon=""></div>
|
1466 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fb;" > </a>
|
1467 |
+
</div>
|
1468 |
+
|
1469 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spam </span>
|
1470 |
+
<div class="fs1 spam" aria-hidden="true" data-icon=""></div>
|
1471 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fc;" > </a>
|
1472 |
+
</div>
|
1473 |
+
|
1474 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-close </span>
|
1475 |
+
<div class="fs1 close" aria-hidden="true" data-icon=""></div>
|
1476 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fd;" > </a>
|
1477 |
+
</div>
|
1478 |
+
|
1479 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark </span>
|
1480 |
+
<div class="fs1 checkmark" aria-hidden="true" data-icon=""></div>
|
1481 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fe;" > </a>
|
1482 |
+
</div>
|
1483 |
+
|
1484 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-2 </span>
|
1485 |
+
<div class="fs1 checkmark-2" aria-hidden="true" data-icon=""></div>
|
1486 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ff;" > </a>
|
1487 |
+
</div>
|
1488 |
+
|
1489 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spell-check </span>
|
1490 |
+
<div class="fs1 spell-check" aria-hidden="true" data-icon=""></div>
|
1491 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe100;" > </a>
|
1492 |
+
</div>
|
1493 |
+
|
1494 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-minus </span>
|
1495 |
+
<div class="fs1 minus" aria-hidden="true" data-icon=""></div>
|
1496 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe101;" > </a>
|
1497 |
+
</div>
|
1498 |
+
|
1499 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-plus </span>
|
1500 |
+
<div class="fs1 plus" aria-hidden="true" data-icon=""></div>
|
1501 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe102;" > </a>
|
1502 |
+
</div>
|
1503 |
+
|
1504 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-enter </span>
|
1505 |
+
<div class="fs1 enter" aria-hidden="true" data-icon=""></div>
|
1506 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe103;" > </a>
|
1507 |
+
</div>
|
1508 |
+
|
1509 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-exit </span>
|
1510 |
+
<div class="fs1 exit" aria-hidden="true" data-icon=""></div>
|
1511 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe104;" > </a>
|
1512 |
+
</div>
|
1513 |
+
|
1514 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-play-2 </span>
|
1515 |
+
<div class="fs1 play-2" aria-hidden="true" data-icon=""></div>
|
1516 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe105;" > </a>
|
1517 |
+
</div>
|
1518 |
+
|
1519 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pause </span>
|
1520 |
+
<div class="fs1 pause" aria-hidden="true" data-icon=""></div>
|
1521 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe106;" > </a>
|
1522 |
+
</div>
|
1523 |
+
|
1524 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stop </span>
|
1525 |
+
<div class="fs1 stop" aria-hidden="true" data-icon=""></div>
|
1526 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe107;" > </a>
|
1527 |
+
</div>
|
1528 |
+
|
1529 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-backward </span>
|
1530 |
+
<div class="fs1 backward" aria-hidden="true" data-icon=""></div>
|
1531 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe108;" > </a>
|
1532 |
+
</div>
|
1533 |
+
|
1534 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-2 </span>
|
1535 |
+
<div class="fs1 forward-2" aria-hidden="true" data-icon=""></div>
|
1536 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe109;" > </a>
|
1537 |
+
</div>
|
1538 |
+
|
1539 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-play-3 </span>
|
1540 |
+
<div class="fs1 play-3" aria-hidden="true" data-icon=""></div>
|
1541 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10a;" > </a>
|
1542 |
+
</div>
|
1543 |
+
|
1544 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pause-2 </span>
|
1545 |
+
<div class="fs1 pause-2" aria-hidden="true" data-icon=""></div>
|
1546 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10b;" > </a>
|
1547 |
+
</div>
|
1548 |
+
|
1549 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stop-2 </span>
|
1550 |
+
<div class="fs1 stop-2" aria-hidden="true" data-icon=""></div>
|
1551 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10c;" > </a>
|
1552 |
+
</div>
|
1553 |
+
|
1554 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-backward-2 </span>
|
1555 |
+
<div class="fs1 backward-2" aria-hidden="true" data-icon=""></div>
|
1556 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10d;" > </a>
|
1557 |
+
</div>
|
1558 |
+
|
1559 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-3 </span>
|
1560 |
+
<div class="fs1 forward-3" aria-hidden="true" data-icon=""></div>
|
1561 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10e;" > </a>
|
1562 |
+
</div>
|
1563 |
+
|
1564 |
+
|
1565 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-first </span>
|
1566 |
+
<div class="fs1 first" aria-hidden="true" data-icon=""></div>
|
1567 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10f;" > </a>
|
1568 |
+
</div>
|
1569 |
+
|
1570 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-last </span>
|
1571 |
+
<div class="fs1 last" aria-hidden="true" data-icon=""></div>
|
1572 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe110;" > </a>
|
1573 |
+
</div>
|
1574 |
+
|
1575 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-previous </span>
|
1576 |
+
<div class="fs1 previous" aria-hidden="true" data-icon=""></div>
|
1577 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe111;" > </a>
|
1578 |
+
</div>
|
1579 |
+
|
1580 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-next </span>
|
1581 |
+
<div class="fs1 next" aria-hidden="true" data-icon=""></div>
|
1582 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe112;" > </a>
|
1583 |
+
</div>
|
1584 |
+
|
1585 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eject </span>
|
1586 |
+
<div class="fs1 eject" aria-hidden="true" data-icon=""></div>
|
1587 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe113;" > </a>
|
1588 |
+
</div>
|
1589 |
+
|
1590 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-high </span>
|
1591 |
+
<div class="fs1 volume-high" aria-hidden="true" data-icon=""></div>
|
1592 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe114;" > </a>
|
1593 |
+
</div>
|
1594 |
+
|
1595 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-medium </span>
|
1596 |
+
<div class="fs1 volume-medium" aria-hidden="true" data-icon=""></div>
|
1597 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe115;" > </a>
|
1598 |
+
</div>
|
1599 |
+
|
1600 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-low </span>
|
1601 |
+
<div class="fs1 volume-low" aria-hidden="true" data-icon=""></div>
|
1602 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe116;" > </a>
|
1603 |
+
</div>
|
1604 |
+
|
1605 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute </span>
|
1606 |
+
<div class="fs1 volume-mute" aria-hidden="true" data-icon=""></div>
|
1607 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe117;" > </a>
|
1608 |
+
</div>
|
1609 |
+
|
1610 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute-2 </span>
|
1611 |
+
<div class="fs1 volume-mute-2" aria-hidden="true" data-icon=""></div>
|
1612 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe118;" > </a>
|
1613 |
+
</div>
|
1614 |
+
|
1615 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-increase </span>
|
1616 |
+
<div class="fs1 volume-increase" aria-hidden="true" data-icon=""></div>
|
1617 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe119;" > </a>
|
1618 |
+
</div>
|
1619 |
+
|
1620 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-decrease </span>
|
1621 |
+
<div class="fs1 volume-decrease" aria-hidden="true" data-icon=""></div>
|
1622 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11a;" > </a>
|
1623 |
+
</div>
|
1624 |
+
|
1625 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop </span>
|
1626 |
+
<div class="fs1 loop" aria-hidden="true" data-icon=""></div>
|
1627 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11b;" > </a>
|
1628 |
+
</div>
|
1629 |
+
|
1630 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-2 </span>
|
1631 |
+
<div class="fs1 loop-2" aria-hidden="true" data-icon=""></div>
|
1632 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11c;" > </a>
|
1633 |
+
</div>
|
1634 |
+
|
1635 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-3 </span>
|
1636 |
+
<div class="fs1 loop-3" aria-hidden="true" data-icon=""></div>
|
1637 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11d;" > </a>
|
1638 |
+
</div>
|
1639 |
+
|
1640 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shuffle </span>
|
1641 |
+
<div class="fs1 shuffle" aria-hidden="true" data-icon=""></div>
|
1642 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11e;" > </a>
|
1643 |
+
</div>
|
1644 |
+
|
1645 |
+
|
1646 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left </span>
|
1647 |
+
<div class="fs1 arrow-up-left" aria-hidden="true" data-icon=""></div>
|
1648 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11f;" > </a>
|
1649 |
+
</div>
|
1650 |
+
|
1651 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up </span>
|
1652 |
+
<div class="fs1 arrow-up" aria-hidden="true" data-icon=""></div>
|
1653 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe120;" > </a>
|
1654 |
+
</div>
|
1655 |
+
|
1656 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right </span>
|
1657 |
+
<div class="fs1 arrow-up-right" aria-hidden="true" data-icon=""></div>
|
1658 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe121;" > </a>
|
1659 |
+
</div>
|
1660 |
+
|
1661 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right </span>
|
1662 |
+
<div class="fs1 arrow-right" aria-hidden="true" data-icon=""></div>
|
1663 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe122;" > </a>
|
1664 |
+
</div>
|
1665 |
+
|
1666 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right </span>
|
1667 |
+
<div class="fs1 arrow-down-right" aria-hidden="true" data-icon=""></div>
|
1668 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe123;" > </a>
|
1669 |
+
</div>
|
1670 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down </span>
|
1671 |
+
<div class="fs1 arrow-down" aria-hidden="true" data-icon=""></div>
|
1672 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe124;" > </a>
|
1673 |
+
</div>
|
1674 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left </span>
|
1675 |
+
<div class="fs1 arrow-down-left" aria-hidden="true" data-icon=""></div>
|
1676 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe125;" > </a>
|
1677 |
+
</div>
|
1678 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left </span>
|
1679 |
+
<div class="fs1 arrow-left" aria-hidden="true" data-icon=""></div>
|
1680 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe126;" > </a>
|
1681 |
+
</div>
|
1682 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-2 </span>
|
1683 |
+
<div class="fs1 arrow-up-left-2" aria-hidden="true" data-icon=""></div>
|
1684 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe127;" > </a>
|
1685 |
+
</div>
|
1686 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-2 </span>
|
1687 |
+
<div class="fs1 arrow-up-2" aria-hidden="true" data-icon=""></div>
|
1688 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe128;" > </a>
|
1689 |
+
</div>
|
1690 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-2 </span>
|
1691 |
+
<div class="fs1 arrow-up-right-2" aria-hidden="true" data-icon=""></div>
|
1692 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe129;" > </a>
|
1693 |
+
</div>
|
1694 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-2 </span>
|
1695 |
+
<div class="fs1 arrow-right-2" aria-hidden="true" data-icon=""></div>
|
1696 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12a;" > </a>
|
1697 |
+
</div>
|
1698 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-2 </span>
|
1699 |
+
<div class="fs1 arrow-down-right-2" aria-hidden="true" data-icon=""></div>
|
1700 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12b;" > </a>
|
1701 |
+
</div>
|
1702 |
+
|
1703 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-2 </span>
|
1704 |
+
<div class="fs1 arrow-down-2" aria-hidden="true" data-icon=""></div>
|
1705 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12c;" > </a>
|
1706 |
+
</div>
|
1707 |
+
|
1708 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-2 </span>
|
1709 |
+
<div class="fs1 arrow-down-left-2" aria-hidden="true" data-icon=""></div>
|
1710 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12d;" > </a>
|
1711 |
+
</div>
|
1712 |
+
|
1713 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-2 </span>
|
1714 |
+
<div class="fs1 arrow-left-2" aria-hidden="true" data-icon=""></div>
|
1715 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12e;" > </a>
|
1716 |
+
</div>
|
1717 |
+
|
1718 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-3 </span>
|
1719 |
+
<div class="fs1 arrow-up-left-3" aria-hidden="true" data-icon=""></div>
|
1720 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12f;" > </a>
|
1721 |
+
</div>
|
1722 |
+
|
1723 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-3 </span>
|
1724 |
+
<div class="fs1 arrow-up-3" aria-hidden="true" data-icon=""></div>
|
1725 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe130;" > </a>
|
1726 |
+
</div>
|
1727 |
+
|
1728 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-3 </span>
|
1729 |
+
<div class="fs1 arrow-up-right-3" aria-hidden="true" data-icon=""></div>
|
1730 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe131;" > </a>
|
1731 |
+
</div>
|
1732 |
+
|
1733 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-3 </span>
|
1734 |
+
<div class="fs1 arrow-right-3" aria-hidden="true" data-icon=""></div>
|
1735 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe132;" > </a>
|
1736 |
+
</div>
|
1737 |
+
|
1738 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-3 </span>
|
1739 |
+
<div class="fs1 arrow-down-right-3" aria-hidden="true" data-icon=""></div>
|
1740 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe133;" > </a>
|
1741 |
+
</div>
|
1742 |
+
|
1743 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-3 </span>
|
1744 |
+
<div class="fs1 arrow-down-3" aria-hidden="true" data-icon=""></div>
|
1745 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe134;" > </a>
|
1746 |
+
</div>
|
1747 |
+
|
1748 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-3 </span>
|
1749 |
+
<div class="fs1 arrow-down-left-3" aria-hidden="true" data-icon=""></div>
|
1750 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe135;" > </a>
|
1751 |
+
</div>
|
1752 |
+
|
1753 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-3 </span>
|
1754 |
+
<div class="fs1 arrow-left-3" aria-hidden="true" data-icon=""></div>
|
1755 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe136;" > </a>
|
1756 |
+
</div>
|
1757 |
+
|
1758 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tab </span>
|
1759 |
+
<div class="fs1 tab" aria-hidden="true" data-icon=""></div>
|
1760 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe137;" > </a>
|
1761 |
+
</div>
|
1762 |
+
|
1763 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-checked </span>
|
1764 |
+
<div class="fs1 checkbox-checked" aria-hidden="true" data-icon=""></div>
|
1765 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe138;" > </a>
|
1766 |
+
</div>
|
1767 |
+
|
1768 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-unchecked </span>
|
1769 |
+
<div class="fs1 checkbox-unchecked" aria-hidden="true" data-icon=""></div>
|
1770 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe139;" > </a>
|
1771 |
+
</div>
|
1772 |
+
|
1773 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-partial </span>
|
1774 |
+
<div class="fs1 checkbox-partial" aria-hidden="true" data-icon=""></div>
|
1775 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13a;" > </a>
|
1776 |
+
</div>
|
1777 |
+
|
1778 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-checked </span>
|
1779 |
+
<div class="fs1 radio-checked" aria-hidden="true" data-icon=""></div>
|
1780 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13b;" > </a>
|
1781 |
+
</div>
|
1782 |
+
|
1783 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-unchecked </span>
|
1784 |
+
<div class="fs1 radio-unchecked" aria-hidden="true" data-icon=""></div>
|
1785 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13c;" > </a>
|
1786 |
+
</div>
|
1787 |
+
|
1788 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-crop </span>
|
1789 |
+
<div class="fs1 crop" aria-hidden="true" data-icon=""></div>
|
1790 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13d;" > </a>
|
1791 |
+
</div>
|
1792 |
+
|
1793 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-scissors </span>
|
1794 |
+
<div class="fs1 scissors" aria-hidden="true" data-icon=""></div>
|
1795 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13e;" > </a>
|
1796 |
+
</div>
|
1797 |
+
|
1798 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-italic </span>
|
1799 |
+
<div class="fs1 italic" aria-hidden="true" data-icon=""></div>
|
1800 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe146;" > </a>
|
1801 |
+
</div>
|
1802 |
+
|
1803 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-strikethrough </span>
|
1804 |
+
<div class="fs1 strikethrough" aria-hidden="true" data-icon=""></div>
|
1805 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe147;" > </a>
|
1806 |
+
</div>
|
1807 |
+
|
1808 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-omega </span>
|
1809 |
+
<div class="fs1 omega" aria-hidden="true" data-icon=""></div>
|
1810 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe148;" > </a>
|
1811 |
+
</div>
|
1812 |
+
|
1813 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sigma </span>
|
1814 |
+
<div class="fs1 sigma" aria-hidden="true" data-icon=""></div>
|
1815 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe149;" > </a>
|
1816 |
+
</div>
|
1817 |
+
|
1818 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-table </span>
|
1819 |
+
<div class="fs1 table" aria-hidden="true" data-icon=""></div>
|
1820 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14a;" > </a>
|
1821 |
+
</div>
|
1822 |
+
|
1823 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-table-2 </span>
|
1824 |
+
<div class="fs1 table-2" aria-hidden="true" data-icon=""></div>
|
1825 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14b;" > </a>
|
1826 |
+
</div>
|
1827 |
+
|
1828 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-insert-template </span>
|
1829 |
+
<div class="fs1 insert-template" aria-hidden="true" data-icon=""></div>
|
1830 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14c;" > </a>
|
1831 |
+
</div>
|
1832 |
+
|
1833 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pilcrow </span>
|
1834 |
+
<div class="fs1 pilcrow" aria-hidden="true" data-icon=""></div>
|
1835 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14d;" > </a>
|
1836 |
+
</div>
|
1837 |
+
|
1838 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-left-to-right </span>
|
1839 |
+
<div class="fs1 left-to-right" aria-hidden="true" data-icon=""></div>
|
1840 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14e;" > </a>
|
1841 |
+
</div>
|
1842 |
+
|
1843 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-right-to-left </span>
|
1844 |
+
<div class="fs1 right-to-left" aria-hidden="true" data-icon=""></div>
|
1845 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14f;" > </a>
|
1846 |
+
</div>
|
1847 |
+
|
1848 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left </span>
|
1849 |
+
<div class="fs1 paragraph-left" aria-hidden="true" data-icon=""></div>
|
1850 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe150;" > </a>
|
1851 |
+
</div>
|
1852 |
+
|
1853 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center </span>
|
1854 |
+
<div class="fs1 paragraph-center" aria-hidden="true" data-icon=""></div>
|
1855 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe151;" > </a>
|
1856 |
+
</div>
|
1857 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right </span>
|
1858 |
+
<div class="fs1 paragraph-right" aria-hidden="true" data-icon=""></div>
|
1859 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe152;" > </a>
|
1860 |
+
</div>
|
1861 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify </span>
|
1862 |
+
<div class="fs1 paragraph-justify" aria-hidden="true" data-icon=""></div>
|
1863 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe153;" > </a>
|
1864 |
+
</div>
|
1865 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left-2 </span>
|
1866 |
+
<div class="fs1 paragraph-left-2" aria-hidden="true" data-icon=""></div>
|
1867 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe154;" > </a>
|
1868 |
+
</div>
|
1869 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center-2 </span>
|
1870 |
+
<div class="fs1 paragraph-center-2" aria-hidden="true" data-icon=""></div>
|
1871 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe155;" > </a>
|
1872 |
+
</div>
|
1873 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right-2 </span>
|
1874 |
+
<div class="fs1 paragraph-right-2" aria-hidden="true" data-icon=""></div>
|
1875 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe156;" > </a>
|
1876 |
+
</div>
|
1877 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify-2 </span>
|
1878 |
+
<div class="fs1 paragraph-justify-2" aria-hidden="true" data-icon=""></div>
|
1879 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe157;" > </a>
|
1880 |
+
</div>
|
1881 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-increase </span>
|
1882 |
+
<div class="fs1 indent-increase" aria-hidden="true" data-icon=""></div>
|
1883 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe158;" > </a>
|
1884 |
+
</div>
|
1885 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-decrease </span>
|
1886 |
+
<div class="fs1 indent-decrease" aria-hidden="true" data-icon=""></div>
|
1887 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe159;" > </a>
|
1888 |
+
</div>
|
1889 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-new-tab </span>
|
1890 |
+
<div class="fs1 new-tab" aria-hidden="true" data-icon=""></div>
|
1891 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15a;" > </a>
|
1892 |
+
</div>
|
1893 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-embed </span>
|
1894 |
+
<div class="fs1 embed" aria-hidden="true" data-icon=""></div>
|
1895 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15b;" > </a>
|
1896 |
+
</div>
|
1897 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-code </span>
|
1898 |
+
<div class="fs1 code" aria-hidden="true" data-icon=""></div>
|
1899 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15c;" > </a>
|
1900 |
+
</div>
|
1901 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-console </span>
|
1902 |
+
<div class="fs1 console" aria-hidden="true" data-icon=""></div>
|
1903 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15d;" > </a>
|
1904 |
+
</div>
|
1905 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-share </span>
|
1906 |
+
<div class="fs1 share" aria-hidden="true" data-icon=""></div>
|
1907 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15e;" > </a>
|
1908 |
+
</div>
|
1909 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail </span>
|
1910 |
+
<div class="fs1 mail" aria-hidden="true" data-icon=""></div>
|
1911 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15f;" > </a>
|
1912 |
+
</div>
|
1913 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-2 </span>
|
1914 |
+
<div class="fs1 mail-2" aria-hidden="true" data-icon=""></div>
|
1915 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe160;" > </a>
|
1916 |
+
</div>
|
1917 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-3 </span>
|
1918 |
+
<div class="fs1 mail-3" aria-hidden="true" data-icon=""></div>
|
1919 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe161;" > </a>
|
1920 |
+
</div>
|
1921 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-4 </span>
|
1922 |
+
<div class="fs1 mail-4" aria-hidden="true" data-icon=""></div>
|
1923 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe162;" > </a>
|
1924 |
+
</div>
|
1925 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google </span>
|
1926 |
+
<div class="fs1 google" aria-hidden="true" data-icon=""></div>
|
1927 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe163;" > </a>
|
1928 |
+
</div>
|
1929 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus </span>
|
1930 |
+
<div class="fs1 google-plus" aria-hidden="true" data-icon=""></div>
|
1931 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe164;" > </a>
|
1932 |
+
</div>
|
1933 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-2 </span>
|
1934 |
+
<div class="fs1 google-plus-2" aria-hidden="true" data-icon=""></div>
|
1935 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe165;" > </a>
|
1936 |
+
</div>
|
1937 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-3 </span>
|
1938 |
+
<div class="fs1 google-plus-3" aria-hidden="true" data-icon=""></div>
|
1939 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe166;" > </a>
|
1940 |
+
</div>
|
1941 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-4 </span>
|
1942 |
+
<div class="fs1 google-plus-4" aria-hidden="true" data-icon=""></div>
|
1943 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe167;" > </a>
|
1944 |
+
</div>
|
1945 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-drive </span>
|
1946 |
+
<div class="fs1 google-drive" aria-hidden="true" data-icon=""></div>
|
1947 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe168;" > </a>
|
1948 |
+
</div>
|
1949 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook </span>
|
1950 |
+
<div class="fs1 facebook" aria-hidden="true" data-icon=""></div>
|
1951 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe169;" > </a>
|
1952 |
+
</div>
|
1953 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-2 </span>
|
1954 |
+
<div class="fs1 facebook-2" aria-hidden="true" data-icon=""></div>
|
1955 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16a;" > </a>
|
1956 |
+
</div>
|
1957 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-3 </span>
|
1958 |
+
<div class="fs1 facebook-3" aria-hidden="true" data-icon=""></div>
|
1959 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16b;" > </a>
|
1960 |
+
</div>
|
1961 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-instagram </span>
|
1962 |
+
<div class="fs1 instagram" aria-hidden="true" data-icon=""></div>
|
1963 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16c;" > </a>
|
1964 |
+
</div>
|
1965 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter </span>
|
1966 |
+
<div class="fs1 twitter" aria-hidden="true" data-icon=""></div>
|
1967 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16d;" > </a>
|
1968 |
+
</div>
|
1969 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-2 </span>
|
1970 |
+
<div class="fs1 twitter-2" aria-hidden="true" data-icon=""></div>
|
1971 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16e;" > </a>
|
1972 |
+
</div>
|
1973 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-3 </span>
|
1974 |
+
<div class="fs1 twitter-3" aria-hidden="true" data-icon=""></div>
|
1975 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16f;" > </a>
|
1976 |
+
</div>
|
1977 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-2 </span>
|
1978 |
+
<div class="fs1 feed-2" aria-hidden="true" data-icon=""></div>
|
1979 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe170;" > </a>
|
1980 |
+
</div>
|
1981 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-3 </span>
|
1982 |
+
<div class="fs1 feed-3" aria-hidden="true" data-icon=""></div>
|
1983 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe171;" > </a>
|
1984 |
+
</div>
|
1985 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-4 </span>
|
1986 |
+
<div class="fs1 feed-4" aria-hidden="true" data-icon=""></div>
|
1987 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe172;" > </a>
|
1988 |
+
</div>
|
1989 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube </span>
|
1990 |
+
<div class="fs1 youtube" aria-hidden="true" data-icon=""></div>
|
1991 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe173;" > </a>
|
1992 |
+
</div>
|
1993 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube-2 </span>
|
1994 |
+
<div class="fs1 youtube-2" aria-hidden="true" data-icon=""></div>
|
1995 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe174;" > </a>
|
1996 |
+
</div>
|
1997 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo </span>
|
1998 |
+
<div class="fs1 vimeo" aria-hidden="true" data-icon=""></div>
|
1999 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe175;" > </a>
|
2000 |
+
</div>
|
2001 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo2 </span>
|
2002 |
+
<div class="fs1 vimeo2" aria-hidden="true" data-icon=""></div>
|
2003 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe176;" > </a>
|
2004 |
+
</div>
|
2005 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo-2 </span>
|
2006 |
+
<div class="fs1 vimeo-2" aria-hidden="true" data-icon=""></div>
|
2007 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe177;" > </a>
|
2008 |
+
</div>
|
2009 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lanyrd </span>
|
2010 |
+
<div class="fs1 lanyrd" aria-hidden="true" data-icon=""></div>
|
2011 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe178;" > </a>
|
2012 |
+
</div>
|
2013 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr </span>
|
2014 |
+
<div class="fs1 flickr" aria-hidden="true" data-icon=""></div>
|
2015 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe179;" > </a>
|
2016 |
+
</div>
|
2017 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-2 </span>
|
2018 |
+
<div class="fs1 flickr-2" aria-hidden="true" data-icon=""></div>
|
2019 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17a;" > </a>
|
2020 |
+
</div>
|
2021 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-3 </span>
|
2022 |
+
<div class="fs1 flickr-3" aria-hidden="true" data-icon=""></div>
|
2023 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17b;" > </a>
|
2024 |
+
</div>
|
2025 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-4 </span>
|
2026 |
+
<div class="fs1 flickr-4" aria-hidden="true" data-icon=""></div>
|
2027 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17c;" > </a>
|
2028 |
+
</div>
|
2029 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa </span>
|
2030 |
+
<div class="fs1 picassa" aria-hidden="true" data-icon=""></div>
|
2031 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17d;" > </a>
|
2032 |
+
</div>
|
2033 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa-2 </span>
|
2034 |
+
<div class="fs1 picassa-2" aria-hidden="true" data-icon=""></div>
|
2035 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17e;" > </a>
|
2036 |
+
</div>
|
2037 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble </span>
|
2038 |
+
<div class="fs1 dribbble" aria-hidden="true" data-icon=""></div>
|
2039 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17f;" > </a>
|
2040 |
+
</div>
|
2041 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-2 </span>
|
2042 |
+
<div class="fs1 dribbble-2" aria-hidden="true" data-icon=""></div>
|
2043 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe180;" > </a>
|
2044 |
+
</div>
|
2045 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-3 </span>
|
2046 |
+
<div class="fs1 dribbble-3" aria-hidden="true" data-icon=""></div>
|
2047 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe181;" > </a>
|
2048 |
+
</div>
|
2049 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst </span>
|
2050 |
+
<div class="fs1 forrst" aria-hidden="true" data-icon=""></div>
|
2051 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe182;" > </a>
|
2052 |
+
</div>
|
2053 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst-2 </span>
|
2054 |
+
<div class="fs1 forrst-2" aria-hidden="true" data-icon=""></div>
|
2055 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe183;" > </a>
|
2056 |
+
</div>
|
2057 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart </span>
|
2058 |
+
<div class="fs1 deviantart" aria-hidden="true" data-icon=""></div>
|
2059 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe184;" > </a>
|
2060 |
+
</div>
|
2061 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart-2 </span>
|
2062 |
+
<div class="fs1 deviantart-2" aria-hidden="true" data-icon=""></div>
|
2063 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe185;" > </a>
|
2064 |
+
</div>
|
2065 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-steam </span>
|
2066 |
+
<div class="fs1 steam" aria-hidden="true" data-icon=""></div>
|
2067 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe186;" > </a>
|
2068 |
+
</div>
|
2069 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-steam-2 </span>
|
2070 |
+
<div class="fs1 steam-2" aria-hidden="true" data-icon=""></div>
|
2071 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe187;" > </a>
|
2072 |
+
</div>
|
2073 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github </span>
|
2074 |
+
<div class="fs1 github" aria-hidden="true" data-icon=""></div>
|
2075 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe188;" > </a>
|
2076 |
+
</div>
|
2077 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-2 </span>
|
2078 |
+
<div class="fs1 github-2" aria-hidden="true" data-icon=""></div>
|
2079 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe189;" > </a>
|
2080 |
+
</div>
|
2081 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-3 </span>
|
2082 |
+
<div class="fs1 github-3" aria-hidden="true" data-icon=""></div>
|
2083 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18a;" > </a>
|
2084 |
+
</div>
|
2085 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-4 </span>
|
2086 |
+
<div class="fs1 github-4" aria-hidden="true" data-icon=""></div>
|
2087 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18b;" > </a>
|
2088 |
+
</div>
|
2089 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-5 </span>
|
2090 |
+
<div class="fs1 github-5" aria-hidden="true" data-icon=""></div>
|
2091 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18c;" > </a>
|
2092 |
+
</div>
|
2093 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress </span>
|
2094 |
+
<div class="fs1 wordpress" aria-hidden="true" data-icon=""></div>
|
2095 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18d;" > </a>
|
2096 |
+
</div>
|
2097 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress-2 </span>
|
2098 |
+
<div class="fs1 wordpress-2" aria-hidden="true" data-icon=""></div>
|
2099 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18e;" > </a>
|
2100 |
+
</div>
|
2101 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-joomla </span>
|
2102 |
+
<div class="fs1 joomla" aria-hidden="true" data-icon=""></div>
|
2103 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18f;" > </a>
|
2104 |
+
</div>
|
2105 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger </span>
|
2106 |
+
<div class="fs1 blogger" aria-hidden="true" data-icon=""></div>
|
2107 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe190;" > </a>
|
2108 |
+
</div>
|
2109 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger-2 </span>
|
2110 |
+
<div class="fs1 blogger-2" aria-hidden="true" data-icon=""></div>
|
2111 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe191;" > </a>
|
2112 |
+
</div>
|
2113 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr </span>
|
2114 |
+
<div class="fs1 tumblr" aria-hidden="true" data-icon=""></div>
|
2115 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe192;" > </a>
|
2116 |
+
</div>
|
2117 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr-2 </span>
|
2118 |
+
<div class="fs1 tumblr-2" aria-hidden="true" data-icon=""></div>
|
2119 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe193;" > </a>
|
2120 |
+
</div>
|
2121 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-yahoo </span>
|
2122 |
+
<div class="fs1 yahoo" aria-hidden="true" data-icon=""></div>
|
2123 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe194;" > </a>
|
2124 |
+
</div>
|
2125 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tux </span>
|
2126 |
+
<div class="fs1 tux" aria-hidden="true" data-icon=""></div>
|
2127 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe195;" > </a>
|
2128 |
+
</div>
|
2129 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-apple </span>
|
2130 |
+
<div class="fs1 apple" aria-hidden="true" data-icon=""></div>
|
2131 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe196;" > </a>
|
2132 |
+
</div>
|
2133 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-finder </span>
|
2134 |
+
<div class="fs1 finder" aria-hidden="true" data-icon=""></div>
|
2135 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe197;" > </a>
|
2136 |
+
</div>
|
2137 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-android </span>
|
2138 |
+
<div class="fs1 android" aria-hidden="true" data-icon=""></div>
|
2139 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe198;" > </a>
|
2140 |
+
</div>
|
2141 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windows </span>
|
2142 |
+
<div class="fs1 windows" aria-hidden="true" data-icon=""></div>
|
2143 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe199;" > </a>
|
2144 |
+
</div>
|
2145 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windows8 </span>
|
2146 |
+
<div class="fs1 windows8" aria-hidden="true" data-icon=""></div>
|
2147 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19a;" > </a>
|
2148 |
+
</div>
|
2149 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud </span>
|
2150 |
+
<div class="fs1 soundcloud" aria-hidden="true" data-icon=""></div>
|
2151 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19b;" > </a>
|
2152 |
+
</div>
|
2153 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud-2 </span>
|
2154 |
+
<div class="fs1 soundcloud-2" aria-hidden="true" data-icon=""></div>
|
2155 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19c;" > </a>
|
2156 |
+
</div>
|
2157 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-skype </span>
|
2158 |
+
<div class="fs1 skype" aria-hidden="true" data-icon=""></div>
|
2159 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19d;" > </a>
|
2160 |
+
</div>
|
2161 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-reddit </span>
|
2162 |
+
<div class="fs1 reddit" aria-hidden="true" data-icon=""></div>
|
2163 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19e;" > </a>
|
2164 |
+
</div>
|
2165 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-linkedin </span>
|
2166 |
+
<div class="fs1 linkedin" aria-hidden="true" data-icon=""></div>
|
2167 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19f;" > </a>
|
2168 |
+
</div>
|
2169 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm </span>
|
2170 |
+
<div class="fs1 lastfm" aria-hidden="true" data-icon=""></div>
|
2171 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a0;" > </a>
|
2172 |
+
</div>
|
2173 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm-2 </span>
|
2174 |
+
<div class="fs1 lastfm-2" aria-hidden="true" data-icon=""></div>
|
2175 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a1;" > </a>
|
2176 |
+
</div>
|
2177 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-delicious </span>
|
2178 |
+
<div class="fs1 delicious" aria-hidden="true" data-icon=""></div>
|
2179 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a2;" > </a>
|
2180 |
+
</div>
|
2181 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon </span>
|
2182 |
+
<div class="fs1 stumbleupon" aria-hidden="true" data-icon=""></div>
|
2183 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a3;" > </a>
|
2184 |
+
</div>
|
2185 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon-2 </span>
|
2186 |
+
<div class="fs1 stumbleupon-2" aria-hidden="true" data-icon=""></div>
|
2187 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a4;" > </a>
|
2188 |
+
</div>
|
2189 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stackoverflow </span>
|
2190 |
+
<div class="fs1 stackoverflow" aria-hidden="true" data-icon=""></div>
|
2191 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a5;" > </a>
|
2192 |
+
</div>
|
2193 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest </span>
|
2194 |
+
<div class="fs1 pinterest" aria-hidden="true" data-icon=""></div>
|
2195 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a6;" > </a>
|
2196 |
+
</div>
|
2197 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest-2 </span>
|
2198 |
+
<div class="fs1 pinterest-2" aria-hidden="true" data-icon=""></div>
|
2199 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a7;" > </a>
|
2200 |
+
</div>
|
2201 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-xing </span>
|
2202 |
+
<div class="fs1 xing" aria-hidden="true" data-icon=""></div>
|
2203 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a8;" > </a>
|
2204 |
+
</div>
|
2205 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-xing-2 </span>
|
2206 |
+
<div class="fs1 xing-2" aria-hidden="true" data-icon=""></div>
|
2207 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a9;" > </a>
|
2208 |
+
</div>
|
2209 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flattr </span>
|
2210 |
+
<div class="fs1 flattr" aria-hidden="true" data-icon=""></div>
|
2211 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1aa;" > </a>
|
2212 |
+
</div>
|
2213 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
|
2214 |
+
<div class="fs1 foursquare" aria-hidden="true" data-icon=""></div>
|
2215 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ab;" > </a>
|
2216 |
+
</div>
|
2217 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
|
2218 |
+
<div class="fs1 foursquare" aria-hidden="true" data-icon=""></div>
|
2219 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ac;" > </a>
|
2220 |
+
</div>
|
2221 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal </span>
|
2222 |
+
<div class="fs1 paypal" aria-hidden="true" data-icon=""></div>
|
2223 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ad;" > </a>
|
2224 |
+
</div>
|
2225 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-2 </span>
|
2226 |
+
<div class="fs1 paypal-2" aria-hidden="true" data-icon=""></div>
|
2227 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ae;" > </a>
|
2228 |
+
</div>
|
2229 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-3 </span>
|
2230 |
+
<div class="fs1 paypal-3" aria-hidden="true" data-icon=""></div>
|
2231 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1af;" > </a>
|
2232 |
+
</div>
|
2233 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-yelp </span>
|
2234 |
+
<div class="fs1 yelp" aria-hidden="true" data-icon=""></div>
|
2235 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b0;" > </a>
|
2236 |
+
</div>
|
2237 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-libreoffice </span>
|
2238 |
+
<div class="fs1 libreoffice" aria-hidden="true" data-icon=""></div>
|
2239 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b1;" > </a>
|
2240 |
+
</div>
|
2241 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-pdf </span>
|
2242 |
+
<div class="fs1 file-pdf" aria-hidden="true" data-icon=""></div>
|
2243 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b2;" > </a>
|
2244 |
+
</div>
|
2245 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-openoffice </span>
|
2246 |
+
<div class="fs1 file-openoffice" aria-hidden="true" data-icon=""></div>
|
2247 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b3;" > </a>
|
2248 |
+
</div>
|
2249 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-word </span>
|
2250 |
+
<div class="fs1 file-word" aria-hidden="true" data-icon=""></div>
|
2251 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b4;" > </a>
|
2252 |
+
</div>
|
2253 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-excel </span>
|
2254 |
+
<div class="fs1 file-excel" aria-hidden="true" data-icon=""></div>
|
2255 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b5;" > </a>
|
2256 |
+
</div>
|
2257 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-zip </span>
|
2258 |
+
<div class="fs1 file-zip" aria-hidden="true" data-icon=""></div>
|
2259 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b6;" > </a>
|
2260 |
+
</div>
|
2261 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-powerpoint </span>
|
2262 |
+
<div class="fs1 file-powerpoint" aria-hidden="true" data-icon=""></div>
|
2263 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b7;" > </a>
|
2264 |
+
</div>
|
2265 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-xml </span>
|
2266 |
+
<div class="fs1 file-xml" aria-hidden="true" data-icon=""></div>
|
2267 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b8;" > </a>
|
2268 |
+
</div>
|
2269 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-css </span>
|
2270 |
+
<div class="fs1 file-css" aria-hidden="true" data-icon=""></div>
|
2271 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b9;" > </a>
|
2272 |
+
</div>
|
2273 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-html5 </span>
|
2274 |
+
<div class="fs1 html5" aria-hidden="true" data-icon=""></div>
|
2275 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ba;" > </a>
|
2276 |
+
</div>
|
2277 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-html5-2 </span>
|
2278 |
+
<div class="fs1 html5-2" aria-hidden="true" data-icon=""></div>
|
2279 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bb;" > </a>
|
2280 |
+
</div>
|
2281 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-css3 </span>
|
2282 |
+
<div class="fs1 css3" aria-hidden="true" data-icon=""></div>
|
2283 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bc;" > </a>
|
2284 |
+
</div>
|
2285 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-chrome </span>
|
2286 |
+
<div class="fs1 chrome" aria-hidden="true" data-icon=""></div>
|
2287 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bd;" > </a>
|
2288 |
+
</div>
|
2289 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-firefox </span>
|
2290 |
+
<div class="fs1 firefox" aria-hidden="true" data-icon=""></div>
|
2291 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1be;" > </a>
|
2292 |
+
</div>
|
2293 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-IE </span>
|
2294 |
+
<div class="fs1 IE" aria-hidden="true" data-icon=""></div>
|
2295 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bf;" > </a>
|
2296 |
+
</div>
|
2297 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-opera </span>
|
2298 |
+
<div class="fs1 opera" aria-hidden="true" data-icon=""></div>
|
2299 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c0;" > </a>
|
2300 |
+
</div>
|
2301 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-safari </span>
|
2302 |
+
<div class="fs1 safari" aria-hidden="true" data-icon=""></div>
|
2303 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c1;" > </a>
|
2304 |
+
</div>
|
2305 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-IcoMoon </span>
|
2306 |
+
<div class="fs1 IcoMoon" aria-hidden="true" data-icon=""></div>
|
2307 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c2;" > </a>
|
2308 |
+
</div>
|
2309 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sunrise </span>
|
2310 |
+
<div class="fs1 sunrise" aria-hidden="true" data-icon=""></div>
|
2311 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c3;" > </a>
|
2312 |
+
</div>
|
2313 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun </span>
|
2314 |
+
<div class="fs1 sun" aria-hidden="true" data-icon=""></div>
|
2315 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c4;" > </a>
|
2316 |
+
</div>
|
2317 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-moon </span>
|
2318 |
+
<div class="fs1 moon" aria-hidden="true" data-icon=""></div>
|
2319 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c5;" > </a>
|
2320 |
+
</div>
|
2321 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-2 </span>
|
2322 |
+
<div class="fs1 sun-2" aria-hidden="true" data-icon=""></div>
|
2323 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c6;" > </a>
|
2324 |
+
</div>
|
2325 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy </span>
|
2326 |
+
<div class="fs1 windy" aria-hidden="true" data-icon=""></div>
|
2327 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c7;" > </a>
|
2328 |
+
</div>
|
2329 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wind </span>
|
2330 |
+
<div class="fs1 wind" aria-hidden="true" data-icon=""></div>
|
2331 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c8;" > </a>
|
2332 |
+
</div>
|
2333 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowflake </span>
|
2334 |
+
<div class="fs1 snowflake" aria-hidden="true" data-icon=""></div>
|
2335 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c9;" > </a>
|
2336 |
+
</div>
|
2337 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy </span>
|
2338 |
+
<div class="fs1 cloudy" aria-hidden="true" data-icon=""></div>
|
2339 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ca;" > </a>
|
2340 |
+
</div>
|
2341 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-2 </span>
|
2342 |
+
<div class="fs1 cloud-2" aria-hidden="true" data-icon=""></div>
|
2343 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cb;" > </a>
|
2344 |
+
</div>
|
2345 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather </span>
|
2346 |
+
<div class="fs1 weather" aria-hidden="true" data-icon=""></div>
|
2347 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cc;" > </a>
|
2348 |
+
</div>
|
2349 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
|
2350 |
+
<div class="fs1 weather-2" aria-hidden="true" data-icon=""></div>
|
2351 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cd;" > </a>
|
2352 |
+
</div>
|
2353 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-3 </span>
|
2354 |
+
<div class="fs1 weather-3" aria-hidden="true" data-icon=""></div>
|
2355 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ce;" > </a>
|
2356 |
+
</div>
|
2357 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lines </span>
|
2358 |
+
<div class="fs1 lines" aria-hidden="true" data-icon=""></div>
|
2359 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cf;" > </a>
|
2360 |
+
</div>
|
2361 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-3 </span>
|
2362 |
+
<div class="fs1 cloud-3" aria-hidden="true" data-icon=""></div>
|
2363 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d0;" > </a>
|
2364 |
+
</div>
|
2365 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-2 </span>
|
2366 |
+
<div class="fs1 lightning-2" aria-hidden="true" data-icon=""></div>
|
2367 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d1;" > </a>
|
2368 |
+
</div>
|
2369 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-3 </span>
|
2370 |
+
<div class="fs1 lightning-3" aria-hidden="true" data-icon=""></div>
|
2371 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d2;" > </a>
|
2372 |
+
</div>
|
2373 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy </span>
|
2374 |
+
<div class="fs1 rainy" aria-hidden="true" data-icon=""></div>
|
2375 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d3;" > </a>
|
2376 |
+
</div>
|
2377 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-2 </span>
|
2378 |
+
<div class="fs1 rainy-2" aria-hidden="true" data-icon=""></div>
|
2379 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d4;" > </a>
|
2380 |
+
</div>
|
2381 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-2 </span>
|
2382 |
+
<div class="fs1 windy-2" aria-hidden="true" data-icon=""></div>
|
2383 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d5;" > </a>
|
2384 |
+
</div>
|
2385 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-3 </span>
|
2386 |
+
<div class="fs1 windy-3" aria-hidden="true" data-icon=""></div>
|
2387 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d6;" > </a>
|
2388 |
+
</div>
|
2389 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy </span>
|
2390 |
+
<div class="fs1 snowy" aria-hidden="true" data-icon=""></div>
|
2391 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d7;" > </a>
|
2392 |
+
</div>
|
2393 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-2 </span>
|
2394 |
+
<div class="fs1 snowy-2" aria-hidden="true" data-icon=""></div>
|
2395 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d8;" > </a>
|
2396 |
+
</div>
|
2397 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-3 </span>
|
2398 |
+
<div class="fs1 snowy-3" aria-hidden="true" data-icon=""></div>
|
2399 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d9;" > </a>
|
2400 |
+
</div>
|
2401 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-4 </span>
|
2402 |
+
<div class="fs1 weather-4" aria-hidden="true" data-icon=""></div>
|
2403 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1da;" > </a>
|
2404 |
+
</div>
|
2405 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
|
2406 |
+
<div class="fs1 cloudy-2" aria-hidden="true" data-icon=""></div>
|
2407 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1db;" > </a>
|
2408 |
+
</div>
|
2409 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-4 </span>
|
2410 |
+
<div class="fs1 cloud-4" aria-hidden="true" data-icon=""></div>
|
2411 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dc;" > </a>
|
2412 |
+
</div>
|
2413 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-4 </span>
|
2414 |
+
<div class="fs1 lightning-4" aria-hidden="true" data-icon=""></div>
|
2415 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dd;" > </a>
|
2416 |
+
</div>
|
2417 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-3 </span>
|
2418 |
+
<div class="fs1 sun-3" aria-hidden="true" data-icon=""></div>
|
2419 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1de;" > </a>
|
2420 |
+
</div>
|
2421 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-moon-2 </span>
|
2422 |
+
<div class="fs1 moon-2" aria-hidden="true" data-icon=""></div>
|
2423 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1df;" > </a>
|
2424 |
+
</div>
|
2425 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-3 </span>
|
2426 |
+
<div class="fs1 cloudy-3" aria-hidden="true" data-icon=""></div>
|
2427 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e0;" > </a>
|
2428 |
+
</div>
|
2429 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-5 </span>
|
2430 |
+
<div class="fs1 cloud-5" aria-hidden="true" data-icon=""></div>
|
2431 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e1;" > </a>
|
2432 |
+
</div>
|
2433 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-6 </span>
|
2434 |
+
<div class="fs1 cloud-6" aria-hidden="true" data-icon=""></div>
|
2435 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e2;" > </a>
|
2436 |
+
</div>
|
2437 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-5 </span>
|
2438 |
+
<div class="fs1 lightning-5" aria-hidden="true" data-icon=""></div>
|
2439 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e3;" > </a>
|
2440 |
+
</div>
|
2441 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-3 </span>
|
2442 |
+
<div class="fs1 rainy-3" aria-hidden="true" data-icon=""></div>
|
2443 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e4;" > </a>
|
2444 |
+
</div>
|
2445 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-4 </span>
|
2446 |
+
<div class="fs1 rainy-4" aria-hidden="true" data-icon=""></div>
|
2447 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e5;" > </a>
|
2448 |
+
</div>
|
2449 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-4 </span>
|
2450 |
+
<div class="fs1 windy-4" aria-hidden="true" data-icon=""></div>
|
2451 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e6;" > </a>
|
2452 |
+
</div>
|
2453 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-5 </span>
|
2454 |
+
<div class="fs1 windy-5" aria-hidden="true" data-icon=""></div>
|
2455 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e7;" > </a>
|
2456 |
+
</div>
|
2457 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-4 </span>
|
2458 |
+
<div class="fs1 snowy-4" aria-hidden="true" data-icon=""></div>
|
2459 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e8;" > </a>
|
2460 |
+
</div>
|
2461 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-5 </span>
|
2462 |
+
<div class="fs1 snowy-5" aria-hidden="true" data-icon=""></div>
|
2463 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e9;" > </a>
|
2464 |
+
</div>
|
2465 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-5 </span>
|
2466 |
+
<div class="fs1 weather-5" aria-hidden="true" data-icon=""></div>
|
2467 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ea;" > </a>
|
2468 |
+
</div>
|
2469 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-4 </span>
|
2470 |
+
<div class="fs1 cloudy-4" aria-hidden="true" data-icon=""></div>
|
2471 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1eb;" > </a>
|
2472 |
+
</div>
|
2473 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-6 </span>
|
2474 |
+
<div class="fs1 lightning-6" aria-hidden="true" data-icon=""></div>
|
2475 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ec;" > </a>
|
2476 |
+
</div>
|
2477 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thermometer </span>
|
2478 |
+
<div class="fs1 thermometer" aria-hidden="true" data-icon=""></div>
|
2479 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ed;" > </a>
|
2480 |
+
</div>
|
2481 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-compass-2 </span>
|
2482 |
+
<div class="fs1 compass-2" aria-hidden="true" data-icon=""></div>
|
2483 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ee;" > </a>
|
2484 |
+
</div>
|
2485 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-none </span>
|
2486 |
+
<div class="fs1 none" aria-hidden="true" data-icon=""></div>
|
2487 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ef;" > </a>
|
2488 |
+
</div>
|
2489 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-Celsius </span>
|
2490 |
+
<div class="fs1 Celsius" aria-hidden="true" data-icon=""></div>
|
2491 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f0;" > </a>
|
2492 |
+
</div>
|
2493 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-Fahrenheit </span>
|
2494 |
+
<div class="fs1 Fahrenheit" aria-hidden="true" data-icon=""></div>
|
2495 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f1;" > </a>
|
2496 |
+
</div>
|
2497 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-aperture </span>
|
2498 |
+
<div class="fs1 aperture" aria-hidden="true" data-icon=""></div>
|
2499 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f2;" > </a>
|
2500 |
+
</div>
|
2501 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-camera-3 </span>
|
2502 |
+
<div class="fs1 camera-3" aria-hidden="true" data-icon=""></div>
|
2503 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f3;" > </a>
|
2504 |
+
</div>
|
2505 |
+
|
2506 |
+
</section>
|
2507 |
+
|
2508 |
+
</div>
|
2509 |
+
|
2510 |
+
<div class="custom-pack-container-ajax" style="display:inline-block; margin-top:1em; "></div>
|
2511 |
+
|
2512 |
+
<div class="clear"></div>
|
2513 |
+
|
2514 |
+
<footer>
|
2515 |
+
<p><?php _e( 'Plugin Created By' , 'wp-svg-icons' ); ?> <a style="color:#B35047;" href="https://www.evan-herman.com" target="_blank">Evan Herman</a></p>
|
2516 |
+
</footer>
|
2517 |
+
|
2518 |
+
</div>
|
2519 |
+
|
2520 |
+
</div>
|
admin/partials/wp-svg-icons-icon-page.php
CHANGED
@@ -1,231 +1,227 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
<
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
<
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
<
|
205 |
-
<
|
206 |
-
|
207 |
-
|
208 |
-
<
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
<
|
214 |
-
<
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
}
|
229 |
-
|
230 |
-
|
231 |
-
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
4 |
+
|
5 |
+
// Create Menu Pages
|
6 |
+
// Create Sub Menu pages for Custom Icon Pack Uploads
|
7 |
+
function wordpress_svg_icons_plugin_add_menu_page() {
|
8 |
+
|
9 |
+
// Top Level Menu
|
10 |
+
add_menu_page(
|
11 |
+
__('WP SVG Icons','wp-svg-icons'),
|
12 |
+
'WP SVG Icons',
|
13 |
+
'manage_options',
|
14 |
+
'wp-svg-icons',
|
15 |
+
'render_wp_svg_icon_page',
|
16 |
+
'dashicons-wp-svg-gift'
|
17 |
+
);
|
18 |
+
|
19 |
+
// Sub Pages
|
20 |
+
/* Default Icons Page */
|
21 |
+
add_submenu_page(
|
22 |
+
'wp-svg-icons',
|
23 |
+
__('WP SVG Icons - Default Icon Set','wp-svg-icons'),
|
24 |
+
__('Default Icon Set','wp-svg-icons'),
|
25 |
+
'manage_options',
|
26 |
+
'wp-svg-icons',
|
27 |
+
'render_wp_svg_icon_page'
|
28 |
+
);
|
29 |
+
|
30 |
+
/* Custom Icons Page */
|
31 |
+
add_submenu_page(
|
32 |
+
'wp-svg-icons',
|
33 |
+
__('Custom Icon Set','wp-svg-icons'),
|
34 |
+
__('Custom Icon Set','wp-svg-icons'),
|
35 |
+
'manage_options',
|
36 |
+
'wp-svg-icons-custom-set',
|
37 |
+
'render_custom_icon_page'
|
38 |
+
);
|
39 |
+
|
40 |
+
/* Settings Page */
|
41 |
+
add_submenu_page(
|
42 |
+
'wp-svg-icons',
|
43 |
+
__( 'WP SVG Icons - Settings' , 'wp-svg-icon' ),
|
44 |
+
__( 'Settings' , 'wp-svg-icon' ),
|
45 |
+
'manage_options',
|
46 |
+
'wp_svg_icons',
|
47 |
+
'wp_svg_icons_options_page'
|
48 |
+
);
|
49 |
+
|
50 |
+
/* Support Page */
|
51 |
+
add_submenu_page(
|
52 |
+
'wp-svg-icons',
|
53 |
+
__( 'Upgrade', 'wp-svg-icons' ),
|
54 |
+
__( 'Upgrade', 'wp-svg-icons' ),
|
55 |
+
'manage_options',
|
56 |
+
'wp-svg-icons-upgrade',
|
57 |
+
'render_upgrade_page'
|
58 |
+
);
|
59 |
+
|
60 |
+
}
|
61 |
+
add_action('admin_menu', 'wordpress_svg_icons_plugin_add_menu_page');
|
62 |
+
|
63 |
+
|
64 |
+
// Callback to render icon listing page
|
65 |
+
function render_wp_svg_icon_page() {
|
66 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-default-icons-page.php';
|
67 |
+
}
|
68 |
+
|
69 |
+
// Callback to render icon listing page
|
70 |
+
function render_custom_icon_page() {
|
71 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-custom-icons-page.php';
|
72 |
+
}
|
73 |
+
|
74 |
+
// Callback to render support page
|
75 |
+
function render_upgrade_page() {
|
76 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-upgrade-page.php';
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
/** Settings Page **/
|
81 |
+
|
82 |
+
function wp_svg_icons_settings_init( ) {
|
83 |
+
|
84 |
+
register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_enqueue_defualt_icon_pack' );
|
85 |
+
register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_defualt_icon_container' );
|
86 |
+
register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_clear_all_data_on_uninstall' );
|
87 |
+
|
88 |
+
/* Register settings section */
|
89 |
+
add_settings_section(
|
90 |
+
'wp_svg_icons_plugin_section',
|
91 |
+
__( '', 'wp-svg-icons' ),
|
92 |
+
'wp_svg_icons_settings_section_callback',
|
93 |
+
'wp_svg_icons_settings_page'
|
94 |
+
);
|
95 |
+
|
96 |
+
/* Register checkbox Setting */
|
97 |
+
add_settings_field(
|
98 |
+
'wp_svg_icons_enqueue_defualt_icon_pack',
|
99 |
+
__( 'Load Default Icons', 'wp-svg-icons' ),
|
100 |
+
'wp_svg_icons_enqueue_defualt_icon_pack_callback',
|
101 |
+
'wp_svg_icons_settings_page',
|
102 |
+
'wp_svg_icons_plugin_section'
|
103 |
+
);
|
104 |
+
|
105 |
+
/* Default Icon Element */
|
106 |
+
add_settings_field(
|
107 |
+
'wp_svg_icons_defualt_icon_container',
|
108 |
+
__( 'Defualt Icon Element', 'wp-svg-icons' ),
|
109 |
+
'wp_svg_icons_enqueue_defualt_icon_container_callback',
|
110 |
+
'wp_svg_icons_settings_page',
|
111 |
+
'wp_svg_icons_plugin_section'
|
112 |
+
);
|
113 |
+
|
114 |
+
/* Delete Custom Icon Pack On Uninstall Setting */
|
115 |
+
add_settings_field(
|
116 |
+
'wp_svg_icons_clear_all_data_on_uninstall',
|
117 |
+
__( 'Clear Data on Uninstall', 'wp-svg-icons' ),
|
118 |
+
'wp_svg_icons_clear_all_data_on_uninstall_callback',
|
119 |
+
'wp_svg_icons_settings_page',
|
120 |
+
'wp_svg_icons_plugin_section'
|
121 |
+
);
|
122 |
+
|
123 |
+
}
|
124 |
+
add_action( 'admin_init', 'wp_svg_icons_settings_init' );
|
125 |
+
|
126 |
+
|
127 |
+
// Enqueue default icon pack setting - checkbox - callback
|
128 |
+
function wp_svg_icons_enqueue_defualt_icon_pack_callback( ) {
|
129 |
+
|
130 |
+
$enqueue_default_icons_setting = get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' );
|
131 |
+
if( $enqueue_default_icons_setting == '1' ) {
|
132 |
+
$checked = 'checked="checked"';
|
133 |
+
$enqueued = __( 'the default icon pack stylesheet will be loaded on the front end.' , 'wp-svg-icons' );
|
134 |
+
} else {
|
135 |
+
$checked = '';
|
136 |
+
$enqueued = __( 'the default icon pack stylesheet will ' , 'wp-svg-icons' ) . '<strong>' . __( 'not' , 'wp-svg-icons' ) . '</strong> ' . __( 'be loaded on the front end.' , 'wp-svg-icons' );
|
137 |
+
}
|
138 |
+
?>
|
139 |
+
<input type='checkbox' name='wp_svg_icons_enqueue_defualt_icon_pack' <?php echo $checked; ?> value='1'><span style="font-size:small"><?php echo $enqueued; ?></span>
|
140 |
+
<?php
|
141 |
+
|
142 |
+
}
|
143 |
+
|
144 |
+
// Default icons element cotainer - dropdown - callback
|
145 |
+
// doesn't currently do anything
|
146 |
+
// unable to use get_option() on edit.php to dictate the default icons
|
147 |
+
function wp_svg_icons_enqueue_defualt_icon_container_callback( ) {
|
148 |
+
|
149 |
+
$default_icon_container = get_option( 'wp_svg_icons_defualt_icon_container' , 'i' );
|
150 |
+
|
151 |
+
?>
|
152 |
+
<select id="wp_svg_icons_defualt_icon_container" name="wp_svg_icons_defualt_icon_container">
|
153 |
+
<option val="H1" <?php selected( $default_icon_container , 'h1' ); ?>>h1</option>
|
154 |
+
<option val="h2" <?php selected( $default_icon_container , 'h2' ); ?>>h2</option>
|
155 |
+
<option val="h3" <?php selected( $default_icon_container , 'h3' ); ?>>h3</option>
|
156 |
+
<option val="span" <?php selected( $default_icon_container , 'span' ); ?>>span</option>
|
157 |
+
<option val="div" <?php selected( $default_icon_container , 'div' ); ?>>div</option>
|
158 |
+
<option val="i" <?php selected( $default_icon_container , 'i' ); ?>>i</option>
|
159 |
+
<option val="b" <?php selected( $default_icon_container , 'b' ); ?>>b</option>
|
160 |
+
</select>
|
161 |
+
<?php
|
162 |
+
|
163 |
+
}
|
164 |
+
|
165 |
+
// Clear all data on plugin uninstall - checkbox - callback
|
166 |
+
function wp_svg_icons_clear_all_data_on_uninstall_callback( ) {
|
167 |
+
|
168 |
+
$clear_all_data_on_uninstall = get_option( 'wp_svg_icons_clear_all_data_on_uninstall' , '1' );
|
169 |
+
|
170 |
+
if( $clear_all_data_on_uninstall == '1' ) {
|
171 |
+
$selected = 'checked="checked"';
|
172 |
+
$delete_data_message = __( 'your custom pack and all associated and enqueued files will be deleted on uninstall.' , 'wp-svg-icons' );
|
173 |
+
} else {
|
174 |
+
$selected = '';
|
175 |
+
$delete_data_message = __( 'your custom pack and all associated and enqueued files will ' , 'wp-svg-icons' ) . '<strong>' . __( 'not' , 'wp-svg-icons' ) . '</strong> ' . __( 'be deleted on uninstall.' , 'wp-svg-icons' );
|
176 |
+
}
|
177 |
+
?>
|
178 |
+
<input type='checkbox' name='wp_svg_icons_clear_all_data_on_uninstall' <?php echo $selected; ?> value='1'><span style="font-size:small"><?php echo $delete_data_message; ?></span>
|
179 |
+
<?php
|
180 |
+
|
181 |
+
}
|
182 |
+
|
183 |
+
// description of the settings page
|
184 |
+
function wp_svg_icons_settings_section_callback( ) {
|
185 |
+
echo '<p>' . __( 'Settings are limited in WP SVG Icons. This plugin was created to be as user friendly and as easy to maintain as possible, which includes a very minimal settings page.', 'wp-svg-icons' ) . '</p>';
|
186 |
+
echo '<hr />';
|
187 |
+
// Display a confirmation to the user when the settings have been updated
|
188 |
+
if( isset( $_GET['settings-updated'] ) ) {
|
189 |
+
?>
|
190 |
+
<div class="updated">
|
191 |
+
<p><?php _e( 'Settings successfully updated.' , 'wp-svg-icons' ); ?></p>
|
192 |
+
</div>
|
193 |
+
<?php
|
194 |
+
}
|
195 |
+
}
|
196 |
+
|
197 |
+
/* Options Page Callback */
|
198 |
+
function wp_svg_icons_options_page( ) {
|
199 |
+
?>
|
200 |
+
<style>
|
201 |
+
::selection { background: #FF8000; }
|
202 |
+
</style>
|
203 |
+
<div class="svg-custom-upload-wrap wrap">
|
204 |
+
<form action='options.php' method='post'>
|
205 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Settings' , 'wp-svg-icons' ) ?></h1>
|
206 |
+
<!-- review us container -->
|
207 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;text-align:center;">
|
208 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
209 |
+
<p style="margin-top:-8px;"><a href="https://wordpress.org/support/view/plugin-reviews/svg-vector-icon-plugin" target="_blank" style="text-decoration:none;"><b class="wp-svg-happy" style="font-size:2.5em;"></b></a></p>
|
210 |
+
</div>
|
211 |
+
<!-- social media icons -->
|
212 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
213 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
214 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
215 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
216 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
217 |
+
<a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
218 |
+
</div>
|
219 |
+
<?php
|
220 |
+
settings_fields( 'wp_svg_icons_settings_page' );
|
221 |
+
do_settings_sections( 'wp_svg_icons_settings_page' );
|
222 |
+
submit_button();
|
223 |
+
?>
|
224 |
+
</form>
|
225 |
+
</div>
|
226 |
+
<?php
|
227 |
+
}
|
|
|
|
|
|
|
|
admin/partials/wp-svg-icons-upgrade-page.php
CHANGED
@@ -1,154 +1,152 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
border:
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
font-
|
21 |
-
|
22 |
-
|
23 |
-
margin-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
transition: all 0.3s ease 0s;
|
28 |
-
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
margin-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
<p
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
<a href="
|
68 |
-
<a href="
|
69 |
-
<a href="https://www.
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
<a href="#" class="nav-tab
|
80 |
-
<a href="#" class="nav-tab" data-attr="
|
81 |
-
<a href="#" class="nav-tab" data-attr="
|
82 |
-
<a href="#" class="nav-tab" data-attr="
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
<
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
<
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
<
|
113 |
-
|
114 |
-
<
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
<br />
|
142 |
-
|
143 |
-
<br />
|
144 |
-
|
145 |
-
<
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
</div>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
4 |
+
|
5 |
+
// enqueue our upgrade page script
|
6 |
+
wp_register_script( 'upgrade-page-script' , plugin_dir_url(__FILE__).'../js/upgrade-page-script.js' , array( 'jquery' ), 'all' );
|
7 |
+
wp_enqueue_script( 'upgrade-page-script' );
|
8 |
+
?>
|
9 |
+
|
10 |
+
<style>
|
11 |
+
::selection { background: #FF8000; }
|
12 |
+
|
13 |
+
.upgrade-button {
|
14 |
+
border: 0 none;
|
15 |
+
border-radius: 2px 2px 2px 2px;
|
16 |
+
color: #FFFFFF;
|
17 |
+
cursor: pointer;
|
18 |
+
display: inline-block;
|
19 |
+
font-size: 16px;
|
20 |
+
font-weight: 200;
|
21 |
+
line-height: 20px;
|
22 |
+
margin-bottom: 0;
|
23 |
+
margin-top: 10px;
|
24 |
+
padding: 9px 12px;
|
25 |
+
text-transform: none;
|
26 |
+
transition: all 0.3s ease 0s;
|
27 |
+
-moz-transition: all 0.3s ease 0s;
|
28 |
+
-webkit-transition: all 0.3s ease 0s;
|
29 |
+
width: 12.795%;
|
30 |
+
text-align: center;
|
31 |
+
min-width: 168px;
|
32 |
+
}
|
33 |
+
|
34 |
+
.green {
|
35 |
+
background: none repeat scroll 0 0 #46b98a;
|
36 |
+
color: #ffffff;
|
37 |
+
}
|
38 |
+
.green:hover {
|
39 |
+
cursor: pointer;
|
40 |
+
background: none repeat scroll 0 0 #3AAC7D;
|
41 |
+
color: #ffffff;
|
42 |
+
}
|
43 |
+
.tab_content h2 {
|
44 |
+
margin: 1em 0;
|
45 |
+
}
|
46 |
+
.tab_content h2+p {
|
47 |
+
margin-top: 1em !important;
|
48 |
+
margin-bottom: 2em !important;
|
49 |
+
}
|
50 |
+
</style>
|
51 |
+
|
52 |
+
<div id="wp-svg-icons-support-page-wrap" class="svg-custom-upload-wrap wrap" >
|
53 |
+
|
54 |
+
<section id="wp-svg-icons-support-page-header">
|
55 |
+
|
56 |
+
<section class="support-subhead">
|
57 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Upgrade' , 'wp-svg-icons' ); ?></h2>
|
58 |
+
<!-- review us container -->
|
59 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;text-align:center;">
|
60 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
61 |
+
<p style="margin-top:-8px;"><a href="https://wordpress.org/support/view/plugin-reviews/svg-vector-icon-plugin" target="_blank" style="text-decoration:none;"><b class="wp-svg-happy" style="font-size:2.5em;color:#333;"></b></a></p>
|
62 |
+
</div>
|
63 |
+
<!-- social media icons -->
|
64 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin-right:3em;text-align:center;">
|
65 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
66 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
67 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
68 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
69 |
+
<a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
70 |
+
</div>
|
71 |
+
<p><?php _e( 'Enjoying the free version? Consider upgrading to the pro version for added features and a premium level of support.' , 'wp-svg-icons' ); ?></p>
|
72 |
+
</section>
|
73 |
+
|
74 |
+
</section>
|
75 |
+
|
76 |
+
<h2 class="nav-tab-wrapper" style="text-align:center;margin:2em 0;"">
|
77 |
+
<a href="#" class="nav-tab nav-tab-active" data-attr="unlimited_custom_icons"><?php _e( 'Unlimited Custom Icons' , 'wp-svg-icons' ); ?></a>
|
78 |
+
<a href="#" class="nav-tab" data-attr="icon_customizer"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></a>
|
79 |
+
<a href="#" class="nav-tab" data-attr="icon_containers"><?php _e( 'Icon Containers' , 'wp-svg-icons' ); ?></a>
|
80 |
+
<a href="#" class="nav-tab" data-attr="css3_animations"><?php _e( 'CSS3 Animation' , 'wp-svg-icons' ); ?></a>
|
81 |
+
<a href="#" class="nav-tab" data-attr="menu_icons"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></a>
|
82 |
+
<a href="#" class="nav-tab" data-attr="premium_support"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></a>
|
83 |
+
</h2>
|
84 |
+
|
85 |
+
<div id="unlimited_custom_icons" class="tab_content">
|
86 |
+
|
87 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'No More Custom Icon Limits!' , 'wp-svg-icons' ); ?></h2>
|
88 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;text-align:center;"><?php _e( 'In the free version your limited to 10 custom icons. If you need access to more than 10 custom icons, please consider purchasing the pro version to allow for an un-restricted number of icons to be used.' , 'wp-svg-icons' ); ?></p>
|
89 |
+
|
90 |
+
</div>
|
91 |
+
|
92 |
+
<div id="icon_customizer" style="display:none;" class="tab_content">
|
93 |
+
|
94 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></h2>
|
95 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;"><?php _e( 'The pro version comes with an easy to use icon customizer. Easily add additional parameters to your icons, adjust the icon size and color, add additional class names or convert the icon into a link all without writing a single line of code.' , 'wp-svg-icons' ); ?></p>
|
96 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../images/svg-icons-customizer.png'; ?>" title="WP SVG Icon Customizer" style="width:80%;max-width:1200px;display:block;margin:0 auto;">
|
97 |
+
|
98 |
+
</div>
|
99 |
+
|
100 |
+
<div id="icon_containers" style="display:none;" class="tab_content">
|
101 |
+
|
102 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Icon Containers' , 'wp-svg-icons' ); ?></h2>
|
103 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;"><?php _e( "We've also bundled a handful of icon container styles which you can customize using the provided color pickers. These are great for landing pages or when used in text heavy blog posts to emphasize the context of the post." , "wp-svg-icons" ); ?></p>
|
104 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../images/svg-icons-container-customizer.jpg'; ?>" title="WP SVG Icon Container Customizer" style="width:80%;max-width:1200px;display:block;margin:0 auto;">
|
105 |
+
|
106 |
+
</div>
|
107 |
+
|
108 |
+
<div id="css3_animations" style="display:none;" class="tab_content">
|
109 |
+
|
110 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'CSS3 Animations' , 'wp-svg-icons' ); ?></h2>
|
111 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;"><?php _e( 'Add smooth, pre-defined CSS3 animations to your icons easily and quickly. You can add icon animations on page load, on hover, on click or even when the icon comes into view on the page. These are some of the best animations on the web, and provide an extra layer of personalization to your sites.' , 'wp-svg-icons' ); ?></p>
|
112 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../images/animations-example-gif.gif'; ?>" title="WP SVG Icon CSS3 Animations Exmaple" style="width:50%;max-width:1200px;display:block;margin:0 auto;">
|
113 |
+
|
114 |
+
<br />
|
115 |
+
<a class="button-secondary" style="display:block;margin:0 auto;width:150px;" href="https://www.evan-herman.com/wp-svg-icons-pro/examples" title="WP SVG Icons Examples" target="_blank">View More Examples</a>
|
116 |
+
</br />
|
117 |
+
|
118 |
+
</div>
|
119 |
+
|
120 |
+
<div id="menu_icons" style="display:none;" class="tab_content">
|
121 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></h2>
|
122 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
|
123 |
+
<?php _e( 'You can also easily add icons to any of your menus using the provided dropdown. Select icons from the default pack, or select icons from a custom pack that you have uploaded yourself. Everything is done without ever writing any code at all!' , 'wp-svg-icons' ); ?>
|
124 |
+
</p>
|
125 |
+
<div style="text-align:center;">
|
126 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../images/svg-icons-front-end-menu.png'; ?>" title="WP SVG Icons Menu Icons" style="width:80%;max-width:650px;">
|
127 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../images/svg-icons-menu-icons.png'; ?>" title="WP SVG Icons Menu Icons" style="width:35%;max-width:350px;vertical-align:top;margin-top:7%;">
|
128 |
+
</div>
|
129 |
+
</div>
|
130 |
+
|
131 |
+
|
132 |
+
<div id="premium_support" style="display:none;" class="tab_content">
|
133 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></h2>
|
134 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
|
135 |
+
<?php _e( "With the purchase of WP SVG Icons Pro, you'll also receive 1 year of premium support and updates to WP SVG Icons. This will ensure you remain up to date with all of the latest updates, security and bug fixes. You'll also have 24 hour access to a professional WordPress developer. Whatever your issue may be, simply submit a ticket and we'll fix things up for you in no time!", "wp-svg-icons" ); ?>
|
136 |
+
</p>
|
137 |
+
</div>
|
138 |
+
|
139 |
+
<br />
|
140 |
+
|
141 |
+
<br />
|
142 |
+
|
143 |
+
<br />
|
144 |
+
|
145 |
+
<a href="https://www.evan-herman.com/wp-svg-icons-pro/" target="_blank" style="display:block;width:200px;margin:0 auto;">
|
146 |
+
<div class="upgrade-button green center"><i class="wp-svg-box-remove"></i> Go Pro Now!</div>
|
147 |
+
</a>
|
148 |
+
<section id="eh-logos" style="display:block;width:100%;text-align:right;">
|
149 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/evan-herman-mascot.png" alt="Evan Herman Mascot" style="width:300px;margin-top:1em;" >
|
150 |
+
</section>
|
151 |
+
|
152 |
+
</div>
|
|
|
|
admin/partials/wp-svg-icons-views-test.php
CHANGED
@@ -1,146 +1,146 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH') or die("Nice try....");
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Class wp_svg_icons_view
|
8 |
-
* handles the creation of [wp-svg-icons] shortcode
|
9 |
-
* creates a wordpress view representing this shortcode in the editor
|
10 |
-
* delete button on wp view as well makes for easy shortcode managements.
|
11 |
-
*
|
12 |
-
* separate css is in style.content.css - this is loaded in frontend and also backend with add_editor_style
|
13 |
-
*
|
14 |
-
* Author: evan.m.herman@gmail.com
|
15 |
-
* Copyright 2014
|
16 |
-
*/
|
17 |
-
|
18 |
-
class wp_svg_icons_view {
|
19 |
-
|
20 |
-
private static $instance = null;
|
21 |
-
|
22 |
-
public static function get_instance() {
|
23 |
-
if ( ! self::$instance )
|
24 |
-
self::$instance = new self;
|
25 |
-
return self::$instance;
|
26 |
-
}
|
27 |
-
|
28 |
-
public function init(){
|
29 |
-
// comment this 'add_action' out to disable shortcode backend mce view feature
|
30 |
-
add_action( 'admin_init', array( $this, 'init_plugin' ), 20 );
|
31 |
-
}
|
32 |
-
public function init_plugin() {
|
33 |
-
add_action( 'print_media_templates', array( $this, 'print_media_templates' ) );
|
34 |
-
add_action( 'admin_print_footer_scripts', array( $this, 'admin_print_footer_scripts' ), 100 );
|
35 |
-
}
|
36 |
-
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Outputs the view inside the wordpress editor.
|
40 |
-
*/
|
41 |
-
public function print_media_templates() {
|
42 |
-
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
43 |
-
return;
|
44 |
-
?>
|
45 |
-
<script type="text/html" id="tmpl-editor-boutique-banner">
|
46 |
-
<b class="wp-svg-{{ data.icon }}"></b>
|
47 |
-
</script>
|
48 |
-
<?php
|
49 |
-
}
|
50 |
-
|
51 |
-
public function admin_print_footer_scripts() {
|
52 |
-
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
53 |
-
return;
|
54 |
-
?>
|
55 |
-
<script type="text/javascript">
|
56 |
-
(function($){
|
57 |
-
var media = wp.media, shortcode_string = 'wp-svg-icons';
|
58 |
-
wp.mce = wp.mce || {};
|
59 |
-
wp.mce.boutique_banner = {
|
60 |
-
shortcode_data: {},
|
61 |
-
View: {
|
62 |
-
template: media.template( 'editor-boutique-banner' ),
|
63 |
-
postID: $('#post_ID').val(),
|
64 |
-
initialize: function( options ) {
|
65 |
-
this.shortcode = options.shortcode;
|
66 |
-
wp.mce.boutique_banner.shortcode_data = this.shortcode;
|
67 |
-
|
68 |
-
},
|
69 |
-
getHtml: function() {
|
70 |
-
var options = this.shortcode.attrs.named;
|
71 |
-
options['innercontent'] = this.shortcode.content;
|
72 |
-
return this.template(options);
|
73 |
-
}
|
74 |
-
},
|
75 |
-
edit: function( node ) {
|
76 |
-
var data = window.decodeURIComponent( $( node ).attr('data-wpview-text') );
|
77 |
-
console.debug(this);
|
78 |
-
var values = this.shortcode_data.attrs.named;
|
79 |
-
values['innercontent'] = this.shortcode_data.content;
|
80 |
-
console.log(values);
|
81 |
-
|
82 |
-
wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, values);
|
83 |
-
//$( node ).attr( 'data-wpview-text', window.encodeURIComponent( shortcode ) );
|
84 |
-
},
|
85 |
-
// this is called from our tinymce plugin, also can call from our "edit" function above
|
86 |
-
// wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, "bird");
|
87 |
-
popupwindow: function(editor, values, onsubmit_callback){
|
88 |
-
if(typeof onsubmit_callback != 'function'){
|
89 |
-
onsubmit_callback = function( e ) {
|
90 |
-
// Insert content when the window form is submitted (this also replaces during edit, handy!)
|
91 |
-
var s = '[' + shortcode_string;
|
92 |
-
for(var i in e.data){
|
93 |
-
if(e.data.hasOwnProperty(i) && i != 'innercontent'){
|
94 |
-
s += ' ' + i + '="' + e.data[i] + '"';
|
95 |
-
}
|
96 |
-
}
|
97 |
-
s += ']';
|
98 |
-
if(typeof e.data.innercontent != 'undefined'){
|
99 |
-
s += e.data.innercontent;
|
100 |
-
s += '[/' + shortcode_string + ']';
|
101 |
-
}
|
102 |
-
editor.insertContent( s );
|
103 |
-
};
|
104 |
-
}
|
105 |
-
editor.windowManager.open( {
|
106 |
-
title: 'WP SVG Icons',
|
107 |
-
body: [
|
108 |
-
{
|
109 |
-
type: 'textbox',
|
110 |
-
name: 'icon',
|
111 |
-
label: 'icon',
|
112 |
-
value: values['icon']
|
113 |
-
},
|
114 |
-
{
|
115 |
-
type: 'listbox',
|
116 |
-
name: 'wrap',
|
117 |
-
label: 'Element Wrap',
|
118 |
-
values: 'test'
|
119 |
-
},
|
120 |
-
{
|
121 |
-
type: 'textbox',
|
122 |
-
name: 'linkhref',
|
123 |
-
label: 'Button URL',
|
124 |
-
value: values['linkhref']
|
125 |
-
},
|
126 |
-
{
|
127 |
-
type: 'textbox',
|
128 |
-
name: 'innercontent',
|
129 |
-
label: 'Content',
|
130 |
-
value: values['innercontent']
|
131 |
-
}
|
132 |
-
],
|
133 |
-
onsubmit: onsubmit_callback
|
134 |
-
} );
|
135 |
-
}
|
136 |
-
};
|
137 |
-
wp.mce.views.register( shortcode_string, wp.mce.boutique_banner );
|
138 |
-
}(jQuery));
|
139 |
-
</script>
|
140 |
-
|
141 |
-
<?php
|
142 |
-
}
|
143 |
-
|
144 |
-
}
|
145 |
-
|
146 |
-
wp_svg_icons_view::get_instance()->init();
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* If the file is hit directly, abort... */
|
4 |
+
defined('ABSPATH') or die("Nice try....");
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Class wp_svg_icons_view
|
8 |
+
* handles the creation of [wp-svg-icons] shortcode
|
9 |
+
* creates a wordpress view representing this shortcode in the editor
|
10 |
+
* delete button on wp view as well makes for easy shortcode managements.
|
11 |
+
*
|
12 |
+
* separate css is in style.content.css - this is loaded in frontend and also backend with add_editor_style
|
13 |
+
*
|
14 |
+
* Author: evan.m.herman@gmail.com
|
15 |
+
* Copyright 2014
|
16 |
+
*/
|
17 |
+
|
18 |
+
class wp_svg_icons_view {
|
19 |
+
|
20 |
+
private static $instance = null;
|
21 |
+
|
22 |
+
public static function get_instance() {
|
23 |
+
if ( ! self::$instance )
|
24 |
+
self::$instance = new self;
|
25 |
+
return self::$instance;
|
26 |
+
}
|
27 |
+
|
28 |
+
public function init(){
|
29 |
+
// comment this 'add_action' out to disable shortcode backend mce view feature
|
30 |
+
add_action( 'admin_init', array( $this, 'init_plugin' ), 20 );
|
31 |
+
}
|
32 |
+
public function init_plugin() {
|
33 |
+
add_action( 'print_media_templates', array( $this, 'print_media_templates' ) );
|
34 |
+
add_action( 'admin_print_footer_scripts', array( $this, 'admin_print_footer_scripts' ), 100 );
|
35 |
+
}
|
36 |
+
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Outputs the view inside the wordpress editor.
|
40 |
+
*/
|
41 |
+
public function print_media_templates() {
|
42 |
+
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
43 |
+
return;
|
44 |
+
?>
|
45 |
+
<script type="text/html" id="tmpl-editor-boutique-banner">
|
46 |
+
<b class="wp-svg-{{ data.icon }}"></b>
|
47 |
+
</script>
|
48 |
+
<?php
|
49 |
+
}
|
50 |
+
|
51 |
+
public function admin_print_footer_scripts() {
|
52 |
+
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
53 |
+
return;
|
54 |
+
?>
|
55 |
+
<script type="text/javascript">
|
56 |
+
(function($){
|
57 |
+
var media = wp.media, shortcode_string = 'wp-svg-icons';
|
58 |
+
wp.mce = wp.mce || {};
|
59 |
+
wp.mce.boutique_banner = {
|
60 |
+
shortcode_data: {},
|
61 |
+
View: {
|
62 |
+
template: media.template( 'editor-boutique-banner' ),
|
63 |
+
postID: $('#post_ID').val(),
|
64 |
+
initialize: function( options ) {
|
65 |
+
this.shortcode = options.shortcode;
|
66 |
+
wp.mce.boutique_banner.shortcode_data = this.shortcode;
|
67 |
+
|
68 |
+
},
|
69 |
+
getHtml: function() {
|
70 |
+
var options = this.shortcode.attrs.named;
|
71 |
+
options['innercontent'] = this.shortcode.content;
|
72 |
+
return this.template(options);
|
73 |
+
}
|
74 |
+
},
|
75 |
+
edit: function( node ) {
|
76 |
+
var data = window.decodeURIComponent( $( node ).attr('data-wpview-text') );
|
77 |
+
console.debug(this);
|
78 |
+
var values = this.shortcode_data.attrs.named;
|
79 |
+
values['innercontent'] = this.shortcode_data.content;
|
80 |
+
// console.log(values);
|
81 |
+
|
82 |
+
wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, values);
|
83 |
+
//$( node ).attr( 'data-wpview-text', window.encodeURIComponent( shortcode ) );
|
84 |
+
},
|
85 |
+
// this is called from our tinymce plugin, also can call from our "edit" function above
|
86 |
+
// wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, "bird");
|
87 |
+
popupwindow: function(editor, values, onsubmit_callback){
|
88 |
+
if(typeof onsubmit_callback != 'function'){
|
89 |
+
onsubmit_callback = function( e ) {
|
90 |
+
// Insert content when the window form is submitted (this also replaces during edit, handy!)
|
91 |
+
var s = '[' + shortcode_string;
|
92 |
+
for(var i in e.data){
|
93 |
+
if(e.data.hasOwnProperty(i) && i != 'innercontent'){
|
94 |
+
s += ' ' + i + '="' + e.data[i] + '"';
|
95 |
+
}
|
96 |
+
}
|
97 |
+
s += ']';
|
98 |
+
if(typeof e.data.innercontent != 'undefined'){
|
99 |
+
s += e.data.innercontent;
|
100 |
+
s += '[/' + shortcode_string + ']';
|
101 |
+
}
|
102 |
+
editor.insertContent( s );
|
103 |
+
};
|
104 |
+
}
|
105 |
+
editor.windowManager.open( {
|
106 |
+
title: 'WP SVG Icons',
|
107 |
+
body: [
|
108 |
+
{
|
109 |
+
type: 'textbox',
|
110 |
+
name: 'icon',
|
111 |
+
label: 'icon',
|
112 |
+
value: values['icon']
|
113 |
+
},
|
114 |
+
{
|
115 |
+
type: 'listbox',
|
116 |
+
name: 'wrap',
|
117 |
+
label: 'Element Wrap',
|
118 |
+
values: 'test'
|
119 |
+
},
|
120 |
+
{
|
121 |
+
type: 'textbox',
|
122 |
+
name: 'linkhref',
|
123 |
+
label: 'Button URL',
|
124 |
+
value: values['linkhref']
|
125 |
+
},
|
126 |
+
{
|
127 |
+
type: 'textbox',
|
128 |
+
name: 'innercontent',
|
129 |
+
label: 'Content',
|
130 |
+
value: values['innercontent']
|
131 |
+
}
|
132 |
+
],
|
133 |
+
onsubmit: onsubmit_callback
|
134 |
+
} );
|
135 |
+
}
|
136 |
+
};
|
137 |
+
wp.mce.views.register( shortcode_string, wp.mce.boutique_banner );
|
138 |
+
}(jQuery));
|
139 |
+
</script>
|
140 |
+
|
141 |
+
<?php
|
142 |
+
}
|
143 |
+
|
144 |
+
}
|
145 |
+
|
146 |
+
wp_svg_icons_view::get_instance()->init();
|
includes/class-wp-svg-icons-activator.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
defined('ABSPATH') or die("Nice try....");
|
5 |
|
6 |
/**
|
7 |
* Fired during plugin activation.
|
@@ -27,4 +26,4 @@ class WP_SVG_Icons_Activator {
|
|
27 |
|
28 |
}
|
29 |
|
30 |
-
}
|
1 |
<?php
|
2 |
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
4 |
|
5 |
/**
|
6 |
* Fired during plugin activation.
|
26 |
|
27 |
}
|
28 |
|
29 |
+
}
|
includes/class-wp-svg-icons-deactivator.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
|
6 |
/**
|
7 |
* Fired during plugin deactivation.
|
@@ -14,7 +14,7 @@ defined('ABSPATH') or die("Nice try....");
|
|
14 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
15 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
16 |
*/
|
17 |
-
|
18 |
class WP_SVG_Icons_Deactivator {
|
19 |
|
20 |
/**
|
@@ -26,4 +26,4 @@ class WP_SVG_Icons_Deactivator {
|
|
26 |
|
27 |
}
|
28 |
|
29 |
-
}
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
|
6 |
/**
|
7 |
* Fired during plugin deactivation.
|
14 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
15 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
16 |
*/
|
17 |
+
|
18 |
class WP_SVG_Icons_Deactivator {
|
19 |
|
20 |
/**
|
26 |
|
27 |
}
|
28 |
|
29 |
+
}
|
includes/class-wp-svg-icons-i18n.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
|
6 |
/**
|
7 |
* Define the internationalization functionality.
|
@@ -15,7 +15,7 @@ defined('ABSPATH') or die("Nice try....");
|
|
15 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
16 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
17 |
*/
|
18 |
-
|
19 |
class WP_SVG_Icons_i18n {
|
20 |
|
21 |
/**
|
@@ -52,4 +52,4 @@ class WP_SVG_Icons_i18n {
|
|
52 |
$this->domain = $domain;
|
53 |
}
|
54 |
|
55 |
-
}
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
|
6 |
/**
|
7 |
* Define the internationalization functionality.
|
15 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
16 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
17 |
*/
|
18 |
+
|
19 |
class WP_SVG_Icons_i18n {
|
20 |
|
21 |
/**
|
52 |
$this->domain = $domain;
|
53 |
}
|
54 |
|
55 |
+
}
|
includes/class-wp-svg-icons-loader.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
|
6 |
/**
|
7 |
* Register all actions and filters for the plugin.
|
@@ -15,7 +15,7 @@ defined('ABSPATH') or die("Nice try....");
|
|
15 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
16 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
17 |
*/
|
18 |
-
|
19 |
class WP_SVG_Icons_Loader {
|
20 |
|
21 |
/**
|
@@ -121,4 +121,4 @@ class WP_SVG_Icons_Loader {
|
|
121 |
|
122 |
}
|
123 |
|
124 |
-
}
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
|
6 |
/**
|
7 |
* Register all actions and filters for the plugin.
|
15 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
16 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
17 |
*/
|
18 |
+
|
19 |
class WP_SVG_Icons_Loader {
|
20 |
|
21 |
/**
|
121 |
|
122 |
}
|
123 |
|
124 |
+
}
|
includes/class-wp-svg-icons-uninstall.php
CHANGED
@@ -1,67 +1,67 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Fired during plugin uninstall.
|
8 |
-
*
|
9 |
-
* This class defines all code necessary to run during the plugin's uninstall.
|
10 |
-
*
|
11 |
-
* @since 3.1.1
|
12 |
-
* @package svg-vector-icon-plugin
|
13 |
-
* @subpackage svg-vector-icon-plugin/includes
|
14 |
-
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
15 |
-
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
16 |
-
*/
|
17 |
-
|
18 |
-
class WP_SVG_Icons_Uninstall {
|
19 |
-
|
20 |
-
/**
|
21 |
-
* Clean up our plugin options so we leave no orphan settings
|
22 |
-
* in the users database. No one likes useless data floating around.
|
23 |
-
*
|
24 |
-
* @since 3.1.1
|
25 |
-
*/
|
26 |
-
public static function uninstall() {
|
27 |
-
|
28 |
-
$clear_all_data_on_uninstall = get_option( 'wp_svg_icons_clear_all_data_on_uninstall' , '1' );
|
29 |
-
|
30 |
-
// Step #1
|
31 |
-
// clean up our plugin settings
|
32 |
-
delete_option( 'wp_svg_icons_enqueue_defualt_icon_pack' );
|
33 |
-
delete_option( 'wp_svg_icons_defualt_icon_container' );
|
34 |
-
delete_option( 'wp_svg_icons_clear_all_data_on_uninstall' );
|
35 |
-
delete_option( 'wp_svg_icons_review_stop_bugging_me' );
|
36 |
-
delete_option( 'wp_svg_icons_activation_date' );
|
37 |
-
|
38 |
-
// Step #2
|
39 |
-
// check if the user wants to remove the custom icon pack installed
|
40 |
-
// and do so, if set
|
41 |
-
if ( $clear_all_data_on_uninstall == '1' ) {
|
42 |
-
$dest = wp_upload_dir();
|
43 |
-
$dest_path = $dest['path'];
|
44 |
-
$split_path = explode( 'uploads/' , $dest_path );
|
45 |
-
$custom_pack_dir = $split_path[0] . 'uploads/wp-svg-icons/';
|
46 |
-
if ( is_dir( $custom_pack_dir ) ) {
|
47 |
-
WP_SVG_Icons_Uninstall::wp_svg_icons_delete_entire_directory( $custom_pack_dir );
|
48 |
-
}
|
49 |
-
}
|
50 |
-
|
51 |
-
}
|
52 |
-
|
53 |
-
// recursive delete directory
|
54 |
-
public function wp_svg_icons_delete_entire_directory( $dir ) {
|
55 |
-
if ( is_dir( $dir ) ) {
|
56 |
-
$objects = scandir( $dir );
|
57 |
-
foreach ($objects as $object ) {
|
58 |
-
if ( $object != "." && $object != ".." ) {
|
59 |
-
if ( filetype( $dir."/".$object) == "dir" ) WP_SVG_Icons_Uninstall::wp_svg_icons_delete_entire_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
60 |
-
}
|
61 |
-
}
|
62 |
-
reset( $objects );
|
63 |
-
rmdir( $dir );
|
64 |
-
}
|
65 |
-
}
|
66 |
-
|
67 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Fired during plugin uninstall.
|
8 |
+
*
|
9 |
+
* This class defines all code necessary to run during the plugin's uninstall.
|
10 |
+
*
|
11 |
+
* @since 3.1.1
|
12 |
+
* @package svg-vector-icon-plugin
|
13 |
+
* @subpackage svg-vector-icon-plugin/includes
|
14 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
15 |
+
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
16 |
+
*/
|
17 |
+
|
18 |
+
class WP_SVG_Icons_Uninstall {
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Clean up our plugin options so we leave no orphan settings
|
22 |
+
* in the users database. No one likes useless data floating around.
|
23 |
+
*
|
24 |
+
* @since 3.1.1
|
25 |
+
*/
|
26 |
+
public static function uninstall() {
|
27 |
+
|
28 |
+
$clear_all_data_on_uninstall = get_option( 'wp_svg_icons_clear_all_data_on_uninstall' , '1' );
|
29 |
+
|
30 |
+
// Step #1
|
31 |
+
// clean up our plugin settings
|
32 |
+
delete_option( 'wp_svg_icons_enqueue_defualt_icon_pack' );
|
33 |
+
delete_option( 'wp_svg_icons_defualt_icon_container' );
|
34 |
+
delete_option( 'wp_svg_icons_clear_all_data_on_uninstall' );
|
35 |
+
delete_option( 'wp_svg_icons_review_stop_bugging_me' );
|
36 |
+
delete_option( 'wp_svg_icons_activation_date' );
|
37 |
+
|
38 |
+
// Step #2
|
39 |
+
// check if the user wants to remove the custom icon pack installed
|
40 |
+
// and do so, if set
|
41 |
+
if ( $clear_all_data_on_uninstall == '1' ) {
|
42 |
+
$dest = wp_upload_dir();
|
43 |
+
$dest_path = $dest['path'];
|
44 |
+
$split_path = explode( 'uploads/' , $dest_path );
|
45 |
+
$custom_pack_dir = $split_path[0] . 'uploads/wp-svg-icons/';
|
46 |
+
if ( is_dir( $custom_pack_dir ) ) {
|
47 |
+
WP_SVG_Icons_Uninstall::wp_svg_icons_delete_entire_directory( $custom_pack_dir );
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
// recursive delete directory
|
54 |
+
public function wp_svg_icons_delete_entire_directory( $dir ) {
|
55 |
+
if ( is_dir( $dir ) ) {
|
56 |
+
$objects = scandir( $dir );
|
57 |
+
foreach ($objects as $object ) {
|
58 |
+
if ( $object != "." && $object != ".." ) {
|
59 |
+
if ( filetype( $dir."/".$object) == "dir" ) WP_SVG_Icons_Uninstall::wp_svg_icons_delete_entire_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
60 |
+
}
|
61 |
+
}
|
62 |
+
reset( $objects );
|
63 |
+
rmdir( $dir );
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
}
|
includes/class-wp-svg-icons.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
-
defined('ABSPATH')
|
5 |
|
6 |
/**
|
7 |
* The file that defines the core plugin class
|
@@ -12,7 +12,7 @@ defined('ABSPATH') or die("Nice try....");
|
|
12 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
13 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
14 |
*/
|
15 |
-
|
16 |
class WP_SVG_Icons {
|
17 |
|
18 |
/**
|
@@ -199,4 +199,4 @@ class WP_SVG_Icons {
|
|
199 |
return $this->version;
|
200 |
}
|
201 |
|
202 |
-
}
|
1 |
<?php
|
2 |
|
3 |
/* If the file is hit directly, abort... */
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
5 |
|
6 |
/**
|
7 |
* The file that defines the core plugin class
|
12 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
13 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
14 |
*/
|
15 |
+
|
16 |
class WP_SVG_Icons {
|
17 |
|
18 |
/**
|
199 |
return $this->version;
|
200 |
}
|
201 |
|
202 |
+
}
|
license.txt
DELETED
@@ -1,339 +0,0 @@
|
|
1 |
-
GNU GENERAL PUBLIC LICENSE
|
2 |
-
Version 2, June 1991
|
3 |
-
|
4 |
-
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
5 |
-
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6 |
-
Everyone is permitted to copy and distribute verbatim copies
|
7 |
-
of this license document, but changing it is not allowed.
|
8 |
-
|
9 |
-
Preamble
|
10 |
-
|
11 |
-
The licenses for most software are designed to take away your
|
12 |
-
freedom to share and change it. By contrast, the GNU General Public
|
13 |
-
License is intended to guarantee your freedom to share and change free
|
14 |
-
software--to make sure the software is free for all its users. This
|
15 |
-
General Public License applies to most of the Free Software
|
16 |
-
Foundation's software and to any other program whose authors commit to
|
17 |
-
using it. (Some other Free Software Foundation software is covered by
|
18 |
-
the GNU Lesser General Public License instead.) You can apply it to
|
19 |
-
your programs, too.
|
20 |
-
|
21 |
-
When we speak of free software, we are referring to freedom, not
|
22 |
-
price. Our General Public Licenses are designed to make sure that you
|
23 |
-
have the freedom to distribute copies of free software (and charge for
|
24 |
-
this service if you wish), that you receive source code or can get it
|
25 |
-
if you want it, that you can change the software or use pieces of it
|
26 |
-
in new free programs; and that you know you can do these things.
|
27 |
-
|
28 |
-
To protect your rights, we need to make restrictions that forbid
|
29 |
-
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
-
These restrictions translate to certain responsibilities for you if you
|
31 |
-
distribute copies of the software, or if you modify it.
|
32 |
-
|
33 |
-
For example, if you distribute copies of such a program, whether
|
34 |
-
gratis or for a fee, you must give the recipients all the rights that
|
35 |
-
you have. You must make sure that they, too, receive or can get the
|
36 |
-
source code. And you must show them these terms so they know their
|
37 |
-
rights.
|
38 |
-
|
39 |
-
We protect your rights with two steps: (1) copyright the software, and
|
40 |
-
(2) offer you this license which gives you legal permission to copy,
|
41 |
-
distribute and/or modify the software.
|
42 |
-
|
43 |
-
Also, for each author's protection and ours, we want to make certain
|
44 |
-
that everyone understands that there is no warranty for this free
|
45 |
-
software. If the software is modified by someone else and passed on, we
|
46 |
-
want its recipients to know that what they have is not the original, so
|
47 |
-
that any problems introduced by others will not reflect on the original
|
48 |
-
authors' reputations.
|
49 |
-
|
50 |
-
Finally, any free program is threatened constantly by software
|
51 |
-
patents. We wish to avoid the danger that redistributors of a free
|
52 |
-
program will individually obtain patent licenses, in effect making the
|
53 |
-
program proprietary. To prevent this, we have made it clear that any
|
54 |
-
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
-
|
56 |
-
The precise terms and conditions for copying, distribution and
|
57 |
-
modification follow.
|
58 |
-
|
59 |
-
GNU GENERAL PUBLIC LICENSE
|
60 |
-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
-
|
62 |
-
0. This License applies to any program or other work which contains
|
63 |
-
a notice placed by the copyright holder saying it may be distributed
|
64 |
-
under the terms of this General Public License. The "Program", below,
|
65 |
-
refers to any such program or work, and a "work based on the Program"
|
66 |
-
means either the Program or any derivative work under copyright law:
|
67 |
-
that is to say, a work containing the Program or a portion of it,
|
68 |
-
either verbatim or with modifications and/or translated into another
|
69 |
-
language. (Hereinafter, translation is included without limitation in
|
70 |
-
the term "modification".) Each licensee is addressed as "you".
|
71 |
-
|
72 |
-
Activities other than copying, distribution and modification are not
|
73 |
-
covered by this License; they are outside its scope. The act of
|
74 |
-
running the Program is not restricted, and the output from the Program
|
75 |
-
is covered only if its contents constitute a work based on the
|
76 |
-
Program (independent of having been made by running the Program).
|
77 |
-
Whether that is true depends on what the Program does.
|
78 |
-
|
79 |
-
1. You may copy and distribute verbatim copies of the Program's
|
80 |
-
source code as you receive it, in any medium, provided that you
|
81 |
-
conspicuously and appropriately publish on each copy an appropriate
|
82 |
-
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
-
notices that refer to this License and to the absence of any warranty;
|
84 |
-
and give any other recipients of the Program a copy of this License
|
85 |
-
along with the Program.
|
86 |
-
|
87 |
-
You may charge a fee for the physical act of transferring a copy, and
|
88 |
-
you may at your option offer warranty protection in exchange for a fee.
|
89 |
-
|
90 |
-
2. You may modify your copy or copies of the Program or any portion
|
91 |
-
of it, thus forming a work based on the Program, and copy and
|
92 |
-
distribute such modifications or work under the terms of Section 1
|
93 |
-
above, provided that you also meet all of these conditions:
|
94 |
-
|
95 |
-
a) You must cause the modified files to carry prominent notices
|
96 |
-
stating that you changed the files and the date of any change.
|
97 |
-
|
98 |
-
b) You must cause any work that you distribute or publish, that in
|
99 |
-
whole or in part contains or is derived from the Program or any
|
100 |
-
part thereof, to be licensed as a whole at no charge to all third
|
101 |
-
parties under the terms of this License.
|
102 |
-
|
103 |
-
c) If the modified program normally reads commands interactively
|
104 |
-
when run, you must cause it, when started running for such
|
105 |
-
interactive use in the most ordinary way, to print or display an
|
106 |
-
announcement including an appropriate copyright notice and a
|
107 |
-
notice that there is no warranty (or else, saying that you provide
|
108 |
-
a warranty) and that users may redistribute the program under
|
109 |
-
these conditions, and telling the user how to view a copy of this
|
110 |
-
License. (Exception: if the Program itself is interactive but
|
111 |
-
does not normally print such an announcement, your work based on
|
112 |
-
the Program is not required to print an announcement.)
|
113 |
-
|
114 |
-
These requirements apply to the modified work as a whole. If
|
115 |
-
identifiable sections of that work are not derived from the Program,
|
116 |
-
and can be reasonably considered independent and separate works in
|
117 |
-
themselves, then this License, and its terms, do not apply to those
|
118 |
-
sections when you distribute them as separate works. But when you
|
119 |
-
distribute the same sections as part of a whole which is a work based
|
120 |
-
on the Program, the distribution of the whole must be on the terms of
|
121 |
-
this License, whose permissions for other licensees extend to the
|
122 |
-
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
-
|
124 |
-
Thus, it is not the intent of this section to claim rights or contest
|
125 |
-
your rights to work written entirely by you; rather, the intent is to
|
126 |
-
exercise the right to control the distribution of derivative or
|
127 |
-
collective works based on the Program.
|
128 |
-
|
129 |
-
In addition, mere aggregation of another work not based on the Program
|
130 |
-
with the Program (or with a work based on the Program) on a volume of
|
131 |
-
a storage or distribution medium does not bring the other work under
|
132 |
-
the scope of this License.
|
133 |
-
|
134 |
-
3. You may copy and distribute the Program (or a work based on it,
|
135 |
-
under Section 2) in object code or executable form under the terms of
|
136 |
-
Sections 1 and 2 above provided that you also do one of the following:
|
137 |
-
|
138 |
-
a) Accompany it with the complete corresponding machine-readable
|
139 |
-
source code, which must be distributed under the terms of Sections
|
140 |
-
1 and 2 above on a medium customarily used for software interchange; or,
|
141 |
-
|
142 |
-
b) Accompany it with a written offer, valid for at least three
|
143 |
-
years, to give any third party, for a charge no more than your
|
144 |
-
cost of physically performing source distribution, a complete
|
145 |
-
machine-readable copy of the corresponding source code, to be
|
146 |
-
distributed under the terms of Sections 1 and 2 above on a medium
|
147 |
-
customarily used for software interchange; or,
|
148 |
-
|
149 |
-
c) Accompany it with the information you received as to the offer
|
150 |
-
to distribute corresponding source code. (This alternative is
|
151 |
-
allowed only for noncommercial distribution and only if you
|
152 |
-
received the program in object code or executable form with such
|
153 |
-
an offer, in accord with Subsection b above.)
|
154 |
-
|
155 |
-
The source code for a work means the preferred form of the work for
|
156 |
-
making modifications to it. For an executable work, complete source
|
157 |
-
code means all the source code for all modules it contains, plus any
|
158 |
-
associated interface definition files, plus the scripts used to
|
159 |
-
control compilation and installation of the executable. However, as a
|
160 |
-
special exception, the source code distributed need not include
|
161 |
-
anything that is normally distributed (in either source or binary
|
162 |
-
form) with the major components (compiler, kernel, and so on) of the
|
163 |
-
operating system on which the executable runs, unless that component
|
164 |
-
itself accompanies the executable.
|
165 |
-
|
166 |
-
If distribution of executable or object code is made by offering
|
167 |
-
access to copy from a designated place, then offering equivalent
|
168 |
-
access to copy the source code from the same place counts as
|
169 |
-
distribution of the source code, even though third parties are not
|
170 |
-
compelled to copy the source along with the object code.
|
171 |
-
|
172 |
-
4. You may not copy, modify, sublicense, or distribute the Program
|
173 |
-
except as expressly provided under this License. Any attempt
|
174 |
-
otherwise to copy, modify, sublicense or distribute the Program is
|
175 |
-
void, and will automatically terminate your rights under this License.
|
176 |
-
However, parties who have received copies, or rights, from you under
|
177 |
-
this License will not have their licenses terminated so long as such
|
178 |
-
parties remain in full compliance.
|
179 |
-
|
180 |
-
5. You are not required to accept this License, since you have not
|
181 |
-
signed it. However, nothing else grants you permission to modify or
|
182 |
-
distribute the Program or its derivative works. These actions are
|
183 |
-
prohibited by law if you do not accept this License. Therefore, by
|
184 |
-
modifying or distributing the Program (or any work based on the
|
185 |
-
Program), you indicate your acceptance of this License to do so, and
|
186 |
-
all its terms and conditions for copying, distributing or modifying
|
187 |
-
the Program or works based on it.
|
188 |
-
|
189 |
-
6. Each time you redistribute the Program (or any work based on the
|
190 |
-
Program), the recipient automatically receives a license from the
|
191 |
-
original licensor to copy, distribute or modify the Program subject to
|
192 |
-
these terms and conditions. You may not impose any further
|
193 |
-
restrictions on the recipients' exercise of the rights granted herein.
|
194 |
-
You are not responsible for enforcing compliance by third parties to
|
195 |
-
this License.
|
196 |
-
|
197 |
-
7. If, as a consequence of a court judgment or allegation of patent
|
198 |
-
infringement or for any other reason (not limited to patent issues),
|
199 |
-
conditions are imposed on you (whether by court order, agreement or
|
200 |
-
otherwise) that contradict the conditions of this License, they do not
|
201 |
-
excuse you from the conditions of this License. If you cannot
|
202 |
-
distribute so as to satisfy simultaneously your obligations under this
|
203 |
-
License and any other pertinent obligations, then as a consequence you
|
204 |
-
may not distribute the Program at all. For example, if a patent
|
205 |
-
license would not permit royalty-free redistribution of the Program by
|
206 |
-
all those who receive copies directly or indirectly through you, then
|
207 |
-
the only way you could satisfy both it and this License would be to
|
208 |
-
refrain entirely from distribution of the Program.
|
209 |
-
|
210 |
-
If any portion of this section is held invalid or unenforceable under
|
211 |
-
any particular circumstance, the balance of the section is intended to
|
212 |
-
apply and the section as a whole is intended to apply in other
|
213 |
-
circumstances.
|
214 |
-
|
215 |
-
It is not the purpose of this section to induce you to infringe any
|
216 |
-
patents or other property right claims or to contest validity of any
|
217 |
-
such claims; this section has the sole purpose of protecting the
|
218 |
-
integrity of the free software distribution system, which is
|
219 |
-
implemented by public license practices. Many people have made
|
220 |
-
generous contributions to the wide range of software distributed
|
221 |
-
through that system in reliance on consistent application of that
|
222 |
-
system; it is up to the author/donor to decide if he or she is willing
|
223 |
-
to distribute software through any other system and a licensee cannot
|
224 |
-
impose that choice.
|
225 |
-
|
226 |
-
This section is intended to make thoroughly clear what is believed to
|
227 |
-
be a consequence of the rest of this License.
|
228 |
-
|
229 |
-
8. If the distribution and/or use of the Program is restricted in
|
230 |
-
certain countries either by patents or by copyrighted interfaces, the
|
231 |
-
original copyright holder who places the Program under this License
|
232 |
-
may add an explicit geographical distribution limitation excluding
|
233 |
-
those countries, so that distribution is permitted only in or among
|
234 |
-
countries not thus excluded. In such case, this License incorporates
|
235 |
-
the limitation as if written in the body of this License.
|
236 |
-
|
237 |
-
9. The Free Software Foundation may publish revised and/or new versions
|
238 |
-
of the General Public License from time to time. Such new versions will
|
239 |
-
be similar in spirit to the present version, but may differ in detail to
|
240 |
-
address new problems or concerns.
|
241 |
-
|
242 |
-
Each version is given a distinguishing version number. If the Program
|
243 |
-
specifies a version number of this License which applies to it and "any
|
244 |
-
later version", you have the option of following the terms and conditions
|
245 |
-
either of that version or of any later version published by the Free
|
246 |
-
Software Foundation. If the Program does not specify a version number of
|
247 |
-
this License, you may choose any version ever published by the Free Software
|
248 |
-
Foundation.
|
249 |
-
|
250 |
-
10. If you wish to incorporate parts of the Program into other free
|
251 |
-
programs whose distribution conditions are different, write to the author
|
252 |
-
to ask for permission. For software which is copyrighted by the Free
|
253 |
-
Software Foundation, write to the Free Software Foundation; we sometimes
|
254 |
-
make exceptions for this. Our decision will be guided by the two goals
|
255 |
-
of preserving the free status of all derivatives of our free software and
|
256 |
-
of promoting the sharing and reuse of software generally.
|
257 |
-
|
258 |
-
NO WARRANTY
|
259 |
-
|
260 |
-
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261 |
-
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
262 |
-
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
263 |
-
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
264 |
-
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
265 |
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
266 |
-
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
267 |
-
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
268 |
-
REPAIR OR CORRECTION.
|
269 |
-
|
270 |
-
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
271 |
-
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
272 |
-
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
273 |
-
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
274 |
-
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
275 |
-
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
276 |
-
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
277 |
-
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278 |
-
POSSIBILITY OF SUCH DAMAGES.
|
279 |
-
|
280 |
-
END OF TERMS AND CONDITIONS
|
281 |
-
|
282 |
-
How to Apply These Terms to Your New Programs
|
283 |
-
|
284 |
-
If you develop a new program, and you want it to be of the greatest
|
285 |
-
possible use to the public, the best way to achieve this is to make it
|
286 |
-
free software which everyone can redistribute and change under these terms.
|
287 |
-
|
288 |
-
To do so, attach the following notices to the program. It is safest
|
289 |
-
to attach them to the start of each source file to most effectively
|
290 |
-
convey the exclusion of warranty; and each file should have at least
|
291 |
-
the "copyright" line and a pointer to where the full notice is found.
|
292 |
-
|
293 |
-
<one line to give the program's name and a brief idea of what it does.>
|
294 |
-
Copyright (C) <year> <name of author>
|
295 |
-
|
296 |
-
This program is free software; you can redistribute it and/or modify
|
297 |
-
it under the terms of the GNU General Public License as published by
|
298 |
-
the Free Software Foundation; either version 2 of the License, or
|
299 |
-
(at your option) any later version.
|
300 |
-
|
301 |
-
This program is distributed in the hope that it will be useful,
|
302 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
303 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
304 |
-
GNU General Public License for more details.
|
305 |
-
|
306 |
-
You should have received a copy of the GNU General Public License along
|
307 |
-
with this program; if not, write to the Free Software Foundation, Inc.,
|
308 |
-
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
309 |
-
|
310 |
-
Also add information on how to contact you by electronic and paper mail.
|
311 |
-
|
312 |
-
If the program is interactive, make it output a short notice like this
|
313 |
-
when it starts in an interactive mode:
|
314 |
-
|
315 |
-
Gnomovision version 69, Copyright (C) year name of author
|
316 |
-
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
317 |
-
This is free software, and you are welcome to redistribute it
|
318 |
-
under certain conditions; type `show c' for details.
|
319 |
-
|
320 |
-
The hypothetical commands `show w' and `show c' should show the appropriate
|
321 |
-
parts of the General Public License. Of course, the commands you use may
|
322 |
-
be called something other than `show w' and `show c'; they could even be
|
323 |
-
mouse-clicks or menu items--whatever suits your program.
|
324 |
-
|
325 |
-
You should also get your employer (if you work as a programmer) or your
|
326 |
-
school, if any, to sign a "copyright disclaimer" for the program, if
|
327 |
-
necessary. Here is a sample; alter the names:
|
328 |
-
|
329 |
-
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
330 |
-
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
331 |
-
|
332 |
-
<signature of Ty Coon>, 1 April 1989
|
333 |
-
Ty Coon, President of Vice
|
334 |
-
|
335 |
-
This General Public License does not permit incorporating your program into
|
336 |
-
proprietary programs. If your program is a subroutine library, you may
|
337 |
-
consider it more useful to permit linking proprietary applications with the
|
338 |
-
library. If this is what you want to do, use the GNU Lesser General
|
339 |
-
Public License instead of this License.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/class-wp-svg-icons-public.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
defined('ABSPATH') or die("Nice try....");
|
5 |
|
6 |
/**
|
7 |
* The public-facing functionality of the plugin.
|
@@ -11,7 +10,7 @@ defined('ABSPATH') or die("Nice try....");
|
|
11 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
12 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
13 |
*/
|
14 |
-
|
15 |
class WP_SVG_Icons_Public {
|
16 |
|
17 |
/**
|
@@ -40,14 +39,14 @@ class WP_SVG_Icons_Public {
|
|
40 |
* @var string $version The version of this plugin.
|
41 |
*/
|
42 |
public function __construct( $plugin_name, $version ) {
|
43 |
-
|
44 |
$this->plugin_name = $plugin_name;
|
45 |
$this->version = $version;
|
46 |
-
|
47 |
// allow the icon shortcode to be used in widgets
|
48 |
// so users don't need to add this themselves
|
49 |
add_filter('widget_text', 'do_shortcode');
|
50 |
-
|
51 |
}
|
52 |
|
53 |
/**
|
@@ -56,7 +55,7 @@ class WP_SVG_Icons_Public {
|
|
56 |
* @since 3.0.0
|
57 |
*/
|
58 |
public function enqueue_styles() {
|
59 |
-
|
60 |
// if the user has opted to enqueue the default icon pack
|
61 |
// load it up on the front end
|
62 |
if ( get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' ) == '1' ) {
|
@@ -65,9 +64,9 @@ class WP_SVG_Icons_Public {
|
|
65 |
}
|
66 |
// Enqueue custom styles if the user has uploaded a custom pack
|
67 |
add_action( 'wp_head' , array( &$this , 'enqueueCustomIconStyles' ) );
|
68 |
-
|
69 |
}
|
70 |
-
|
71 |
/**
|
72 |
* Register our scripts for the public-facing side of the site.
|
73 |
*
|
@@ -76,26 +75,26 @@ class WP_SVG_Icons_Public {
|
|
76 |
public function enqueue_scripts() {
|
77 |
|
78 |
}
|
79 |
-
|
80 |
/*
|
81 |
* Enqueue our custom styles if the user has uploaded a custom pack
|
82 |
* @since 3.0.0
|
83 |
*/
|
84 |
public function enqueueCustomIconStyles() {
|
85 |
-
|
86 |
// enqueue our custom icon pack styles if they exist
|
87 |
$dest = wp_upload_dir();
|
88 |
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
89 |
$path = $dest['basedir'] . $upload['subdir'];
|
90 |
-
$customPackStyles = '/style.css';
|
91 |
-
|
92 |
// Check if there is a custom pack style file
|
93 |
// if there is enqueue it
|
94 |
if ( file_exists( $path . $customPackStyles ) ) {
|
95 |
wp_register_style( 'wp_svg_custom_pack_style' , '/wp-content/uploads/wp-svg-icons/custom-pack' . $customPackStyles );
|
96 |
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
97 |
}
|
98 |
-
|
99 |
}
|
100 |
|
101 |
|
@@ -105,4 +104,4 @@ class WP_SVG_Icons_Public {
|
|
105 |
* Include our shortcode [wp-svg-icons icon="#"]
|
106 |
* @since 3.0.0
|
107 |
*/
|
108 |
-
include_once( plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/wp-svg-icons-shortcodes.php' );
|
1 |
<?php
|
2 |
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
4 |
|
5 |
/**
|
6 |
* The public-facing functionality of the plugin.
|
10 |
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
11 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
12 |
*/
|
13 |
+
|
14 |
class WP_SVG_Icons_Public {
|
15 |
|
16 |
/**
|
39 |
* @var string $version The version of this plugin.
|
40 |
*/
|
41 |
public function __construct( $plugin_name, $version ) {
|
42 |
+
|
43 |
$this->plugin_name = $plugin_name;
|
44 |
$this->version = $version;
|
45 |
+
|
46 |
// allow the icon shortcode to be used in widgets
|
47 |
// so users don't need to add this themselves
|
48 |
add_filter('widget_text', 'do_shortcode');
|
49 |
+
|
50 |
}
|
51 |
|
52 |
/**
|
55 |
* @since 3.0.0
|
56 |
*/
|
57 |
public function enqueue_styles() {
|
58 |
+
|
59 |
// if the user has opted to enqueue the default icon pack
|
60 |
// load it up on the front end
|
61 |
if ( get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' ) == '1' ) {
|
64 |
}
|
65 |
// Enqueue custom styles if the user has uploaded a custom pack
|
66 |
add_action( 'wp_head' , array( &$this , 'enqueueCustomIconStyles' ) );
|
67 |
+
|
68 |
}
|
69 |
+
|
70 |
/**
|
71 |
* Register our scripts for the public-facing side of the site.
|
72 |
*
|
75 |
public function enqueue_scripts() {
|
76 |
|
77 |
}
|
78 |
+
|
79 |
/*
|
80 |
* Enqueue our custom styles if the user has uploaded a custom pack
|
81 |
* @since 3.0.0
|
82 |
*/
|
83 |
public function enqueueCustomIconStyles() {
|
84 |
+
|
85 |
// enqueue our custom icon pack styles if they exist
|
86 |
$dest = wp_upload_dir();
|
87 |
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
88 |
$path = $dest['basedir'] . $upload['subdir'];
|
89 |
+
$customPackStyles = '/style.css';
|
90 |
+
|
91 |
// Check if there is a custom pack style file
|
92 |
// if there is enqueue it
|
93 |
if ( file_exists( $path . $customPackStyles ) ) {
|
94 |
wp_register_style( 'wp_svg_custom_pack_style' , '/wp-content/uploads/wp-svg-icons/custom-pack' . $customPackStyles );
|
95 |
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
96 |
}
|
97 |
+
|
98 |
}
|
99 |
|
100 |
|
104 |
* Include our shortcode [wp-svg-icons icon="#"]
|
105 |
* @since 3.0.0
|
106 |
*/
|
107 |
+
include_once( plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/wp-svg-icons-shortcodes.php' );
|
public/partials/wp-svg-icons-shortcodes.php
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
defined('ABSPATH') or die("Nice try....");
|
5 |
|
6 |
/**
|
7 |
* Function to process our shortcode and render our WP SVG Icon
|
8 |
-
*
|
9 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
10 |
* @since 3.0.0
|
11 |
*
|
@@ -37,27 +36,27 @@ function generate_wp_svg_icon( $atts ) {
|
|
37 |
return __( 'Whoops! It looks like you forgot to specify an icon.' , 'wp-svg-icons' );
|
38 |
}
|
39 |
}
|
40 |
-
|
41 |
// if the user forgot to set a wrap
|
42 |
if( !isset( $wrap ) || empty( $wrap ) ) {
|
43 |
-
return __( 'Whoops! It looks like you forgot to specify your html tag.' , 'wp-svg-icons' );
|
44 |
}
|
45 |
-
|
46 |
// if the user has set extra classes for the element
|
47 |
if( !empty( $class ) ) {
|
48 |
$classes = ' ' . esc_attr( $class );
|
49 |
}
|
50 |
-
|
51 |
// if the user has set a custom icon
|
52 |
if( !empty( $custom_icon ) ) { // display a custom icon
|
53 |
$classes = ' class="wp-svg-custom-' . trim( esc_attr( $custom_icon . ' ' . $custom_icon . ' ' . $class ) ) . '"';
|
54 |
} else { // display our default icon
|
55 |
$classes = ' class="wp-svg-' . trim( esc_attr( $icon . ' ' . $icon . ' ' . $class ) ) . '"';
|
56 |
}
|
57 |
-
|
58 |
// create an array to populate with some styles
|
59 |
$styles_array = array();
|
60 |
-
|
61 |
// if the user has a set a custom icon size, set up our variable
|
62 |
if( !empty( $size ) ) {
|
63 |
$icon_size = 'font-size:' . esc_attr( $size ) . ';';
|
@@ -65,7 +64,7 @@ function generate_wp_svg_icon( $atts ) {
|
|
65 |
} else {
|
66 |
$icon_size = '';
|
67 |
}
|
68 |
-
|
69 |
// if the user has a set a custom icon color, set up our variable
|
70 |
if( !empty( $color ) ) {
|
71 |
$icon_color = 'color:' . esc_attr( $color ) . ';';
|
@@ -73,7 +72,7 @@ function generate_wp_svg_icon( $atts ) {
|
|
73 |
} else {
|
74 |
$icon_color = '';
|
75 |
}
|
76 |
-
|
77 |
// build up an array of styles,
|
78 |
// to pass to our element
|
79 |
if( !empty( $styles_array ) ) {
|
@@ -81,10 +80,10 @@ function generate_wp_svg_icon( $atts ) {
|
|
81 |
} else {
|
82 |
$styles = '';
|
83 |
}
|
84 |
-
|
85 |
-
|
86 |
// check if this icon should be set as a link
|
87 |
-
if( !empty( $link ) ) {
|
88 |
// wrap our element in an anchor tag, for the link
|
89 |
// don't forget to esc_url
|
90 |
if( $new_tab == '1' ) {
|
@@ -96,10 +95,10 @@ function generate_wp_svg_icon( $atts ) {
|
|
96 |
// return the default icon
|
97 |
return '<' . esc_attr( $wrap ) . $classes . $styles . '></' . esc_attr( $wrap ) . '>';
|
98 |
}
|
99 |
-
|
100 |
}
|
101 |
|
102 |
// hook in and add our custom shortcode
|
103 |
add_shortcode( 'wp-svg-icons', 'generate_wp_svg_icon' );
|
104 |
|
105 |
-
?>
|
1 |
<?php
|
2 |
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
4 |
|
5 |
/**
|
6 |
* Function to process our shortcode and render our WP SVG Icon
|
7 |
+
*
|
8 |
* @link https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
9 |
* @since 3.0.0
|
10 |
*
|
36 |
return __( 'Whoops! It looks like you forgot to specify an icon.' , 'wp-svg-icons' );
|
37 |
}
|
38 |
}
|
39 |
+
|
40 |
// if the user forgot to set a wrap
|
41 |
if( !isset( $wrap ) || empty( $wrap ) ) {
|
42 |
+
return __( 'Whoops! It looks like you forgot to specify your html tag.' , 'wp-svg-icons' );
|
43 |
}
|
44 |
+
|
45 |
// if the user has set extra classes for the element
|
46 |
if( !empty( $class ) ) {
|
47 |
$classes = ' ' . esc_attr( $class );
|
48 |
}
|
49 |
+
|
50 |
// if the user has set a custom icon
|
51 |
if( !empty( $custom_icon ) ) { // display a custom icon
|
52 |
$classes = ' class="wp-svg-custom-' . trim( esc_attr( $custom_icon . ' ' . $custom_icon . ' ' . $class ) ) . '"';
|
53 |
} else { // display our default icon
|
54 |
$classes = ' class="wp-svg-' . trim( esc_attr( $icon . ' ' . $icon . ' ' . $class ) ) . '"';
|
55 |
}
|
56 |
+
|
57 |
// create an array to populate with some styles
|
58 |
$styles_array = array();
|
59 |
+
|
60 |
// if the user has a set a custom icon size, set up our variable
|
61 |
if( !empty( $size ) ) {
|
62 |
$icon_size = 'font-size:' . esc_attr( $size ) . ';';
|
64 |
} else {
|
65 |
$icon_size = '';
|
66 |
}
|
67 |
+
|
68 |
// if the user has a set a custom icon color, set up our variable
|
69 |
if( !empty( $color ) ) {
|
70 |
$icon_color = 'color:' . esc_attr( $color ) . ';';
|
72 |
} else {
|
73 |
$icon_color = '';
|
74 |
}
|
75 |
+
|
76 |
// build up an array of styles,
|
77 |
// to pass to our element
|
78 |
if( !empty( $styles_array ) ) {
|
80 |
} else {
|
81 |
$styles = '';
|
82 |
}
|
83 |
+
|
84 |
+
|
85 |
// check if this icon should be set as a link
|
86 |
+
if( !empty( $link ) ) {
|
87 |
// wrap our element in an anchor tag, for the link
|
88 |
// don't forget to esc_url
|
89 |
if( $new_tab == '1' ) {
|
95 |
// return the default icon
|
96 |
return '<' . esc_attr( $wrap ) . $classes . $styles . '></' . esc_attr( $wrap ) . '>';
|
97 |
}
|
98 |
+
|
99 |
}
|
100 |
|
101 |
// hook in and add our custom shortcode
|
102 |
add_shortcode( 'wp-svg-icons', 'generate_wp_svg_icon' );
|
103 |
|
104 |
+
?>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WP SVG Icons ===
|
2 |
Contributors: eherman24
|
3 |
Donate link: https://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
|
4 |
-
Tags:
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -143,6 +143,13 @@ If you buy the pro version you will also receive support and updates for one yea
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
= 3.1.8.4 - March 10th, 2015 =
|
147 |
* Fixed issue with icons not being selectable.
|
148 |
* Adjusted the limit check for the custom icons.
|
@@ -251,109 +258,10 @@ If you buy the pro version you will also receive support and updates for one yea
|
|
251 |
|
252 |
== Upgrade Notice ==
|
253 |
|
254 |
-
= 3.
|
255 |
-
*
|
256 |
-
*
|
257 |
-
|
258 |
-
= 3.1.8.3 - September 17th, 2015 =
|
259 |
-
* Tweaks to latest update - removed 'Nice Try...' error message
|
260 |
-
|
261 |
-
= 3.1.8.2 - September 14th, 2015 =
|
262 |
-
* Important Security Updates
|
263 |
-
|
264 |
-
= 3.1.8.1 - July 21st, 2015 =
|
265 |
-
* Update link to the pro/upgrade site
|
266 |
-
|
267 |
-
= 3.1.8 - May 5th, 2015 =
|
268 |
-
* Hide 10 icon notice for users not using 10 or more icons
|
269 |
-
* Update tested to 4.2.1
|
270 |
-
* Repair custom icon pack upload issue
|
271 |
-
* Add multi-site error checking
|
272 |
-
|
273 |
-
= 3.1.7 - April 23rd, 2015 =
|
274 |
-
* Ensure WordPress v4.2 compatibility
|
275 |
-
|
276 |
-
= 3.1.6 - April 9th, 2015 =
|
277 |
-
* Free version is now limited to 10 custom icons. Pro version allows for unlimited number of icons. ( Any sites using more than 10 icons prior to this update will continue to work )
|
278 |
-
|
279 |
-
= 3.1.5 - March 26th, 2015 =
|
280 |
-
* Fixed minor CSS issue. Some themes were overriding the font family attribute on our icons, so we've added an !important tag to our styles.
|
281 |
-
|
282 |
-
= 3.1.4 - March 21st, 2015 =
|
283 |
-
* Fixed minor issue where dismiss was causing https errors for some users.
|
284 |
-
* Updated Go Pro url to the new site
|
285 |
-
* Updated Upgrade Section with new tabs , info and links
|
286 |
-
|
287 |
-
= 3.1.3 - March 13th, 2015 =
|
288 |
-
* Fixed issue where custom icons did not render properly due to incorrect classes
|
289 |
-
|
290 |
-
= 3.1.2 - March 12th, 2015 =
|
291 |
-
* Fixed incorrect calls to delete_option on plugin uninstall
|
292 |
-
|
293 |
-
= 3.1.1 - March 5th, 2015 =
|
294 |
-
* Fixed bug where clicking custom icon didn't load it into the preview container
|
295 |
-
* Added new setting to delete custom icon pack on plugin uninstall
|
296 |
-
* Re-wrote uninstall function to remove all plugin created options
|
297 |
-
* Added 2 week upgrade/review notification
|
298 |
-
|
299 |
-
= 3.1 - March 3rd, 2015 =
|
300 |
-
* Fix link styles overriding WordPress defaults
|
301 |
-
* Minified default icon styles, added appropriate element classes and enqueued across dashboard
|
302 |
-
|
303 |
-
= 3.0 - February 27th, 2015 =
|
304 |
-
* Re-wrote the entire plugin from the ground up.
|
305 |
-
* Built in shortcode support which ultimately prevents code from being stripped when toggling between html/visual tabs
|
306 |
-
* Added all new shortcode parameters to make altering icons that much easier
|
307 |
-
* Began to finalize the pro version with an icon customizer, icon selector from the menu screen and more.
|
308 |
-
* Began to update example/demo page
|
309 |
-
|
310 |
-
= 2.3.3 - November 13th, 2014 =
|
311 |
-
* Added some error checks for failed upload attempts
|
312 |
-
|
313 |
-
= 2.3.2 =
|
314 |
-
* Resolved two PHP warnings
|
315 |
-
|
316 |
-
= 2.3.1 =
|
317 |
-
* Resolved the 'Warning: Cannot modify header information' error thrown
|
318 |
-
|
319 |
-
= 2.3 =
|
320 |
-
* Fixed some URL structures to allow plugin to be used on localhost
|
321 |
-
* Updating some core functions
|
322 |
-
* Added new styles to dashboard icons
|
323 |
-
* Fixed hardcoded date in upload directory substring replacement, which caused issues when trying to upload or delete icon packs after January 2014 - released February 2nd, 2014
|
324 |
-
|
325 |
-
= 2.2.1 =
|
326 |
-
* Remove the default icon size which was overriding the users icon size - January 17th, 2014
|
327 |
-
|
328 |
-
= 2.2 =
|
329 |
-
* Remove $hook parameter that was conditionally loading styles on admin end - prevented users from using icons in the dashboard
|
330 |
-
|
331 |
-
= 2.0 =
|
332 |
-
* Added <a href="http://www.icomoon.io">Icomoon</a> icon pack importer
|
333 |
-
* Fixed what dashboard pages styles/scripts get enqueued
|
334 |
-
* Adjusted styles to maintain consistency - January 15th, 2014
|
335 |
-
|
336 |
-
= 1.3.2 =
|
337 |
-
* Added pre-defined classes for easy icon styling - October 29th, 2013
|
338 |
-
* Check <a href="https://www.evan-herman.com/wp-svg-icons-pro/examples"> the demo page </a> for more information.
|
339 |
-
|
340 |
-
= 1.3.1 =
|
341 |
-
* Fixed inconsistency with new rounded Linked in icon - October 23rd, 2013
|
342 |
-
|
343 |
-
= 1.3 =
|
344 |
-
* Added a new expansion section
|
345 |
-
* Added 1 new rounded linked in icon - October 19th, 2013
|
346 |
-
|
347 |
-
= 1.2 =
|
348 |
-
* Replaced icon container holder from a <div> to a <span> - fixes line breaks when inserting icons into content - September 20th, 2013
|
349 |
-
|
350 |
-
= 1.1 =
|
351 |
-
* Made it easier to select icons by making the entire div selectable
|
352 |
-
* Added icon highlighting after selection
|
353 |
-
* Added smooth scroll back to top - August 2nd, 2013
|
354 |
-
|
355 |
-
= 1.0 =
|
356 |
-
* Original release - July 20th, 2013
|
357 |
|
358 |
== Usage Instructions ==
|
359 |
|
1 |
=== WP SVG Icons ===
|
2 |
Contributors: eherman24
|
3 |
Donate link: https://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
|
4 |
+
Tags: font icon, responsive, svg, font awesome, icons, bootstrap, navicons, icomoon, custom, FontAwesome, icon font, glyph
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 3.2.0
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= 3.2.0 - January 13th, 2017 =
|
147 |
+
* Refactored sections of the plugin.
|
148 |
+
* Refactored .js file.
|
149 |
+
* Re-styles custom icons modal (to better match default icon styles)
|
150 |
+
* Cleared a few warnings on custom pack upload page.
|
151 |
+
* Prepping for re-write.
|
152 |
+
|
153 |
= 3.1.8.4 - March 10th, 2015 =
|
154 |
* Fixed issue with icons not being selectable.
|
155 |
* Adjusted the limit check for the custom icons.
|
258 |
|
259 |
== Upgrade Notice ==
|
260 |
|
261 |
+
= 3.2.0 - January 13th, 2017 =
|
262 |
+
* Refactored sections of the plugin.
|
263 |
+
* Cleared a few warnings on custom pack upload page.
|
264 |
+
* Prepping for re-write.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
== Usage Instructions ==
|
267 |
|
wp-svg-icons.php
CHANGED
@@ -7,8 +7,8 @@
|
|
7 |
* @wordpress-plugin
|
8 |
* Plugin Name: WP SVG Icons
|
9 |
* Plugin URI: https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
10 |
-
* Description:
|
11 |
-
* Version: 3.
|
12 |
* Author: EH Dev Shop
|
13 |
* Author URI: http://evan-herman.com
|
14 |
* License: GPL-3.0+
|
7 |
* @wordpress-plugin
|
8 |
* Plugin Name: WP SVG Icons
|
9 |
* Plugin URI: https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
10 |
+
* Description: Quickly and effortlessly gain access to 492 beautifully designed SVG font icons, available on the frontend and backend of your site.
|
11 |
+
* Version: 3.2.0
|
12 |
* Author: EH Dev Shop
|
13 |
* Author URI: http://evan-herman.com
|
14 |
* License: GPL-3.0+
|