WP SVG Icons - Version 3.2.0

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 Icon 128x128 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 CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  /* If the file is hit directly, abort... */
4
- defined('ABSPATH') or die("Nice try....");
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 , '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,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' => $active_pack,
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
- if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) {
 
 
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.' , 'wp-svg-icons' ),
225
- 'success' => __( 'Custom font pack successfully uninstalled!' , 'wp-svg-icons' ),
226
- 'error' => __( 'Error uninstalling your custom font pack. Try again. If the error persists you will have to delete the file manually.' , 'wp-svg-icons' )
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', plugin_dir_url(__FILE__).'js/jquery.dropdown.min.js');
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
- .toplevel_page_wp-svg-icons .wrap, .svg-custom-upload-wrap {
18
- margin-top: 2.5em !important;
19
- }
20
-
21
- #TB_ajaxContent .wp-svg-icons-wrap {
22
- margin-right: 0;
23
- }
24
-
25
- .copy_paste_input {
26
- border: none !important;
27
- box-shadow: none !important;
28
- background: transparent !important;
29
- font-weight: 600 !important;
30
- }
31
-
32
- .yes-adv-attr:before {
33
- font-family: 'dashicons';
34
- content: "\f147";
35
- padding-right: 2px;
36
- color: rgb(91, 159, 107);
37
- }
38
-
39
- .glyph, .expansion-Glyph {
40
- font-size: .75em;
41
- float: left;
42
- text-align: center;
43
- padding: .15em;
44
- margin: 1em;
45
- height: 35px;
46
- width: 35px;
47
- border-radius: .25em;
48
- color:#333333;
49
- -o-transition:.15s;
50
- -ms-transition:.15s;
51
- -moz-transition:.15s;
52
- -webkit-transition:.15s;
53
- transition:.15s;
54
- margin-top:0;
55
- }
56
-
57
- .expansion-Glyph {
58
- font-size:2em !important;
59
- }
60
-
61
- .glyph:hover {
62
- color:#FF8000;
63
- cursor:pointer;
64
- }
65
-
66
- .glyph input, .expansion-Glyph input {
67
- font-family: consolas, monospace;
68
- font-size: 13px;
69
- width: 100%;
70
- text-align: center;
71
- border: 0;
72
- box-shadow: 0 0 0 1px #ccc;
73
- padding: .125em;
74
- display:none;
75
- }
76
-
77
- .selected {
78
- color:#FF8000;
79
- background:#d8d8d8;
80
- border-radius:5px;
81
- }
82
-
83
- .expansion-Glyph:hover {
84
- background-color: #CCCCCC !important;
85
- cursor:pointer !important;
86
- }
87
-
88
- .w-main {
89
- width: 98%;
90
- }
91
-
92
- .centered {
93
- margin-right: auto;
94
- }
95
-
96
- .wp-svg-title {
97
- font-size: 2em;
98
- font-weight: normal;
99
- line-height: 1.2;
100
- }
101
-
102
- .clearfix:before,
103
- .clearfix:after {
104
- content: "";
105
- display: table;
106
- }
107
-
108
- .clearfix:after,
109
- .clear {
110
- clear: both;
111
- }
112
-
113
- footer {
114
- margin-top: 2em;
115
- padding: .5em 0;
116
- box-shadow: 0 -2px #eee;
117
- }
118
-
119
- body.toplevel_page_wp-svg-icons a,
120
- body.wp-svg-icons_page_wp-svg-icons-custom-set a,
121
- body.wp-svg-icons_page_wp_svg_icons a,
122
- body.p-svg-icons_page_wp-svg-icons-support a {
123
- color: #333;
124
- }
125
-
126
- body.toplevel_page_wp-svg-icons a:hover,
127
- body.wp-svg-icons_page_wp-svg-icons-custom-set a:hover,
128
- body.wp-svg-icons_page_wp_svg_icons a:hover,
129
- body.p-svg-icons_page_wp-svg-icons-support a:hover {
130
- color: #B35047;
131
- }
132
-
133
- body.toplevel_page_wp-svg-icons a:visited,
134
- body.wp-svg-icons_page_wp-svg-icons-custom-set a:visited,
135
- body.wp-svg-icons_page_wp_svg_icons a:visited,
136
- body.p-svg-icons_page_wp-svg-icons-support a:visited {
137
- color: #333;
138
- text-decoration: none;
139
- }
140
-
141
- body.toplevel_page_wp-svg-icons a:active,
142
- body.wp-svg-icons_page_wp-svg-icons-custom-set a:active,
143
- body.wp-svg-icons_page_wp_svg_icons a:active,
144
- body.p-svg-icons_page_wp-svg-icons-support a:active {
145
- color: none;
146
- }
147
-
148
- .box1 {
149
- font-size: 16px;
150
- display: inline-block;
151
- width: 15em;
152
- padding: .25em .5em;
153
- background: #eee;
154
- margin: .5em 1em .5em 0;
155
- }
156
-
157
- body.toplevel_page_wp-svg-icons input:focus,
158
- body.wp-svg-icons_page_wp-svg-icons-custom-set input:focus,
159
- body.wp-svg-icons_page_wp_svg_icons input:focus,
160
- body.p-svg-icons_page_wp-svg-icons-support input:focus {
161
- background: #E1E1E1;
162
- }
163
-
164
- .wp-svg-icon-preview {
165
- width: 30px;
166
- }
167
-
168
- .fs1,
169
- .fs2,
170
- .fs3,
171
- .fs4,
172
- .fs5,
173
- .fs6,
174
- .fs7 {
175
- padding:.85em;
176
- border-radius:5px;
177
- }
178
-
179
- .wp-svg-iconset1-preview {
180
- font-size:90px;
181
- display: block;
182
- margin: 0 auto;
183
- margin-top: 10px;
184
- }
185
-
186
- .wp-svg-icon-preview-box {
187
- width: 30%;
188
- max-width: 316px;
189
- min-width: 200px;
190
- float: right;
191
- border: 1px dashed #CCCCCC;
192
- height:145px;
193
- padding: 1em;
194
- margin-bottom:10px;
195
- text-align:center;
196
- margin: 1.5em 2em 0 0;
197
- }
198
-
199
- .wp-svg-paypal-donation-button {
200
- margin-top: -50px;
201
- right:0;
202
- }
203
-
204
- body.toplevel_page_wp-svg-icons .how-to-use,
205
- body.wp-svg-icons_page_wp-svg-icons-custom-set .how-to-use,
206
- body.wp-svg-icons_page_wp_svg_icons .how-to-use,
207
- body.p-svg-icons_page_wp-svg-icons-support .how-to-use {
208
- width:100%;
209
- border: 1px solid #CCCCCC;
210
- margin-bottom: 5px;
211
- float:left;
212
- padding-bottom:20px;
213
- }
214
-
215
- body.toplevel_page_wp-svg-icons .help-boxes,
216
- body.wp-svg-icons_page_wp-svg-icons-custom-set .help-boxes,
217
- body.wp-svg-icons_page_wp_svg_icons .help-boxes,
218
- body.p-svg-icons_page_wp-svg-icons-support .help-boxes {
219
- width: 100%;
220
- }
221
-
222
- .glyph-demo .fs1 {
223
- padding: .35em !important;
224
- font-size: 2em !important;
225
- }
226
-
227
- .insert-wp-svg-icon {
228
- margin-left: 2.7em !important;
229
- }
230
-
231
- .element_selection_container {
232
- width: 100%;
233
- display: block;
234
- margin: 1em 0;
235
- }
236
-
237
- .selected-element-wrap {
238
- color: #ff8000 !important;
239
- }
240
-
241
- .wp-svg-how-to-use-container {
242
- float: left;
243
- width: 50%;
244
- }
245
-
246
- /* 710px Break point */
247
- @media only screen and (max-width: 710px) {
248
-
249
- #social-icons {
250
- display: none;
251
- }
252
-
253
- }
254
-
255
- /* 625px Break point */
256
- @media only screen and (max-width: 625px) {
257
-
258
- .wp-svg-how-to-use-container {
259
- width: 100%;
260
- }
261
-
262
- .copy_paste_input {
263
- width: 90% !important;
264
- border: none;
265
- box-shadow: none;
266
- background: transparent;
267
- }
268
-
269
- .wp-svg-icon-preview-box {
270
- border: none !important;
271
- width: 100%;
272
- max-width: 100%;
273
- margin: 0 auto;
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
- .custom-pack-container-ajax .glyph { width: 29px; }
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
- padding: 10px 7px 0 7px !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- /** WP SVG Icons - Compiled by Evan Herman // https://www.evan-herman.com **/
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
- var data = {
3
- action : 'svg_delete_custom_pack'
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( 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
- <div class="svg-custom-upload-wrap wrap" style="min-width:900px;">
9
-
10
- <?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?>
11
- <!-- review us container -->
12
- <div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
13
- <p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
14
- <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>
15
- </div>
16
- <!-- social media icons -->
17
- <div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
18
- <p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
19
- <a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
20
- <a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
21
- <a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
22
- <a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
23
- </div>
24
- <?php } ?>
25
-
26
- <!-- get uploaded file, unzip .zip, store files in appropriate locations, populate page with custom icons -->
27
- <!-- wp_handle_upload ( http://codex.wordpress.org/Function_Reference/wp_handle_upload ) -->
28
- <?php
29
-
30
- if ( isset( $_FILES['custom_icon_pack'] ) ) {
31
-
32
- /*
33
- Validate our nonce for security reasons
34
- @since 3.1.8.2
35
- */
36
- if ( ! empty( $_POST['wp_svg_icons_upload_validation'] ) ) {
37
- if( ! check_admin_referer( 'validate_wp_svg_icons', 'wp_svg_icons_upload_validation' ) ) {
38
- wp_die( __( 'Sorry, your nonce did not verify. Please try again.', 'wp-svg-icons' ) );
39
- exit;
40
- }
41
- }
42
-
43
-
44
- $uploadedfile = $_FILES['custom_icon_pack'];
45
- $upload_overrides = array( 'test_form' => false );
46
-
47
- $filename = $uploadedfile['name'];
48
- $break = explode('.', $filename);
49
- $count = count( $break );
50
- $file_extension = $break[intval( $count - 1 )];
51
-
52
- if( $file_extension != 'zip' ) {
53
- ?>
54
- <style>
55
- #social-icons, #review-wp-svg-icons { display: none; }
56
- </style>
57
- <div class="error">
58
- <p><?php _e( "There was a problem importing the file. Ensure that you are uploading a .zip file.", "wp-svg-icons" ); ?></p>
59
- <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>
60
- <p>
61
- <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>
62
- <a class="button-secondary" href="https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
63
- </p>
64
- </div>
65
- <?php
66
- exit();
67
- }
68
-
69
- // move the file to the custom upload path set above on line 63
70
- $movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
71
- if( is_wp_error( $movefile ) ) {
72
- $error_string = $movefile->get_error_message();
73
- wp_die( '<div id="message" class="error"><p>' . $error_string . '</p></div>' );
74
- }
75
-
76
- // if upload was successful
77
- if ( $movefile ) {
78
-
79
- echo '<script>
80
- jQuery(document).ready(function() {
81
- jQuery(".preview-icon-code-box").show();
82
- jQuery(".wp-svg-custom-pack-preloader").show();
83
- jQuery("#uninstall-pack-button").removeAttr("disabled");
84
- jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
85
- jQuery("input[value=Import]").attr("disabled","disabled");
86
- jQuery(".svg-custom-pack-buttons").after("<div class=updated><p class=fontPackUploadedSuccess>' . __( "Custom font pack successfully uploaded!" , "wp-svg-icons" ) . '</p></div>");
87
- });
88
- </script>';
89
-
90
- // unzip the file contents to the same directory
91
- WP_Filesystem();
92
-
93
- $dest = wp_upload_dir();
94
- $dest_path = $dest['path'];
95
- $fileNameNoSpaces = str_replace(' ', '-',$uploadedfile['name']);
96
-
97
- $unzipfile = unzip_file( $dest_path.'/'.$fileNameNoSpaces, $dest_path );
98
- if( is_wp_error( $unzipfile ) ) {
99
- ?>
100
- <style>
101
- #social-icons, #review-wp-svg-icons { display: none; }
102
- </style>
103
- <?php
104
- $error_string = $unzipfile->get_error_message();
105
- if( $error_string = 'Incompatible Archive.' ) {
106
- if (function_exists('is_multisite') && is_multisite()) {
107
- $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.";
108
- }
109
- }
110
- wp_die( '<div id="message" class="error"><p>' . $error_string . '</p></div>' );
111
- }
112
-
113
- if ( $unzipfile ) {
114
-
115
- // check for the json file
116
- // to ensure we've got a icomoon .zip
117
- if( !file_exists( $dest_path.'/'.'selection.json' ) ) {
118
- echo $dest_path.'/'.'selection.json';
119
- ?>
120
- <style>
121
- #social-icons, #review-wp-svg-icons { display: none; }
122
- </style>
123
- <div class="error">
124
- <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>
125
- <p>
126
- <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>
127
- <a class="button-secondary" href="https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
128
- </p>
129
- </div>
130
- <?php
131
- // delete the files from the directory
132
- wp_svg_icons_delete_entire_directory( $dest_path );
133
- exit();
134
- }
135
-
136
-
137
- // rename the initial .zip file
138
- $test_rename_zip = rename($dest_path.'/'.$fileNameNoSpaces,$dest_path.'/'.'wp-svg-custom-pack.zip');
139
- // rename the json file that comes with icomoon files
140
- $test_rename_json = rename($dest_path.'/'.'selection.json',$dest_path.'/'.'wp-svg-custom-pack.json');
141
-
142
- $file = $dest_path.'/demo.html';
143
-
144
- // Open the file to get existing content
145
- $current = file_get_contents($file);
146
-
147
- // remove the link tags
148
- // for css and js files that are not needed any more
149
- $current = str_replace('<link rel="stylesheet" href="demo-files/demo.css">','',$current);
150
- $current = str_replace('<link rel="stylesheet" href="style.css"></head>','',$current);
151
- $current = str_replace('<script src="demo-files/demo.js"></script>','',$current);
152
- $current = str_replace( 'icon-' , 'wp-svg-custom-' , $current );
153
-
154
- // Write the contents back to the file
155
- $file_put_contents = file_put_contents($file, $current);
156
-
157
- // change path of linked font files in style.css
158
- $styleCSS = $dest_path.'/style.css';
159
- $currentStyles = file_get_contents($styleCSS);
160
-
161
- // remove the link tags
162
- // for css and js files that are not needed any more
163
- $newStyles = str_replace( "url('fonts/" , "url( '" . site_url() . "/wp-content/uploads/wp-svg-icons/custom-pack/fonts/" , $currentStyles );
164
- $newStyles = str_replace( 'icon-' , 'wp-svg-custom-' , $newStyles );
165
-
166
- // Write the contents back to the file
167
- $file_put_contents = file_put_contents($styleCSS, $newStyles);
168
-
169
- // delete unecessary files
170
- if ( file_exists( $dest_path . '/demo-files' ) ) {
171
- $admin_class = new WP_SVG_Icons_Admin( 'wp-svg-icons' , '1.0' );
172
- $admin_class->recursive_delete_directory($dest_path.'/demo-files');
173
- }
174
-
175
- // delete the readme file
176
- if ( file_exists( $dest_path . '/Read Me.txt' ) ) {
177
- unlink($dest_path.'/Read Me.txt');
178
- }
179
-
180
- // display success message
181
- // disable file upload field
182
- 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>';
183
-
184
- 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>';
185
-
186
- // ajax get demo.html file
187
- // ajax get style.css file and append to head to show icons
188
- echo '<script>
189
- jQuery(document).ready(function() {
190
- jQuery(".current-font-pack").load("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/demo.html");
191
- jQuery.get("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
192
- jQuery("head").append("<style>"+data+"</style>");
193
- });
194
- });
195
- </script>';
196
-
197
-
198
- } else { // error unzipping the file
199
- 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>';
200
- }
201
-
202
- } else { // error importing the file
203
- 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>';
204
- }
205
-
206
- }
207
- ?>
208
-
209
-
210
- <h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Import a Custom Icon Pack' , 'wp-svg-icons' ); ?></h1>
211
-
212
- <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>
213
- <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>
214
- <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>
215
- <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>
216
-
217
- <div class="preview-icon-code-box" style="display:none;float:right;width:350px;">
218
- <p style="position: absolute;margin-top: 4.25em;color: #EE3B3B;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></p>
219
- <div class="wp-svg-icon-preview-box" style="float:right;margin-right:0px;">
220
- <i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i>
221
- </div>
222
- <input class="copy_paste_input" style="padding-left:0;width:350px;float:left;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=""]'>
223
- </div>
224
-
225
- <script>
226
- var run_interval = null;
227
-
228
- jQuery(document).ready(function() {
229
-
230
- // check if the pack has loaded
231
- run_interval = setInterval(function() {
232
- console.log( jQuery( '.current-font-pack' ).children().length );
233
- if( jQuery( '.glyph' ).length <= 10 ) {
234
- return;
235
- // re-run the interval
236
- } else {
237
- var num_icons = jQuery( '.current-font-pack' ).find( '.glyph' ).length;
238
- var i = 1;
239
- jQuery( '.glyph' ).each( function() { if( i > 10 ) { jQuery( this ).remove();}i++; });
240
- jQuery( '.ten-icon-limit-reached' ).show();
241
- var fontNameString = jQuery(".mhmm").text();
242
- var newfontNameString = fontNameString.replace("Font Name:","");
243
- var customPackFontName = newfontNameString.split("(")[0];
244
- var customPackFontName = jQuery.trim(customPackFontName);
245
- // replace - with a space, just for looks sake
246
- var custom_font_pack_title = jQuery( '.current-font-pack' ).find( 'h1' ).first().html( function(index, text) {
247
- return text.replace( /-/g , " ");
248
- });
249
- jQuery('.downloadFontZipLink').parent('li').find('img').remove();
250
- jQuery('.downloadFontZipLink').text('Download '+customPackFontName+'.zip');
251
- jQuery('.downloadFontjSonLink').parent('li').find('img').remove();
252
- jQuery('.downloadFontjSonLink').text('Download '+customPackFontName+'.json');
253
- }
254
-
255
- clearInterval(run_interval);
256
- // kill off the interval, once we've got it
257
-
258
- }, 50);
259
-
260
- jQuery('body').on( 'click', '.glyph', function() {
261
- jQuery('.glyph').removeClass("selected");
262
- jQuery(this).addClass("selected");
263
- jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
264
-
265
- var glyphCode = jQuery(this).find('.mls').text();
266
- var glyphCode = jQuery.trim(glyphCode);
267
-
268
- //console.log(glyphCode);
269
- jQuery('.wp-svg-icon-preview').remove();
270
- jQuery('.wp-svg-icon-preview-box > i').after("<b class='wp-svg-icon-preview'><div class='"+glyphCode+" previewIcon' style='display:none;'></div></b>");
271
- jQuery('.previewIcon').fadeIn();
272
-
273
- <?php if( get_current_screen()->base != 'wp-svg-icons_page_wp-svg-icons-custom-set' ) { ?>
274
- var iconClass = jQuery( '.custom-pack-container-ajax' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
275
- var selectedIconWrapper = jQuery( '.selected-element-wrap' ).attr( 'alt' );
276
- <?php } else { ?>
277
- var iconClass = jQuery( '.current-font-pack' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
278
- iconClass = iconClass.replace( 'wp-svg-custom-' , '' );
279
- var selectedIconWrapper = '<?php echo get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ); ?>';
280
- <?php } ?>
281
- jQuery('.copy_paste_input').val('[wp-svg-icons custom_icon="'+iconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
282
-
283
- });
284
-
285
- });
286
- </script>
287
-
288
-
289
-
290
- <style>
291
- .dropdown-menu img {
292
- display:block;
293
- width:15px;
294
- margin:0 auto;
295
- }
296
- .ptl { min-width:540px; }
297
- #wpbody-content { min-width:900px; }
298
-
299
-
300
- .dropdown-menu .downloadFontZipLink { padding-left:24px !important; background-image: url("<?php echo site_url();?>/wp-content/plugins/svg-vector-icon-plugin/includes/images/zip-icon-small.png");background-repeat:no-repeat; background-size:13px 16px; background-position:6px 4px; }
301
- .dropdown-menu .downloadFontjSonLink { padding-left:24px !important; background-image: url("<?php echo site_url();?>/wp-content/plugins/svg-vector-icon-plugin/includes/images/json-icon-small.png");background-repeat:no-repeat; background-size:13px 16px; background-position:6px 4px; }
302
- #uninstall-pack-button { background-image: url("<?php echo site_url();?>/wp-content/plugins/svg-vector-icon-plugin/includes/images/trash-icon-small.png") !important;background-repeat:no-repeat !important; background-size:13px 14px !important; background-position:6px 6px !important; }
303
- </style>
304
-
305
- <!-- file upload input field -->
306
- <!-- Handling Custom Font Pack Uploads -->
307
- <!-- currently uploads to Uploads > WP SVG Icons > Custom Pack -->
308
- <form id="wp_svg_icons_upload_custom_pack_form" enctype="multipart/form-data" action="" method="POST">
309
- <?php
310
- /* Security Nonces */
311
- wp_nonce_field( 'validate_wp_svg_icons', 'wp_svg_icons_upload_validation' );
312
- ?>
313
- <p id="async-upload-wrap" style="margin-bottom:0;">
314
- <label for="async-upload"><?php _e( 'Import a Custom Font Pack' , 'wp-svg-icons' ); ?> :</label><br />
315
- <input type="file" id="wp_svg_custom_pack_field" name="custom_icon_pack" required="required">
316
- <p style="margin:0;">
317
- <span class="custom-icons-file-upload-note"><?php _e( 'note: file must be a .zip downloaded from icomoon' , 'wp-svg-icons' ); ?><span>
318
- </p>
319
- <span class="svg-custom-pack-buttons">
320
- <p>
321
- <?php
322
- // print form submission button
323
- echo submit_button( 'Import', 'primary', '', false, '' );
324
- ?>
325
- </p>
326
- <p style="margin-left:1em;">
327
- <?php
328
- $other_attributes = array( 'onclick' => 'wp_svg_uninstall_font_pack(); return false;' , 'disabled' => 'disabled' );
329
- echo submit_button( '&nbsp;&nbsp;&nbsp;&nbsp;' . __( "Uninstall Pack" , "wp-svg-icons" ) , 'delete', 'uninstall-pack-button', false, $other_attributes );
330
- $dest = wp_upload_dir();
331
- $dest_url = $dest['url'];
332
- $dest_path = $dest['path'];
333
- ?>
334
- </p>
335
-
336
- <p style="margin-left:1em;">
337
- <a style="height:28px; background-image: url('<?php echo site_url();?>/wp-content/plugins/svg-vector-icon-plugin/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>
338
- </p>
339
-
340
- <?php if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) { ?>
341
- <!-- jquery download dropdown menu -->
342
- <div id="dropdown-1" style="left:210px !important; top:290.8125px !important;" class="dropdown dropdown-anchor-left dropdown-tip">
343
- <ul class="dropdown-menu">
344
- <li>
345
- <a class="downloadFontZipLink" href="<?php echo $dest_url.'/wp-svg-custom-pack.zip'; ?>"></a>
346
- <img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'; ?>" alt="preloader">
347
- </li>
348
- <li class="dropdown-divider"></li>
349
- <li>
350
- <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'; ?>"></a>
351
- <img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'; ?>" alt="preloader">
352
- </li>
353
- </ul>
354
- </div>
355
- <?php } ?>
356
-
357
- </span>
358
- <!-- display success or error message after font pack deletion -->
359
- <p id="delete_succes_and_error_message"></p>
360
- <p id="unzip_succes_and_error_message"></p>
361
- </p>
362
- </form>
363
-
364
- <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;">
365
- <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>
366
- </section>
367
-
368
- <div class="current-font-pack">
369
- <!-- scandir, or some other php function to loop through the upload directory to check if any files exist -->
370
- <!-- 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 -->
371
- <img style="display:none;" class="wp-svg-custom-pack-preloader" src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader">
372
- </div>
373
-
374
-
375
-
376
- <!-- plugin footer -->
377
- <?php
378
- if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) {
379
- $fontPackLocationString = __( 'Your Custom Icon Pack is located in' , 'wp-svg-icons' ) . ' : ';
380
- } else {
381
- $fontPackLocationString = __( 'Your Custom Icon Pack will be installed to' , 'wp-svg-icons' ) . ' : ';
382
- }
383
- ?>
384
-
385
- <footer style="padding-left:0;margin-left:0; width: 100%;">
386
- <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>
387
- </footer>
388
- </div>
389
- <?php
390
-
391
- /*
392
- Function To Recursively Delete an entire directory
393
- used on fail upload/rename
394
- */
395
- function wp_svg_icons_delete_entire_directory( $dir ) {
396
- if ( is_dir( $dir ) ) {
397
- $objects = scandir( $dir );
398
- foreach ($objects as $object ) {
399
- if ( $object != "." && $object != ".." ) {
400
- if ( filetype( $dir."/".$object) == "dir" ) wp_svg_icons_delete_entire_directory( $dir."/".$object); else unlink( $dir."/".$object );
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( '&nbsp;&nbsp;&nbsp;&nbsp;' . __( "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
- /* If the file is hit directly, abort... */
8
- defined('ABSPATH') or die("Nice try....");
9
-
10
- ?>
11
- <script>
12
- jQuery( document ).ready( function() {
13
- if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
14
- jQuery( '.how-to-use' ).css( 'margin-bottom' , '20px' );
15
- jQuery( '#wp-svg-nav-tab-wrapper' ).show();
16
- }
17
- });
18
- </script>
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;margin:0 3em 0 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
- <section class="wp-svg-how-to-use-container">
58
- <h3 style="padding-left:10px;"><?php _e( "How to use:" , "wp-svg-icons" ); ?></h3>
59
- <ul style="margin-left:35px; list-style-type:square; margin-bottom: 20px;">
60
- <li><?php _e( "Step 1: Locate and click the icon you want to use." , "wp-svg-icons" ); ?></li>
61
- <li><?php _e( "Step 2: Select the element to wrap your icon with." , "wp-svg-icons" ); ?></li>
62
- <span class="element_selection_container">
63
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h1">h1</a>
64
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h2">h2</a>
65
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h3">h3</a>
66
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="span">span</a>
67
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="div">div</a>
68
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="i">i</a>
69
- <a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="b">b</a>
70
- </span>
71
- <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>
72
- <!-- copy paste input field -->
73
- <li style="list-style-type:none !important; display:block;margin-top:.75em;">
74
- <i style="color:red;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></i>
75
- <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>
76
- </li>
77
- <li style="list-style:none;margin-top:1em;display:none;" id="advanced-attr-toggle-list-item">
78
- <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>
79
- </li>
80
- </ul>
81
-
82
- </section>
83
-
84
- <!-- preview box -->
85
- <div class="wp-svg-icon-preview-box">
86
- <i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i><b class="wp-svg-icon-preview"></b>
87
- </div>
88
-
89
- <section style="float:left;width:100%;">
90
-
91
- <!-- insert the code into a post or page -->
92
- <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>
93
-
94
- </section>
95
-
96
-
97
- </div> <!-- end how to use -->
98
-
99
- </div><!-- end help boxes -->
100
-
101
- <!-- tabs, to switch between default and custom packs on edit.php -->
102
- <h2 class="nav-tab-wrapper" id="wp-svg-nav-tab-wrapper" style="display:none;">
103
- <a href="#" class="nav-tab default-icon-pack nav-tab-active" onclick="show_defualt_pack( this );"><?php _e( 'Default Pack' , 'wp-svg-icons' ); ?></a>
104
- <a href="#" class="nav-tab custom-pack-tab" onclick="load_custom_pack( this );" style="display:none;"><?php _e( 'Custom Pack' , 'wp-svg-icons' ); ?></a>
105
- </h2>
106
-
107
- <div class="wp-svg-iconset1-all-glyphs" style="display:inline-block; margin-top:1em; ">
108
-
109
- <section class="mtm clearfix" id="glyphs">
110
-
111
- <div class="glyph glyph-demo">
112
- <span class="mls">wp-svg-home</span>
113
- <div class="fs1 home" aria-hidden="true" data-icon="&#xe000;" ></div>
114
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe000;"> </a>
115
- </div>
116
-
117
- <div class="glyph glyph-demo">
118
- <span class="mls"> wp-svg-home-2 </span>
119
- <div class="fs1 home-2" aria-hidden="true" data-icon="&#xe001;"></div>
120
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe001;"> </a>
121
- </div>
122
-
123
-
124
- <div class="glyph glyph-demo">
125
- <span class="mls"> wp-svg-home-3 </span>
126
- <div class="fs1 home-3" aria-hidden="true" data-icon="&#xe002;"></div>
127
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe002;"> </a>
128
- </div>
129
-
130
- <div class="glyph glyph-demo">
131
- <span class="mls"> wp-svg-office </span>
132
- <div class="fs1 office" aria-hidden="true" data-icon="&#xe003;"></div>
133
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe003;" > </a>
134
- </div>
135
-
136
- <div class="glyph glyph-demo">
137
- <span class="mls"> wp-svg-newspaper </span>
138
- <div class="fs1 newspaper" aria-hidden="true" data-icon="&#xe004;"></div>
139
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe004;" > </a>
140
- </div>
141
-
142
- <div class="glyph glyph-demo">
143
- <span class="mls"> wp-svg-pencil </span>
144
- <div class="fs1 pencil" aria-hidden="true" data-icon="&#xe005;"></div>
145
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe005;" > </a>
146
- </div>
147
-
148
- <div class="glyph glyph-demo">
149
- <span class="mls"> wp-svg-pencil-2 </span>
150
- <div class="fs1 pencil-2" aria-hidden="true" data-icon="&#xe006;"></div>
151
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe006;" > </a>
152
- </div>
153
-
154
- <div class="glyph glyph-demo">
155
- <span class="mls"> wp-svg-quill </span>
156
- <div class="fs1 quill" aria-hidden="true" data-icon="&#xe007;"></div>
157
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe007;" > </a>
158
- </div>
159
-
160
- <div class="glyph glyph-demo">
161
- <span class="mls"> wp-svg-pen </span>
162
- <div class="fs1 pen" aria-hidden="true" data-icon="&#xe008;"></div>
163
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe008;" > </a>
164
- </div>
165
-
166
- <div class="glyph glyph-demo">
167
- <span class="mls"> wp-svg-blog </span>
168
- <div class="fs1 blog" aria-hidden="true" data-icon="&#xe009;"></div>
169
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe009;" > </a>
170
- </div>
171
-
172
- <div class="glyph glyph-demo">
173
- <span class="mls"> wp-svg-droplet </span>
174
- <div class="fs1 droplet" aria-hidden="true" data-icon="&#xe00a;"></div>
175
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe00a;" > </a>
176
- </div>
177
-
178
- <div class="glyph glyph-demo">
179
- <span class="mls"> wp-svg-image </span>
180
- <div class="fs1 image" aria-hidden="true" data-icon="&#xe00c;"></div>
181
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe00c;" > </a>
182
- </div>
183
-
184
- <div class="glyph glyph-demo">
185
- <span class="mls"> wp-svg-image-2 </span>
186
- <div class="fs1 image-2" aria-hidden="true" data-icon="&#xe00d;"></div>
187
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe00d;" > </a>
188
- </div>
189
-
190
- <div class="glyph glyph-demo">
191
- <span class="mls"> wp-svg-images </span>
192
- <div class="fs1 images" aria-hidden="true" data-icon="&#xe00e;"></div>
193
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe00e;" > </a>
194
- </div>
195
-
196
- <div class="glyph glyph-demo">
197
- <span class="mls"> wp-svg-camera </span>
198
- <div class="fs1 camera" aria-hidden="true" data-icon="&#xe00f;"></div>
199
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe00f;" > </a>
200
- </div>
201
-
202
- <div class="glyph glyph-demo">
203
- <span class="mls"> wp-svg-music </span>
204
- <div class="fs1 music" aria-hidden="true" data-icon="&#xe010;"></div>
205
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe010;" > </a>
206
- </div>
207
-
208
- <div class="glyph glyph-demo">
209
- <span class="mls"> wp-svg-headphones </span>
210
- <div class="fs1 headphones" aria-hidden="true" data-icon="&#xe011;"></div>
211
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe011;" > </a>
212
- </div>
213
-
214
- <div class="glyph glyph-demo">
215
- <span class="mls"> wp-svg-play </span>
216
- <div class="fs1 play" aria-hidden="true" data-icon="&#xe012;"></div>
217
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe012;" > </a>
218
- </div>
219
-
220
- <div class="glyph glyph-demo">
221
- <span class="mls"> wp-svg-film </span>
222
- <div class="fs1 film" aria-hidden="true" data-icon="&#xe013;"></div>
223
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe013;" > </a>
224
- </div>
225
-
226
- <div class="glyph glyph-demo">
227
- <span class="mls"> wp-svg-camera-2 </span>
228
- <div class="fs1 camera-2" aria-hidden="true" data-icon="&#xe014;"></div>
229
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe014;" > </a>
230
- </div>
231
-
232
- <div class="glyph glyph-demo">
233
- <span class="mls"> wp-svg-dice </span>
234
- <div class="fs1 dice" aria-hidden="true" data-icon="&#xe015;"></div>
235
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe015;" > </a>
236
- </div>
237
-
238
- <div class="glyph glyph-demo">
239
- <span class="mls"> wp-svg-pacman </span>
240
- <div class="fs1 pacman" aria-hidden="true" data-icon="&#xe016;"></div>
241
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe016;" > </a>
242
- </div>
243
-
244
- <div class="glyph glyph-demo">
245
- <span class="mls"> wp-svg-spades </span>
246
- <div class="fs1 spades" aria-hidden="true" data-icon="&#xe017;"></div>
247
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe017;" > </a>
248
- </div>
249
-
250
- <div class="glyph glyph-demo">
251
- <span class="mls"> wp-svg-clubs </span>
252
- <div class="fs1 clubs" aria-hidden="true" data-icon="&#xe018;"></div>
253
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe018;" > </a>
254
- </div>
255
-
256
- <div class="glyph glyph-demo">
257
- <span class="mls"> wp-svg-diamonds </span>
258
- <div class="fs1 diamonds" aria-hidden="true" data-icon="&#xe019;"></div>
259
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe019;" > </a>
260
- </div>
261
-
262
- <div class="glyph glyph-demo">
263
- <span class="mls"> wp-svg-pawn </span>
264
- <div class="fs1 pawn" aria-hidden="true" data-icon="&#xe01a;"></div>
265
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01a;" > </a>
266
- </div>
267
-
268
- <div class="glyph glyph-demo">
269
- <span class="mls"> wp-svg-bullhorn </span>
270
- <div class="fs1 bullhorn" aria-hidden="true" data-icon="&#xe01b;"></div>
271
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01b;" > </a>
272
- </div>
273
-
274
- <div class="glyph glyph-demo">
275
- <span class="mls"> wp-svg-connection </span>
276
- <div class="fs1 connection" aria-hidden="true" data-icon="&#xe01c;"></div>
277
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01c;" > </a>
278
- </div>
279
-
280
- <div class="glyph glyph-demo">
281
- <span class="mls"> wp-svg-podcast </span>
282
- <div class="fs1 podcast" aria-hidden="true" data-icon="&#xe01d;"></div>
283
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01d;" > </a>
284
- </div>
285
-
286
- <div class="glyph glyph-demo">
287
- <span class="mls"> wp-svg-feed </span>
288
- <div class="fs1 feed" aria-hidden="true" data-icon="&#xe01e;"></div>
289
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01e;" > </a>
290
- </div>
291
-
292
- <div class="glyph glyph-demo">
293
- <span class="mls"> wp-svg-book </span>
294
- <div class="fs1 book" aria-hidden="true" data-icon="&#xe01f;"></div>
295
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe01f;" > </a>
296
- </div>
297
-
298
- <div class="glyph glyph-demo">
299
- <span class="mls"> wp-svg-books </span>
300
- <div class="fs1 books" aria-hidden="true" data-icon="&#xe020;"></div>
301
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe020;" > </a>
302
- </div>
303
-
304
- <div class="glyph glyph-demo">
305
- <span class="mls"> wp-svg-library </span>
306
- <div class="fs1 library" aria-hidden="true" data-icon="&#xe021;"></div>
307
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe021;" > </a>
308
- </div>
309
-
310
- <div class="glyph glyph-demo">
311
- <span class="mls"> wp-svg-file </span>
312
- <div class="fs1 file" aria-hidden="true" data-icon="&#xe022;"></div>
313
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe022;" > </a>
314
- </div>
315
-
316
- <div class="glyph glyph-demo">
317
- <span class="mls"> wp-svg-profile </span>
318
- <div class="fs1 profile" aria-hidden="true" data-icon="&#xe023;"></div>
319
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe023;" > </a>
320
- </div>
321
-
322
- <div class="glyph glyph-demo">
323
- <span class="mls"> wp-svg-file-2 </span>
324
- <div class="fs1 file-2" aria-hidden="true" data-icon="&#xe024;"></div>
325
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe024;" > </a>
326
- </div>
327
-
328
- <div class="glyph glyph-demo">
329
- <span class="mls"> wp-svg-file-3 </span>
330
- <div class="fs1 file-3" aria-hidden="true" data-icon="&#xe025;"></div>
331
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe025;" > </a>
332
- </div>
333
-
334
- <div class="glyph glyph-demo">
335
- <span class="mls"> wp-svg-file-4 </span>
336
- <div class="fs1 file-4" aria-hidden="true" data-icon="&#xe026;"></div>
337
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe026;" > </a>
338
- </div>
339
-
340
- <div class="glyph glyph-demo">
341
- <span class="mls"> wp-svg-copy </span>
342
- <div class="fs1 copy" aria-hidden="true" data-icon="&#xe027;"></div>
343
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe027;" > </a>
344
- </div>
345
-
346
- <div class="glyph glyph-demo">
347
- <span class="mls"> wp-svg-copy-2 </span>
348
- <div class="fs1 copy-2" aria-hidden="true" data-icon="&#xe028;"></div>
349
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe028;" > </a>
350
- </div>
351
-
352
- <div class="glyph glyph-demo">
353
- <span class="mls"> wp-svg-copy-3 </span>
354
- <div class="fs1 copy-3" aria-hidden="true" data-icon="&#xe029;"></div>
355
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe029;" > </a>
356
- </div>
357
-
358
- <div class="glyph glyph-demo">
359
- <span class="mls"> wp-svg-paste </span>
360
- <div class="fs1 paste" aria-hidden="true" data-icon="&#xe02a;"></div>
361
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02a;" > </a>
362
- </div>
363
-
364
- <div class="glyph glyph-demo">
365
- <span class="mls"> wp-svg-paste-2 </span>
366
- <div class="fs1 paste-2" aria-hidden="true" data-icon="&#xe02b;"></div>
367
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02b;" > </a>
368
- </div>
369
-
370
- <div class="glyph glyph-demo">
371
- <span class="mls"> wp-svg-paste-3 </span>
372
- <div class="fs1 paste-3" aria-hidden="true" data-icon="&#xe02c;"></div>
373
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02c;" > </a>
374
- </div>
375
-
376
- <div class="glyph glyph-demo">
377
- <span class="mls"> wp-svg-stack </span>
378
- <div class="fs1 stack" aria-hidden="true" data-icon="&#xe02d;"></div>
379
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02d;" > </a>
380
- </div>
381
-
382
- <div class="glyph glyph-demo">
383
- <span class="mls"> wp-svg-folder </span>
384
- <div class="fs1 folder" aria-hidden="true" data-icon="&#xe02e;"></div>
385
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02e;" > </a>
386
- </div>
387
-
388
- <div class="glyph glyph-demo">
389
- <span class="mls"> wp-svg-folder-open </span>
390
- <div class="fs1 folder-open" aria-hidden="true" data-icon="&#xe02f;"></div>
391
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe02f;" > </a>
392
- </div>
393
-
394
- <div class="glyph glyph-demo">
395
- <span class="mls"> wp-svg-tag </span>
396
- <div class="fs1 tag" aria-hidden="true" data-icon="&#xe030;"></div>
397
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe030;" > </a>
398
- </div>
399
-
400
- <div class="glyph glyph-demo">
401
- <span class="mls"> wp-svg-tags </span>
402
- <div class="fs1 tags" aria-hidden="true" data-icon="&#xe031;"></div>
403
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe031;" > </a>
404
- </div>
405
-
406
- <div class="glyph glyph-demo">
407
- <span class="mls"> wp-svg-barcode </span>
408
- <div class="fs1 barcode" aria-hidden="true" data-icon="&#xe032;"></div>
409
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe032;" > </a>
410
- </div>
411
-
412
- <div class="glyph glyph-demo">
413
- <span class="mls"> wp-svg-qrcode </span>
414
- <div class="fs1 qrcode" aria-hidden="true" data-icon="&#xe033;"></div>
415
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe033;" > </a>
416
- </div>
417
-
418
- <div class="glyph glyph-demo">
419
- <span class="mls"> wp-svg-ticket </span>
420
- <div class="fs1 ticket" aria-hidden="true" data-icon="&#xe034;"></div>
421
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe034;" > </a>
422
- </div>
423
-
424
- <div class="glyph glyph-demo">
425
- <span class="mls"> wp-svg-cart </span>
426
- <div class="fs1 cart" aria-hidden="true" data-icon="&#xe035;"></div>
427
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe035;" > </a>
428
- </div>
429
-
430
- <div class="glyph glyph-demo">
431
- <span class="mls"> wp-svg-cart-2 </span>
432
- <div class="fs1 cart-2" aria-hidden="true" data-icon="&#xe036;"></div>
433
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe036;" > </a>
434
- </div>
435
-
436
- <div class="glyph glyph-demo">
437
- <span class="mls"> wp-svg-cart-3 </span>
438
- <div class="fs1 cart-3" aria-hidden="true" data-icon="&#xe037;"></div>
439
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe037;" > </a>
440
- </div>
441
-
442
- <div class="glyph glyph-demo">
443
- <span class="mls"> wp-svg-coin </span>
444
- <div class="fs1 coin" aria-hidden="true" data-icon="&#xe038;"></div>
445
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe038;" > </a>
446
- </div>
447
-
448
- <div class="glyph glyph-demo">
449
- <span class="mls"> wp-svg-credit </span>
450
- <div class="fs1 credit" aria-hidden="true" data-icon="&#xe039;"></div>
451
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe039;" > </a>
452
- </div>
453
-
454
- <div class="glyph glyph-demo">
455
- <span class="mls"> wp-svg-calculate </span>
456
- <div class="fs1 calculate" aria-hidden="true" data-icon="&#xe03a;"></div>
457
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03a;" > </a>
458
- </div>
459
-
460
- <div class="glyph glyph-demo">
461
- <span class="mls"> wp-svg-support </span>
462
- <div class="fs1 support" aria-hidden="true" data-icon="&#xe03b;"></div>
463
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03b;" > </a>
464
- </div>
465
-
466
- <div class="glyph glyph-demo">
467
- <span class="mls"> wp-svg-phone </span>
468
- <div class="fs1 phone" aria-hidden="true" data-icon="&#xe03c;"></div>
469
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03c;" > </a>
470
- </div>
471
-
472
- <div class="glyph glyph-demo">
473
- <span class="mls"> wp-svg-phone-hang-up </span>
474
- <div class="fs1 phone-hang-up" aria-hidden="true" data-icon="&#xe03d;"></div>
475
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03d;" > </a>
476
- </div>
477
-
478
- <div class="glyph glyph-demo">
479
- <span class="mls"> wp-svg-address-book </span>
480
- <div class="fs1 address-book" aria-hidden="true" data-icon="&#xe03e;"></div>
481
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03e;" > </a>
482
- </div>
483
-
484
- <div class="glyph glyph-demo">
485
- <span class="mls"> wp-svg-notebook </span>
486
- <div class="fs1 notebook" aria-hidden="true" data-icon="&#xe03f;"></div>
487
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe03f;" > </a>
488
- </div>
489
-
490
- <div class="glyph glyph-demo">
491
- <span class="mls"> wp-svg-envelop </span>
492
- <div class="fs1 envelop" aria-hidden="true" data-icon="&#xe040;"></div>
493
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe040;" > </a>
494
- </div>
495
-
496
- <div class="glyph glyph-demo">
497
- <span class="mls"> wp-svg-pushpin </span>
498
- <div class="fs1 pushpin" aria-hidden="true" data-icon="&#xe041;"></div>
499
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe041;" > </a>
500
- </div>
501
-
502
- <div class="glyph glyph-demo">
503
- <span class="mls"> wp-svg-location </span>
504
- <div class="fs1 location" aria-hidden="true" data-icon="&#xe042;"></div>
505
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe042;" > </a>
506
- </div>
507
-
508
- <div class="glyph glyph-demo">
509
- <span class="mls"> wp-svg-location-2 </span>
510
- <div class="fs1 location-2" aria-hidden="true" data-icon="&#xe043;"></div>
511
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe043;" > </a>
512
- </div>
513
-
514
- <div class="glyph glyph-demo">
515
- <span class="mls"> wp-svg-compass </span>
516
- <div class="fs1 compass" aria-hidden="true" data-icon="&#xe044;"></div>
517
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe044;" > </a>
518
- </div>
519
-
520
- <div class="glyph glyph-demo">
521
- <span class="mls"> wp-svg-map </span>
522
- <div class="fs1 map" aria-hidden="true" data-icon="&#xe045;"></div>
523
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe045;" > </a>
524
- </div>
525
-
526
- <div class="glyph glyph-demo">
527
- <span class="mls"> wp-svg-map-2 </span>
528
- <div class="fs1 map-2" aria-hidden="true" data-icon="&#xe046;"></div>
529
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe046;" > </a>
530
- </div>
531
-
532
- <div class="glyph glyph-demo">
533
- <span class="mls"> wp-svg-history </span>
534
- <div class="fs1 history" aria-hidden="true" data-icon="&#xe047;"></div>
535
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe047;" > </a>
536
- </div>
537
-
538
- <div class="glyph glyph-demo">
539
- <span class="mls"> wp-svg-clock </span>
540
- <div class="fs1 clock" aria-hidden="true" data-icon="&#xe048;"></div>
541
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe048;" > </a>
542
- </div>
543
-
544
- <div class="glyph glyph-demo">
545
- <span class="mls"> wp-svg-clock-2 </span>
546
- <div class="fs1 clock-2" aria-hidden="true" data-icon="&#xe049;"></div>
547
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe049;" > </a>
548
- </div>
549
-
550
- <div class="glyph glyph-demo">
551
- <span class="mls"> wp-svg-alarm </span>
552
- <div class="fs1 alarm" aria-hidden="true" data-icon="&#xe04a;"></div>
553
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04a;" > </a>
554
- </div>
555
-
556
- <div class="glyph glyph-demo">
557
- <span class="mls"> wp-svg-alarm-2 </span>
558
- <div class="fs1 alarm-2" aria-hidden="true" data-icon="&#xe04b;"></div>
559
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04b;" > </a>
560
- </div>
561
-
562
- <div class="glyph glyph-demo">
563
- <span class="mls"> wp-svg-bell </span>
564
- <div class="fs1 bell" aria-hidden="true" data-icon="&#xe04c;"></div>
565
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04c;" > </a>
566
- </div>
567
-
568
- <div class="glyph glyph-demo">
569
- <span class="mls"> wp-svg-stopwatch </span>
570
- <div class="fs1 stopwatch" aria-hidden="true" data-icon="&#xe04d;"></div>
571
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04d;" > </a>
572
- </div>
573
-
574
- <div class="glyph glyph-demo">
575
- <span class="mls"> wp-svg-calendar </span>
576
- <div class="fs1 calendar" aria-hidden="true" data-icon="&#xe04e;"></div>
577
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04e;" > </a>
578
- </div>
579
-
580
- <div class="glyph glyph-demo">
581
- <span class="mls"> wp-svg-calendar-2 </span>
582
- <div class="fs1 calendar-2" aria-hidden="true" data-icon="&#xe04f;"></div>
583
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe04f;" > </a>
584
- </div>
585
-
586
- <div class="glyph glyph-demo">
587
- <span class="mls"> wp-svg-print </span>
588
- <div class="fs1 print" aria-hidden="true" data-icon="&#xe050;"></div>
589
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe050;" > </a>
590
- </div>
591
-
592
- <div class="glyph glyph-demo">
593
- <span class="mls"> wp-svg-keyboard </span>
594
- <div class="fs1 keyboard" aria-hidden="true" data-icon="&#xe051;"></div>
595
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe051;" > </a>
596
- </div>
597
-
598
- <div class="glyph glyph-demo">
599
- <span class="mls"> wp-svg-screen </span>
600
- <div class="fs1 screen" aria-hidden="true" data-icon="&#xe052;"></div>
601
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe052;" > </a>
602
- </div>
603
-
604
- <div class="glyph glyph-demo">
605
- <span class="mls"> wp-svg-laptop </span>
606
- <div class="fs1 laptop" aria-hidden="true" data-icon="&#xe053;"></div>
607
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe053;" > </a>
608
- </div>
609
-
610
- <div class="glyph glyph-demo">
611
- <span class="mls"> wp-svg-mobile </span>
612
- <div class="fs1 mobile" aria-hidden="true" data-icon="&#xe054;"></div>
613
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe054;" > </a>
614
- </div>
615
-
616
- <div class="glyph glyph-demo">
617
- <span class="mls"> wp-svg-mobile-2 </span>
618
- <div class="fs1 mobile-2" aria-hidden="true" data-icon="&#xe055;"></div>
619
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe055;" > </a>
620
- </div>
621
-
622
- <div class="glyph glyph-demo">
623
- <span class="mls"> wp-svg-tablet </span>
624
- <div class="fs1 tablet" aria-hidden="true" data-icon="&#xe056;"></div>
625
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe056;" > </a>
626
- </div>
627
-
628
- <div class="glyph glyph-demo">
629
- <span class="mls"> wp-svg-tv </span>
630
- <div class="fs1 tv" aria-hidden="true" data-icon="&#xe057;"></div>
631
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe057;" > </a>
632
- </div>
633
-
634
- <div class="glyph glyph-demo">
635
- <span class="mls"> wp-svg-cabinet </span>
636
- <div class="fs1 cabinet" aria-hidden="true" data-icon="&#xe058;"></div>
637
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe058;" > </a>
638
- </div>
639
-
640
- <div class="glyph glyph-demo">
641
- <span class="mls"> wp-svg-drawer </span>
642
- <div class="fs1 drawer" aria-hidden="true" data-icon="&#xe059;"></div>
643
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe059;" > </a>
644
- </div>
645
-
646
- <div class="glyph glyph-demo">
647
- <span class="mls"> wp-svg-drawer-2 </span>
648
- <div class="fs1 drawer-2" aria-hidden="true" data-icon="&#xe05a;"></div>
649
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05a;" > </a>
650
- </div>
651
-
652
- <div class="glyph glyph-demo">
653
- <span class="mls"> wp-svg-drawer-3 </span>
654
- <div class="fs1 drawer-3" aria-hidden="true" data-icon="&#xe05b;"></div>
655
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05b;" > </a>
656
- </div>
657
-
658
- <div class="glyph glyph-demo">
659
- <span class="mls"> wp-svg-box-add </span>
660
- <div class="fs1 box-add" aria-hidden="true" data-icon="&#xe05c;"></div>
661
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05c;" > </a>
662
- </div>
663
-
664
- <div class="glyph glyph-demo">
665
- <span class="mls"> wp-svg-box-remove </span>
666
- <div class="fs1 box-remove" aria-hidden="true" data-icon="&#xe05d;"></div>
667
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05d;" > </a>
668
- </div>
669
-
670
- <div class="glyph glyph-demo">
671
- <span class="mls"> wp-svg-download </span>
672
- <div class="fs1 download" aria-hidden="true" data-icon="&#xe05e;"></div>
673
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05e;" > </a>
674
- </div>
675
-
676
- <div class="glyph glyph-demo">
677
- <span class="mls"> wp-svg-upload </span>
678
- <div class="fs1 upload" aria-hidden="true" data-icon="&#xe05f;"></div>
679
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe05f;" > </a>
680
- </div>
681
-
682
- <div class="glyph glyph-demo">
683
- <span class="mls"> wp-svg-disk </span>
684
- <div class="fs1 disk" aria-hidden="true" data-icon="&#xe060;"></div>
685
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe060;" > </a>
686
- </div>
687
-
688
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-storage </span>
689
- <div class="fs1 storage" aria-hidden="true" data-icon="&#xe061;"></div>
690
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe061;" > </a>
691
- </div>
692
-
693
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-undo </span>
694
- <div class="fs1 undo" aria-hidden="true" data-icon="&#xe062;"></div>
695
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe062;" > </a>
696
- </div>
697
-
698
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-redo </span>
699
- <div class="fs1 redo" aria-hidden="true" data-icon="&#xe063;"></div>
700
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe063;" > </a>
701
- </div>
702
-
703
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flip </span>
704
- <div class="fs1 flip" aria-hidden="true" data-icon="&#xe064;"></div>
705
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe064;" > </a>
706
- </div>
707
-
708
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flip-2 </span>
709
- <div class="fs1 flip-2" aria-hidden="true" data-icon="&#xe065;"></div>
710
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe065;" > </a>
711
- </div>
712
-
713
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-undo-2 </span>
714
- <div class="fs1 undo-2" aria-hidden="true" data-icon="&#xe066;"></div>
715
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe066;" > </a>
716
- </div>
717
-
718
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-redo-2 </span>
719
- <div class="fs1 redo-2" aria-hidden="true" data-icon="&#xe067;"></div>
720
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe067;" > </a>
721
- </div>
722
-
723
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-forward </span>
724
- <div class="fs1 forward" aria-hidden="true" data-icon="&#xe068;"></div>
725
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe068;" > </a>
726
- </div>
727
-
728
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-reply </span>
729
- <div class="fs1 reply" aria-hidden="true" data-icon="&#xe069;"></div>
730
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe069;" > </a>
731
- </div>
732
-
733
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble </span>
734
- <div class="fs1 bubble" aria-hidden="true" data-icon="&#xe06a;"></div>
735
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06a;" > </a>
736
- </div>
737
-
738
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles </span>
739
- <div class="fs1 bubbles" aria-hidden="true" data-icon="&#xe06b;"></div>
740
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06b;" > </a>
741
- </div>
742
-
743
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-2 </span>
744
- <div class="fs1 bubbles-2" aria-hidden="true" data-icon="&#xe06c;"></div>
745
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06c;" > </a>
746
- </div>
747
-
748
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble-2 </span>
749
- <div class="fs1 bubble-2" aria-hidden="true" data-icon="&#xe06d;"></div>
750
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06d;" > </a>
751
- </div>
752
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-3 </span>
753
- <div class="fs1 bubbles-3" aria-hidden="true" data-icon="&#xe06e;"></div>
754
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06e;" > </a>
755
- </div>
756
-
757
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-4 </span>
758
- <div class="fs1 bubbles-4" aria-hidden="true" data-icon="&#xe06f;"></div>
759
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe06f;" > </a>
760
- </div>
761
-
762
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-user </span>
763
- <div class="fs1 user" aria-hidden="true" data-icon="&#xe070;"></div>
764
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe070;" > </a>
765
- </div>
766
-
767
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-users </span>
768
- <div class="fs1 users" aria-hidden="true" data-icon="&#xe071;"></div>
769
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe071;" > </a>
770
- </div>
771
-
772
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-user-2 </span>
773
- <div class="fs1 user-2" aria-hidden="true" data-icon="&#xe072;"></div>
774
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe072;" > </a>
775
- </div>
776
-
777
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-users-2 </span>
778
- <div class="fs1 users-2" aria-hidden="true" data-icon="&#xe073;"></div>
779
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe073;" > </a>
780
- </div>
781
-
782
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-user-3 </span>
783
- <div class="fs1 user-3" aria-hidden="true" data-icon="&#xe074;"></div>
784
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe074;" > </a>
785
- </div>
786
-
787
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-user-4 </span>
788
- <div class="fs1 user-4" aria-hidden="true" data-icon="&#xe075;"></div>
789
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe075;" > </a>
790
- </div>
791
-
792
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-quotes-left </span>
793
- <div class="fs1 quotes-left" aria-hidden="true" data-icon="&#xe076;"></div>
794
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe076;" > </a>
795
- </div>
796
-
797
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-busy </span>
798
- <div class="fs1 busy" aria-hidden="true" data-icon="&#xe077;"></div>
799
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe077;" > </a>
800
- </div>
801
-
802
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-1 </span>
803
- <div class="fs1 spinner-1" aria-hidden="true" data-icon="&#xe078;"></div>
804
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe078;" > </a>
805
- </div>
806
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-2 </span>
807
- <div class="fs1 spinner-2" aria-hidden="true" data-icon="&#xe079;"></div>
808
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe079;" > </a>
809
- </div>
810
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-3 </span>
811
- <div class="fs1 spinner-3" aria-hidden="true" data-icon="&#xe07a;"></div>
812
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07a;" > </a>
813
- </div>
814
-
815
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-4 </span>
816
- <div class="fs1 spinner-4" aria-hidden="true" data-icon="&#xe07b;"></div>
817
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07b;" > </a>
818
- </div>
819
-
820
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-5 </span>
821
- <div class="fs1 spinner-5" aria-hidden="true" data-icon="&#xe07c;"></div>
822
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07c;" > </a>
823
- </div>
824
-
825
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-6 </span>
826
- <div class="fs1 spinner-6" aria-hidden="true" data-icon="&#xe07d;"></div>
827
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07d;" > </a>
828
- </div>
829
-
830
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-binoculars </span>
831
- <div class="fs1 binoculars" aria-hidden="true" data-icon="&#xe07e;"></div>
832
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07e;" > </a>
833
- </div>
834
-
835
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-search-2 </span>
836
- <div class="fs1 search-2" aria-hidden="true" data-icon="&#xe07f;"></div>
837
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe07f;" > </a>
838
- </div>
839
-
840
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-in </span>
841
- <div class="fs1 zoom-in" aria-hidden="true" data-icon="&#xe080;"></div>
842
- <a class="glyph-link contract-2" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe080;" > </a>
843
- </div>
844
-
845
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-out </span>
846
- <div class="fs1 zoom-out" aria-hidden="true" data-icon="&#xe081;"></div>
847
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe081;" > </a>
848
- </div>
849
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-expand </span>
850
- <div class="fs1 expand" aria-hidden="true" data-icon="&#xe082;"></div>
851
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe082;" > </a>
852
- </div>
853
-
854
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-contract </span>
855
- <div class="fs1 contract" aria-hidden="true" data-icon="&#xe083;"></div>
856
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe083;" > </a>
857
- </div>
858
-
859
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-expand-2 </span>
860
- <div class="fs1 expand-2" aria-hidden="true" data-icon="&#xe084;"></div>
861
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe084;" > </a>
862
- </div>
863
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-contract-2 </span>
864
- <div class="fs1 contract-2" aria-hidden="true" data-icon="&#xe085;"></div>
865
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe085;" > </a>
866
- </div>
867
-
868
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-key </span>
869
- <div class="fs1 key" aria-hidden="true" data-icon="&#xe086;"></div>
870
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe086;" > </a>
871
- </div>
872
-
873
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-key-2 </span>
874
- <div class="fs1 key-2" aria-hidden="true" data-icon="&#xe087;"></div>
875
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe087;" > </a>
876
- </div>
877
-
878
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lock </span>
879
- <div class="fs1 lock" aria-hidden="true" data-icon="&#xe088;"></div>
880
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe088;" > </a>
881
- </div>
882
-
883
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lock-2 </span>
884
- <div class="fs1 lock-2" aria-hidden="true" data-icon="&#xe089;"></div>
885
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe089;" > </a>
886
- </div>
887
-
888
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-unlocked </span>
889
- <div class="fs1 unlocked" aria-hidden="true" data-icon="&#xe08a;"></div>
890
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08a;" > </a>
891
- </div>
892
-
893
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wrench </span>
894
- <div class="fs1 wrench" aria-hidden="true" data-icon="&#xe08b;"></div>
895
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08b;" > </a>
896
- </div>
897
-
898
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-settings </span>
899
- <div class="fs1 settings" aria-hidden="true" data-icon="&#xe08c;"></div>
900
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08c;" > </a>
901
- </div>
902
-
903
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-equalizer </span>
904
- <div class="fs1 equalizer" aria-hidden="true" data-icon="&#xe08d;"></div>
905
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08d;" > </a>
906
- </div>
907
-
908
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cog </span>
909
- <div class="fs1 cog" aria-hidden="true" data-icon="&#xe08e;"></div>
910
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08e;" > </a>
911
- </div>
912
-
913
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cogs </span>
914
- <div class="fs1 cogs" aria-hidden="true" data-icon="&#xe08f;"></div>
915
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe08f;" > </a>
916
- </div>
917
-
918
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cog-2 </span>
919
- <div class="fs1 cog-2" aria-hidden="true" data-icon="&#xe090;"></div>
920
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe090;" > </a>
921
- </div>
922
-
923
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer </span>
924
- <div class="fs1 hammer" aria-hidden="true" data-icon="&#xe091;"></div>
925
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe091;" > </a>
926
- </div>
927
-
928
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wand </span>
929
- <div class="fs1 wand" aria-hidden="true" data-icon="&#xe092;"></div>
930
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe092;" > </a>
931
- </div>
932
-
933
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-aid </span>
934
- <div class="fs1 aid" aria-hidden="true" data-icon="&#xe093;"></div>
935
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe093;" > </a>
936
- </div>
937
-
938
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bug </span>
939
- <div class="fs1 bug" aria-hidden="true" data-icon="&#xe094;"></div>
940
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe094;" > </a>
941
- </div>
942
-
943
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pie </span>
944
- <div class="fs1 pie" aria-hidden="true" data-icon="&#xe095;"></div>
945
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe095;" > </a>
946
- </div>
947
-
948
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stats </span>
949
- <div class="fs1 stats" aria-hidden="true" data-icon="&#xe096;"></div>
950
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe096;" > </a>
951
- </div>
952
-
953
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bars </span>
954
- <div class="fs1 bars" aria-hidden="true" data-icon="&#xe097;"></div>
955
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe097;" > </a>
956
- </div>
957
-
958
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bars-2 </span>
959
- <div class="fs1 bars-2" aria-hidden="true" data-icon="&#xe098;"></div>
960
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe098;" > </a>
961
- </div>
962
-
963
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-gift </span>
964
- <div class="fs1 gift" aria-hidden="true" data-icon="&#xe099;"></div>
965
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe099;" > </a>
966
- </div>
967
-
968
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-trophy </span>
969
- <div class="fs1 trophy" aria-hidden="true" data-icon="&#xe09a;"></div>
970
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09a;" > </a>
971
- </div>
972
-
973
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-glass </span>
974
- <div class="fs1 glass" aria-hidden="true" data-icon="&#xe09b;"></div>
975
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09b;" > </a>
976
- </div>
977
-
978
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-mug </span>
979
- <div class="fs1 mug" aria-hidden="true" data-icon="&#xe09c;"></div>
980
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09c;" > </a>
981
- </div>
982
-
983
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-food </span>
984
- <div class="fs1 food" aria-hidden="true" data-icon="&#xe09d;"></div>
985
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09d;" > </a>
986
- </div>
987
-
988
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-leaf </span>
989
- <div class="fs1 leaf" aria-hidden="true" data-icon="&#xe09e;"></div>
990
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09e;" > </a>
991
- </div>
992
-
993
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-rocket </span>
994
- <div class="fs1 rocket" aria-hidden="true" data-icon="&#xe09f;"></div>
995
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe09f;" > </a>
996
- </div>
997
-
998
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-meter </span>
999
- <div class="fs1 meter" aria-hidden="true" data-icon="&#xe0a0;"></div>
1000
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a0;" > </a>
1001
- </div>
1002
-
1003
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-meter2 </span>
1004
- <div class="fs1 meter2" aria-hidden="true" data-icon="&#xe0a1;"></div>
1005
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a1;" > </a>
1006
- </div>
1007
-
1008
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-dashboard </span>
1009
- <div class="fs1 dashboard" aria-hidden="true" data-icon="&#xe0a2;"></div>
1010
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a2;" > </a>
1011
- </div>
1012
-
1013
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer-2 </span>
1014
- <div class="fs1 hammer-2" aria-hidden="true" data-icon="&#xe0a3;"></div>
1015
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a3;" > </a>
1016
- </div>
1017
-
1018
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-fire </span>
1019
- <div class="fs1 fire" aria-hidden="true" data-icon="&#xe0a4;"></div>
1020
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a4;" > </a>
1021
- </div>
1022
-
1023
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lab </span>
1024
- <div class="fs1 lab" aria-hidden="true" data-icon="&#xe0a5;"></div>
1025
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a5;" > </a>
1026
- </div>
1027
-
1028
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-magnet </span>
1029
- <div class="fs1 magnet" aria-hidden="true" data-icon="&#xe0a6;"></div>
1030
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a6;" > </a>
1031
- </div>
1032
-
1033
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-remove </span>
1034
- <div class="fs1 remove" aria-hidden="true" data-icon="&#xe0a7;"></div>
1035
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a7;" > </a>
1036
- </div>
1037
-
1038
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-remove-2 </span>
1039
- <div class="fs1 remove-2" aria-hidden="true" data-icon="&#xe0a8;"></div>
1040
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a8;" > </a>
1041
- </div>
1042
-
1043
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-briefcase </span>
1044
- <div class="fs1 briefcase" aria-hidden="true" data-icon="&#xe0a9;"></div>
1045
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0a9;" > </a>
1046
- </div>
1047
-
1048
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-airplane </span>
1049
- <div class="fs1 airplane" aria-hidden="true" data-icon="&#xe0aa;"></div>
1050
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0aa;" > </a>
1051
- </div>
1052
-
1053
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-truck </span>
1054
- <div class="fs1 truck" aria-hidden="true" data-icon="&#xe0ab;"></div>
1055
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ab;" > </a>
1056
- </div>
1057
-
1058
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-road </span>
1059
- <div class="fs1 road" aria-hidden="true" data-icon="&#xe0ac;"></div>
1060
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ac;" > </a>
1061
- </div>
1062
-
1063
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-accessibility </span>
1064
- <div class="fs1 accessibility" aria-hidden="true" data-icon="&#xe0ad;"></div>
1065
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ad;" > </a>
1066
- </div>
1067
-
1068
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-target </span>
1069
- <div class="fs1 target" aria-hidden="true" data-icon="&#xe0ae;"></div>
1070
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ae;" > </a>
1071
- </div>
1072
-
1073
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-shield </span>
1074
- <div class="fs1 shield" aria-hidden="true" data-icon="&#xe0af;"></div>
1075
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0af;" > </a>
1076
- </div>
1077
-
1078
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning </span>
1079
- <div class="fs1 lightning" aria-hidden="true" data-icon="&#xe0b0;"></div>
1080
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b0;" > </a>
1081
- </div>
1082
-
1083
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-switch </span>
1084
- <div class="fs1 switch" aria-hidden="true" data-icon="&#xe0b1;"></div>
1085
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b1;" > </a>
1086
- </div>
1087
-
1088
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-power-cord </span>
1089
- <div class="fs1 power-cord" aria-hidden="true" data-icon="&#xe0b2;"></div>
1090
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b2;" > </a>
1091
- </div>
1092
-
1093
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-signup </span>
1094
- <div class="fs1 signup" aria-hidden="true" data-icon="&#xe0b3;"></div>
1095
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b3;" > </a>
1096
- </div>
1097
-
1098
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-list </span>
1099
- <div class="fs1 list" aria-hidden="true" data-icon="&#xe0b4;"></div>
1100
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b4;" > </a>
1101
- </div>
1102
-
1103
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-list-2 </span>
1104
- <div class="fs1 list-2" aria-hidden="true" data-icon="&#xe0b5;"></div>
1105
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b5;" > </a>
1106
- </div>
1107
-
1108
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-numbered-list </span>
1109
- <div class="fs1 numbered-list" aria-hidden="true" data-icon="&#xe0b6;"></div>
1110
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b6;" > </a>
1111
- </div>
1112
-
1113
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-menu </span>
1114
- <div class="fs1 menu" aria-hidden="true" data-icon="&#xe0b7;"></div>
1115
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b7;" > </a>
1116
- </div>
1117
-
1118
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-menu-2 </span>
1119
- <div class="fs1 menu-2" aria-hidden="true" data-icon="&#xe0b8;"></div>
1120
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b8;" > </a>
1121
- </div>
1122
-
1123
-
1124
-
1125
-
1126
-
1127
-
1128
-
1129
-
1130
-
1131
- <!-- continue with icon classes for the dropdown here -->
1132
- <!-- Continue ---- tree icon -->
1133
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tree </span>
1134
- <div class="fs1 tree" aria-hidden="true" data-icon="&#xe0b9;"></div>
1135
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0b9;" > </a>
1136
- </div>
1137
-
1138
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud </span>
1139
- <div class="fs1 cloud" aria-hidden="true" data-icon="&#xe0ba;"></div>
1140
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ba;" > </a>
1141
- </div>
1142
-
1143
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-download </span>
1144
- <div class="fs1 cloud-download" aria-hidden="true" data-icon="&#xe0bb;"></div>
1145
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0bb;" > </a>
1146
- </div>
1147
-
1148
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-upload </span>
1149
- <div class="fs1 cloud-upload" aria-hidden="true" data-icon="&#xe0bc;"></div>
1150
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0bc;" > </a>
1151
- </div>
1152
-
1153
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-download-2 </span>
1154
- <div class="fs1 download-2" aria-hidden="true" data-icon="&#xe0bd;"></div>
1155
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0bd;" > </a>
1156
- </div>
1157
-
1158
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-2 </span>
1159
- <div class="fs1 upload-2" aria-hidden="true" data-icon="&#xe0be;"></div>
1160
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0be;" > </a>
1161
- </div>
1162
-
1163
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-download-3 </span>
1164
- <div class="fs1 download-3" aria-hidden="true" data-icon="&#xe0bf;"></div>
1165
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0bf;" > </a>
1166
- </div>
1167
-
1168
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-3 </span>
1169
- <div class="fs1 upload-3" aria-hidden="true" data-icon="&#xe0c0;"></div>
1170
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c0;" > </a>
1171
- </div>
1172
-
1173
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-globe </span>
1174
- <div class="fs1 globe" aria-hidden="true" data-icon="&#xe0c1;"></div>
1175
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c1;" > </a>
1176
- </div>
1177
-
1178
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-earth </span>
1179
- <div class="fs1 earth" aria-hidden="true" data-icon="&#xe0c2;"></div>
1180
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c2;" > </a>
1181
- </div>
1182
-
1183
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-link </span>
1184
- <div class="fs1 link" aria-hidden="true" data-icon="&#xe0c3;"></div>
1185
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c3;" > </a>
1186
- </div>
1187
-
1188
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flag </span>
1189
- <div class="fs1 flag" aria-hidden="true" data-icon="&#xe0c4;"></div>
1190
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c4;" > </a>
1191
- </div>
1192
-
1193
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-attachment </span>
1194
- <div class="fs1 attachment" aria-hidden="true" data-icon="&#xe0c5;"></div>
1195
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c5;" > </a>
1196
- </div>
1197
-
1198
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-eye </span>
1199
- <div class="fs1 eye" aria-hidden="true" data-icon="&#xe0c6;"></div>
1200
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c6;" > </a>
1201
- </div>
1202
-
1203
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-blocked </span>
1204
- <div class="fs1 eye-blocked" aria-hidden="true" data-icon="&#xe0c7;"></div>
1205
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c7;" > </a>
1206
- </div>
1207
-
1208
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-2 </span>
1209
- <div class="fs1 eye-2" aria-hidden="true" data-icon="&#xe0c8;"></div>
1210
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c8;" > </a>
1211
- </div>
1212
-
1213
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmark </span>
1214
- <div class="fs1 bookmark" aria-hidden="true" data-icon="&#xe0c9;"></div>
1215
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0c9;" > </a>
1216
- </div>
1217
-
1218
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmarks </span>
1219
- <div class="fs1 bookmarks" aria-hidden="true" data-icon="&#xe0ca;"></div>
1220
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ca;" > </a>
1221
- </div>
1222
-
1223
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-medium </span>
1224
- <div class="fs1 brightness-medium" aria-hidden="true" data-icon="&#xe0cb;"></div>
1225
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0cb;" > </a>
1226
- </div>
1227
-
1228
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-contrast </span>
1229
- <div class="fs1 brightness-contrast" aria-hidden="true" data-icon="&#xe0cc;"></div>
1230
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0cc;" > </a>
1231
- </div>
1232
-
1233
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-contrast </span>
1234
- <div class="fs1 contrast" aria-hidden="true" data-icon="&#xe0cd;"></div>
1235
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0cd;" > </a>
1236
- </div>
1237
-
1238
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-star </span>
1239
- <div class="fs1 star" aria-hidden="true" data-icon="&#xe0ce;"></div>
1240
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ce;" > </a>
1241
- </div>
1242
-
1243
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-star-2 </span>
1244
- <div class="fs1 star-2" aria-hidden="true" data-icon="&#xe0cf;"></div>
1245
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0cf;" > </a>
1246
- </div>
1247
-
1248
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-star-3 </span>
1249
- <div class="fs1 star-3" aria-hidden="true" data-icon="&#xe0d0;"></div>
1250
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d0;" > </a>
1251
- </div>
1252
-
1253
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-heart </span>
1254
- <div class="fs1 heart" aria-hidden="true" data-icon="&#xe0d1;"></div>
1255
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d1;" > </a>
1256
- </div>
1257
-
1258
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-2 </span>
1259
- <div class="fs1 heart-2" aria-hidden="true" data-icon="&#xe0d2;"></div>
1260
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d2;" > </a>
1261
- </div>
1262
-
1263
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-broken </span>
1264
- <div class="fs1 heart-broken" aria-hidden="true" data-icon="&#xe0d3;"></div>
1265
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d3;" > </a>
1266
- </div>
1267
-
1268
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up </span>
1269
- <div class="fs1 thumbs-up" aria-hidden="true" data-icon="&#xe0d4;"></div>
1270
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d4;" > </a>
1271
- </div>
1272
-
1273
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up-2 </span>
1274
- <div class="fs1 thumpbs-up-2" aria-hidden="true" data-icon="&#xe0d5;"></div>
1275
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d5;" > </a>
1276
- </div>
1277
-
1278
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-happy </span>
1279
- <div class="fs1 happy" aria-hidden="true" data-icon="&#xe0d6;"></div>
1280
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d6;" > </a>
1281
- </div>
1282
-
1283
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-happy-2 </span>
1284
- <div class="fs1 happy-2" aria-hidden="true" data-icon="&#xe0d7;"></div>
1285
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d7;" > </a>
1286
- </div>
1287
-
1288
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley </span>
1289
- <div class="fs1 smiley" aria-hidden="true" data-icon="&#xe0d8;"></div>
1290
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d8;" > </a>
1291
- </div>
1292
-
1293
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley-2 </span>
1294
- <div class="fs1 smiley-2" aria-hidden="true" data-icon="&#xe0d9;"></div>
1295
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0d9;" > </a>
1296
- </div>
1297
-
1298
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue </span>
1299
- <div class="fs1 tongue" aria-hidden="true" data-icon="&#xe0da;"></div>
1300
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0da;" > </a>
1301
- </div>
1302
-
1303
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue-2 </span>
1304
- <div class="fs1 tongue-2" aria-hidden="true" data-icon="&#xe0db;"></div>
1305
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0db;" > </a>
1306
- </div>
1307
-
1308
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sad </span>
1309
- <div class="fs1 sad" aria-hidden="true" data-icon="&#xe0dc;"></div>
1310
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0dc;" > </a>
1311
- </div>
1312
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sad-2 </span>
1313
- <div class="fs1 sad-2" aria-hidden="true" data-icon="&#xe0dd;"></div>
1314
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0dd;" > </a>
1315
- </div>
1316
-
1317
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wink </span>
1318
- <div class="fs1 wink" aria-hidden="true" data-icon="&#xe0de;"></div>
1319
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0de;" > </a>
1320
- </div>
1321
-
1322
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wink-2 </span>
1323
- <div class="fs1 wink-2" aria-hidden="true" data-icon="&#xe0df;"></div>
1324
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0df;" > </a>
1325
- </div>
1326
-
1327
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-grin </span>
1328
- <div class="fs1 grin" aria-hidden="true" data-icon="&#xe0e0;"></div>
1329
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e0;" > </a>
1330
- </div>
1331
-
1332
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-grin-2 </span>
1333
- <div class="fs1 grin-2" aria-hidden="true" data-icon="&#xe0e1;"></div>
1334
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e1;" > </a>
1335
- </div>
1336
-
1337
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cool </span>
1338
- <div class="fs1 cool" aria-hidden="true" data-icon="&#xe0e2;"></div>
1339
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e2;" > </a>
1340
- </div>
1341
-
1342
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cool-2 </span>
1343
- <div class="fs1 cool-2" aria-hidden="true" data-icon="&#xe0e3;"></div>
1344
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e3;" > </a>
1345
- </div>
1346
-
1347
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-angry </span>
1348
- <div class="fs1 angry" aria-hidden="true" data-icon="&#xe0e4;"></div>
1349
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e4;" > </a>
1350
- </div>
1351
-
1352
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-angry-2 </span>
1353
- <div class="fs1 angry-2" aria-hidden="true" data-icon="&#xe0e5;"></div>
1354
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e5;" > </a>
1355
- </div>
1356
-
1357
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-evil </span>
1358
- <div class="fs1 evil" aria-hidden="true" data-icon="&#xe0e6;"></div>
1359
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e6;" > </a>
1360
- </div>
1361
-
1362
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-evil-2 </span>
1363
- <div class="fs1 evil-2" aria-hidden="true" data-icon="&#xe0e7;"></div>
1364
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e7;" > </a>
1365
- </div>
1366
-
1367
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked </span>
1368
- <div class="fs1 shocked" aria-hidden="true" data-icon="&#xe0e8;"></div>
1369
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e8;" > </a>
1370
- </div>
1371
-
1372
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked-2 </span>
1373
- <div class="fs1 shocked-2" aria-hidden="true" data-icon="&#xe0e9;"></div>
1374
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0e9;" > </a>
1375
- </div>
1376
-
1377
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-confused </span>
1378
- <div class="fs1 confused" aria-hidden="true" data-icon="&#xe0ea;"></div>
1379
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ea;" > </a>
1380
- </div>
1381
-
1382
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-confused-2 </span>
1383
- <div class="fs1 confused-2" aria-hidden="true" data-icon="&#xe0eb;"></div>
1384
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0eb;" > </a>
1385
- </div>
1386
-
1387
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral </span>
1388
- <div class="fs1 neutral" aria-hidden="true" data-icon="&#xe0ec;"></div>
1389
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ec;" > </a>
1390
- </div>
1391
-
1392
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral-2 </span>
1393
- <div class="fs1 neutral-2" aria-hidden="true" data-icon="&#xe0ed;"></div>
1394
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ed;" > </a>
1395
- </div>
1396
-
1397
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering </span>
1398
- <div class="fs1 wondering" aria-hidden="true" data-icon="&#xe0ee;"></div>
1399
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ee;" > </a>
1400
- </div>
1401
-
1402
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering-2 </span>
1403
- <div class="fs1 wondering-2" aria-hidden="true" data-icon="&#xe0ef;"></div>
1404
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ef;" > </a>
1405
- </div>
1406
-
1407
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-point-up </span>
1408
- <div class="fs1 point-up" aria-hidden="true" data-icon="&#xe0f0;"></div>
1409
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f0;" > </a>
1410
- </div>
1411
-
1412
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-point-right </span>
1413
- <div class="fs1 point-right" aria-hidden="true" data-icon="&#xe0f1;"></div>
1414
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f1;" > </a>
1415
- </div>
1416
-
1417
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-point-down </span>
1418
- <div class="fs1 point-down" aria-hidden="true" data-icon="&#xe0f2;"></div>
1419
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f2;" > </a>
1420
- </div>
1421
-
1422
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-point-left </span>
1423
- <div class="fs1 point-left" aria-hidden="true" data-icon="&#xe0f3;"></div>
1424
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f3;" > </a>
1425
- </div>
1426
-
1427
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-warning </span>
1428
- <div class="fs1 warning" aria-hidden="true" data-icon="&#xe0f4;"></div>
1429
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f4;" > </a>
1430
- </div>
1431
-
1432
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-notification </span>
1433
- <div class="fs1 notification" aria-hidden="true" data-icon="&#xe0f5;"></div>
1434
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f5;" > </a>
1435
- </div>
1436
-
1437
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-question </span>
1438
- <div class="fs1 question" aria-hidden="true" data-icon="&#xe0f6;"></div>
1439
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f6;" > </a>
1440
- </div>
1441
-
1442
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-info </span>
1443
- <div class="fs1 info" aria-hidden="true" data-icon="&#xe0f7;"></div>
1444
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f7;" > </a>
1445
- </div>
1446
-
1447
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-info-2 </span>
1448
- <div class="fs1 info-2" aria-hidden="true" data-icon="&#xe0f8;"></div>
1449
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f8;" > </a>
1450
- </div>
1451
-
1452
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-blocked </span>
1453
- <div class="fs1 blocked" aria-hidden="true" data-icon="&#xe0f9;"></div>
1454
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0f9;" > </a>
1455
- </div>
1456
-
1457
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cancel-circle </span>
1458
- <div class="fs1 cancel-circle" aria-hidden="true" data-icon="&#xe0fa;"></div>
1459
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0fa;" > </a>
1460
- </div>
1461
-
1462
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-circle </span>
1463
- <div class="fs1 checkmark-circle" aria-hidden="true" data-icon="&#xe0fb;"></div>
1464
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0fb;" > </a>
1465
- </div>
1466
-
1467
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spam </span>
1468
- <div class="fs1 spam" aria-hidden="true" data-icon="&#xe0fc;"></div>
1469
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0fc;" > </a>
1470
- </div>
1471
-
1472
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-close </span>
1473
- <div class="fs1 close" aria-hidden="true" data-icon="&#xe0fd;"></div>
1474
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0fd;" > </a>
1475
- </div>
1476
-
1477
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark </span>
1478
- <div class="fs1 checkmark" aria-hidden="true" data-icon="&#xe0fe;"></div>
1479
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0fe;" > </a>
1480
- </div>
1481
-
1482
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-2 </span>
1483
- <div class="fs1 checkmark-2" aria-hidden="true" data-icon="&#xe0ff;"></div>
1484
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe0ff;" > </a>
1485
- </div>
1486
-
1487
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-spell-check </span>
1488
- <div class="fs1 spell-check" aria-hidden="true" data-icon="&#xe100;"></div>
1489
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe100;" > </a>
1490
- </div>
1491
-
1492
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-minus </span>
1493
- <div class="fs1 minus" aria-hidden="true" data-icon="&#xe101;"></div>
1494
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe101;" > </a>
1495
- </div>
1496
-
1497
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-plus </span>
1498
- <div class="fs1 plus" aria-hidden="true" data-icon="&#xe102;"></div>
1499
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe102;" > </a>
1500
- </div>
1501
-
1502
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-enter </span>
1503
- <div class="fs1 enter" aria-hidden="true" data-icon="&#xe103;"></div>
1504
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe103;" > </a>
1505
- </div>
1506
-
1507
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-exit </span>
1508
- <div class="fs1 exit" aria-hidden="true" data-icon="&#xe104;"></div>
1509
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe104;" > </a>
1510
- </div>
1511
-
1512
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-play-2 </span>
1513
- <div class="fs1 play-2" aria-hidden="true" data-icon="&#xe105;"></div>
1514
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe105;" > </a>
1515
- </div>
1516
-
1517
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pause </span>
1518
- <div class="fs1 pause" aria-hidden="true" data-icon="&#xe106;"></div>
1519
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe106;" > </a>
1520
- </div>
1521
-
1522
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stop </span>
1523
- <div class="fs1 stop" aria-hidden="true" data-icon="&#xe107;"></div>
1524
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe107;" > </a>
1525
- </div>
1526
-
1527
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-backward </span>
1528
- <div class="fs1 backward" aria-hidden="true" data-icon="&#xe108;"></div>
1529
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe108;" > </a>
1530
- </div>
1531
-
1532
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-2 </span>
1533
- <div class="fs1 forward-2" aria-hidden="true" data-icon="&#xe109;"></div>
1534
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe109;" > </a>
1535
- </div>
1536
-
1537
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-play-3 </span>
1538
- <div class="fs1 play-3" aria-hidden="true" data-icon="&#xe10a;"></div>
1539
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10a;" > </a>
1540
- </div>
1541
-
1542
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pause-2 </span>
1543
- <div class="fs1 pause-2" aria-hidden="true" data-icon="&#xe10b;"></div>
1544
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10b;" > </a>
1545
- </div>
1546
-
1547
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stop-2 </span>
1548
- <div class="fs1 stop-2" aria-hidden="true" data-icon="&#xe10c;"></div>
1549
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10c;" > </a>
1550
- </div>
1551
-
1552
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-backward-2 </span>
1553
- <div class="fs1 backward-2" aria-hidden="true" data-icon="&#xe10d;"></div>
1554
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10d;" > </a>
1555
- </div>
1556
-
1557
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-3 </span>
1558
- <div class="fs1 forward-3" aria-hidden="true" data-icon="&#xe10e;"></div>
1559
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10e;" > </a>
1560
- </div>
1561
-
1562
-
1563
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-first </span>
1564
- <div class="fs1 first" aria-hidden="true" data-icon="&#xe10f;"></div>
1565
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe10f;" > </a>
1566
- </div>
1567
-
1568
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-last </span>
1569
- <div class="fs1 last" aria-hidden="true" data-icon="&#xe110;"></div>
1570
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe110;" > </a>
1571
- </div>
1572
-
1573
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-previous </span>
1574
- <div class="fs1 previous" aria-hidden="true" data-icon="&#xe111;"></div>
1575
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe111;" > </a>
1576
- </div>
1577
-
1578
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-next </span>
1579
- <div class="fs1 next" aria-hidden="true" data-icon="&#xe112;"></div>
1580
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe112;" > </a>
1581
- </div>
1582
-
1583
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-eject </span>
1584
- <div class="fs1 eject" aria-hidden="true" data-icon="&#xe113;"></div>
1585
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe113;" > </a>
1586
- </div>
1587
-
1588
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-high </span>
1589
- <div class="fs1 volume-high" aria-hidden="true" data-icon="&#xe114;"></div>
1590
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe114;" > </a>
1591
- </div>
1592
-
1593
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-medium </span>
1594
- <div class="fs1 volume-medium" aria-hidden="true" data-icon="&#xe115;"></div>
1595
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe115;" > </a>
1596
- </div>
1597
-
1598
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-low </span>
1599
- <div class="fs1 volume-low" aria-hidden="true" data-icon="&#xe116;"></div>
1600
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe116;" > </a>
1601
- </div>
1602
-
1603
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute </span>
1604
- <div class="fs1 volume-mute" aria-hidden="true" data-icon="&#xe117;"></div>
1605
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe117;" > </a>
1606
- </div>
1607
-
1608
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute-2 </span>
1609
- <div class="fs1 volume-mute-2" aria-hidden="true" data-icon="&#xe118;"></div>
1610
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe118;" > </a>
1611
- </div>
1612
-
1613
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-increase </span>
1614
- <div class="fs1 volume-increase" aria-hidden="true" data-icon="&#xe119;"></div>
1615
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe119;" > </a>
1616
- </div>
1617
-
1618
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-decrease </span>
1619
- <div class="fs1 volume-decrease" aria-hidden="true" data-icon="&#xe11a;"></div>
1620
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11a;" > </a>
1621
- </div>
1622
-
1623
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-loop </span>
1624
- <div class="fs1 loop" aria-hidden="true" data-icon="&#xe11b;"></div>
1625
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11b;" > </a>
1626
- </div>
1627
-
1628
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-2 </span>
1629
- <div class="fs1 loop-2" aria-hidden="true" data-icon="&#xe11c;"></div>
1630
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11c;" > </a>
1631
- </div>
1632
-
1633
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-3 </span>
1634
- <div class="fs1 loop-3" aria-hidden="true" data-icon="&#xe11d;"></div>
1635
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11d;" > </a>
1636
- </div>
1637
-
1638
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-shuffle </span>
1639
- <div class="fs1 shuffle" aria-hidden="true" data-icon="&#xe11e;"></div>
1640
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11e;" > </a>
1641
- </div>
1642
-
1643
-
1644
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left </span>
1645
- <div class="fs1 arrow-up-left" aria-hidden="true" data-icon="&#xe11f;"></div>
1646
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe11f;" > </a>
1647
- </div>
1648
-
1649
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up </span>
1650
- <div class="fs1 arrow-up" aria-hidden="true" data-icon="&#xe120;"></div>
1651
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe120;" > </a>
1652
- </div>
1653
-
1654
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right </span>
1655
- <div class="fs1 arrow-up-right" aria-hidden="true" data-icon="&#xe121;"></div>
1656
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe121;" > </a>
1657
- </div>
1658
-
1659
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right </span>
1660
- <div class="fs1 arrow-right" aria-hidden="true" data-icon="&#xe122;"></div>
1661
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe122;" > </a>
1662
- </div>
1663
-
1664
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right </span>
1665
- <div class="fs1 arrow-down-right" aria-hidden="true" data-icon="&#xe123;"></div>
1666
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe123;" > </a>
1667
- </div>
1668
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down </span>
1669
- <div class="fs1 arrow-down" aria-hidden="true" data-icon="&#xe124;"></div>
1670
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe124;" > </a>
1671
- </div>
1672
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left </span>
1673
- <div class="fs1 arrow-down-left" aria-hidden="true" data-icon="&#xe125;"></div>
1674
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe125;" > </a>
1675
- </div>
1676
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left </span>
1677
- <div class="fs1 arrow-left" aria-hidden="true" data-icon="&#xe126;"></div>
1678
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe126;" > </a>
1679
- </div>
1680
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-2 </span>
1681
- <div class="fs1 arrow-up-left-2" aria-hidden="true" data-icon="&#xe127;"></div>
1682
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe127;" > </a>
1683
- </div>
1684
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-2 </span>
1685
- <div class="fs1 arrow-up-2" aria-hidden="true" data-icon="&#xe128;"></div>
1686
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe128;" > </a>
1687
- </div>
1688
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-2 </span>
1689
- <div class="fs1 arrow-up-right-2" aria-hidden="true" data-icon="&#xe129;"></div>
1690
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe129;" > </a>
1691
- </div>
1692
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-2 </span>
1693
- <div class="fs1 arrow-right-2" aria-hidden="true" data-icon="&#xe12a;"></div>
1694
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12a;" > </a>
1695
- </div>
1696
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-2 </span>
1697
- <div class="fs1 arrow-down-right-2" aria-hidden="true" data-icon="&#xe12b;"></div>
1698
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12b;" > </a>
1699
- </div>
1700
-
1701
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-2 </span>
1702
- <div class="fs1 arrow-down-2" aria-hidden="true" data-icon="&#xe12c;"></div>
1703
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12c;" > </a>
1704
- </div>
1705
-
1706
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-2 </span>
1707
- <div class="fs1 arrow-down-left-2" aria-hidden="true" data-icon="&#xe12d;"></div>
1708
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12d;" > </a>
1709
- </div>
1710
-
1711
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-2 </span>
1712
- <div class="fs1 arrow-left-2" aria-hidden="true" data-icon="&#xe12e;"></div>
1713
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12e;" > </a>
1714
- </div>
1715
-
1716
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-3 </span>
1717
- <div class="fs1 arrow-up-left-3" aria-hidden="true" data-icon="&#xe12f;"></div>
1718
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe12f;" > </a>
1719
- </div>
1720
-
1721
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-3 </span>
1722
- <div class="fs1 arrow-up-3" aria-hidden="true" data-icon="&#xe130;"></div>
1723
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe130;" > </a>
1724
- </div>
1725
-
1726
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-3 </span>
1727
- <div class="fs1 arrow-up-right-3" aria-hidden="true" data-icon="&#xe131;"></div>
1728
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe131;" > </a>
1729
- </div>
1730
-
1731
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-3 </span>
1732
- <div class="fs1 arrow-right-3" aria-hidden="true" data-icon="&#xe132;"></div>
1733
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe132;" > </a>
1734
- </div>
1735
-
1736
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-3 </span>
1737
- <div class="fs1 arrow-down-right-3" aria-hidden="true" data-icon="&#xe133;"></div>
1738
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe133;" > </a>
1739
- </div>
1740
-
1741
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-3 </span>
1742
- <div class="fs1 arrow-down-3" aria-hidden="true" data-icon="&#xe134;"></div>
1743
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe134;" > </a>
1744
- </div>
1745
-
1746
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-3 </span>
1747
- <div class="fs1 arrow-down-left-3" aria-hidden="true" data-icon="&#xe135;"></div>
1748
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe135;" > </a>
1749
- </div>
1750
-
1751
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-3 </span>
1752
- <div class="fs1 arrow-left-3" aria-hidden="true" data-icon="&#xe136;"></div>
1753
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe136;" > </a>
1754
- </div>
1755
-
1756
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tab </span>
1757
- <div class="fs1 tab" aria-hidden="true" data-icon="&#xe137;"></div>
1758
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe137;" > </a>
1759
- </div>
1760
-
1761
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-checked </span>
1762
- <div class="fs1 checkbox-checked" aria-hidden="true" data-icon="&#xe138;"></div>
1763
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe138;" > </a>
1764
- </div>
1765
-
1766
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-unchecked </span>
1767
- <div class="fs1 checkbox-unchecked" aria-hidden="true" data-icon="&#xe139;"></div>
1768
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe139;" > </a>
1769
- </div>
1770
-
1771
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-partial </span>
1772
- <div class="fs1 checkbox-partial" aria-hidden="true" data-icon="&#xe13a;"></div>
1773
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe13a;" > </a>
1774
- </div>
1775
-
1776
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-checked </span>
1777
- <div class="fs1 radio-checked" aria-hidden="true" data-icon="&#xe13b;"></div>
1778
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe13b;" > </a>
1779
- </div>
1780
-
1781
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-unchecked </span>
1782
- <div class="fs1 radio-unchecked" aria-hidden="true" data-icon="&#xe13c;"></div>
1783
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe13c;" > </a>
1784
- </div>
1785
-
1786
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-crop </span>
1787
- <div class="fs1 crop" aria-hidden="true" data-icon="&#xe13d;"></div>
1788
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe13d;" > </a>
1789
- </div>
1790
-
1791
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-scissors </span>
1792
- <div class="fs1 scissors" aria-hidden="true" data-icon="&#xe13e;"></div>
1793
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe13e;" > </a>
1794
- </div>
1795
-
1796
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-italic </span>
1797
- <div class="fs1 italic" aria-hidden="true" data-icon="&#xe146;"></div>
1798
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe146;" > </a>
1799
- </div>
1800
-
1801
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-strikethrough </span>
1802
- <div class="fs1 strikethrough" aria-hidden="true" data-icon="&#xe147;"></div>
1803
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe147;" > </a>
1804
- </div>
1805
-
1806
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-omega </span>
1807
- <div class="fs1 omega" aria-hidden="true" data-icon="&#xe148;"></div>
1808
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe148;" > </a>
1809
- </div>
1810
-
1811
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sigma </span>
1812
- <div class="fs1 sigma" aria-hidden="true" data-icon="&#xe149;"></div>
1813
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe149;" > </a>
1814
- </div>
1815
-
1816
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-table </span>
1817
- <div class="fs1 table" aria-hidden="true" data-icon="&#xe14a;"></div>
1818
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14a;" > </a>
1819
- </div>
1820
-
1821
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-table-2 </span>
1822
- <div class="fs1 table-2" aria-hidden="true" data-icon="&#xe14b;"></div>
1823
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14b;" > </a>
1824
- </div>
1825
-
1826
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-insert-template </span>
1827
- <div class="fs1 insert-template" aria-hidden="true" data-icon="&#xe14c;"></div>
1828
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14c;" > </a>
1829
- </div>
1830
-
1831
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pilcrow </span>
1832
- <div class="fs1 pilcrow" aria-hidden="true" data-icon="&#xe14d;"></div>
1833
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14d;" > </a>
1834
- </div>
1835
-
1836
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-left-to-right </span>
1837
- <div class="fs1 left-to-right" aria-hidden="true" data-icon="&#xe14e;"></div>
1838
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14e;" > </a>
1839
- </div>
1840
-
1841
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-right-to-left </span>
1842
- <div class="fs1 right-to-left" aria-hidden="true" data-icon="&#xe14f;"></div>
1843
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe14f;" > </a>
1844
- </div>
1845
-
1846
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left </span>
1847
- <div class="fs1 paragraph-left" aria-hidden="true" data-icon="&#xe150;"></div>
1848
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe150;" > </a>
1849
- </div>
1850
-
1851
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center </span>
1852
- <div class="fs1 paragraph-center" aria-hidden="true" data-icon="&#xe151;"></div>
1853
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe151;" > </a>
1854
- </div>
1855
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right </span>
1856
- <div class="fs1 paragraph-right" aria-hidden="true" data-icon="&#xe152;"></div>
1857
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe152;" > </a>
1858
- </div>
1859
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify </span>
1860
- <div class="fs1 paragraph-justify" aria-hidden="true" data-icon="&#xe153;"></div>
1861
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe153;" > </a>
1862
- </div>
1863
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left-2 </span>
1864
- <div class="fs1 paragraph-left-2" aria-hidden="true" data-icon="&#xe154;"></div>
1865
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe154;" > </a>
1866
- </div>
1867
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center-2 </span>
1868
- <div class="fs1 paragraph-center-2" aria-hidden="true" data-icon="&#xe155;"></div>
1869
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe155;" > </a>
1870
- </div>
1871
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right-2 </span>
1872
- <div class="fs1 paragraph-right-2" aria-hidden="true" data-icon="&#xe156;"></div>
1873
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe156;" > </a>
1874
- </div>
1875
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify-2 </span>
1876
- <div class="fs1 paragraph-justify-2" aria-hidden="true" data-icon="&#xe157;"></div>
1877
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe157;" > </a>
1878
- </div>
1879
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-increase </span>
1880
- <div class="fs1 indent-increase" aria-hidden="true" data-icon="&#xe158;"></div>
1881
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe158;" > </a>
1882
- </div>
1883
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-decrease </span>
1884
- <div class="fs1 indent-decrease" aria-hidden="true" data-icon="&#xe159;"></div>
1885
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe159;" > </a>
1886
- </div>
1887
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-new-tab </span>
1888
- <div class="fs1 new-tab" aria-hidden="true" data-icon="&#xe15a;"></div>
1889
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15a;" > </a>
1890
- </div>
1891
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-embed </span>
1892
- <div class="fs1 embed" aria-hidden="true" data-icon="&#xe15b;"></div>
1893
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15b;" > </a>
1894
- </div>
1895
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-code </span>
1896
- <div class="fs1 code" aria-hidden="true" data-icon="&#xe15c;"></div>
1897
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15c;" > </a>
1898
- </div>
1899
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-console </span>
1900
- <div class="fs1 console" aria-hidden="true" data-icon="&#xe15d;"></div>
1901
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15d;" > </a>
1902
- </div>
1903
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-share </span>
1904
- <div class="fs1 share" aria-hidden="true" data-icon="&#xe15e;"></div>
1905
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15e;" > </a>
1906
- </div>
1907
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-mail </span>
1908
- <div class="fs1 mail" aria-hidden="true" data-icon="&#xe15f;"></div>
1909
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe15f;" > </a>
1910
- </div>
1911
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-2 </span>
1912
- <div class="fs1 mail-2" aria-hidden="true" data-icon="&#xe160;"></div>
1913
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe160;" > </a>
1914
- </div>
1915
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-3 </span>
1916
- <div class="fs1 mail-3" aria-hidden="true" data-icon="&#xe161;"></div>
1917
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe161;" > </a>
1918
- </div>
1919
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-4 </span>
1920
- <div class="fs1 mail-4" aria-hidden="true" data-icon="&#xe162;"></div>
1921
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe162;" > </a>
1922
- </div>
1923
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google </span>
1924
- <div class="fs1 google" aria-hidden="true" data-icon="&#xe163;"></div>
1925
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe163;" > </a>
1926
- </div>
1927
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus </span>
1928
- <div class="fs1 google-plus" aria-hidden="true" data-icon="&#xe164;"></div>
1929
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe164;" > </a>
1930
- </div>
1931
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-2 </span>
1932
- <div class="fs1 google-plus-2" aria-hidden="true" data-icon="&#xe165;"></div>
1933
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe165;" > </a>
1934
- </div>
1935
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-3 </span>
1936
- <div class="fs1 google-plus-3" aria-hidden="true" data-icon="&#xe166;"></div>
1937
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe166;" > </a>
1938
- </div>
1939
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-4 </span>
1940
- <div class="fs1 google-plus-4" aria-hidden="true" data-icon="&#xe167;"></div>
1941
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe167;" > </a>
1942
- </div>
1943
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-google-drive </span>
1944
- <div class="fs1 google-drive" aria-hidden="true" data-icon="&#xe168;"></div>
1945
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe168;" > </a>
1946
- </div>
1947
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook </span>
1948
- <div class="fs1 facebook" aria-hidden="true" data-icon="&#xe169;"></div>
1949
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe169;" > </a>
1950
- </div>
1951
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-2 </span>
1952
- <div class="fs1 facebook-2" aria-hidden="true" data-icon="&#xe16a;"></div>
1953
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16a;" > </a>
1954
- </div>
1955
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-3 </span>
1956
- <div class="fs1 facebook-3" aria-hidden="true" data-icon="&#xe16b;"></div>
1957
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16b;" > </a>
1958
- </div>
1959
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-instagram </span>
1960
- <div class="fs1 instagram" aria-hidden="true" data-icon="&#xe16c;"></div>
1961
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16c;" > </a>
1962
- </div>
1963
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter </span>
1964
- <div class="fs1 twitter" aria-hidden="true" data-icon="&#xe16d;"></div>
1965
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16d;" > </a>
1966
- </div>
1967
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-2 </span>
1968
- <div class="fs1 twitter-2" aria-hidden="true" data-icon="&#xe16e;"></div>
1969
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16e;" > </a>
1970
- </div>
1971
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-3 </span>
1972
- <div class="fs1 twitter-3" aria-hidden="true" data-icon="&#xe16f;"></div>
1973
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe16f;" > </a>
1974
- </div>
1975
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-2 </span>
1976
- <div class="fs1 feed-2" aria-hidden="true" data-icon="&#xe170;"></div>
1977
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe170;" > </a>
1978
- </div>
1979
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-3 </span>
1980
- <div class="fs1 feed-3" aria-hidden="true" data-icon="&#xe171;"></div>
1981
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe171;" > </a>
1982
- </div>
1983
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-4 </span>
1984
- <div class="fs1 feed-4" aria-hidden="true" data-icon="&#xe172;"></div>
1985
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe172;" > </a>
1986
- </div>
1987
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube </span>
1988
- <div class="fs1 youtube" aria-hidden="true" data-icon="&#xe173;"></div>
1989
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe173;" > </a>
1990
- </div>
1991
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube-2 </span>
1992
- <div class="fs1 youtube-2" aria-hidden="true" data-icon="&#xe174;"></div>
1993
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe174;" > </a>
1994
- </div>
1995
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo </span>
1996
- <div class="fs1 vimeo" aria-hidden="true" data-icon="&#xe175;"></div>
1997
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe175;" > </a>
1998
- </div>
1999
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo2 </span>
2000
- <div class="fs1 vimeo2" aria-hidden="true" data-icon="&#xe176;"></div>
2001
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe176;" > </a>
2002
- </div>
2003
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo-2 </span>
2004
- <div class="fs1 vimeo-2" aria-hidden="true" data-icon="&#xe177;"></div>
2005
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe177;" > </a>
2006
- </div>
2007
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lanyrd </span>
2008
- <div class="fs1 lanyrd" aria-hidden="true" data-icon="&#xe178;"></div>
2009
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe178;" > </a>
2010
- </div>
2011
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr </span>
2012
- <div class="fs1 flickr" aria-hidden="true" data-icon="&#xe179;"></div>
2013
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe179;" > </a>
2014
- </div>
2015
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-2 </span>
2016
- <div class="fs1 flickr-2" aria-hidden="true" data-icon="&#xe17a;"></div>
2017
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17a;" > </a>
2018
- </div>
2019
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-3 </span>
2020
- <div class="fs1 flickr-3" aria-hidden="true" data-icon="&#xe17b;"></div>
2021
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17b;" > </a>
2022
- </div>
2023
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-4 </span>
2024
- <div class="fs1 flickr-4" aria-hidden="true" data-icon="&#xe17c;"></div>
2025
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17c;" > </a>
2026
- </div>
2027
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa </span>
2028
- <div class="fs1 picassa" aria-hidden="true" data-icon="&#xe17d;"></div>
2029
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17d;" > </a>
2030
- </div>
2031
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa-2 </span>
2032
- <div class="fs1 picassa-2" aria-hidden="true" data-icon="&#xe17e;"></div>
2033
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17e;" > </a>
2034
- </div>
2035
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble </span>
2036
- <div class="fs1 dribbble" aria-hidden="true" data-icon="&#xe17f;"></div>
2037
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe17f;" > </a>
2038
- </div>
2039
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-2 </span>
2040
- <div class="fs1 dribbble-2" aria-hidden="true" data-icon="&#xe180;"></div>
2041
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe180;" > </a>
2042
- </div>
2043
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-3 </span>
2044
- <div class="fs1 dribbble-3" aria-hidden="true" data-icon="&#xe181;"></div>
2045
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe181;" > </a>
2046
- </div>
2047
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst </span>
2048
- <div class="fs1 forrst" aria-hidden="true" data-icon="&#xe182;"></div>
2049
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe182;" > </a>
2050
- </div>
2051
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst-2 </span>
2052
- <div class="fs1 forrst-2" aria-hidden="true" data-icon="&#xe183;"></div>
2053
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe183;" > </a>
2054
- </div>
2055
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart </span>
2056
- <div class="fs1 deviantart" aria-hidden="true" data-icon="&#xe184;"></div>
2057
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe184;" > </a>
2058
- </div>
2059
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart-2 </span>
2060
- <div class="fs1 deviantart-2" aria-hidden="true" data-icon="&#xe185;"></div>
2061
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe185;" > </a>
2062
- </div>
2063
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-steam </span>
2064
- <div class="fs1 steam" aria-hidden="true" data-icon="&#xe186;"></div>
2065
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe186;" > </a>
2066
- </div>
2067
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-steam-2 </span>
2068
- <div class="fs1 steam-2" aria-hidden="true" data-icon="&#xe187;"></div>
2069
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe187;" > </a>
2070
- </div>
2071
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-github </span>
2072
- <div class="fs1 github" aria-hidden="true" data-icon="&#xe188;"></div>
2073
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe188;" > </a>
2074
- </div>
2075
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-github-2 </span>
2076
- <div class="fs1 github-2" aria-hidden="true" data-icon="&#xe189;"></div>
2077
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe189;" > </a>
2078
- </div>
2079
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-github-3 </span>
2080
- <div class="fs1 github-3" aria-hidden="true" data-icon="&#xe18a;"></div>
2081
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18a;" > </a>
2082
- </div>
2083
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-github-4 </span>
2084
- <div class="fs1 github-4" aria-hidden="true" data-icon="&#xe18b;"></div>
2085
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18b;" > </a>
2086
- </div>
2087
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-github-5 </span>
2088
- <div class="fs1 github-5" aria-hidden="true" data-icon="&#xe18c;"></div>
2089
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18c;" > </a>
2090
- </div>
2091
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress </span>
2092
- <div class="fs1 wordpress" aria-hidden="true" data-icon="&#xe18d;"></div>
2093
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18d;" > </a>
2094
- </div>
2095
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress-2 </span>
2096
- <div class="fs1 wordpress-2" aria-hidden="true" data-icon="&#xe18e;"></div>
2097
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18e;" > </a>
2098
- </div>
2099
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-joomla </span>
2100
- <div class="fs1 joomla" aria-hidden="true" data-icon="&#xe18f;"></div>
2101
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe18f;" > </a>
2102
- </div>
2103
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger </span>
2104
- <div class="fs1 blogger" aria-hidden="true" data-icon="&#xe190;"></div>
2105
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe190;" > </a>
2106
- </div>
2107
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger-2 </span>
2108
- <div class="fs1 blogger-2" aria-hidden="true" data-icon="&#xe191;"></div>
2109
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe191;" > </a>
2110
- </div>
2111
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr </span>
2112
- <div class="fs1 tumblr" aria-hidden="true" data-icon="&#xe192;"></div>
2113
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe192;" > </a>
2114
- </div>
2115
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr-2 </span>
2116
- <div class="fs1 tumblr-2" aria-hidden="true" data-icon="&#xe193;"></div>
2117
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe193;" > </a>
2118
- </div>
2119
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-yahoo </span>
2120
- <div class="fs1 yahoo" aria-hidden="true" data-icon="&#xe194;"></div>
2121
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe194;" > </a>
2122
- </div>
2123
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-tux </span>
2124
- <div class="fs1 tux" aria-hidden="true" data-icon="&#xe195;"></div>
2125
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe195;" > </a>
2126
- </div>
2127
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-apple </span>
2128
- <div class="fs1 apple" aria-hidden="true" data-icon="&#xe196;"></div>
2129
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe196;" > </a>
2130
- </div>
2131
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-finder </span>
2132
- <div class="fs1 finder" aria-hidden="true" data-icon="&#xe197;"></div>
2133
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe197;" > </a>
2134
- </div>
2135
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-android </span>
2136
- <div class="fs1 android" aria-hidden="true" data-icon="&#xe198;"></div>
2137
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe198;" > </a>
2138
- </div>
2139
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windows </span>
2140
- <div class="fs1 windows" aria-hidden="true" data-icon="&#xe199;"></div>
2141
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe199;" > </a>
2142
- </div>
2143
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windows8 </span>
2144
- <div class="fs1 windows8" aria-hidden="true" data-icon="&#xe19a;"></div>
2145
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19a;" > </a>
2146
- </div>
2147
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud </span>
2148
- <div class="fs1 soundcloud" aria-hidden="true" data-icon="&#xe19b;"></div>
2149
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19b;" > </a>
2150
- </div>
2151
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud-2 </span>
2152
- <div class="fs1 soundcloud-2" aria-hidden="true" data-icon="&#xe19c;"></div>
2153
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19c;" > </a>
2154
- </div>
2155
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-skype </span>
2156
- <div class="fs1 skype" aria-hidden="true" data-icon="&#xe19d;"></div>
2157
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19d;" > </a>
2158
- </div>
2159
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-reddit </span>
2160
- <div class="fs1 reddit" aria-hidden="true" data-icon="&#xe19e;"></div>
2161
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19e;" > </a>
2162
- </div>
2163
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-linkedin </span>
2164
- <div class="fs1 linkedin" aria-hidden="true" data-icon="&#xe19f;"></div>
2165
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe19f;" > </a>
2166
- </div>
2167
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm </span>
2168
- <div class="fs1 lastfm" aria-hidden="true" data-icon="&#xe1a0;"></div>
2169
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a0;" > </a>
2170
- </div>
2171
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm-2 </span>
2172
- <div class="fs1 lastfm-2" aria-hidden="true" data-icon="&#xe1a1;"></div>
2173
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a1;" > </a>
2174
- </div>
2175
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-delicious </span>
2176
- <div class="fs1 delicious" aria-hidden="true" data-icon="&#xe1a2;"></div>
2177
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a2;" > </a>
2178
- </div>
2179
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon </span>
2180
- <div class="fs1 stumbleupon" aria-hidden="true" data-icon="&#xe1a3;"></div>
2181
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a3;" > </a>
2182
- </div>
2183
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon-2 </span>
2184
- <div class="fs1 stumbleupon-2" aria-hidden="true" data-icon="&#xe1a4;"></div>
2185
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a4;" > </a>
2186
- </div>
2187
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-stackoverflow </span>
2188
- <div class="fs1 stackoverflow" aria-hidden="true" data-icon="&#xe1a5;"></div>
2189
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a5;" > </a>
2190
- </div>
2191
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest </span>
2192
- <div class="fs1 pinterest" aria-hidden="true" data-icon="&#xe1a6;"></div>
2193
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a6;" > </a>
2194
- </div>
2195
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest-2 </span>
2196
- <div class="fs1 pinterest-2" aria-hidden="true" data-icon="&#xe1a7;"></div>
2197
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a7;" > </a>
2198
- </div>
2199
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-xing </span>
2200
- <div class="fs1 xing" aria-hidden="true" data-icon="&#xe1a8;"></div>
2201
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a8;" > </a>
2202
- </div>
2203
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-xing-2 </span>
2204
- <div class="fs1 xing-2" aria-hidden="true" data-icon="&#xe1a9;"></div>
2205
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1a9;" > </a>
2206
- </div>
2207
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-flattr </span>
2208
- <div class="fs1 flattr" aria-hidden="true" data-icon="&#xe1aa;"></div>
2209
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1aa;" > </a>
2210
- </div>
2211
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
2212
- <div class="fs1 foursquare" aria-hidden="true" data-icon="&#xe1ab;"></div>
2213
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ab;" > </a>
2214
- </div>
2215
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
2216
- <div class="fs1 foursquare" aria-hidden="true" data-icon="&#xe1ac;"></div>
2217
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ac;" > </a>
2218
- </div>
2219
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal </span>
2220
- <div class="fs1 paypal" aria-hidden="true" data-icon="&#xe1ad;"></div>
2221
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ad;" > </a>
2222
- </div>
2223
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-2 </span>
2224
- <div class="fs1 paypal-2" aria-hidden="true" data-icon="&#xe1ae;"></div>
2225
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ae;" > </a>
2226
- </div>
2227
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-3 </span>
2228
- <div class="fs1 paypal-3" aria-hidden="true" data-icon="&#xe1af;"></div>
2229
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1af;" > </a>
2230
- </div>
2231
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-yelp </span>
2232
- <div class="fs1 yelp" aria-hidden="true" data-icon="&#xe1b0;"></div>
2233
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b0;" > </a>
2234
- </div>
2235
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-libreoffice </span>
2236
- <div class="fs1 libreoffice" aria-hidden="true" data-icon="&#xe1b1;"></div>
2237
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b1;" > </a>
2238
- </div>
2239
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-pdf </span>
2240
- <div class="fs1 file-pdf" aria-hidden="true" data-icon="&#xe1b2;"></div>
2241
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b2;" > </a>
2242
- </div>
2243
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-openoffice </span>
2244
- <div class="fs1 file-openoffice" aria-hidden="true" data-icon="&#xe1b3;"></div>
2245
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b3;" > </a>
2246
- </div>
2247
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-word </span>
2248
- <div class="fs1 file-word" aria-hidden="true" data-icon="&#xe1b4;"></div>
2249
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b4;" > </a>
2250
- </div>
2251
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-excel </span>
2252
- <div class="fs1 file-excel" aria-hidden="true" data-icon="&#xe1b5;"></div>
2253
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b5;" > </a>
2254
- </div>
2255
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-zip </span>
2256
- <div class="fs1 file-zip" aria-hidden="true" data-icon="&#xe1b6;"></div>
2257
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b6;" > </a>
2258
- </div>
2259
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-powerpoint </span>
2260
- <div class="fs1 file-powerpoint" aria-hidden="true" data-icon="&#xe1b7;"></div>
2261
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b7;" > </a>
2262
- </div>
2263
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-xml </span>
2264
- <div class="fs1 file-xml" aria-hidden="true" data-icon="&#xe1b8;"></div>
2265
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b8;" > </a>
2266
- </div>
2267
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-file-css </span>
2268
- <div class="fs1 file-css" aria-hidden="true" data-icon="&#xe1b9;"></div>
2269
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1b9;" > </a>
2270
- </div>
2271
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-html5 </span>
2272
- <div class="fs1 html5" aria-hidden="true" data-icon="&#xe1ba;"></div>
2273
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ba;" > </a>
2274
- </div>
2275
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-html5-2 </span>
2276
- <div class="fs1 html5-2" aria-hidden="true" data-icon="&#xe1bb;"></div>
2277
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1bb;" > </a>
2278
- </div>
2279
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-css3 </span>
2280
- <div class="fs1 css3" aria-hidden="true" data-icon="&#xe1bc;"></div>
2281
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1bc;" > </a>
2282
- </div>
2283
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-chrome </span>
2284
- <div class="fs1 chrome" aria-hidden="true" data-icon="&#xe1bd;"></div>
2285
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1bd;" > </a>
2286
- </div>
2287
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-firefox </span>
2288
- <div class="fs1 firefox" aria-hidden="true" data-icon="&#xe1be;"></div>
2289
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1be;" > </a>
2290
- </div>
2291
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-IE </span>
2292
- <div class="fs1 IE" aria-hidden="true" data-icon="&#xe1bf;"></div>
2293
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1bf;" > </a>
2294
- </div>
2295
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-opera </span>
2296
- <div class="fs1 opera" aria-hidden="true" data-icon="&#xe1c0;"></div>
2297
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c0;" > </a>
2298
- </div>
2299
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-safari </span>
2300
- <div class="fs1 safari" aria-hidden="true" data-icon="&#xe1c1;"></div>
2301
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c1;" > </a>
2302
- </div>
2303
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-IcoMoon </span>
2304
- <div class="fs1 IcoMoon" aria-hidden="true" data-icon="&#xe1c2;"></div>
2305
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c2;" > </a>
2306
- </div>
2307
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sunrise </span>
2308
- <div class="fs1 sunrise" aria-hidden="true" data-icon="&#xe1c3;"></div>
2309
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c3;" > </a>
2310
- </div>
2311
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sun </span>
2312
- <div class="fs1 sun" aria-hidden="true" data-icon="&#xe1c4;"></div>
2313
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c4;" > </a>
2314
- </div>
2315
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-moon </span>
2316
- <div class="fs1 moon" aria-hidden="true" data-icon="&#xe1c5;"></div>
2317
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c5;" > </a>
2318
- </div>
2319
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-2 </span>
2320
- <div class="fs1 sun-2" aria-hidden="true" data-icon="&#xe1c6;"></div>
2321
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c6;" > </a>
2322
- </div>
2323
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windy </span>
2324
- <div class="fs1 windy" aria-hidden="true" data-icon="&#xe1c7;"></div>
2325
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c7;" > </a>
2326
- </div>
2327
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-wind </span>
2328
- <div class="fs1 wind" aria-hidden="true" data-icon="&#xe1c8;"></div>
2329
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c8;" > </a>
2330
- </div>
2331
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowflake </span>
2332
- <div class="fs1 snowflake" aria-hidden="true" data-icon="&#xe1c9;"></div>
2333
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1c9;" > </a>
2334
- </div>
2335
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy </span>
2336
- <div class="fs1 cloudy" aria-hidden="true" data-icon="&#xe1ca;"></div>
2337
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ca;" > </a>
2338
- </div>
2339
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-2 </span>
2340
- <div class="fs1 cloud-2" aria-hidden="true" data-icon="&#xe1cb;"></div>
2341
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1cb;" > </a>
2342
- </div>
2343
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather </span>
2344
- <div class="fs1 weather" aria-hidden="true" data-icon="&#xe1cc;"></div>
2345
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1cc;" > </a>
2346
- </div>
2347
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
2348
- <div class="fs1 weather-2" aria-hidden="true" data-icon="&#xe1cd;"></div>
2349
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1cd;" > </a>
2350
- </div>
2351
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-3 </span>
2352
- <div class="fs1 weather-3" aria-hidden="true" data-icon="&#xe1ce;"></div>
2353
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ce;" > </a>
2354
- </div>
2355
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lines </span>
2356
- <div class="fs1 lines" aria-hidden="true" data-icon="&#xe1cf;"></div>
2357
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1cf;" > </a>
2358
- </div>
2359
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-3 </span>
2360
- <div class="fs1 cloud-3" aria-hidden="true" data-icon="&#xe1d0;"></div>
2361
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d0;" > </a>
2362
- </div>
2363
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-2 </span>
2364
- <div class="fs1 lightning-2" aria-hidden="true" data-icon="&#xe1d1;"></div>
2365
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d1;" > </a>
2366
- </div>
2367
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-3 </span>
2368
- <div class="fs1 lightning-3" aria-hidden="true" data-icon="&#xe1d2;"></div>
2369
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d2;" > </a>
2370
- </div>
2371
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy </span>
2372
- <div class="fs1 rainy" aria-hidden="true" data-icon="&#xe1d3;"></div>
2373
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d3;" > </a>
2374
- </div>
2375
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-2 </span>
2376
- <div class="fs1 rainy-2" aria-hidden="true" data-icon="&#xe1d4;"></div>
2377
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d4;" > </a>
2378
- </div>
2379
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-2 </span>
2380
- <div class="fs1 windy-2" aria-hidden="true" data-icon="&#xe1d5;"></div>
2381
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d5;" > </a>
2382
- </div>
2383
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-3 </span>
2384
- <div class="fs1 windy-3" aria-hidden="true" data-icon="&#xe1d6;"></div>
2385
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d6;" > </a>
2386
- </div>
2387
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy </span>
2388
- <div class="fs1 snowy" aria-hidden="true" data-icon="&#xe1d7;"></div>
2389
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d7;" > </a>
2390
- </div>
2391
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-2 </span>
2392
- <div class="fs1 snowy-2" aria-hidden="true" data-icon="&#xe1d8;"></div>
2393
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d8;" > </a>
2394
- </div>
2395
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-3 </span>
2396
- <div class="fs1 snowy-3" aria-hidden="true" data-icon="&#xe1d9;"></div>
2397
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1d9;" > </a>
2398
- </div>
2399
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-4 </span>
2400
- <div class="fs1 weather-4" aria-hidden="true" data-icon="&#xe1da;"></div>
2401
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1da;" > </a>
2402
- </div>
2403
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
2404
- <div class="fs1 cloudy-2" aria-hidden="true" data-icon="&#xe1db;"></div>
2405
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1db;" > </a>
2406
- </div>
2407
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-4 </span>
2408
- <div class="fs1 cloud-4" aria-hidden="true" data-icon="&#xe1dc;"></div>
2409
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1dc;" > </a>
2410
- </div>
2411
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-4 </span>
2412
- <div class="fs1 lightning-4" aria-hidden="true" data-icon="&#xe1dd;"></div>
2413
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1dd;" > </a>
2414
- </div>
2415
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-3 </span>
2416
- <div class="fs1 sun-3" aria-hidden="true" data-icon="&#xe1de;"></div>
2417
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1de;" > </a>
2418
- </div>
2419
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-moon-2 </span>
2420
- <div class="fs1 moon-2" aria-hidden="true" data-icon="&#xe1df;"></div>
2421
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1df;" > </a>
2422
- </div>
2423
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-3 </span>
2424
- <div class="fs1 cloudy-3" aria-hidden="true" data-icon="&#xe1e0;"></div>
2425
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e0;" > </a>
2426
- </div>
2427
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-5 </span>
2428
- <div class="fs1 cloud-5" aria-hidden="true" data-icon="&#xe1e1;"></div>
2429
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e1;" > </a>
2430
- </div>
2431
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-6 </span>
2432
- <div class="fs1 cloud-6" aria-hidden="true" data-icon="&#xe1e2;"></div>
2433
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e2;" > </a>
2434
- </div>
2435
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-5 </span>
2436
- <div class="fs1 lightning-5" aria-hidden="true" data-icon="&#xe1e3;"></div>
2437
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e3;" > </a>
2438
- </div>
2439
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-3 </span>
2440
- <div class="fs1 rainy-3" aria-hidden="true" data-icon="&#xe1e4;"></div>
2441
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e4;" > </a>
2442
- </div>
2443
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-4 </span>
2444
- <div class="fs1 rainy-4" aria-hidden="true" data-icon="&#xe1e5;"></div>
2445
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e5;" > </a>
2446
- </div>
2447
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-4 </span>
2448
- <div class="fs1 windy-4" aria-hidden="true" data-icon="&#xe1e6;"></div>
2449
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e6;" > </a>
2450
- </div>
2451
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-5 </span>
2452
- <div class="fs1 windy-5" aria-hidden="true" data-icon="&#xe1e7;"></div>
2453
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e7;" > </a>
2454
- </div>
2455
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-4 </span>
2456
- <div class="fs1 snowy-4" aria-hidden="true" data-icon="&#xe1e8;"></div>
2457
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e8;" > </a>
2458
- </div>
2459
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-5 </span>
2460
- <div class="fs1 snowy-5" aria-hidden="true" data-icon="&#xe1e9;"></div>
2461
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1e9;" > </a>
2462
- </div>
2463
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-5 </span>
2464
- <div class="fs1 weather-5" aria-hidden="true" data-icon="&#xe1ea;"></div>
2465
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ea;" > </a>
2466
- </div>
2467
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-4 </span>
2468
- <div class="fs1 cloudy-4" aria-hidden="true" data-icon="&#xe1eb;"></div>
2469
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1eb;" > </a>
2470
- </div>
2471
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-6 </span>
2472
- <div class="fs1 lightning-6" aria-hidden="true" data-icon="&#xe1ec;"></div>
2473
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ec;" > </a>
2474
- </div>
2475
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-thermometer </span>
2476
- <div class="fs1 thermometer" aria-hidden="true" data-icon="&#xe1ed;"></div>
2477
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ed;" > </a>
2478
- </div>
2479
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-compass-2 </span>
2480
- <div class="fs1 compass-2" aria-hidden="true" data-icon="&#xe1ee;"></div>
2481
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ee;" > </a>
2482
- </div>
2483
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-none </span>
2484
- <div class="fs1 none" aria-hidden="true" data-icon="&#xe1ef;"></div>
2485
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1ef;" > </a>
2486
- </div>
2487
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-Celsius </span>
2488
- <div class="fs1 Celsius" aria-hidden="true" data-icon="&#xe1f0;"></div>
2489
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1f0;" > </a>
2490
- </div>
2491
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-Fahrenheit </span>
2492
- <div class="fs1 Fahrenheit" aria-hidden="true" data-icon="&#xe1f1;"></div>
2493
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1f1;" > </a>
2494
- </div>
2495
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-aperture </span>
2496
- <div class="fs1 aperture" aria-hidden="true" data-icon="&#xe1f2;"></div>
2497
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1f2;" > </a>
2498
- </div>
2499
- <div class="glyph glyph-demo"><span class="mls"> wp-svg-camera-3 </span>
2500
- <div class="fs1 camera-3" aria-hidden="true" data-icon="&#xe1f3;"></div>
2501
- <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#xe1f3;" > </a>
2502
- </div>
2503
-
2504
- </section>
2505
-
2506
- </div>
2507
-
2508
- <div class="custom-pack-container-ajax" style="display:inline-block; margin-top:1em; "></div>
2509
-
2510
- <div class="clear"></div>
2511
-
2512
- <footer>
2513
- <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>
2514
- </footer>
2515
-
2516
- </div>
2517
-
2518
- </div>
 
 
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="&#xe000;" ></div>
116
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe001;"></div>
122
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe002;"></div>
129
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe003;"></div>
135
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe004;"></div>
141
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe005;"></div>
147
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe006;"></div>
153
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe007;"></div>
159
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe008;"></div>
165
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe009;"></div>
171
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe00a;"></div>
177
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe00c;"></div>
183
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe00d;"></div>
189
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe00e;"></div>
195
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe00f;"></div>
201
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe010;"></div>
207
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe011;"></div>
213
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe012;"></div>
219
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe013;"></div>
225
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe014;"></div>
231
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe015;"></div>
237
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe016;"></div>
243
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe017;"></div>
249
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe018;"></div>
255
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe019;"></div>
261
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01a;"></div>
267
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01b;"></div>
273
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01c;"></div>
279
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01d;"></div>
285
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01e;"></div>
291
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe01f;"></div>
297
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe020;"></div>
303
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe021;"></div>
309
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe022;"></div>
315
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe023;"></div>
321
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe024;"></div>
327
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe025;"></div>
333
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe026;"></div>
339
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe027;"></div>
345
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe028;"></div>
351
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe029;"></div>
357
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02a;"></div>
363
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02b;"></div>
369
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02c;"></div>
375
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02d;"></div>
381
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02e;"></div>
387
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe02f;"></div>
393
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe030;"></div>
399
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe031;"></div>
405
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe032;"></div>
411
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe033;"></div>
417
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe034;"></div>
423
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe035;"></div>
429
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe036;"></div>
435
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe037;"></div>
441
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe038;"></div>
447
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe039;"></div>
453
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03a;"></div>
459
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03b;"></div>
465
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03c;"></div>
471
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03d;"></div>
477
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03e;"></div>
483
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe03f;"></div>
489
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe040;"></div>
495
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe041;"></div>
501
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe042;"></div>
507
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe043;"></div>
513
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe044;"></div>
519
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe045;"></div>
525
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe046;"></div>
531
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe047;"></div>
537
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe048;"></div>
543
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe049;"></div>
549
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04a;"></div>
555
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04b;"></div>
561
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04c;"></div>
567
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04d;"></div>
573
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04e;"></div>
579
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe04f;"></div>
585
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe050;"></div>
591
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe051;"></div>
597
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe052;"></div>
603
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe053;"></div>
609
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe054;"></div>
615
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe055;"></div>
621
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe056;"></div>
627
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe057;"></div>
633
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe058;"></div>
639
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe059;"></div>
645
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05a;"></div>
651
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05b;"></div>
657
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05c;"></div>
663
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05d;"></div>
669
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05e;"></div>
675
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe05f;"></div>
681
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe060;"></div>
687
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe061;"></div>
692
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe062;"></div>
697
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe063;"></div>
702
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe064;"></div>
707
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe065;"></div>
712
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe066;"></div>
717
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe067;"></div>
722
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe068;"></div>
727
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe069;"></div>
732
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06a;"></div>
737
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06b;"></div>
742
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06c;"></div>
747
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06d;"></div>
752
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06e;"></div>
756
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe06f;"></div>
761
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe070;"></div>
766
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe071;"></div>
771
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe072;"></div>
776
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe073;"></div>
781
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe074;"></div>
786
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe075;"></div>
791
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe076;"></div>
796
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe077;"></div>
801
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe078;"></div>
806
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe079;"></div>
810
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07a;"></div>
814
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07b;"></div>
819
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07c;"></div>
824
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07d;"></div>
829
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07e;"></div>
834
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe07f;"></div>
839
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe080;"></div>
844
+ <a class="glyph-link contract-2" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe081;"></div>
849
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe082;"></div>
853
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe083;"></div>
858
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe084;"></div>
863
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe085;"></div>
867
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe086;"></div>
872
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe087;"></div>
877
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe088;"></div>
882
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe089;"></div>
887
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08a;"></div>
892
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08b;"></div>
897
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08c;"></div>
902
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08d;"></div>
907
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08e;"></div>
912
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe08f;"></div>
917
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe090;"></div>
922
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe091;"></div>
927
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe092;"></div>
932
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe093;"></div>
937
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe094;"></div>
942
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe095;"></div>
947
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe096;"></div>
952
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe097;"></div>
957
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe098;"></div>
962
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe099;"></div>
967
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09a;"></div>
972
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09b;"></div>
977
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09c;"></div>
982
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09d;"></div>
987
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09e;"></div>
992
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe09f;"></div>
997
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a0;"></div>
1002
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a1;"></div>
1007
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a2;"></div>
1012
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a3;"></div>
1017
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a4;"></div>
1022
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a5;"></div>
1027
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a6;"></div>
1032
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a7;"></div>
1037
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a8;"></div>
1042
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0a9;"></div>
1047
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0aa;"></div>
1052
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ab;"></div>
1057
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ac;"></div>
1062
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ad;"></div>
1067
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ae;"></div>
1072
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0af;"></div>
1077
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b0;"></div>
1082
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b1;"></div>
1087
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b2;"></div>
1092
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b3;"></div>
1097
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b4;"></div>
1102
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b5;"></div>
1107
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b6;"></div>
1112
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b7;"></div>
1117
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b8;"></div>
1122
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0b9;"></div>
1137
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ba;"></div>
1142
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0bb;"></div>
1147
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0bc;"></div>
1152
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0bd;"></div>
1157
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0be;"></div>
1162
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0bf;"></div>
1167
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c0;"></div>
1172
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c1;"></div>
1177
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c2;"></div>
1182
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c3;"></div>
1187
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c4;"></div>
1192
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c5;"></div>
1197
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c6;"></div>
1202
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c7;"></div>
1207
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c8;"></div>
1212
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0c9;"></div>
1217
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ca;"></div>
1222
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0cb;"></div>
1227
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0cc;"></div>
1232
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0cd;"></div>
1237
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ce;"></div>
1242
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0cf;"></div>
1247
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d0;"></div>
1252
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d1;"></div>
1257
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d2;"></div>
1262
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d3;"></div>
1267
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d4;"></div>
1272
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d5;"></div>
1277
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d6;"></div>
1282
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d7;"></div>
1287
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d8;"></div>
1292
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0d9;"></div>
1297
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0da;"></div>
1302
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0db;"></div>
1307
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0dc;"></div>
1312
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0dd;"></div>
1316
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0de;"></div>
1321
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0df;"></div>
1326
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e0;"></div>
1331
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e1;"></div>
1336
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e2;"></div>
1341
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e3;"></div>
1346
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e4;"></div>
1351
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e5;"></div>
1356
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e6;"></div>
1361
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e7;"></div>
1366
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e8;"></div>
1371
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0e9;"></div>
1376
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ea;"></div>
1381
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0eb;"></div>
1386
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ec;"></div>
1391
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ed;"></div>
1396
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ee;"></div>
1401
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ef;"></div>
1406
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f0;"></div>
1411
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f1;"></div>
1416
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f2;"></div>
1421
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f3;"></div>
1426
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f4;"></div>
1431
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f5;"></div>
1436
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f6;"></div>
1441
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f7;"></div>
1446
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f8;"></div>
1451
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0f9;"></div>
1456
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0fa;"></div>
1461
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0fb;"></div>
1466
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0fc;"></div>
1471
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0fd;"></div>
1476
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0fe;"></div>
1481
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe0ff;"></div>
1486
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe100;"></div>
1491
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe101;"></div>
1496
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe102;"></div>
1501
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe103;"></div>
1506
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe104;"></div>
1511
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe105;"></div>
1516
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe106;"></div>
1521
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe107;"></div>
1526
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe108;"></div>
1531
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe109;"></div>
1536
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10a;"></div>
1541
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10b;"></div>
1546
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10c;"></div>
1551
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10d;"></div>
1556
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10e;"></div>
1561
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe10f;"></div>
1567
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe110;"></div>
1572
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe111;"></div>
1577
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe112;"></div>
1582
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe113;"></div>
1587
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe114;"></div>
1592
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe115;"></div>
1597
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe116;"></div>
1602
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe117;"></div>
1607
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe118;"></div>
1612
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe119;"></div>
1617
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11a;"></div>
1622
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11b;"></div>
1627
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11c;"></div>
1632
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11d;"></div>
1637
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11e;"></div>
1642
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe11f;"></div>
1648
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe120;"></div>
1653
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe121;"></div>
1658
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe122;"></div>
1663
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe123;"></div>
1668
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe124;"></div>
1672
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe125;"></div>
1676
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe126;"></div>
1680
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe127;"></div>
1684
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe128;"></div>
1688
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe129;"></div>
1692
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12a;"></div>
1696
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12b;"></div>
1700
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12c;"></div>
1705
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12d;"></div>
1710
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12e;"></div>
1715
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe12f;"></div>
1720
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe130;"></div>
1725
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe131;"></div>
1730
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe132;"></div>
1735
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe133;"></div>
1740
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe134;"></div>
1745
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe135;"></div>
1750
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe136;"></div>
1755
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe137;"></div>
1760
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe138;"></div>
1765
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe139;"></div>
1770
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe13a;"></div>
1775
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe13b;"></div>
1780
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe13c;"></div>
1785
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe13d;"></div>
1790
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe13e;"></div>
1795
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe146;"></div>
1800
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe147;"></div>
1805
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe148;"></div>
1810
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe149;"></div>
1815
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14a;"></div>
1820
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14b;"></div>
1825
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14c;"></div>
1830
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14d;"></div>
1835
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14e;"></div>
1840
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe14f;"></div>
1845
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe150;"></div>
1850
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe151;"></div>
1855
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe152;"></div>
1859
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe153;"></div>
1863
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe154;"></div>
1867
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe155;"></div>
1871
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe156;"></div>
1875
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe157;"></div>
1879
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe158;"></div>
1883
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe159;"></div>
1887
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15a;"></div>
1891
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15b;"></div>
1895
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15c;"></div>
1899
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15d;"></div>
1903
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15e;"></div>
1907
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe15f;"></div>
1911
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe160;"></div>
1915
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe161;"></div>
1919
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe162;"></div>
1923
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe163;"></div>
1927
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe164;"></div>
1931
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe165;"></div>
1935
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe166;"></div>
1939
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe167;"></div>
1943
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe168;"></div>
1947
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe169;"></div>
1951
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16a;"></div>
1955
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16b;"></div>
1959
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16c;"></div>
1963
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16d;"></div>
1967
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16e;"></div>
1971
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe16f;"></div>
1975
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe170;"></div>
1979
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe171;"></div>
1983
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe172;"></div>
1987
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe173;"></div>
1991
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe174;"></div>
1995
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe175;"></div>
1999
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe176;"></div>
2003
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe177;"></div>
2007
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe178;"></div>
2011
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe179;"></div>
2015
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17a;"></div>
2019
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17b;"></div>
2023
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17c;"></div>
2027
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17d;"></div>
2031
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17e;"></div>
2035
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe17f;"></div>
2039
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe180;"></div>
2043
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe181;"></div>
2047
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe182;"></div>
2051
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe183;"></div>
2055
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe184;"></div>
2059
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe185;"></div>
2063
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe186;"></div>
2067
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe187;"></div>
2071
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe188;"></div>
2075
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe189;"></div>
2079
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18a;"></div>
2083
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18b;"></div>
2087
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18c;"></div>
2091
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18d;"></div>
2095
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18e;"></div>
2099
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe18f;"></div>
2103
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe190;"></div>
2107
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe191;"></div>
2111
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe192;"></div>
2115
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe193;"></div>
2119
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe194;"></div>
2123
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe195;"></div>
2127
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe196;"></div>
2131
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe197;"></div>
2135
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe198;"></div>
2139
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe199;"></div>
2143
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19a;"></div>
2147
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19b;"></div>
2151
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19c;"></div>
2155
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19d;"></div>
2159
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19e;"></div>
2163
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe19f;"></div>
2167
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a0;"></div>
2171
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a1;"></div>
2175
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a2;"></div>
2179
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a3;"></div>
2183
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a4;"></div>
2187
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a5;"></div>
2191
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a6;"></div>
2195
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a7;"></div>
2199
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a8;"></div>
2203
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1a9;"></div>
2207
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1aa;"></div>
2211
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ab;"></div>
2215
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ac;"></div>
2219
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ad;"></div>
2223
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ae;"></div>
2227
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1af;"></div>
2231
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b0;"></div>
2235
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b1;"></div>
2239
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b2;"></div>
2243
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b3;"></div>
2247
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b4;"></div>
2251
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b5;"></div>
2255
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b6;"></div>
2259
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b7;"></div>
2263
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b8;"></div>
2267
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1b9;"></div>
2271
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ba;"></div>
2275
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1bb;"></div>
2279
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1bc;"></div>
2283
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1bd;"></div>
2287
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1be;"></div>
2291
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1bf;"></div>
2295
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c0;"></div>
2299
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c1;"></div>
2303
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c2;"></div>
2307
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c3;"></div>
2311
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c4;"></div>
2315
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c5;"></div>
2319
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c6;"></div>
2323
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c7;"></div>
2327
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c8;"></div>
2331
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1c9;"></div>
2335
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ca;"></div>
2339
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1cb;"></div>
2343
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1cc;"></div>
2347
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1cd;"></div>
2351
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ce;"></div>
2355
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1cf;"></div>
2359
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d0;"></div>
2363
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d1;"></div>
2367
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d2;"></div>
2371
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d3;"></div>
2375
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d4;"></div>
2379
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d5;"></div>
2383
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d6;"></div>
2387
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d7;"></div>
2391
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d8;"></div>
2395
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1d9;"></div>
2399
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1da;"></div>
2403
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1db;"></div>
2407
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1dc;"></div>
2411
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1dd;"></div>
2415
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1de;"></div>
2419
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1df;"></div>
2423
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e0;"></div>
2427
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e1;"></div>
2431
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e2;"></div>
2435
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e3;"></div>
2439
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e4;"></div>
2443
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e5;"></div>
2447
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e6;"></div>
2451
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e7;"></div>
2455
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e8;"></div>
2459
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1e9;"></div>
2463
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ea;"></div>
2467
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1eb;"></div>
2471
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ec;"></div>
2475
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ed;"></div>
2479
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ee;"></div>
2483
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1ef;"></div>
2487
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1f0;"></div>
2491
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1f1;"></div>
2495
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1f2;"></div>
2499
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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="&#xe1f3;"></div>
2503
+ <a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&amp;#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
- /* If the file is hit directly, abort... */
4
- defined('ABSPATH') or die("Nice try....");
5
-
6
- // Create Menu Pages
7
- // Create Sub Menu pages for Custom Icon Pack Uploads
8
- function wordpress_svg_icons_plugin_add_menu_page() {
9
-
10
- // Top Level Menu
11
- add_menu_page(
12
- __('WP SVG Icons','wp-svg-icons'),
13
- 'WP SVG Icons',
14
- 'manage_options',
15
- 'wp-svg-icons',
16
- 'render_wp_svg_icon_page',
17
- 'dashicons-wp-svg-gift'
18
- );
19
-
20
- // Sub Pages
21
- /* Default Icons Page */
22
- add_submenu_page(
23
- 'wp-svg-icons',
24
- __('WP SVG Icons - Default Icon Set','wp-svg-icons'),
25
- __('Default Icon Set','wp-svg-icons'),
26
- 'manage_options',
27
- 'wp-svg-icons',
28
- 'render_wp_svg_icon_page'
29
- );
30
-
31
- /* Custom Icons Page */
32
- add_submenu_page(
33
- 'wp-svg-icons',
34
- __('Custom Icon Set','wp-svg-icons'),
35
- __('Custom Icon Set','wp-svg-icons'),
36
- 'manage_options',
37
- 'wp-svg-icons-custom-set',
38
- 'render_custom_icon_page'
39
- );
40
-
41
- /* Settings Page */
42
- add_submenu_page(
43
- 'wp-svg-icons',
44
- __( 'WP SVG Icons - Settings' , 'wp-svg-icon' ),
45
- __( 'Settings' , 'wp-svg-icon' ),
46
- 'manage_options',
47
- 'wp_svg_icons',
48
- 'wp_svg_icons_options_page'
49
- );
50
-
51
- /* Support Page */
52
- add_submenu_page(
53
- 'wp-svg-icons',
54
- __( 'Upgrade', 'wp-svg-icons' ),
55
- __( 'Upgrade', 'wp-svg-icons' ),
56
- 'manage_options',
57
- 'wp-svg-icons-upgrade',
58
- 'render_upgrade_page'
59
- );
60
-
61
- }
62
- add_action('admin_menu', 'wordpress_svg_icons_plugin_add_menu_page');
63
-
64
-
65
- // Callback to render icon listing page
66
- function render_wp_svg_icon_page() {
67
- require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-default-icons-page.php';
68
- }
69
-
70
- // Callback to render icon listing page
71
- function render_custom_icon_page() {
72
- require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-custom-icons-page.php';
73
- }
74
-
75
- // Callback to render support page
76
- function render_upgrade_page() {
77
- require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-upgrade-page.php';
78
- }
79
-
80
-
81
- /** Settings Page **/
82
-
83
- function wp_svg_icons_settings_init( ) {
84
-
85
- register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_enqueue_defualt_icon_pack' );
86
- register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_defualt_icon_container' );
87
- register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_clear_all_data_on_uninstall' );
88
-
89
- /* Register settings section */
90
- add_settings_section(
91
- 'wp_svg_icons_plugin_section',
92
- __( '', 'wp-svg-icons' ),
93
- 'wp_svg_icons_settings_section_callback',
94
- 'wp_svg_icons_settings_page'
95
- );
96
-
97
- /* Register checkbox Setting */
98
- add_settings_field(
99
- 'wp_svg_icons_enqueue_defualt_icon_pack',
100
- __( 'Load Default Icons', 'wp-svg-icons' ),
101
- 'wp_svg_icons_enqueue_defualt_icon_pack_callback',
102
- 'wp_svg_icons_settings_page',
103
- 'wp_svg_icons_plugin_section'
104
- );
105
-
106
- /* Default Icon Element */
107
- add_settings_field(
108
- 'wp_svg_icons_defualt_icon_container',
109
- __( 'Defualt Icon Element', 'wp-svg-icons' ),
110
- 'wp_svg_icons_enqueue_defualt_icon_container_callback',
111
- 'wp_svg_icons_settings_page',
112
- 'wp_svg_icons_plugin_section'
113
- );
114
-
115
- /* Delete Custom Icon Pack On Uninstall Setting */
116
- add_settings_field(
117
- 'wp_svg_icons_clear_all_data_on_uninstall',
118
- __( 'Clear Data on Uninstall', 'wp-svg-icons' ),
119
- 'wp_svg_icons_clear_all_data_on_uninstall_callback',
120
- 'wp_svg_icons_settings_page',
121
- 'wp_svg_icons_plugin_section'
122
- );
123
-
124
- }
125
- add_action( 'admin_init', 'wp_svg_icons_settings_init' );
126
-
127
-
128
- // Enqueue default icon pack setting - checkbox - callback
129
- function wp_svg_icons_enqueue_defualt_icon_pack_callback( ) {
130
-
131
- $enqueue_default_icons_setting = get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' );
132
- if( $enqueue_default_icons_setting == '1' ) {
133
- $checked = 'checked="checked"';
134
- $enqueued = __( 'the default icon pack stylesheet will be loaded on the front end.' , 'wp-svg-icons' );
135
- } else {
136
- $checked = '';
137
- $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' );
138
- }
139
- ?>
140
- <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>
141
- <?php
142
-
143
- }
144
-
145
- // Default icons element cotainer - dropdown - callback
146
- // doesn't currently do anything
147
- // unable to use get_option() on edit.php to dictate the default icons
148
- function wp_svg_icons_enqueue_defualt_icon_container_callback( ) {
149
-
150
- $default_icon_container = get_option( 'wp_svg_icons_defualt_icon_container' , 'i' );
151
-
152
- ?>
153
- <select id="wp_svg_icons_defualt_icon_container" name="wp_svg_icons_defualt_icon_container">
154
- <option val="H1" <?php selected( $default_icon_container , 'h1' ); ?>>h1</option>
155
- <option val="h2" <?php selected( $default_icon_container , 'h2' ); ?>>h2</option>
156
- <option val="h3" <?php selected( $default_icon_container , 'h3' ); ?>>h3</option>
157
- <option val="span" <?php selected( $default_icon_container , 'span' ); ?>>span</option>
158
- <option val="div" <?php selected( $default_icon_container , 'div' ); ?>>div</option>
159
- <option val="i" <?php selected( $default_icon_container , 'i' ); ?>>i</option>
160
- <option val="b" <?php selected( $default_icon_container , 'b' ); ?>>b</option>
161
- </select>
162
- <?php
163
-
164
- }
165
-
166
- // Clear all data on plugin uninstall - checkbox - callback
167
- function wp_svg_icons_clear_all_data_on_uninstall_callback( ) {
168
-
169
- $clear_all_data_on_uninstall = get_option( 'wp_svg_icons_clear_all_data_on_uninstall' , '1' );
170
-
171
- if( $clear_all_data_on_uninstall == '1' ) {
172
- $selected = 'checked="checked"';
173
- $delete_data_message = __( 'your custom pack and all associated and enqueued files will be deleted on uninstall.' , 'wp-svg-icons' );
174
- } else {
175
- $selected = '';
176
- $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' );
177
- }
178
- ?>
179
- <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>
180
- <?php
181
-
182
- }
183
-
184
- // description of the settings page
185
- function wp_svg_icons_settings_section_callback( ) {
186
- 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>';
187
- echo '<hr />';
188
- // Display a confirmation to the user when the settings have been updated
189
- if( isset( $_GET['settings-updated'] ) ) {
190
- ?>
191
- <div class="updated">
192
- <p><?php _e( 'Settings successfully updated.' , 'wp-svg-icons' ); ?></p>
193
- </div>
194
- <?php
195
- }
196
- }
197
-
198
- /* Options Page Callback */
199
- function wp_svg_icons_options_page( ) {
200
- ?>
201
- <style>
202
- ::selection { background: #FF8000; }
203
- </style>
204
- <div class="svg-custom-upload-wrap wrap">
205
- <form action='options.php' method='post'>
206
- <h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Settings' , 'wp-svg-icons' ) ?></h1>
207
- <!-- review us container -->
208
- <div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
209
- <p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
210
- <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>
211
- </div>
212
- <!-- social media icons -->
213
- <div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
214
- <p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
215
- <a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
216
- <a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
217
- <a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
218
- <a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
219
- </div>
220
- <?php
221
- settings_fields( 'wp_svg_icons_settings_page' );
222
- do_settings_sections( 'wp_svg_icons_settings_page' );
223
- submit_button();
224
- ?>
225
- </form>
226
- </div>
227
- <?php
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
- /* If the file is hit directly, abort... */
4
- defined('ABSPATH') or die("Nice try....");
5
-
6
- // enqueue our upgrade page script
7
- wp_register_script( 'upgrade-page-script' , plugin_dir_url(__FILE__).'../js/upgrade-page-script.js' , array( 'jquery' ), 'all' );
8
- wp_enqueue_script( 'upgrade-page-script' );
9
- ?>
10
-
11
- <style>
12
- ::selection { background: #FF8000; }
13
-
14
- .upgrade-button {
15
- border: 0 none;
16
- border-radius: 2px 2px 2px 2px;
17
- color: #FFFFFF;
18
- cursor: pointer;
19
- display: inline-block;
20
- font-size: 16px;
21
- font-weight: 200;
22
- line-height: 20px;
23
- margin-bottom: 0;
24
- margin-top: 10px;
25
- padding: 9px 12px;
26
- text-transform: none;
27
- transition: all 0.3s ease 0s;
28
- -moz-transition: all 0.3s ease 0s;
29
- -webkit-transition: all 0.3s ease 0s;
30
- width: 12.795%;
31
- text-align: center;
32
- min-width: 168px;
33
- }
34
-
35
- .green {
36
- background: none repeat scroll 0 0 #46b98a;
37
- color: #ffffff;
38
- }
39
- .green:hover {
40
- cursor: pointer;
41
- background: none repeat scroll 0 0 #3AAC7D;
42
- color: #ffffff;
43
- }
44
- .tab_content h2 {
45
- margin: 1em 0;
46
- }
47
- .tab_content h2+p {
48
- margin-top: 1em !important;
49
- margin-bottom: 2em !important;
50
- }
51
- </style>
52
-
53
- <div id="wp-svg-icons-support-page-wrap" class="svg-custom-upload-wrap wrap" >
54
-
55
- <section id="wp-svg-icons-support-page-header">
56
-
57
- <section class="support-subhead">
58
- <h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Upgrade' , 'wp-svg-icons' ); ?></h2>
59
- <!-- review us container -->
60
- <div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
61
- <p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
62
- <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>
63
- </div>
64
- <!-- social media icons -->
65
- <div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
66
- <p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
67
- <a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
68
- <a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
69
- <a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
70
- <a href="https://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
71
- <a href="https://www.evan-herman.com" target="_blank" title="Evan Herman Professional WordPress Development"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/evan_herman_logo.png" alt="Evan Herman Logo" style="margin-right:0 auto;"></a>
72
- </div>
73
- <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>
74
- </section>
75
-
76
- </section>
77
-
78
- <h2 class="nav-tab-wrapper" style="text-align:center;margin:2em 0;"">
79
- <a href="#" class="nav-tab nav-tab-active" data-attr="unlimited_custom_icons"><?php _e( 'Unlimited Custom Icons' , 'wp-svg-icons' ); ?></a>
80
- <a href="#" class="nav-tab" data-attr="icon_customizer"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></a>
81
- <a href="#" class="nav-tab" data-attr="icon_containers"><?php _e( 'Icon Containers' , 'wp-svg-icons' ); ?></a>
82
- <a href="#" class="nav-tab" data-attr="css3_animations"><?php _e( 'CSS3 Animation' , 'wp-svg-icons' ); ?></a>
83
- <a href="#" class="nav-tab" data-attr="menu_icons"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></a>
84
- <a href="#" class="nav-tab" data-attr="premium_support"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></a>
85
- </h2>
86
-
87
- <div id="unlimited_custom_icons" class="tab_content">
88
-
89
- <h2 style="display:block;text-align:center;"><?php _e( 'No More Custom Icon Limits!' , 'wp-svg-icons' ); ?></h2>
90
- <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>
91
-
92
- </div>
93
-
94
- <div id="icon_customizer" style="display:none;" class="tab_content">
95
-
96
- <h2 style="display:block;text-align:center;"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></h2>
97
- <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>
98
- <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;">
99
-
100
- </div>
101
-
102
- <div id="icon_containers" style="display:none;" class="tab_content">
103
-
104
- <h2 style="display:block;text-align:center;"><?php _e( 'Icon Containers' , 'wp-svg-icons' ); ?></h2>
105
- <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>
106
- <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;">
107
-
108
- </div>
109
-
110
- <div id="css3_animations" style="display:none;" class="tab_content">
111
-
112
- <h2 style="display:block;text-align:center;"><?php _e( 'CSS3 Animations' , 'wp-svg-icons' ); ?></h2>
113
- <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>
114
- <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;">
115
-
116
- <br />
117
- <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>
118
- </br />
119
-
120
- </div>
121
-
122
- <div id="menu_icons" style="display:none;" class="tab_content">
123
- <h2 style="display:block;text-align:center;"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></h2>
124
- <p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
125
- <?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' ); ?>
126
- </p>
127
- <div style="text-align:center;">
128
- <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;">
129
- <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%;">
130
- </div>
131
- </div>
132
-
133
-
134
- <div id="premium_support" style="display:none;" class="tab_content">
135
- <h2 style="display:block;text-align:center;"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></h2>
136
- <p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
137
- <?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" ); ?>
138
- </p>
139
- </div>
140
-
141
- <br />
142
-
143
- <br />
144
-
145
- <br />
146
-
147
- <a href="https://www.evan-herman.com/wp-svg-icons-pro/" target="_blank" style="display:block;width:200px;margin:0 auto;">
148
- <div class="upgrade-button green center"><i class="wp-svg-box-remove"></i>&nbsp; Go Pro Now!</div>
149
- </a>
150
- <section id="eh-logos" style="display:block;width:100%;text-align:right;">
151
- <img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/evan-herman-mascot.png" alt="Evan Herman Mascot" style="width:300px;margin-top:1em;" >
152
- </section>
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>&nbsp; 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
- /* If the file is hit directly, abort... */
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') or die("Nice try....");
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') or die("Nice try....");
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') or die("Nice try....");
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') or die("Nice try....");
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') or die("Nice try....");
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
- /* If the file is hit directly, abort... */
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
- /* If the file is hit directly, abort... */
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: wordpress, bootstrap, font icon, font awesome more, fontstrap, icons, ui, ux, design, free, boot, strap, menus, menu, custom, nav, navigation, navicons, icons, evan, herman, icon, set, svg, wp, icomoon, ico, moon, wp, zoom, wp-zoom, wpzoom, broccolidry, metoicons, iconic, plugin, responsive, bootstrap, font, awesome, font awesome, twitter, glyphicons, glyph, web, font, webfont, custom, icons, import, upload, zip, font, icon, svg font icon, fonticon, iconfont, fontello, css3, svg animation, free, genericons, genericon, icon stack, stack, icons stack, menu icons, menu, customizable, customize, customizer, bootstrap, dropdown, navigation, scale, vector, icons
5
  Requires at least: 3.5
6
- Tested up to: 4.8
7
- Stable tag: 3.1.8.4
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.1.8.4 - March 10th, 2015 =
255
- * Fixed issue with icons not being selectable.
256
- * Adjusted the limit check for the custom icons.
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: Quickly and effortlessly gain access to 492 beautifully designed SVG font icons, available on the frontend and backend of your site.
11
- * Version: 3.1.8.4
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+