Version Description
- February 27th, 2015 =
- Re-wrote the entire plugin from the ground up.
- Built in shortcode support which ultimately prevents code from being stripped when toggling between html/visual tabs
- Added all new shortcode parameters to make altering icons that much easier
- Began to finalize the pro version with an icon customizer, icon selector from the menu screen and more.
- Began to update example/demo page
Download this release
Release Info
Developer | eherman24 |
Plugin | WP SVG Icons |
Version | 3.0 |
Comparing to | |
See all releases |
Code changes from version 2.3.3 to 3.0
- admin/class-wp-svg-icons-admin.php +343 -0
- admin/css/bootstrap-select.min.css +7 -0
- admin/css/bootstrap.css +536 -0
- admin/css/default-icon-styles.css +179 -0
- {includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.eot +0 -0
- {includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.svg +0 -0
- {includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.ttf +0 -0
- {includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.woff +0 -0
- admin/css/jquery.dropdown.css +1 -0
- admin/css/wordpress-svg-icon-plugin-style.css +2 -0
- admin/css/wordpress-svg-icon-plugin-style.min.css +5 -0
- admin/css/wp-svg-icons-admin.css +127 -0
- admin/css/wp-svg-icons-admin.min.css +2 -0
- admin/images/evan-herman-mascot.png +0 -0
- admin/images/evan_herman_logo.png +0 -0
- admin/images/linkedin.png +0 -0
- admin/images/rss_icon.png +0 -0
- admin/images/svg-icons-customizer.png +0 -0
- admin/images/svg-icons-front-end-menu.png +0 -0
- admin/images/svg-icons-menu-icons.png +0 -0
- admin/images/twitter.png +0 -0
- admin/images/wordpress-icon.png +0 -0
- admin/js/bootstrap-select.js.map +1 -0
- admin/js/bootstrap-select.min.js +9 -0
- admin/js/custom-icon-menu-script.js +33 -0
- {includes → admin}/js/jquery.dropdown.min.js +7 -7
- admin/js/style.css +1 -0
- admin/js/upgrade-page-script.js +15 -0
- admin/js/wordpress-svg-icon-plugin-scripts.js +1 -0
- admin/js/wp-svg-delete-custom-pack-ajax.js +5 -0
- admin/partials/wp-svg-icons-custom-icons-page.php +362 -0
- admin/partials/wp-svg-icons-default-icons-page.php +2589 -0
- admin/partials/wp-svg-icons-icon-page.php +200 -0
- admin/partials/wp-svg-icons-upgrade-page.php +113 -0
- admin/partials/wp-svg-icons-views-test.php +143 -0
- includes/class-wp-svg-icons-activator.php +26 -0
- includes/class-wp-svg-icons-deactivator.php +25 -0
- includes/class-wp-svg-icons-i18n.php +51 -0
- includes/class-wp-svg-icons-loader.php +120 -0
- includes/class-wp-svg-icons.php +198 -0
- includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.eot +0 -0
- includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.svg +0 -11
- includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.ttf +0 -0
- includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.woff +0 -0
- includes/css/jquery.dropdown.css +0 -134
- includes/css/wordpress-svg-icon-plugin-expansion-style.css +0 -40
- includes/css/wordpress-svg-icon-plugin-style.css +0 -1595
- includes/error_log +0 -0
- includes/images/New-Logo.png +0 -0
- includes/images/svg-set1-menu-icon.png +0 -0
- includes/js/style.css +0 -398
- includes/js/wordpress-svg-icon-plugin-scripts.js +0 -37
- includes/js/wp_svg_delete_custom_pack_ajax.js +0 -54
- includes/scripts.php +0 -1
- error_log → languages/wp-svg-icons.pot +0 -0
- license.txt +339 -0
- public/class-wp-svg-icons-public.php +104 -0
- public/partials/wp-svg-icons-shortcodes.php +102 -0
- readme.txt +304 -1
- uninstall.php +18 -0
- wordpress-svg-icons-plugin.php +0 -2592
- wp-svg-icons.php +65 -0
admin/class-wp-svg-icons-admin.php
ADDED
@@ -0,0 +1,343 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The dashboard-specific functionality of the plugin.
|
4 |
+
*
|
5 |
+
* @link http://example.com
|
6 |
+
* @since 3.0.0
|
7 |
+
* @package svg-vector-icon-plugin
|
8 |
+
* @subpackage svg-vector-icon-plugin/includes
|
9 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
10 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
11 |
+
*/
|
12 |
+
class WP_SVG_Icons_Admin {
|
13 |
+
|
14 |
+
/**
|
15 |
+
* The ID of this plugin.
|
16 |
+
*
|
17 |
+
* @since 3.0.0
|
18 |
+
* @access private
|
19 |
+
* @var string $plugin_name The ID of this plugin.
|
20 |
+
*/
|
21 |
+
private $plugin_name;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* The version of this plugin.
|
25 |
+
*
|
26 |
+
* @since 3.0.0
|
27 |
+
* @access private
|
28 |
+
* @var string $version The current version of this plugin.
|
29 |
+
*/
|
30 |
+
private $version;
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Initialize the class and set its properties.
|
34 |
+
*
|
35 |
+
* @since 3.0.0
|
36 |
+
* @var string $plugin_name The name of this plugin.
|
37 |
+
* @var string $version The version of this plugin.
|
38 |
+
*/
|
39 |
+
public function __construct( $plugin_name, $version ) {
|
40 |
+
$this->plugin_name = $plugin_name;
|
41 |
+
$this->version = $version;
|
42 |
+
|
43 |
+
// load our dependencies
|
44 |
+
$this->include_dependencies();
|
45 |
+
|
46 |
+
// add custom button to edit.php page
|
47 |
+
add_action('media_buttons', array( &$this , 'add_insert_icon_button'), 999999 );
|
48 |
+
|
49 |
+
// add our custom field to the menus
|
50 |
+
add_filter( 'wp_setup_nav_menu_item', array( $this, 'wp_svg_icons_add_custom_nav_fields' ) );
|
51 |
+
|
52 |
+
// save menu custom fields
|
53 |
+
add_action( 'wp_update_nav_menu_item', array( $this, 'wp_svg_icons_update_custom_nav_fields'), 10, 3 );
|
54 |
+
|
55 |
+
// action hook which handles the ajax request of deleting files
|
56 |
+
add_action('wp_ajax_svg_delete_custom_pack', array( &$this , 'svg_delete_custom_pack_ajax' ) );
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Register the stylesheets for the Dashboard.
|
61 |
+
*
|
62 |
+
* @since 3.0.0
|
63 |
+
*/
|
64 |
+
public function enqueue_styles() {
|
65 |
+
/**
|
66 |
+
* This function is provided for demonstration purposes only.
|
67 |
+
*
|
68 |
+
* An instance of this class should be passed to the run() function
|
69 |
+
* defined in Plugin_Name_Admin_Loader as all of the hooks are defined
|
70 |
+
* in that particular class.
|
71 |
+
*
|
72 |
+
* The Plugin_Name_Admin_Loader will then create the relationship
|
73 |
+
* between the defined hooks and the functions defined in this
|
74 |
+
* class.
|
75 |
+
*/
|
76 |
+
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/wp-svg-icons-admin.min.css', array(), $this->version, 'all' );
|
77 |
+
|
78 |
+
wp_enqueue_style( 'admin-icon-page-styles' , plugin_dir_url( __FILE__ ) . 'css/wordpress-svg-icon-plugin-style.min.css' );
|
79 |
+
wp_enqueue_style( 'default-icon-styles' , plugin_dir_url( __FILE__ ) . 'css/default-icon-styles.css' );
|
80 |
+
|
81 |
+
}
|
82 |
+
|
83 |
+
/**
|
84 |
+
* Register the JavaScript for the dashboard.
|
85 |
+
*
|
86 |
+
* @since 3.0.0
|
87 |
+
*/
|
88 |
+
public function enqueue_scripts() {
|
89 |
+
|
90 |
+
$dest = wp_upload_dir();
|
91 |
+
$dest_path = explode( '/uploads/' , $dest['path'] );
|
92 |
+
$customFontPackPath = $dest_path[0] . '/uploads/wp-svg-icons/custom-pack/style.css';
|
93 |
+
if ( file_exists( $customFontPackPath ) ) {
|
94 |
+
$active_pack = 'true';
|
95 |
+
} else {
|
96 |
+
$active_pack = 'false';
|
97 |
+
}
|
98 |
+
|
99 |
+
// enqueue our necessary JS and CSS files
|
100 |
+
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 );
|
101 |
+
$localized_data = array(
|
102 |
+
'site_url' => site_url(),
|
103 |
+
'custom_pack_active' => $active_pack,
|
104 |
+
'default_icon_element' => get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ),
|
105 |
+
);
|
106 |
+
wp_localize_script( 'admin-icon-page-script.js' , 'localized_data' , $localized_data );
|
107 |
+
wp_enqueue_script( 'admin-icon-page-script.js' );
|
108 |
+
|
109 |
+
// enqueue our color picker js + styles
|
110 |
+
/* Enqueue the color picker dependencies */
|
111 |
+
wp_enqueue_script( 'wp-color-picker' );
|
112 |
+
wp_enqueue_style( 'wp-color-picker' );
|
113 |
+
|
114 |
+
// custom font pack scripts
|
115 |
+
$this->wordpress_svg_icon_plugin_custom_icon_pack_scripts();
|
116 |
+
|
117 |
+
// enqueue our nav scripts/styles
|
118 |
+
$this->enqueue_custom_nav_scripts_on_nav_menu_page();
|
119 |
+
|
120 |
+
// custom font pack found error
|
121 |
+
add_action('admin_notices', array( &$this , 'wp_svg_customPack_installed_error' ) );
|
122 |
+
|
123 |
+
// set the custom upload directory
|
124 |
+
add_action( 'admin_head', array( &$this , 'wp_svg_change_downloads_upload_dir' ) , 999 );
|
125 |
+
|
126 |
+
}
|
127 |
+
|
128 |
+
// ajax delete our .zip and entire directory for the custom pack!
|
129 |
+
function svg_delete_custom_pack_ajax() {
|
130 |
+
$dest = wp_upload_dir();
|
131 |
+
$dest_path = explode( '/uploads/' , $dest['path'] );
|
132 |
+
$customFontPackFolderPath = $dest_path[0] . '/uploads/wp-svg-icons/custom-pack/';
|
133 |
+
$zip_fileName = 'wp-svg-custom-pack.zip';
|
134 |
+
// delete the custom icon pack .zip
|
135 |
+
$delete_zip = $this->recursive_delete_directory( $customFontPackFolderPath . $zip_fileName );
|
136 |
+
// delete the entire custom font pack folder
|
137 |
+
$delete_directory = $this->recursive_delete_directory( $customFontPackFolderPath );
|
138 |
+
die();
|
139 |
+
}
|
140 |
+
|
141 |
+
/* Here, were going to create a new field for the 'menu' - to allow users to add icons to menus */
|
142 |
+
function wp_svg_icons_add_custom_nav_fields( $menu_item ) {
|
143 |
+
$menu_item->subtitle = get_post_meta( $menu_item->ID, '_menu_item_icon', true );
|
144 |
+
return $menu_item;
|
145 |
+
}
|
146 |
+
|
147 |
+
|
148 |
+
/* Save custom menu field */
|
149 |
+
function wp_svg_icons_update_custom_nav_fields( $menu_id, $menu_item_db_id, $args ) {
|
150 |
+
|
151 |
+
// Check if element is properly sent
|
152 |
+
if( isset( $_REQUEST['menu-item-icon'] ) ) {
|
153 |
+
if ( is_array( $_REQUEST['menu-item-icon'] ) ) {
|
154 |
+
$subtitle_value = $_REQUEST['menu-item-icon'][$menu_item_db_id];
|
155 |
+
update_post_meta( $menu_item_db_id, '_menu_item_icon', $subtitle_value );
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
}
|
160 |
+
|
161 |
+
/*
|
162 |
+
* Set custom upload directory
|
163 |
+
*/
|
164 |
+
function wp_svg_change_downloads_upload_dir() {
|
165 |
+
$page_base = get_current_screen()->base;
|
166 |
+
if ( $page_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
167 |
+
add_filter( 'upload_dir', array( &$this , 'wp_svg_set_upload_dir' ) );
|
168 |
+
}
|
169 |
+
}
|
170 |
+
|
171 |
+
/*
|
172 |
+
* set our custom upload directory
|
173 |
+
*/
|
174 |
+
function wp_svg_set_upload_dir( $upload ) {
|
175 |
+
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
176 |
+
$upload['path'] = $upload['basedir'] . $upload['subdir'];
|
177 |
+
$upload['url'] = $upload['baseurl'] . $upload['subdir'];
|
178 |
+
return $upload;
|
179 |
+
}
|
180 |
+
|
181 |
+
// load our dependencies here
|
182 |
+
private function include_dependencies() {
|
183 |
+
/**
|
184 |
+
* Load our Icons Page
|
185 |
+
*/
|
186 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/wp-svg-icons-icon-page.php';
|
187 |
+
}
|
188 |
+
|
189 |
+
/*
|
190 |
+
* 'Insert Icon' Button
|
191 |
+
*/
|
192 |
+
function add_insert_icon_button() {
|
193 |
+
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>';
|
194 |
+
}
|
195 |
+
|
196 |
+
/*
|
197 |
+
* Enqueue scripts on custom icon pack page
|
198 |
+
*/
|
199 |
+
function wordpress_svg_icon_plugin_custom_icon_pack_scripts() {
|
200 |
+
|
201 |
+
$screen_base = get_current_screen()->base;
|
202 |
+
|
203 |
+
$dest = wp_upload_dir();
|
204 |
+
|
205 |
+
$dest_path = $dest['basedir'] . '/wp-svg-icons/custom-pack';
|
206 |
+
|
207 |
+
if ( $screen_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
208 |
+
|
209 |
+
if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) {
|
210 |
+
// enqueue our custom delete script
|
211 |
+
wp_register_script( 'wp-svg-delete-custom-pack', plugin_dir_url(__FILE__).'js/wp-svg-delete-custom-pack-ajax.js');
|
212 |
+
// localize an array of text to translate
|
213 |
+
$translation_array = array(
|
214 |
+
'confirm' => __( 'Are you sure you want to uninstall your custom icon pack? This cannot be undone.' , 'wp-svg-icons' ),
|
215 |
+
'success' => __( 'Custom font pack successfully uninstalled!' , 'wp-svg-icons' ),
|
216 |
+
'error' => __( 'Error uninstalling your custom font pack. Try again. If the error persists you will have to delete the file manually.' , 'wp-svg-icons' )
|
217 |
+
);
|
218 |
+
wp_localize_script( 'wp-svg-delete-custom-pack', 'translation_array', $translation_array );
|
219 |
+
wp_enqueue_script( 'wp-svg-delete-custom-pack' );
|
220 |
+
// jquery dropdown scripts
|
221 |
+
wp_register_script( 'wp-svg-jquery-dropdown', plugin_dir_url(__FILE__).'js/jquery.dropdown.min.js');
|
222 |
+
wp_enqueue_script( 'wp-svg-jquery-dropdown' );
|
223 |
+
}
|
224 |
+
|
225 |
+
// jquery dropdown styles
|
226 |
+
wp_register_style( 'wp-svg-jquery-dropdown-style', plugin_dir_url(__FILE__).'css/jquery.dropdown.css');
|
227 |
+
wp_enqueue_style( 'wp-svg-jquery-dropdown-style' );
|
228 |
+
|
229 |
+
}
|
230 |
+
|
231 |
+
}
|
232 |
+
|
233 |
+
/*
|
234 |
+
* Enqueue scripts on nav menu page
|
235 |
+
*/
|
236 |
+
function enqueue_custom_nav_scripts_on_nav_menu_page() {
|
237 |
+
$screen_base = get_current_screen()->base;
|
238 |
+
// load jQuery dropdown on nav menu, to add our icons to the menu
|
239 |
+
if( $screen_base == 'nav-menus' ) {
|
240 |
+
// scripts
|
241 |
+
wp_register_script( 'wp-svg-icon-dropdown' , plugin_dir_url(__FILE__).'js/bootstrap-select.min.js' , array( 'jquery' ), 'all' );
|
242 |
+
wp_enqueue_script( 'wp-svg-icon-dropdown' );
|
243 |
+
|
244 |
+
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' );
|
245 |
+
wp_enqueue_script( 'custom-icon-menu-script' );
|
246 |
+
|
247 |
+
//styles
|
248 |
+
wp_register_style( 'wp-svg-icon-dropdown-styles', plugin_dir_url(__FILE__).'css/bootstrap-select.min.css');
|
249 |
+
wp_enqueue_style( 'wp-svg-icon-dropdown-styles' );
|
250 |
+
|
251 |
+
wp_register_style( 'bootstrap-dropdown-css', plugin_dir_url(__FILE__).'css/bootstrap.css');
|
252 |
+
wp_enqueue_style( 'bootstrap-dropdown-css' );
|
253 |
+
|
254 |
+
// load our custom icons!
|
255 |
+
$this->enqueue_custom_icons();
|
256 |
+
|
257 |
+
}
|
258 |
+
}
|
259 |
+
|
260 |
+
function enqueue_custom_icons() {
|
261 |
+
// enqueue our custom icon pack styles if they exist
|
262 |
+
$dest = wp_upload_dir();
|
263 |
+
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
264 |
+
$path = $dest['basedir'] . $upload['subdir'];
|
265 |
+
$customPackStyles = '/style.css';
|
266 |
+
|
267 |
+
// Check if there is a custom pack style file
|
268 |
+
// if there is enqueue it
|
269 |
+
if ( file_exists( $path . $customPackStyles ) ) {
|
270 |
+
wp_register_style( 'wp_svg_custom_pack_style' , '/wp-content/uploads/wp-svg-icons/custom-pack' . $customPackStyles );
|
271 |
+
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
272 |
+
}
|
273 |
+
}
|
274 |
+
|
275 |
+
|
276 |
+
/*
|
277 |
+
* Custom Pack Already Installed Admin Notification Error
|
278 |
+
*/
|
279 |
+
function wp_svg_customPack_installed_error() {
|
280 |
+
$page_base = get_current_screen()->base;
|
281 |
+
if ( $page_base == 'wp-svg-icons_page_wp-svg-icons-custom-set' ) {
|
282 |
+
$dest = wp_upload_dir();
|
283 |
+
$dest_path = $dest['path'];
|
284 |
+
// if a file exists print the error on the custom pack upload page
|
285 |
+
if ( file_exists( $dest_path . '/wp-svg-custom-pack.zip' ) ) {
|
286 |
+
?>
|
287 |
+
<script>
|
288 |
+
jQuery(document).ready(function() {
|
289 |
+
jQuery(".wp-svg-custom-pack-preloader").show();
|
290 |
+
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>");
|
291 |
+
jQuery(".preview-icon-code-box").show();
|
292 |
+
jQuery( '#uninstall-pack-button' ).removeAttr( 'disabled' );
|
293 |
+
jQuery(".dropDownButton").removeAttr("disabled");
|
294 |
+
jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
|
295 |
+
jQuery("input[value=Import]").attr("disabled","disabled");
|
296 |
+
|
297 |
+
jQuery.get( "<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/demo.html", function( data ) {
|
298 |
+
jQuery( ".current-font-pack" ).html( data );
|
299 |
+
});
|
300 |
+
|
301 |
+
jQuery.get("<?php echo site_url(); ?>/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
302 |
+
jQuery("head").append("<style>"+data+"</style>");
|
303 |
+
});
|
304 |
+
|
305 |
+
});
|
306 |
+
</script>
|
307 |
+
<?php
|
308 |
+
} else {
|
309 |
+
/*
|
310 |
+
* Custom icon pack does not exist...
|
311 |
+
*/
|
312 |
+
?>
|
313 |
+
<script>
|
314 |
+
jQuery(document).ready(function() {
|
315 |
+
jQuery(".wp-svg-custom-pack-preloader").hide();
|
316 |
+
jQuery("#uninstall-pack-button").attr("disabled","disabled");
|
317 |
+
jQuery("#dropDownButton").attr("disabled","disabled"); });
|
318 |
+
</script>
|
319 |
+
<?php
|
320 |
+
}
|
321 |
+
}
|
322 |
+
}
|
323 |
+
|
324 |
+
|
325 |
+
/*
|
326 |
+
Function To Recursively Delete an entire directory
|
327 |
+
*/
|
328 |
+
public function recursive_delete_directory( $dir ) {
|
329 |
+
if ( is_dir( $dir ) ) {
|
330 |
+
$objects = scandir( $dir );
|
331 |
+
foreach ($objects as $object ) {
|
332 |
+
if ( $object != "." && $object != ".." ) {
|
333 |
+
if ( filetype( $dir."/".$object) == "dir" ) $this->recursive_delete_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
334 |
+
}
|
335 |
+
}
|
336 |
+
reset( $objects );
|
337 |
+
rmdir( $dir );
|
338 |
+
}
|
339 |
+
}
|
340 |
+
|
341 |
+
|
342 |
+
|
343 |
+
} // end Class
|
admin/css/bootstrap-select.min.css
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
|
3 |
+
*
|
4 |
+
* Copyright 2013-2014 bootstrap-select
|
5 |
+
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
6 |
+
*/
|
7 |
+
.bootstrap-select{width:220px \0}.bootstrap-select>.btn{width:100%;padding-right:25px}.error .bootstrap-select .btn{border:1px solid #b94a48}.control-group.error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .btn:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row-fluid .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-search .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-group .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.input-append .bootstrap-select.btn-group{margin-left:-1px}.input-prepend .bootstrap-select.btn-group{margin-right:-1px}.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group .btn .filter-option{vertical-align:middle;display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .btn .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .btn{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;z-index:1035;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) a small{color:#64b1d8;color:rgba(100,177,216,.4)}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:1.85em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px}.bootstrap-select.btn-group.fit-width .btn .filter-option{position:static}.bootstrap-select.btn-group.fit-width .btn .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.btn{z-index:1035+1}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom-width:7px;border-bottom-style:solid;border-bottom-color:#ccc;border-bottom-color:rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-bottom:0;border-top-width:7px;border-top-style:solid;border-top-color:#ccc;border-top-color:rgba(204,204,204,.2)}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after{display:block}.bs-searchbox,.bs-actionsbox{padding:4px 8px}.bs-actionsbox{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox input.form-control{margin-bottom:0;width:100%}.mobile-device{position:absolute;top:0;left:0;display:block!important;width:100%;height:100%!important;opacity:0}
|
admin/css/bootstrap.css
ADDED
@@ -0,0 +1,536 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.0.0
|
3 |
+
*
|
4 |
+
* Copyright 2013 Twitter, Inc
|
5 |
+
* Licensed under the Apache License v2.0
|
6 |
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7 |
+
*
|
8 |
+
* Designed and built with all the love in the world by @mdo and @fat.
|
9 |
+
*/
|
10 |
+
|
11 |
+
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
|
12 |
+
|
13 |
+
|
14 |
+
select{
|
15 |
+
margin: 0;
|
16 |
+
font-family: inherit;
|
17 |
+
font-size: 100%;
|
18 |
+
}
|
19 |
+
|
20 |
+
select {
|
21 |
+
text-transform: none;
|
22 |
+
}
|
23 |
+
|
24 |
+
select {
|
25 |
+
font-family: inherit;
|
26 |
+
font-size: inherit;
|
27 |
+
line-height: inherit;
|
28 |
+
}
|
29 |
+
|
30 |
+
select[multiple] {
|
31 |
+
background-image: none;
|
32 |
+
}
|
33 |
+
|
34 |
+
select[multiple],
|
35 |
+
select[size] {
|
36 |
+
height: auto;
|
37 |
+
}
|
38 |
+
|
39 |
+
select optgroup {
|
40 |
+
font-family: inherit;
|
41 |
+
font-size: inherit;
|
42 |
+
font-style: inherit;
|
43 |
+
}
|
44 |
+
|
45 |
+
select.input-sm {
|
46 |
+
height: 30px;
|
47 |
+
line-height: 30px;
|
48 |
+
}
|
49 |
+
|
50 |
+
select.input-lg {
|
51 |
+
height: 45px;
|
52 |
+
line-height: 45px;
|
53 |
+
}
|
54 |
+
|
55 |
+
textarea.input-lg {
|
56 |
+
height: auto;
|
57 |
+
}
|
58 |
+
|
59 |
+
.btn {
|
60 |
+
display: inline-block;
|
61 |
+
padding: 6px 12px;
|
62 |
+
margin-bottom: 0;
|
63 |
+
font-size: 14px;
|
64 |
+
font-weight: normal;
|
65 |
+
line-height: 1.428571429;
|
66 |
+
text-align: center;
|
67 |
+
white-space: nowrap;
|
68 |
+
vertical-align: middle;
|
69 |
+
cursor: pointer;
|
70 |
+
border: 1px solid transparent;
|
71 |
+
border-radius: 4px;
|
72 |
+
-webkit-user-select: none;
|
73 |
+
-moz-user-select: none;
|
74 |
+
-ms-user-select: none;
|
75 |
+
-o-user-select: none;
|
76 |
+
user-select: none;
|
77 |
+
}
|
78 |
+
|
79 |
+
.btn:focus {
|
80 |
+
outline: thin dotted #333;
|
81 |
+
outline: 5px auto -webkit-focus-ring-color;
|
82 |
+
outline-offset: -2px;
|
83 |
+
}
|
84 |
+
|
85 |
+
.btn:hover,
|
86 |
+
.btn:focus {
|
87 |
+
color: #333333;
|
88 |
+
text-decoration: none;
|
89 |
+
}
|
90 |
+
|
91 |
+
.btn:active,
|
92 |
+
.btn.active {
|
93 |
+
background-image: none;
|
94 |
+
outline: 0;
|
95 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
96 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
97 |
+
}
|
98 |
+
|
99 |
+
|
100 |
+
.btn-default {
|
101 |
+
color: #333333;
|
102 |
+
background-color: #ffffff;
|
103 |
+
border-color: #cccccc;
|
104 |
+
}
|
105 |
+
|
106 |
+
|
107 |
+
|
108 |
+
.caret {
|
109 |
+
display: inline-block;
|
110 |
+
width: 0;
|
111 |
+
height: 0;
|
112 |
+
margin-left: 2px;
|
113 |
+
vertical-align: middle;
|
114 |
+
border-top: 4px solid #000000;
|
115 |
+
border-right: 4px solid transparent;
|
116 |
+
border-bottom: 0 dotted;
|
117 |
+
border-left: 4px solid transparent;
|
118 |
+
content: "";
|
119 |
+
}
|
120 |
+
|
121 |
+
.dropdown {
|
122 |
+
position: relative;
|
123 |
+
}
|
124 |
+
|
125 |
+
.dropdown-toggle:focus {
|
126 |
+
outline: 0;
|
127 |
+
}
|
128 |
+
|
129 |
+
.dropdown-menu {
|
130 |
+
position: absolute;
|
131 |
+
top: 100%;
|
132 |
+
left: 0;
|
133 |
+
z-index: 1000;
|
134 |
+
display: none;
|
135 |
+
float: left;
|
136 |
+
min-width: 160px;
|
137 |
+
padding: 5px 0;
|
138 |
+
margin: 2px 0 0;
|
139 |
+
font-size: 14px;
|
140 |
+
list-style: none;
|
141 |
+
background-color: #ffffff;
|
142 |
+
border: 1px solid #cccccc;
|
143 |
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
144 |
+
border-radius: 4px;
|
145 |
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
146 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
147 |
+
background-clip: padding-box;
|
148 |
+
}
|
149 |
+
|
150 |
+
.dropdown-menu.pull-right {
|
151 |
+
right: 0;
|
152 |
+
left: auto;
|
153 |
+
}
|
154 |
+
|
155 |
+
.dropdown-menu .divider {
|
156 |
+
height: 1px;
|
157 |
+
margin: 9px 0;
|
158 |
+
overflow: hidden;
|
159 |
+
background-color: #e5e5e5;
|
160 |
+
}
|
161 |
+
|
162 |
+
.dropdown-menu > li > a {
|
163 |
+
display: block;
|
164 |
+
padding: 3px 20px;
|
165 |
+
clear: both;
|
166 |
+
font-weight: normal;
|
167 |
+
line-height: 1.428571429;
|
168 |
+
color: #333333;
|
169 |
+
white-space: nowrap;
|
170 |
+
}
|
171 |
+
|
172 |
+
.dropdown-menu > li > a:hover,
|
173 |
+
.dropdown-menu > li > a:focus {
|
174 |
+
color: #ffffff;
|
175 |
+
text-decoration: none;
|
176 |
+
background-color: #428bca;
|
177 |
+
}
|
178 |
+
|
179 |
+
.dropdown-menu > .active > a,
|
180 |
+
.dropdown-menu > .active > a:hover,
|
181 |
+
.dropdown-menu > .active > a:focus {
|
182 |
+
color: #ffffff;
|
183 |
+
text-decoration: none;
|
184 |
+
background-color: #428bca;
|
185 |
+
outline: 0;
|
186 |
+
}
|
187 |
+
|
188 |
+
.dropdown-menu > .disabled > a,
|
189 |
+
.dropdown-menu > .disabled > a:hover,
|
190 |
+
.dropdown-menu > .disabled > a:focus {
|
191 |
+
color: #999999;
|
192 |
+
}
|
193 |
+
|
194 |
+
.dropdown-menu > .disabled > a:hover,
|
195 |
+
.dropdown-menu > .disabled > a:focus {
|
196 |
+
text-decoration: none;
|
197 |
+
cursor: not-allowed;
|
198 |
+
background-color: transparent;
|
199 |
+
background-image: none;
|
200 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
201 |
+
}
|
202 |
+
|
203 |
+
.open > .dropdown-menu {
|
204 |
+
display: block;
|
205 |
+
}
|
206 |
+
|
207 |
+
.open > a {
|
208 |
+
outline: 0;
|
209 |
+
}
|
210 |
+
|
211 |
+
.dropdown-header {
|
212 |
+
display: block;
|
213 |
+
padding: 3px 20px;
|
214 |
+
font-size: 12px;
|
215 |
+
line-height: 1.428571429;
|
216 |
+
color: #999999;
|
217 |
+
}
|
218 |
+
|
219 |
+
.dropdown-backdrop {
|
220 |
+
position: fixed;
|
221 |
+
top: 0;
|
222 |
+
right: 0;
|
223 |
+
bottom: 0;
|
224 |
+
left: 0;
|
225 |
+
z-index: 990;
|
226 |
+
}
|
227 |
+
|
228 |
+
.pull-right > .dropdown-menu {
|
229 |
+
right: 0;
|
230 |
+
left: auto;
|
231 |
+
}
|
232 |
+
|
233 |
+
.dropup .caret,
|
234 |
+
.navbar-fixed-bottom .dropdown .caret {
|
235 |
+
border-top: 0 dotted;
|
236 |
+
border-bottom: 4px solid #000000;
|
237 |
+
content: "";
|
238 |
+
}
|
239 |
+
|
240 |
+
.dropup .dropdown-menu,
|
241 |
+
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
242 |
+
top: auto;
|
243 |
+
bottom: 100%;
|
244 |
+
margin-bottom: 1px;
|
245 |
+
}
|
246 |
+
|
247 |
+
@media (min-width: 768px) {
|
248 |
+
.navbar-right .dropdown-menu {
|
249 |
+
right: 0;
|
250 |
+
left: auto;
|
251 |
+
}
|
252 |
+
}
|
253 |
+
|
254 |
+
.btn-default .caret {
|
255 |
+
border-top-color: #333333;
|
256 |
+
}
|
257 |
+
|
258 |
+
.btn-primary .caret,
|
259 |
+
.btn-success .caret,
|
260 |
+
.btn-warning .caret,
|
261 |
+
.btn-danger .caret,
|
262 |
+
.btn-info .caret {
|
263 |
+
border-top-color: #fff;
|
264 |
+
}
|
265 |
+
|
266 |
+
.dropup .btn-default .caret {
|
267 |
+
border-bottom-color: #333333;
|
268 |
+
}
|
269 |
+
|
270 |
+
.dropup .btn-primary .caret,
|
271 |
+
.dropup .btn-success .caret,
|
272 |
+
.dropup .btn-warning .caret,
|
273 |
+
.dropup .btn-danger .caret,
|
274 |
+
.dropup .btn-info .caret {
|
275 |
+
border-bottom-color: #fff;
|
276 |
+
}
|
277 |
+
|
278 |
+
.btn-group,
|
279 |
+
.btn-group-vertical {
|
280 |
+
position: relative;
|
281 |
+
display: inline-block;
|
282 |
+
vertical-align: middle;
|
283 |
+
}
|
284 |
+
.dropdown-menu open {
|
285 |
+
z-index: 99999;
|
286 |
+
}
|
287 |
+
.btn-group > .btn,
|
288 |
+
.btn-group-vertical > .btn {
|
289 |
+
position: relative;
|
290 |
+
float: left;
|
291 |
+
}
|
292 |
+
|
293 |
+
.btn-group > .btn:hover,
|
294 |
+
.btn-group-vertical > .btn:hover,
|
295 |
+
.btn-group > .btn:focus,
|
296 |
+
.btn-group-vertical > .btn:focus,
|
297 |
+
.btn-group > .btn:active,
|
298 |
+
.btn-group-vertical > .btn:active,
|
299 |
+
.btn-group > .btn.active,
|
300 |
+
.btn-group-vertical > .btn.active {
|
301 |
+
z-index: 2;
|
302 |
+
}
|
303 |
+
|
304 |
+
.btn-group > .btn:focus,
|
305 |
+
.btn-group-vertical > .btn:focus {
|
306 |
+
outline: none;
|
307 |
+
}
|
308 |
+
|
309 |
+
.btn-group .btn + .btn,
|
310 |
+
.btn-group .btn + .btn-group,
|
311 |
+
.btn-group .btn-group + .btn,
|
312 |
+
.btn-group .btn-group + .btn-group {
|
313 |
+
margin-left: -1px;
|
314 |
+
}
|
315 |
+
|
316 |
+
.btn-toolbar:before,
|
317 |
+
.btn-toolbar:after {
|
318 |
+
display: table;
|
319 |
+
content: " ";
|
320 |
+
}
|
321 |
+
|
322 |
+
.btn-toolbar:after {
|
323 |
+
clear: both;
|
324 |
+
}
|
325 |
+
|
326 |
+
.btn-toolbar:before,
|
327 |
+
.btn-toolbar:after {
|
328 |
+
display: table;
|
329 |
+
content: " ";
|
330 |
+
}
|
331 |
+
|
332 |
+
.btn-toolbar:after {
|
333 |
+
clear: both;
|
334 |
+
}
|
335 |
+
|
336 |
+
.btn-toolbar .btn-group {
|
337 |
+
float: left;
|
338 |
+
}
|
339 |
+
|
340 |
+
.btn-toolbar > .btn + .btn,
|
341 |
+
.btn-toolbar > .btn-group + .btn,
|
342 |
+
.btn-toolbar > .btn + .btn-group,
|
343 |
+
.btn-toolbar > .btn-group + .btn-group {
|
344 |
+
margin-left: 5px;
|
345 |
+
}
|
346 |
+
|
347 |
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
348 |
+
border-radius: 0;
|
349 |
+
}
|
350 |
+
|
351 |
+
.btn-group > .btn:first-child {
|
352 |
+
margin-left: 0;
|
353 |
+
}
|
354 |
+
|
355 |
+
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
356 |
+
border-top-right-radius: 0;
|
357 |
+
border-bottom-right-radius: 0;
|
358 |
+
}
|
359 |
+
|
360 |
+
.btn-group > .btn:last-child:not(:first-child),
|
361 |
+
.btn-group > .dropdown-toggle:not(:first-child) {
|
362 |
+
border-bottom-left-radius: 0;
|
363 |
+
border-top-left-radius: 0;
|
364 |
+
}
|
365 |
+
|
366 |
+
.btn-group > .btn-group {
|
367 |
+
float: left;
|
368 |
+
}
|
369 |
+
|
370 |
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
371 |
+
border-radius: 0;
|
372 |
+
}
|
373 |
+
|
374 |
+
.btn-group > .btn-group:first-child > .btn:last-child,
|
375 |
+
.btn-group > .btn-group:first-child > .dropdown-toggle {
|
376 |
+
border-top-right-radius: 0;
|
377 |
+
border-bottom-right-radius: 0;
|
378 |
+
}
|
379 |
+
|
380 |
+
.btn-group > .btn-group:last-child > .btn:first-child {
|
381 |
+
border-bottom-left-radius: 0;
|
382 |
+
border-top-left-radius: 0;
|
383 |
+
}
|
384 |
+
|
385 |
+
.btn-group .dropdown-toggle:active,
|
386 |
+
.btn-group.open .dropdown-toggle {
|
387 |
+
outline: 0;
|
388 |
+
}
|
389 |
+
|
390 |
+
.btn-group-xs > .btn {
|
391 |
+
padding: 5px 10px;
|
392 |
+
padding: 1px 5px;
|
393 |
+
font-size: 12px;
|
394 |
+
line-height: 1.5;
|
395 |
+
border-radius: 3px;
|
396 |
+
}
|
397 |
+
|
398 |
+
.btn-group-sm > .btn {
|
399 |
+
padding: 5px 10px;
|
400 |
+
font-size: 12px;
|
401 |
+
line-height: 1.5;
|
402 |
+
border-radius: 3px;
|
403 |
+
}
|
404 |
+
|
405 |
+
.btn-group-lg > .btn {
|
406 |
+
padding: 10px 16px;
|
407 |
+
font-size: 18px;
|
408 |
+
line-height: 1.33;
|
409 |
+
border-radius: 6px;
|
410 |
+
}
|
411 |
+
|
412 |
+
.btn-group > .btn + .dropdown-toggle {
|
413 |
+
padding-right: 8px;
|
414 |
+
padding-left: 8px;
|
415 |
+
}
|
416 |
+
|
417 |
+
.btn-group > .btn-lg + .dropdown-toggle {
|
418 |
+
padding-right: 12px;
|
419 |
+
padding-left: 12px;
|
420 |
+
}
|
421 |
+
|
422 |
+
.btn-group.open .dropdown-toggle {
|
423 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
424 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
425 |
+
}
|
426 |
+
|
427 |
+
.btn .caret {
|
428 |
+
margin-left: 0;
|
429 |
+
}
|
430 |
+
|
431 |
+
.btn-lg .caret {
|
432 |
+
border-width: 5px 5px 0;
|
433 |
+
border-bottom-width: 0;
|
434 |
+
}
|
435 |
+
|
436 |
+
.dropup .btn-lg .caret {
|
437 |
+
border-width: 0 5px 5px;
|
438 |
+
}
|
439 |
+
|
440 |
+
.btn-group-vertical > .btn,
|
441 |
+
.btn-group-vertical > .btn-group {
|
442 |
+
display: block;
|
443 |
+
float: none;
|
444 |
+
width: 100%;
|
445 |
+
max-width: 100%;
|
446 |
+
}
|
447 |
+
|
448 |
+
.btn-group-vertical > .btn-group:before,
|
449 |
+
.btn-group-vertical > .btn-group:after {
|
450 |
+
display: table;
|
451 |
+
content: " ";
|
452 |
+
}
|
453 |
+
|
454 |
+
.btn-group-vertical > .btn-group:after {
|
455 |
+
clear: both;
|
456 |
+
}
|
457 |
+
|
458 |
+
.btn-group-vertical > .btn-group:before,
|
459 |
+
.btn-group-vertical > .btn-group:after {
|
460 |
+
display: table;
|
461 |
+
content: " ";
|
462 |
+
}
|
463 |
+
|
464 |
+
.btn-group-vertical > .btn-group:after {
|
465 |
+
clear: both;
|
466 |
+
}
|
467 |
+
|
468 |
+
.btn-group-vertical > .btn-group > .btn {
|
469 |
+
float: none;
|
470 |
+
}
|
471 |
+
|
472 |
+
.btn-group-vertical > .btn + .btn,
|
473 |
+
.btn-group-vertical > .btn + .btn-group,
|
474 |
+
.btn-group-vertical > .btn-group + .btn,
|
475 |
+
.btn-group-vertical > .btn-group + .btn-group {
|
476 |
+
margin-top: -1px;
|
477 |
+
margin-left: 0;
|
478 |
+
}
|
479 |
+
|
480 |
+
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
481 |
+
border-radius: 0;
|
482 |
+
}
|
483 |
+
|
484 |
+
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
485 |
+
border-top-right-radius: 4px;
|
486 |
+
border-bottom-right-radius: 0;
|
487 |
+
border-bottom-left-radius: 0;
|
488 |
+
}
|
489 |
+
|
490 |
+
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
491 |
+
border-top-right-radius: 0;
|
492 |
+
border-bottom-left-radius: 4px;
|
493 |
+
border-top-left-radius: 0;
|
494 |
+
}
|
495 |
+
|
496 |
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
497 |
+
border-radius: 0;
|
498 |
+
}
|
499 |
+
|
500 |
+
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
|
501 |
+
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
502 |
+
border-bottom-right-radius: 0;
|
503 |
+
border-bottom-left-radius: 0;
|
504 |
+
}
|
505 |
+
|
506 |
+
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
507 |
+
border-top-right-radius: 0;
|
508 |
+
border-top-left-radius: 0;
|
509 |
+
}
|
510 |
+
|
511 |
+
.btn-group-justified {
|
512 |
+
display: table;
|
513 |
+
width: 100%;
|
514 |
+
border-collapse: separate;
|
515 |
+
table-layout: fixed;
|
516 |
+
}
|
517 |
+
|
518 |
+
.btn-group-justified .btn {
|
519 |
+
display: table-cell;
|
520 |
+
float: none;
|
521 |
+
width: 1%;
|
522 |
+
}
|
523 |
+
|
524 |
+
[data-toggle="buttons"] > .btn > input[type="radio"],
|
525 |
+
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
526 |
+
display: none;
|
527 |
+
}
|
528 |
+
|
529 |
+
|
530 |
+
.dropdown-menu.inner li a {
|
531 |
+
padding-left: 10px;
|
532 |
+
}
|
533 |
+
|
534 |
+
.dropdown-menu.inner li a span.glyphicon {
|
535 |
+
padding-right: 5px;
|
536 |
+
}
|
admin/css/default-icon-styles.css
ADDED
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.toplevel_page_wp-svg-icons #wpfooter {
|
2 |
+
display: none;
|
3 |
+
}
|
4 |
+
.toplevel_page_wp-svg-icons .wrap, .svg-custom-upload-wrap {
|
5 |
+
margin-top: 2.5em !important;
|
6 |
+
}
|
7 |
+
#TB_ajaxContent .wp-svg-icons-wrap {
|
8 |
+
margin-right: 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.copy_paste_input {
|
12 |
+
border: none !important;
|
13 |
+
box-shadow: none !important;
|
14 |
+
background: transparent !important;
|
15 |
+
font-weight: 600 !important;
|
16 |
+
}
|
17 |
+
|
18 |
+
.yes-adv-attr:before {
|
19 |
+
font-family: 'dashicons';
|
20 |
+
content: "\f147";
|
21 |
+
padding-right: 2px;
|
22 |
+
color: rgb(91, 159, 107);
|
23 |
+
}
|
24 |
+
|
25 |
+
.glyph, .expansion-Glyph {
|
26 |
+
font-size: .75em;
|
27 |
+
float: left;
|
28 |
+
text-align: center;
|
29 |
+
padding: .15em;
|
30 |
+
/* margin: .75em .62em .75em 0; */
|
31 |
+
margin: 1em;
|
32 |
+
height: 35px;
|
33 |
+
width: 35px;
|
34 |
+
border-radius: .25em;
|
35 |
+
color:#333333;
|
36 |
+
-o-transition:.15s;
|
37 |
+
-ms-transition:.15s;
|
38 |
+
-moz-transition:.15s;
|
39 |
+
-webkit-transition:.15s;
|
40 |
+
transition:.15s;
|
41 |
+
margin-top:0;
|
42 |
+
}
|
43 |
+
|
44 |
+
.expansion-Glyph {
|
45 |
+
font-size:2em !important;
|
46 |
+
}
|
47 |
+
|
48 |
+
.glyph:hover {
|
49 |
+
color:#FF8000;
|
50 |
+
cursor:pointer;
|
51 |
+
}
|
52 |
+
.glyph input, .expansion-Glyph input {
|
53 |
+
font-family: consolas, monospace;
|
54 |
+
font-size: 13px;
|
55 |
+
width: 100%;
|
56 |
+
text-align: center;
|
57 |
+
border: 0;
|
58 |
+
box-shadow: 0 0 0 1px #ccc;
|
59 |
+
padding: .125em;
|
60 |
+
display:none;
|
61 |
+
}
|
62 |
+
|
63 |
+
.selected {
|
64 |
+
color:#FF8000;
|
65 |
+
background:#d8d8d8;
|
66 |
+
border-radius:5px;
|
67 |
+
}
|
68 |
+
.expansion-Glyph:hover { background-color: #CCCCCC !important; cursor:pointer !important; }
|
69 |
+
.w-main {
|
70 |
+
width: 98%;
|
71 |
+
}
|
72 |
+
.centered {
|
73 |
+
margin-right: auto;
|
74 |
+
}
|
75 |
+
.wp-svg-title {
|
76 |
+
font-size: 2em;
|
77 |
+
font-weight: normal;
|
78 |
+
line-height: 1.2;
|
79 |
+
}
|
80 |
+
.clearfix:before, .clearfix:after { content: ""; display: table; }
|
81 |
+
.clearfix:after, .clear { clear: both; }
|
82 |
+
footer {
|
83 |
+
margin-top: 2em;
|
84 |
+
padding: .5em 0;
|
85 |
+
box-shadow: 0 -2px #eee;
|
86 |
+
}
|
87 |
+
a { color: #333; }
|
88 |
+
a:hover { color: #B35047; }
|
89 |
+
a:visited { color: #333; text-decoration: none; }
|
90 |
+
a:active { color: none; }
|
91 |
+
.box1 {
|
92 |
+
font-size: 16px;
|
93 |
+
display: inline-block;
|
94 |
+
width: 15em;
|
95 |
+
padding: .25em .5em;
|
96 |
+
background: #eee;
|
97 |
+
margin: .5em 1em .5em 0;
|
98 |
+
}
|
99 |
+
|
100 |
+
input:focus { background: #E1E1E1; }
|
101 |
+
|
102 |
+
.wp-svg-icon-preview { width: 30px;}
|
103 |
+
.fs1, .fs2, .fs3, .fs4, .fs5, .fs6, .fs7 { padding:.85em; border-radius:5px; }
|
104 |
+
.wp-svg-iconset1-preview { font-size:90px; display: block; margin: 0 auto; margin-top: 10px; }
|
105 |
+
|
106 |
+
.wp-svg-icon-preview-box {
|
107 |
+
width: 30%;
|
108 |
+
max-width: 316px;
|
109 |
+
min-width: 200px;
|
110 |
+
float: right;
|
111 |
+
border: 1px dashed #CCCCCC;
|
112 |
+
height:145px;
|
113 |
+
padding: 1em;
|
114 |
+
margin-bottom:10px;
|
115 |
+
text-align:center;
|
116 |
+
margin: 1.5em 2em 0 0;
|
117 |
+
}
|
118 |
+
|
119 |
+
.wp-svg-paypal-donation-button { margin-top: -50px; right:0; }
|
120 |
+
|
121 |
+
.how-to-use { width:100%; border: 1px solid #CCCCCC; margin-bottom: 5px; float:left; padding-bottom:20px; }
|
122 |
+
.help-boxes { width: 100%; }
|
123 |
+
|
124 |
+
.glyph-demo .fs1 {
|
125 |
+
padding: .35em !important;
|
126 |
+
font-size: 2em !important;
|
127 |
+
}
|
128 |
+
|
129 |
+
.insert-wp-svg-icon {
|
130 |
+
margin-left: 2.7em !important;
|
131 |
+
}
|
132 |
+
|
133 |
+
.element_selection_container {
|
134 |
+
width: 100%;
|
135 |
+
display: block;
|
136 |
+
margin: 1em 0;
|
137 |
+
}
|
138 |
+
|
139 |
+
.selected-element-wrap {
|
140 |
+
color: #ff8000 !important;
|
141 |
+
}
|
142 |
+
|
143 |
+
.wp-svg-how-to-use-container {
|
144 |
+
float: left;
|
145 |
+
width: 50%;
|
146 |
+
}
|
147 |
+
|
148 |
+
/* 710px Break point */
|
149 |
+
@media only screen and (max-width: 710px) {
|
150 |
+
|
151 |
+
#review-wp-svg-icons,
|
152 |
+
#social-icons {
|
153 |
+
display: none;
|
154 |
+
}
|
155 |
+
|
156 |
+
}
|
157 |
+
|
158 |
+
/* 625px Break point */
|
159 |
+
@media only screen and (max-width: 625px) {
|
160 |
+
|
161 |
+
.wp-svg-how-to-use-container {
|
162 |
+
width: 100%;
|
163 |
+
}
|
164 |
+
|
165 |
+
.copy_paste_input {
|
166 |
+
width: 90% !important;
|
167 |
+
border: none;
|
168 |
+
box-shadow: none;
|
169 |
+
background: transparent;
|
170 |
+
}
|
171 |
+
|
172 |
+
.wp-svg-icon-preview-box {
|
173 |
+
border: none !important;
|
174 |
+
width: 100%;
|
175 |
+
max-width: 100%;
|
176 |
+
margin: 0 auto;
|
177 |
+
}
|
178 |
+
|
179 |
+
}
|
{includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.eot
RENAMED
File without changes
|
{includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.svg
RENAMED
File without changes
|
{includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.ttf
RENAMED
File without changes
|
{includes → admin}/css/icon-font/wp-svg-plugin-icon-set1.woff
RENAMED
File without changes
|
admin/css/jquery.dropdown.css
ADDED
@@ -0,0 +1 @@
|
|
|
|
0 |
position: absolute;
|
1 |
top: -6px;
|
2 |
left: 9px;
|
3 |
content: '';
|
4 |
border-left: 7px solid transparent;
|
5 |
border-right: 7px solid transparent;
|
6 |
border-bottom: 7px solid #CCC;
|
7 |
border-bottom-color: rgba(0, 0, 0, 0.2);
|
8 |
display: inline-block;
|
9 |
position: absolute;
|
10 |
top: -5px;
|
11 |
left: 10px;
|
12 |
content: '';
|
13 |
border-left: 6px solid transparent;
|
14 |
border-right: 6px solid transparent;
|
15 |
border-bottom: 6px solid #FFF;
|
16 |
display: inline-block;
|
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;
|
admin/css/wordpress-svg-icon-plugin-style.css
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/*
|
2 |
+
}
|
admin/css/wordpress-svg-icon-plugin-style.min.css
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* WP SVG Icons
|
3 |
+
* Compiled by Evan Herman with help from http://www.icomoon.io // All icon fonts directly from http://www.icomoon.io
|
4 |
+
*/
|
5 |
+
@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/13px 14px no-repeat!important;padding-left:24px!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;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-name:rotate;-webkit-animation-duration:1500ms;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-duration:1000ms;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:rotate;-ms-animation-duration:1000ms;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;animation-name:rotate;animation-duration:1000ms;animation-iteration-count:infinite;animation-timing-function:linear}.wpSVGanimatedSpin-medium{-webkit-animation-name:rotate;-webkit-animation-duration:3000ms;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-duration:3000ms;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:rotate;-ms-animation-duration:3000ms;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;animation-name:rotate;animation-duration:3000ms;animation-iteration-count:infinite;animation-timing-function:linear}.wpSVGanimatedSpin-slow{-webkit-animation-name:rotate;-webkit-animation-duration:5000ms;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-duration:5000ms;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:rotate;-ms-animation-duration:5000ms;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;animation-name:rotate;animation-duration:5000ms;animation-iteration-count:infinite;animation-timing-function:linear}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@-ms-keyframes rotate{from{-ms-transform:rotate(0deg)}to{-ms-transform:rotate(360deg)}}@-moz-keyframes rotate{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}@keyframes rotate{from{transform:rotate(0deg)}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/css/wp-svg-icons-admin.css
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* WP SVG Icons
|
3 |
+
* Compiled by Evan Herman
|
4 |
+
* http://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; }
|
22 |
+
.glyph span:last-child { line-height:.9;font-size:15px; display:none; }
|
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;
|
33 |
+
display: block;
|
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; }
|
45 |
+
.wrap .current-font-pack .glyph:hover { cursor:pointer; color:#ff8000; }
|
46 |
+
.wrap .current-font-pack .glyph fieldset, .glyph .fs0 { display:none; }
|
47 |
+
.wrap .current-font-pack .glyph span:first-child { display:block; width:100%; font-size:1.5em; }
|
48 |
+
.wrap .current-font-pack .glyph span:last-child { line-height:.9;font-size:15px; display:none; }
|
49 |
+
.wrap .current-font-pack .glyph { color:#333333; }
|
50 |
+
.wrap .current-font-pack .selected { color: #FF8800; background:#d8d8d8; }
|
51 |
+
.wrap .current-font-pack .selected span:last-child { color:#666666; }
|
52 |
+
.wrap .current-font-pack .wp-svg-icon-preview-box { margin-top:-6em; }
|
53 |
+
.wrap .current-font-pack .wp-svg-icon-preview { font-size:8em; }
|
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;
|
120 |
+
-moz-transition:.15s;
|
121 |
+
-webkit-transition:.15s;
|
122 |
+
/* ...and now for the proper property */
|
123 |
+
transition:.5s;
|
124 |
+
}
|
125 |
+
.wp-svg-happy:hover {
|
126 |
+
color: #FF8000;
|
127 |
+
}
|
admin/css/wp-svg-icons-admin.min.css
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/** WP SVG Icons - Compiled by Evan Herman // http://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}
|
admin/images/evan-herman-mascot.png
ADDED
Binary file
|
admin/images/evan_herman_logo.png
ADDED
Binary file
|
admin/images/linkedin.png
ADDED
Binary file
|
admin/images/rss_icon.png
ADDED
Binary file
|
admin/images/svg-icons-customizer.png
ADDED
Binary file
|
admin/images/svg-icons-front-end-menu.png
ADDED
Binary file
|
admin/images/svg-icons-menu-icons.png
ADDED
Binary file
|
admin/images/twitter.png
ADDED
Binary file
|
admin/images/wordpress-icon.png
ADDED
Binary file
|
admin/js/bootstrap-select.js.map
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"file":"bootstrap-select.min.js","sources":["bootstrap-select.js"],"names":["$","icontains","haystack","needle","toUpperCase","indexOf","normalizeToBase","text","rExps","re","ch","each","replace","this","htmlEscape","html","escapeMap","&","<",">","\"","'","`","source","Object","keys","join","testRegexp","RegExp","replaceRegexp","string","test","match","Plugin","option","event","args","arguments","_option","shift","apply","value","chain","$this","is","data","options","i","hasOwnProperty","config","extend","Selectpicker","DEFAULTS","fn","selectpicker","defaults","Function","expr","obj","index","meta","aicontains","element","e","stopPropagation","preventDefault","$element","$newElement","$button","$menu","$lis","title","attr","val","prototype","render","refresh","setStyle","selectAll","deselectAll","destroy","remove","show","hide","init","VERSION","noneSelectedText","noneResultsText","countSelectedText","numSelected","maxOptionsText","numAll","numGroup","arr","selectAllText","deselectAllText","multipleSeparator","style","size","selectedTextFormat","width","container","hideDisabled","showSubtext","showIcon","showContent","dropupAuto","header","liveSearch","liveSearchPlaceholder","actionsBox","iconBase","tickIcon","maxOptions","mobile","selectOnTab","dropdownAlignRight","searchAccentInsensitive","constructor","that","id","multiple","prop","autofocus","createView","after","children","$searchbox","find","addClass","click","focus","checkDisabled","clickListener","liveSearchListener","liHeight","setWidth","selectPosition","createDropdown","inputGroup","parent","hasClass","searchbox","actionsbox","drop","$drop","$li","createLi","append","reloadLi","destroyLi","_li","optID","generateLI","content","classes","optgroup","generateA","inline","normText","optionClass","subtext","icon","isDisabled","label","labelSubtext","labelIcon","length","push","eq","findLis","updateLi","setDisabled","setSelected","tabIndex","notDisabled","selectedItems","map","toArray","max","split","totalCount","not","tr8nText","toString","trim","status","buttonClass","removeClass","$selectClone","clone","end","appendTo","$menuClone","filter","outerHeight","headerHeight","searchHeight","actionsHeight","setSize","menuHeight","selectOffsetTop","selectOffsetBot","menu","menuInner","selectHeight","divHeight","menuPadding","parseInt","css","$window","window","menuExtras","posVert","offset","top","scrollTop","height","getSize","minHeight","lisVis","toggleClass","max-height","overflow","min-height","overflow-y","Math","off","on","optIndex","slice","last","divLength","selectClone","ulWidth","btnWidth","pos","actualHeight","getPlacement","offsetHeight","left","offsetWidth","position","resize","target","closest","selected","disabled","removeAttr","setTimeout","clickedIndex","prevValue","prevIndex","$options","$option","state","$optgroup","maxOptionsGrp","blur","maxReached","maxReachedGrp","optgroupID","has","maxOptionsArr","maxTxt","maxTxtGrp","$notify","trigger","delay","fadeOut","change","currentTarget","no_results","keydown","$items","next","first","prev","nextPrev","isActive","$parent","keyCodeMap",32,48,49,50,51,52,53,54,55,56,57,59,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,96,97,98,99,100,101,102,103,104,105,"String","fromCharCode","keyCode","nextAll","prevAll","count","prevKey","keyIndex","toLowerCase","substring","document","elem","old","Constructor","noConflict","$selectpicker","call","jQuery"],"mappings":";;;;;;CAMA,SAAWA,GACT,YAmBA,SAASC,GAAUC,EAAUC,GAC3B,MAAOD,GAASE,cAAcC,QAAQF,EAAOC,eAAiB,GAShE,QAASE,GAAgBC,GACvB,GAAIC,KACDC,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,eAAgBC,GAAI,MACxBD,GAAI,UAAWC,GAAI,MACnBD,GAAI,UAAWC,GAAI,KAKtB,OAHAV,GAAEW,KAAKH,EAAO,WACZD,EAAOA,EAAKK,QAAQC,KAAKJ,GAAII,KAAKH,MAE7BH,EAIT,QAASO,GAAWC,GAClB,GAAIC,IACFC,IAAK,QACLC,IAAK,OACLC,IAAK,OACLC,IAAK,SACLC,IAAK,SACLC,IAAK,UAEHC,EAAS,MAAQC,OAAOC,KAAKT,GAAWU,KAAK,KAAO,IACpDC,EAAa,GAAIC,QAAOL,GACxBM,EAAgB,GAAID,QAAOL,EAAQ,KACnCO,EAAiB,MAARf,EAAe,GAAK,GAAKA,CACtC,OAAOY,GAAWI,KAAKD,GAAUA,EAAOlB,QAAQiB,EAAe,SAAUG,GACvE,MAAOhB,GAAUgB,KACdF,EAsjCP,QAASG,GAAOC,EAAQC,GAEtB,GAAIC,GAAOC,UAIPC,EAAUJ,EACVA,EAASE,EAAK,GACdD,EAAQC,EAAK,MACdG,MAAMC,MAAMJ,GAGM,mBAAVF,KACTA,EAASI,EAGX,IAAIG,GACAC,EAAQ7B,KAAKF,KAAK,WACpB,GAAIgC,GAAQ3C,EAAEa,KACd,IAAI8B,EAAMC,GAAG,UAAW,CACtB,GAAIC,GAAOF,EAAME,KAAK,gBAClBC,EAA2B,gBAAVZ,IAAsBA,CAE3C,IAAKW,GAGE,GAAIC,EACT,IAAK,GAAIC,KAAKD,GACRA,EAAQE,eAAeD,KACzBF,EAAKC,QAAQC,GAAKD,EAAQC,QANrB,CACT,GAAIE,GAASjD,EAAEkD,UAAWC,EAAaC,SAAUpD,EAAEqD,GAAGC,aAAaC,aAAgBZ,EAAME,OAAQC,EACjGH,GAAME,KAAK,eAAiBA,EAAO,GAAIM,GAAatC,KAAMoC,EAAQd,IAS/C,gBAAVD,KAEPO,EADEI,EAAKX,YAAmBsB,UAClBX,EAAKX,GAAQM,MAAMK,EAAMT,GAEzBS,EAAKC,QAAQZ,MAM7B,OAAqB,mBAAVO,GAEFA,EAEAC,EAtqCX1C,EAAEyD,KAAK,KAAKxD,UAAY,SAAUyD,EAAKC,EAAOC,GAC5C,MAAO3D,GAAUD,EAAE0D,GAAKnD,OAAQqD,EAAK,KAIvC5D,EAAEyD,KAAK,KAAKI,WAAa,SAAUH,EAAKC,EAAOC,GAC7C,MAAO3D,GAAUD,EAAE0D,GAAKb,KAAK,mBAAqB7C,EAAE0D,GAAKnD,OAAQqD,EAAK,IA6DxE,IAAIT,GAAe,SAAUW,EAAShB,EAASiB,GACzCA,IACFA,EAAEC,kBACFD,EAAEE,kBAGJpD,KAAKqD,SAAWlE,EAAE8D,GAClBjD,KAAKsD,YAAc,KACnBtD,KAAKuD,QAAU,KACfvD,KAAKwD,MAAQ,KACbxD,KAAKyD,KAAO,KACZzD,KAAKiC,QAAUA,EAIY,OAAvBjC,KAAKiC,QAAQyB,QACf1D,KAAKiC,QAAQyB,MAAQ1D,KAAKqD,SAASM,KAAK,UAI1C3D,KAAK4D,IAAMtB,EAAauB,UAAUD,IAClC5D,KAAK8D,OAASxB,EAAauB,UAAUC,OACrC9D,KAAK+D,QAAUzB,EAAauB,UAAUE,QACtC/D,KAAKgE,SAAW1B,EAAauB,UAAUG,SACvChE,KAAKiE,UAAY3B,EAAauB,UAAUI,UACxCjE,KAAKkE,YAAc5B,EAAauB,UAAUK,YAC1ClE,KAAKmE,QAAU7B,EAAauB,UAAUO,OACtCpE,KAAKoE,OAAS9B,EAAauB,UAAUO,OACrCpE,KAAKqE,KAAO/B,EAAauB,UAAUQ,KACnCrE,KAAKsE,KAAOhC,EAAauB,UAAUS,KAEnCtE,KAAKuE,OAGPjC,GAAakC,QAAU,QAGvBlC,EAAaC,UACXkC,iBAAkB,mBAClBC,gBAAiB,yBACjBC,kBAAmB,SAAUC,GAC3B,MAAuB,IAAfA,EAAoB,oBAAsB,sBAEpDC,eAAgB,SAAUC,EAAQC,GAChC,GAAIC,KAKJ,OAHAA,GAAI,GAAgB,GAAVF,EAAe,+BAAiC,gCAC1DE,EAAI,GAAkB,GAAZD,EAAiB,qCAAuC,sCAE3DC,GAETC,cAAe,aACfC,gBAAiB,eACjBC,kBAAmB,KACnBC,MAAO,cACPC,KAAM,OACN3B,MAAO,KACP4B,mBAAoB,SACpBC,OAAO,EACPC,WAAW,EACXC,cAAc,EACdC,aAAa,EACbC,UAAU,EACVC,aAAa,EACbC,YAAY,EACZC,QAAQ,EACRC,YAAY,EACZC,sBAAuB,KACvBC,YAAY,EACZC,SAAU,YACVC,SAAU,eACVC,YAAY,EACZC,QAAQ,EACRC,aAAa,EACbC,oBAAoB,EACpBC,yBAAyB,GAG3BlE,EAAauB,WAEX4C,YAAanE,EAEbiC,KAAM,WACJ,GAAImC,GAAO1G,KACP2G,EAAK3G,KAAKqD,SAASM,KAAK,KAE5B3D,MAAKqD,SAASiB,OACdtE,KAAK4G,SAAW5G,KAAKqD,SAASwD,KAAK,YACnC7G,KAAK8G,UAAY9G,KAAKqD,SAASwD,KAAK,aACpC7G,KAAKsD,YAActD,KAAK+G,aACxB/G,KAAKqD,SAAS2D,MAAMhH,KAAKsD,aACzBtD,KAAKwD,MAAQxD,KAAKsD,YAAY2D,SAAS,kBACvCjH,KAAKuD,QAAUvD,KAAKsD,YAAY2D,SAAS,UACzCjH,KAAKkH,WAAalH,KAAKsD,YAAY6D,KAAK,SAEpCnH,KAAKiC,QAAQsE,oBACfvG,KAAKwD,MAAM4D,SAAS,uBAEJ,mBAAPT,KACT3G,KAAKuD,QAAQI,KAAK,UAAWgD,GAC7BxH,EAAE,cAAgBwH,EAAK,MAAMU,MAAM,SAAUnE,GAC3CA,EAAEE,iBACFsD,EAAKnD,QAAQ+D,WAIjBtH,KAAKuH,gBACLvH,KAAKwH,gBACDxH,KAAKiC,QAAQ8D,YAAY/F,KAAKyH,qBAClCzH,KAAK8D,SACL9D,KAAK0H,WACL1H,KAAKgE,WACLhE,KAAK2H,WACD3H,KAAKiC,QAAQuD,WAAWxF,KAAK4H,iBACjC5H,KAAKwD,MAAMxB,KAAK,OAAQhC,MACxBA,KAAKsD,YAAYtB,KAAK,OAAQhC,MAC1BA,KAAKiC,QAAQoE,QAAQrG,KAAKqG,UAGhCwB,eAAgB,WAGd,GAAIjB,GAAW5G,KAAK4G,SAAW,aAAe,GAC1CkB,EAAa9H,KAAKqD,SAAS0E,SAASC,SAAS,eAAiB,mBAAqB,GACnFlB,EAAY9G,KAAK8G,UAAY,aAAe,GAE5ChB,EAAS9F,KAAKiC,QAAQ6D,OAAS,qGAAuG9F,KAAKiC,QAAQ6D,OAAS,SAAW,GACvKmC,EAAYjI,KAAKiC,QAAQ8D,WAC7B,wFAEC,OAAS/F,KAAKiC,QAAQ+D,sBAAwB,GAAK,iBAAmB/F,EAAWD,KAAKiC,QAAQ+D,uBAAyB,KAAO,UAEzH,GACFkC,EAAalI,KAAKiC,QAAQgE,WAC9B,sIAGAjG,KAAKiC,QAAQgD,cACb,wEAEAjF,KAAKiC,QAAQiD,gBACb,wBAGM,GACFiD,EACA,yCAA2CvB,EAAWkB,EAAa,uGACoChB,EAAY,2HAKnHhB,EACAmC,EACAC,EACA,4EAKJ,OAAO/I,GAAEgJ,IAGXpB,WAAY,WACV,GAAIqB,GAAQpI,KAAK6H,iBACbQ,EAAMrI,KAAKsI,UAEf,OADAF,GAAMjB,KAAK,MAAMoB,OAAOF,GACjBD,GAGTI,SAAU,WAERxI,KAAKyI,WAEL,IAAIJ,GAAMrI,KAAKsI,UACftI,MAAKwD,MAAM2D,KAAK,MAAMoB,OAAOF,IAG/BI,UAAW,WACTzI,KAAKwD,MAAM2D,KAAK,MAAM/C,UAGxBkE,SAAU,WACR,GAAI5B,GAAO1G,KACP0I,KACAC,EAAQ,EAURC,EAAa,SAAUC,EAAS/F,EAAOgG,EAASC,GAClD,MAAO,OACkB,mBAAZD,GAA0B,KAAOA,EAAW,WAAaA,EAAU,IAAM,KAC/D,mBAAVhG,GAAwB,OAASA,EAAS,yBAA2BA,EAAQ,IAAM,KACtE,mBAAbiG,GAA2B,OAASA,EAAY,kBAAoBA,EAAW,IAAM,IAC9F,IAAMF,EAAU,SASlBG,EAAY,SAAUtJ,EAAMoJ,EAASG,GACvC,GAAIC,GAAWzJ,EAAgBQ,EAAWP,GAC1C,OAAO,mBACiB,mBAAZoJ,GAA0B,WAAaA,EAAU,IAAM,KAC5C,mBAAXG,GAAyB,WAAaA,EAAS,IAAM,IAC7D,0BAA4BC,EAAW,KACjCxJ,EACN,gBAAkBgH,EAAKzE,QAAQiE,SAAW,IAAMQ,EAAKzE,QAAQkE,SAAW,2BA2D9E,OAvDAnG,MAAKqD,SAAS8D,KAAK,UAAUrH,KAAK,SAAUgD,GAC1C,GAAIhB,GAAQ3C,EAAEa,MAGVmJ,EAAcrH,EAAM6B,KAAK,UAAY,GACrCsF,EAASnH,EAAM6B,KAAK,SACpBjE,EAAOoC,EAAME,KAAK,WAAaF,EAAME,KAAK,WAAaF,EAAM5B,OAC7DkJ,EAA2C,mBAA1BtH,GAAME,KAAK,WAA6B,6BAA+BF,EAAME,KAAK,WAAa,WAAa,GAC7HqH,EAAqC,mBAAvBvH,GAAME,KAAK,QAA0B,gBAAkB0E,EAAKzE,QAAQiE,SAAW,IAAMpE,EAAME,KAAK,QAAU,aAAe,GACvIsH,EAAaxH,EAAMC,GAAG,cAAgBD,EAAMiG,SAAShG,GAAG,YAU5D,IATa,KAATsH,GAAeC,IACjBD,EAAO,SAAWA,EAAO,WAGtBvH,EAAME,KAAK,aAEdtC,EAAO2J,EAAO,sBAAwB3J,EAAO0J,EAAU,YAGrD1C,EAAKzE,QAAQwD,eAAgB6D,EAIjC,GAAIxH,EAAMiG,SAAShG,GAAG,aAAeD,EAAME,KAAK,cAAe,EAAM,CACnE,GAAsB,IAAlBF,EAAMgB,QAAe,CACvB6F,GAAS,CAGT,IAAIY,GAAQzH,EAAMiG,SAASpE,KAAK,SAC5B6F,EAAyD,mBAAnC1H,GAAMiG,SAAS/F,KAAK,WAA6B,6BAA+BF,EAAMiG,SAAS/F,KAAK,WAAa,WAAa,GACpJyH,EAAY3H,EAAMiG,SAAS/F,KAAK,QAAU,gBAAkB0E,EAAKzE,QAAQiE,SAAW,IAAMpE,EAAMiG,SAAS/F,KAAK,QAAU,aAAe,EAC3IuH,GAAQE,EAAY,sBAAwBF,EAAQC,EAAe,UAErD,IAAV1G,GAAe4F,EAAIgB,OAAS,GAC9BhB,EAAIiB,KAAKf,EAAW,GAAI,KAAM,YAGhCF,EAAIiB,KAAKf,EAAWW,EAAO,KAAM,kBAAmBZ,IAGtDD,EAAIiB,KAAKf,EAAWI,EAAUtJ,EAAM,OAASyJ,EAAaF,GAASnG,EAAO,GAAI6F,QAE9ED,GAAIiB,KADK7H,EAAME,KAAK,cAAe,EAC1B4G,EAAW,GAAI9F,EAAO,WACtBhB,EAAME,KAAK,aAAc,EACzB4G,EAAWI,EAAUtJ,EAAMyJ,EAAaF,GAASnG,EAAO,oBAExD8F,EAAWI,EAAUtJ,EAAMyJ,EAAaF,GAASnG,MAKzD9C,KAAK4G,UAA6D,IAAjD5G,KAAKqD,SAAS8D,KAAK,mBAAmBuC,QAAiB1J,KAAKiC,QAAQyB,OACxF1D,KAAKqD,SAAS8D,KAAK,UAAUyC,GAAG,GAAG/C,KAAK,YAAY,GAAMlD,KAAK,WAAY,YAGtExE,EAAEuJ,EAAI7H,KAAK,MAGpBgJ,QAAS,WAEP,MADiB,OAAb7J,KAAKyD,OAAczD,KAAKyD,KAAOzD,KAAKwD,MAAM2D,KAAK,OAC5CnH,KAAKyD,MAMdK,OAAQ,SAAUgG,GAChB,GAAIpD,GAAO1G,IAGP8J,MAAa,GACf9J,KAAKqD,SAAS8D,KAAK,UAAUrH,KAAK,SAAUgD,GAC1C4D,EAAKqD,YAAYjH,EAAO3D,EAAEa,MAAM+B,GAAG,cAAgB5C,EAAEa,MAAM+H,SAAShG,GAAG,cACvE2E,EAAKsD,YAAYlH,EAAO3D,EAAEa,MAAM+B,GAAG,gBAIvC/B,KAAKiK,UACL,IAAIC,GAAclK,KAAKiC,QAAQwD,aAAe,mBAAqB,GAC/D0E,EAAgBnK,KAAKqD,SAAS8D,KAAK,kBAAoB+C,GAAaE,IAAI,WAC1E,GAEIhB,GAFAtH,EAAQ3C,EAAEa,MACVqJ,EAAOvH,EAAME,KAAK,SAAW0E,EAAKzE,QAAQ0D,SAAW,aAAee,EAAKzE,QAAQiE,SAAW,IAAMpE,EAAME,KAAK,QAAU,UAAY,EAOvI,OAJEoH,GADE1C,EAAKzE,QAAQyD,aAAe5D,EAAM6B,KAAK,kBAAoB+C,EAAKE,SACxD,8BAAgC9E,EAAME,KAAK,WAAa,WAExD,GAEuB,mBAAxBF,GAAM6B,KAAK,SACb7B,EAAM6B,KAAK,SACT7B,EAAME,KAAK,YAAc0E,EAAKzE,QAAQ2D,YACxC9D,EAAME,KAAK,WAEXqH,EAAOvH,EAAM5B,OAASkJ,IAE9BiB,UAIC3G,EAAS1D,KAAK4G,SAA8BuD,EAActJ,KAAKb,KAAKiC,QAAQkD,mBAAnDgF,EAAc,EAG3C,IAAInK,KAAK4G,UAAY5G,KAAKiC,QAAQqD,mBAAmB9F,QAAQ,SAAW,GAAI,CAC1E,GAAI8K,GAAMtK,KAAKiC,QAAQqD,mBAAmBiF,MAAM,IAChD,IAAKD,EAAIZ,OAAS,GAAKS,EAAcT,OAASY,EAAI,IAAsB,GAAdA,EAAIZ,QAAeS,EAAcT,QAAU,EAAI,CACvGQ,EAAclK,KAAKiC,QAAQwD,aAAe,eAAiB,EAC3D,IAAI+E,GAAaxK,KAAKqD,SAAS8D,KAAK,UAAUsD,IAAI,8CAAgDP,GAAaR,OAC3GgB,EAAsD,kBAAnC1K,MAAKiC,QAAQ0C,kBAAoC3E,KAAKiC,QAAQ0C,kBAAkBwF,EAAcT,OAAQc,GAAcxK,KAAKiC,QAAQ0C,iBACxJjB,GAAQgH,EAAS3K,QAAQ,MAAOoK,EAAcT,OAAOiB,YAAY5K,QAAQ,MAAOyK,EAAWG,aAI/F3K,KAAKiC,QAAQyB,MAAQ1D,KAAKqD,SAASM,KAAK,SAED,UAAnC3D,KAAKiC,QAAQqD,qBACf5B,EAAQ1D,KAAKiC,QAAQyB,OAIlBA,IACHA,EAAsC,mBAAvB1D,MAAKiC,QAAQyB,MAAwB1D,KAAKiC,QAAQyB,MAAQ1D,KAAKiC,QAAQwC,kBAIxFzE,KAAKuD,QAAQI,KAAK,QAASxE,EAAEyL,KAAKlH,EAAM3D,QAAQ,YAAa,MAC7DC,KAAKsD,YAAY6D,KAAK,kBAAkBjH,KAAKwD,IAO/CM,SAAU,SAAUoB,EAAOyF,GACrB7K,KAAKqD,SAASM,KAAK,UACrB3D,KAAKsD,YAAY8D,SAASpH,KAAKqD,SAASM,KAAK,SAAS5D,QAAQ,8CAA+C,IAG/G,IAAI+K,GAAc1F,EAAQA,EAAQpF,KAAKiC,QAAQmD,KAEjC,QAAVyF,EACF7K,KAAKuD,QAAQ6D,SAAS0D,GACH,UAAVD,EACT7K,KAAKuD,QAAQwH,YAAYD,IAEzB9K,KAAKuD,QAAQwH,YAAY/K,KAAKiC,QAAQmD,OACtCpF,KAAKuD,QAAQ6D,SAAS0D,KAI1BpD,SAAU,WACR,GAAI1H,KAAKiC,QAAQoD,QAAS,EAA1B,CAEA,GAAI2F,GAAehL,KAAKwD,MAAMuE,SAASkD,QAAQhE,SAAS,oBAAoBJ,KAAK,aAAa,GAAOqE,MAAMC,SAAS,QAChHC,EAAaJ,EAAa5D,SAAS,QAAQH,SAAS,kBACpDS,EAAW0D,EAAWjE,KAAK,MAAMsD,IAAI,YAAYA,IAAI,oBAAoBY,OAAO,YAAYpE,SAAS,KAAKqE,cAC1GC,EAAevL,KAAKiC,QAAQ6D,OAASsF,EAAWjE,KAAK,kBAAkBmE,cAAgB,EACvFE,EAAexL,KAAKiC,QAAQ8D,WAAaqF,EAAWjE,KAAK,iBAAiBmE,cAAgB,EAC1FG,EAAgBzL,KAAKiC,QAAQgE,WAAamF,EAAWjE,KAAK,kBAAkBmE,cAAgB,CAEhGN,GAAa5G,SAEbpE,KAAKsD,YACAtB,KAAK,WAAY0F,GACjB1F,KAAK,eAAgBuJ,GACrBvJ,KAAK,eAAgBwJ,GACrBxJ,KAAK,gBAAiByJ,KAG7BC,QAAS,WACP1L,KAAK6J,SACL,IAgBI8B,GACAC,EACAC,EAlBAnF,EAAO1G,KACP8L,EAAO9L,KAAKwD,MACZuI,EAAYD,EAAK3E,KAAK,UACtB6E,EAAehM,KAAKsD,YAAYgI,cAChC5D,EAAW1H,KAAKsD,YAAYtB,KAAK,YACjCuJ,EAAevL,KAAKsD,YAAYtB,KAAK,gBACrCwJ,EAAexL,KAAKsD,YAAYtB,KAAK,gBACrCyJ,EAAgBzL,KAAKsD,YAAYtB,KAAK,iBACtCiK,EAAYjM,KAAKyD,KAAK4H,OAAO,YAAYC,aAAY,GACrDY,EAAcC,SAASL,EAAKM,IAAI,gBAC5BD,SAASL,EAAKM,IAAI,mBAClBD,SAASL,EAAKM,IAAI,qBAClBD,SAASL,EAAKM,IAAI,wBACtBlC,EAAclK,KAAKiC,QAAQwD,aAAe,cAAgB,GAC1D4G,EAAUlN,EAAEmN,QACZC,EAAaL,EAAcC,SAASL,EAAKM,IAAI,eAAiBD,SAASL,EAAKM,IAAI,kBAAoB,EAIpGI,EAAU,WAGRZ,EAAkBlF,EAAKpD,YAAYmJ,SAASC,IAAML,EAAQM,YAC1Dd,EAAkBQ,EAAQO,SAAWhB,EAAkBI,EAK7D,IAHAQ,IACIxM,KAAKiC,QAAQ6D,QAAQgG,EAAKM,IAAI,cAAe,GAExB,QAArBpM,KAAKiC,QAAQoD,KAAgB,CAC/B,GAAIwH,GAAU,WACZ,GAAIC,GACAC,EAASrG,EAAKjD,KAAKgH,IAAI,UAE3B+B,KACAb,EAAaE,EAAkBU,EAE3B7F,EAAKzE,QAAQ4D,YACfa,EAAKpD,YAAY0J,YAAY,SAAUpB,EAAkBC,GAAoBF,EAAaY,EAAcT,EAAKc,UAE3GlG,EAAKpD,YAAY0E,SAAS,YAC5B2D,EAAaC,EAAkBW,GAI/BO,EADGC,EAAOrD,OAASqD,EAAO1B,OAAO,oBAAoB3B,OAAU,EACxC,EAAXhC,EAAe6E,EAAa,EAE5B,EAGdT,EAAKM,KACHa,aAActB,EAAa,KAC3BuB,SAAY,SACZC,aAAcL,EAAYvB,EAAeC,EAAeC,EAAgB,OAE1EM,EAAUK,KACRa,aAActB,EAAaJ,EAAeC,EAAeC,EAAgBS,EAAc,KACvFkB,aAAc,OACdD,aAAcE,KAAK/C,IAAIwC,EAAYZ,EAAa,GAAK,OAGzDW,KACA7M,KAAKkH,WAAWoG,IAAI,wCAAwCC,GAAG,uCAAwCV,GACvGR,EAAQiB,IAAI,kBAAkBC,GAAG,iBAAkBV,GACnDR,EAAQiB,IAAI,kBAAkBC,GAAG,iBAAkBV,OAC9C,IAAI7M,KAAKiC,QAAQoD,MAA6B,QAArBrF,KAAKiC,QAAQoD,MAAkByG,EAAK3E,KAAK,KAAO+C,GAAaR,OAAS1J,KAAKiC,QAAQoD,KAAM,CACvH,GAAImI,GAAWxN,KAAKyD,KAAKgH,IAAI,WAAaP,GAAajD,WAAWwG,MAAM,EAAGzN,KAAKiC,QAAQoD,MAAMqI,OAAO3F,SAASjF,QAC1G6K,EAAY3N,KAAKyD,KAAKgK,MAAM,EAAGD,EAAW,GAAGnC,OAAO,YAAY3B,MACpEiC,GAAajE,EAAW1H,KAAKiC,QAAQoD,KAAOsI,EAAY1B,EAAYC,EAChExF,EAAKzE,QAAQ4D,YAEf7F,KAAKsD,YAAY0J,YAAY,SAAUpB,EAAkBC,GAAmBF,EAAaG,EAAKc,UAEhGd,EAAKM,KAAKa,aAActB,EAAaJ,EAAeC,EAAeC,EAAgB,KAAMyB,SAAY,WACrGnB,EAAUK,KAAKa,aAActB,EAAaO,EAAc,KAAMkB,aAAc,WAIhFzF,SAAU,WACR,GAA0B,QAAtB3H,KAAKiC,QAAQsD,MAAiB,CAChCvF,KAAKwD,MAAM4I,IAAI,YAAa,IAG5B,IAAIwB,GAAc5N,KAAKsD,YAAY2H,QAAQE,SAAS,QAChD0C,EAAUD,EAAY3G,SAAS,kBAAkBmF,IAAI,SACrD0B,EAAWF,EAAYxB,IAAI,QAAS,QAAQnF,SAAS,UAAUmF,IAAI,QACvEwB,GAAYxJ,SAGZpE,KAAKsD,YAAY8I,IAAI,QAASiB,KAAK/C,IAAI6B,SAAS0B,GAAU1B,SAAS2B,IAAa,UACjD,OAAtB9N,KAAKiC,QAAQsD,OAEtBvF,KAAKwD,MAAM4I,IAAI,YAAa,IAC5BpM,KAAKsD,YAAY8I,IAAI,QAAS,IAAIhF,SAAS,cAClCpH,KAAKiC,QAAQsD,OAEtBvF,KAAKwD,MAAM4I,IAAI,YAAa,IAC5BpM,KAAKsD,YAAY8I,IAAI,QAASpM,KAAKiC,QAAQsD,SAG3CvF,KAAKwD,MAAM4I,IAAI,YAAa,IAC5BpM,KAAKsD,YAAY8I,IAAI,QAAS,IAG5BpM,MAAKsD,YAAY0E,SAAS,cAAuC,QAAvBhI,KAAKiC,QAAQsD,OACzDvF,KAAKsD,YAAYyH,YAAY,cAIjCnD,eAAgB,WACd,GAGImG,GACAC,EAJAtH,EAAO1G,KACPmI,EAAO,UACPC,EAAQjJ,EAAEgJ,GAGV8F,EAAe,SAAU5K,GACvB+E,EAAMhB,SAAS/D,EAASM,KAAK,SAAS5D,QAAQ,iBAAkB,KAAKiN,YAAY,SAAU3J,EAAS2E,SAAS,WAC7G+F,EAAM1K,EAASoJ,SACfuB,EAAe3K,EAAS2E,SAAS,UAAY,EAAI3E,EAAS,GAAG6K,aAC7D9F,EAAMgE,KACJM,IAAOqB,EAAIrB,IAAMsB,EACjBG,KAAQJ,EAAII,KACZ5I,MAASlC,EAAS,GAAG+K,YACrBC,SAAY,aAGpBrO,MAAKsD,YAAYiK,GAAG,QAAS,WACvB7G,EAAK4C,eAGT2E,EAAa9O,EAAEa,OACfoI,EAAM+C,SAASzE,EAAKzE,QAAQuD,WAC5B4C,EAAM4E,YAAY,QAAS7N,EAAEa,MAAMgI,SAAS,SAC5CI,EAAMG,OAAO7B,EAAKlD,UAEpBrE,EAAEmN,QAAQgC,OAAO,WACfL,EAAavH,EAAKpD,eAEpBnE,EAAEmN,QAAQiB,GAAG,SAAU,WACrBU,EAAavH,EAAKpD,eAEpBnE,EAAE,QAAQoO,GAAG,QAAS,SAAUrK,GAC1B/D,EAAE+D,EAAEqL,QAAQC,QAAQ9H,EAAKpD,aAAaoG,OAAS,GACjDtB,EAAM2C,YAAY,WAKxBf,YAAa,SAAUlH,EAAO2L,GAC5BzO,KAAK6J,UACL7J,KAAKyD,KAAK4H,OAAO,yBAA2BvI,EAAQ,MAAMkK,YAAY,WAAYyB,IAGpF1E,YAAa,SAAUjH,EAAO4L,GAC5B1O,KAAK6J,UACD6E,EACF1O,KAAKyD,KAAK4H,OAAO,yBAA2BvI,EAAQ,MAAMsE,SAAS,YAAYD,KAAK,KAAKxD,KAAK,OAAQ,KAAKA,KAAK,WAAY,IAE5H3D,KAAKyD,KAAK4H,OAAO,yBAA2BvI,EAAQ,MAAMiI,YAAY,YAAY5D,KAAK,KAAKwH,WAAW,QAAQhL,KAAK,WAAY,IAIpI2F,WAAY,WACV,MAAOtJ,MAAKqD,SAAStB,GAAG,cAG1BwF,cAAe,WACb,GAAIb,GAAO1G,IAEPA,MAAKsJ,aACPtJ,KAAKuD,QAAQ6D,SAAS,YAAYzD,KAAK,WAAY,KAE/C3D,KAAKuD,QAAQyE,SAAS,aACxBhI,KAAKuD,QAAQwH,YAAY,YAGU,IAAjC/K,KAAKuD,QAAQI,KAAK,cACf3D,KAAKqD,SAASrB,KAAK,aAAahC,KAAKuD,QAAQoL,WAAW,cAIjE3O,KAAKuD,QAAQ8D,MAAM,WACjB,OAAQX,EAAK4C,gBAIjBW,SAAU,WACJjK,KAAKqD,SAAStB,GAAG,gBACnB/B,KAAKqD,SAASrB,KAAK,WAAYhC,KAAKqD,SAASM,KAAK,aAClD3D,KAAKuD,QAAQI,KAAK,WAAY3D,KAAKqD,SAASrB,KAAK,eAIrDwF,cAAe,WACb,GAAId,GAAO1G,IAEXA,MAAKsD,YAAYiK,GAAG,sBAAuB,iBAAkB,SAAUrK,GACrEA,EAAEC,oBAGJnD,KAAKsD,YAAYiK,GAAG,QAAS,WAC3B7G,EAAKgF,UACAhF,EAAKzE,QAAQ8D,YAAeW,EAAKE,UACpCgI,WAAW,WACTlI,EAAKlD,MAAM2D,KAAK,eAAeG,SAC9B,MAIPtH,KAAKwD,MAAM+J,GAAG,QAAS,OAAQ,SAAUrK,GACvC,GAAIpB,GAAQ3C,EAAEa,MACV6O,EAAe/M,EAAMiG,SAAS/F,KAAK,iBACnC8M,EAAYpI,EAAKrD,SAASO,MAC1BmL,EAAYrI,EAAKrD,SAASwD,KAAK,gBAUnC,IAPIH,EAAKE,UACP1D,EAAEC,kBAGJD,EAAEE,kBAGGsD,EAAK4C,eAAiBxH,EAAMiG,SAASC,SAAS,YAAa,CAC9D,GAAIgH,GAAWtI,EAAKrD,SAAS8D,KAAK,UAC9B8H,EAAUD,EAASpF,GAAGiF,GACtBK,EAAQD,EAAQpI,KAAK,YACrBsI,EAAYF,EAAQlH,OAAO,YAC3B3B,EAAaM,EAAKzE,QAAQmE,WAC1BgJ,EAAgBD,EAAUnN,KAAK,gBAAiB,CAEpD,IAAK0E,EAAKE,UAUR,GAJAqI,EAAQpI,KAAK,YAAaqI,GAC1BxI,EAAKsD,YAAY6E,GAAeK,GAChCpN,EAAMuN,OAEFjJ,KAAe,GAASgJ,KAAkB,EAAO,CACnD,GAAIE,GAAalJ,EAAa4I,EAAS3D,OAAO,aAAa3B,OACvD6F,EAAgBH,EAAgBD,EAAUhI,KAAK,mBAAmBuC,MAEtE,IAAKtD,GAAckJ,GAAgBF,GAAiBG,EAClD,GAAInJ,GAA4B,GAAdA,EAChB4I,EAASnI,KAAK,YAAY,GAC1BoI,EAAQpI,KAAK,YAAY,GACzBH,EAAKlD,MAAM2D,KAAK,aAAa4D,YAAY,YACzCrE,EAAKsD,YAAY6E,GAAc,OAC1B,IAAIO,GAAkC,GAAjBA,EAAoB,CAC9CD,EAAUhI,KAAK,mBAAmBN,KAAK,YAAY,GACnDoI,EAAQpI,KAAK,YAAY,EACzB,IAAI2I,GAAa1N,EAAME,KAAK,WAE5B0E,GAAKlD,MAAM2D,KAAK,aAAasI,IAAI,oBAAsBD,EAAa,MAAMzE,YAAY,YAEtFrE,EAAKsD,YAAY6E,GAAc,OAC1B,CACL,GAAIa,GAAwD,kBAAhChJ,GAAKzE,QAAQ4C,eACjC6B,EAAKzE,QAAQ4C,eAAeuB,EAAYgJ,GAAiB1I,EAAKzE,QAAQ4C,eAC1E8K,EAASD,EAAc,GAAG3P,QAAQ,MAAOqG,GACzCwJ,EAAYF,EAAc,GAAG3P,QAAQ,MAAOqP,GAC5CS,EAAU1Q,EAAE,6BAGZuQ,GAAc,KAChBC,EAASA,EAAO5P,QAAQ,QAAS2P,EAAc,GAAGtJ,EAAa,EAAI,EAAI,IACvEwJ,EAAYA,EAAU7P,QAAQ,QAAS2P,EAAc,GAAGN,EAAgB,EAAI,EAAI,KAGlFH,EAAQpI,KAAK,YAAY,GAEzBH,EAAKlD,MAAM+E,OAAOsH,GAEdzJ,GAAckJ,IAChBO,EAAQtH,OAAOpJ,EAAE,QAAUwQ,EAAS,WACpCjJ,EAAKrD,SAASyM,QAAQ,yBAGpBV,GAAiBG,IACnBM,EAAQtH,OAAOpJ,EAAE,QAAUyQ,EAAY,WACvClJ,EAAKrD,SAASyM,QAAQ,4BAGxBlB,WAAW,WACTlI,EAAKsD,YAAY6E,GAAc,IAC9B,IAEHgB,EAAQE,MAAM,KAAKC,QAAQ,IAAK,WAC9B7Q,EAAEa,MAAMoE,iBA3DhB4K,GAASnI,KAAK,YAAY,GAC1BoI,EAAQpI,KAAK,YAAY,GACzBH,EAAKlD,MAAM2D,KAAK,aAAa4D,YAAY,YACzCrE,EAAKsD,YAAY6E,GAAc,EA+D5BnI,GAAKE,SAECF,EAAKzE,QAAQ8D,YACtBW,EAAKQ,WAAWI,QAFhBZ,EAAKnD,QAAQ+D,SAMVwH,GAAapI,EAAKrD,SAASO,OAAS8C,EAAKE,UAAcmI,GAAarI,EAAKrD,SAASwD,KAAK,mBAAqBH,EAAKE,WACpHF,EAAKrD,SAAS4M,YAKpBjQ,KAAKwD,MAAM+J,GAAG,QAAS,6DAA8D,SAAUrK,GACzFA,EAAEgN,eAAiBlQ,OACrBkD,EAAEE,iBACFF,EAAEC,kBACGuD,EAAKzE,QAAQ8D,WAGhBW,EAAKQ,WAAWI,QAFhBZ,EAAKnD,QAAQ+D,WAOnBtH,KAAKwD,MAAM+J,GAAG,QAAS,iCAAkC,SAAUrK,GACjEA,EAAEE,iBACFF,EAAEC,kBACGuD,EAAKzE,QAAQ8D,WAGhBW,EAAKQ,WAAWI,QAFhBZ,EAAKnD,QAAQ+D,UAMjBtH,KAAKwD,MAAM+J,GAAG,QAAS,wBAAyB,WAC9C7G,EAAKnD,QAAQ+D,UAGftH,KAAKkH,WAAWqG,GAAG,QAAS,SAAUrK,GACpCA,EAAEC,oBAIJnD,KAAKwD,MAAM+J,GAAG,QAAS,eAAgB,SAAUrK,GAC3CwD,EAAKzE,QAAQ8D,WACfW,EAAKQ,WAAWI,QAEhBZ,EAAKnD,QAAQ+D,QAGfpE,EAAEE,iBACFF,EAAEC,kBAEEhE,EAAEa,MAAM+B,GAAG,kBACb2E,EAAKzC,YAELyC,EAAKxC,cAEPwC,EAAKrD,SAAS4M,WAGhBjQ,KAAKqD,SAAS4M,OAAO,WACnBvJ,EAAK5C,QAAO,MAIhB2D,mBAAoB,WAClB,GAAIf,GAAO1G,KACPmQ,EAAahR,EAAE,+BAEnBa,MAAKsD,YAAYiK,GAAG,uDAAwD,WAC1E7G,EAAKlD,MAAM2D,KAAK,WAAW4D,YAAY,UACjCrE,EAAKQ,WAAWtD,QACpB8C,EAAKQ,WAAWtD,IAAI,IACpB8C,EAAKjD,KAAKgH,IAAI,cAAcM,YAAY,UAClCoF,EAAWpI,SAAS2B,QAAQyG,EAAW/L,UAE1CsC,EAAKE,UAAUF,EAAKlD,MAAM2D,KAAK,aAAaC,SAAS,UAC1DwH,WAAW,WACTlI,EAAKQ,WAAWI,SACf,MAGLtH,KAAKkH,WAAWqG,GAAG,6EAA8E,SAAUrK,GACzGA,EAAEC,oBAGJnD,KAAKkH,WAAWqG,GAAG,uBAAwB,WACrC7G,EAAKQ,WAAWtD,OACd8C,EAAKzE,QAAQuE,wBACfE,EAAKjD,KAAKgH,IAAI,cAAcM,YAAY,UAAU5D,KAAK,KAAKsD,IAAI,eAAiBhL,EAAgBiH,EAAKQ,WAAWtD,OAAS,KAAKmE,SAASX,SAAS,UAEjJV,EAAKjD,KAAKgH,IAAI,cAAcM,YAAY,UAAU5D,KAAK,KAAKsD,IAAI,cAAgB/D,EAAKQ,WAAWtD,MAAQ,KAAKmE,SAASX,SAAS,UAGjIV,EAAKjD,KAAK4H,OAAO,oBAAoBvL,KAAK,WACxC,GAAIgC,GAAQ3C,EAAEa,MACV+I,EAAWjH,EAAME,KAAK,WAEwE,KAA9F0E,EAAKjD,KAAK4H,OAAO,kBAAoBtC,EAAW,KAAK0B,IAAI3I,GAAOuJ,OAAO,YAAY3B,QACrF5H,EAAMsF,SAAS,YAIdV,EAAKlD,MAAM2D,KAAK,MAAMkE,OAAO,6BAA6B3B,OAMlDyG,EAAWpI,SAAS2B,QAC/ByG,EAAW/L,UANL+L,EAAWpI,SAAS2B,QACxByG,EAAW/L,SAEb+L,EAAWjQ,KAAKwG,EAAKzE,QAAQyC,gBAAgB3E,QAAQ,MAAO,IAAME,EAAWyG,EAAKQ,WAAWtD,OAAS,MAAMS,OAC5GqC,EAAKlD,MAAM2D,KAAK,MAAMuG,OAAO1G,MAAMmJ,MAMrCzJ,EAAKjD,KAAKgH,IAAI,cAAcM,YAAY,UAClCoF,EAAWpI,SAAS2B,QACxByG,EAAW/L,UAIfsC,EAAKlD,MAAM2D,KAAK,aAAa4D,YAAY,UACzCrE,EAAKlD,MAAM2D,KAAK,MAAMkE,OAAO,0BAA0BzB,GAAG,GAAGxC,SAAS,UAAUD,KAAK,KAAKG,QAC1FnI,EAAEa,MAAMsH,WAIZ1D,IAAK,SAAUhC,GACb,MAAqB,mBAAVA,IACT5B,KAAKqD,SAASO,IAAIhC,GAClB5B,KAAK8D,SAEE9D,KAAKqD,UAELrD,KAAKqD,SAASO,OAIzBK,UAAW,WACTjE,KAAK6J,UACL7J,KAAKyD,KAAKgH,IAAI,YAAYA,IAAI,aAAaA,IAAI,aAAaY,OAAO,YAAYlE,KAAK,KAAKE,SAG3FnD,YAAa,WACXlE,KAAK6J,UACL7J,KAAKyD,KAAKgH,IAAI,YAAYA,IAAI,aAAaY,OAAO,aAAaA,OAAO,YAAYlE,KAAK,KAAKE,SAG9F+I,QAAS,SAAUlN,GACjB,GAEImN,GAEAvN,EACAwN,EACAC,EACA7C,EACA8C,EACAC,EACA1B,EACA2B,EAXA5O,EAAQ3C,EAAEa,MACV2Q,EAAW7O,EAAMC,GAAG,SAAYD,EAAMiG,SAASA,SAAWjG,EAAMiG,SAEhErB,EAAOiK,EAAQ3O,KAAK,QASpB4O,GACEC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,GAAI,IACJC,IAAK,IACLC,IAAK,IACLC,IAAK,IACLC,IAAK,IACLC,IAAK,IACLC,IAAK,IAwCX,IArCIlN,EAAKzE,QAAQ8D,aAAY4K,EAAU7O,EAAMiG,SAASA,UAElDrB,EAAKzE,QAAQuD,YAAWmL,EAAUjK,EAAKlD,OAE3C6M,EAASlR,EAAE,mBAAoBwR,GAE/BD,EAAWhK,EAAKlD,MAAMuE,SAASC,SAAS,SAEnC0I,GAAY,gBAAgBxP,KAAK2S,OAAOC,aAAa5Q,EAAE6Q,YACrDrN,EAAKzE,QAAQuD,UAKhBkB,EAAKpD,YAAYwM,QAAQ,UAJzBpJ,EAAKgF,UACLhF,EAAKlD,MAAMuE,SAASX,SAAS,QAC7BsJ,GAAW,GAIbhK,EAAKQ,WAAWI,SAGdZ,EAAKzE,QAAQ8D,aACX,WAAW7E,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MAAQ+F,GAAkD,IAAtChK,EAAKlD,MAAM2D,KAAK,WAAWuC,SACpFxG,EAAEE,iBACFsD,EAAKlD,MAAMuE,SAASgD,YAAY,QAChCrE,EAAKnD,QAAQ+D,SAEf+I,EAASlR,EAAE,6DAA8DwR,GACpE7O,EAAM8B,OAAU,UAAU1C,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MACb,IAApC0F,EAAOhF,OAAO,WAAW3B,SAEzB2G,EAAS3J,EAAKpD,YAAY6D,KAAK,MAAMkE,OADnC3E,EAAKzE,QAAQuE,wBAC6B,eAAiB/G,EAAgBmR,EAAW1N,EAAE6Q,UAAY,IAE1D,cAAgBnD,EAAW1N,EAAE6Q,SAAW,OAMvF1D,EAAO3G,OAAZ,CAEA,GAAI,UAAUxI,KAAKgC,EAAE6Q,QAAQpJ,SAAS,KACpC7H,EAAQuN,EAAOvN,MAAMuN,EAAOhF,OAAO,WACnCkF,EAAQF,EAAOtI,OAAO,2BAA2BwI,QAAQzN,QACzD4K,EAAO2C,EAAOtI,OAAO,2BAA2B2F,OAAO5K,QACvDwN,EAAOD,EAAOzG,GAAG9G,GAAOiF,SAASiM,QAAQ,2BAA2BpK,GAAG,GAAG9G,QAC1E0N,EAAOH,EAAOzG,GAAG9G,GAAOiF,SAASkM,QAAQ,2BAA2BrK,GAAG,GAAG9G,QAC1E2N,EAAWJ,EAAOzG,GAAG0G,GAAMvI,SAASkM,QAAQ,2BAA2BrK,GAAG,GAAG9G,QAEzE4D,EAAKzE,QAAQ8D,aACfsK,EAAOvQ,KAAK,SAAUoC,GAChB/C,EAAEa,MAAM+B,GAAG,oBACb5C,EAAEa,MAAMgC,KAAK,QAASE,KAG1BY,EAAQuN,EAAOvN,MAAMuN,EAAOhF,OAAO,YACnCkF,EAAQF,EAAOhF,OAAO,2BAA2BkF,QAAQvO,KAAK,SAC9D0L,EAAO2C,EAAOhF,OAAO,2BAA2BqC,OAAO1L,KAAK,SAC5DsO,EAAOD,EAAOzG,GAAG9G,GAAOkR,QAAQ,2BAA2BpK,GAAG,GAAG5H,KAAK,SACtEwO,EAAOH,EAAOzG,GAAG9G,GAAOmR,QAAQ,2BAA2BrK,GAAG,GAAG5H,KAAK,SACtEyO,EAAWJ,EAAOzG,GAAG0G,GAAM2D,QAAQ,2BAA2BrK,GAAG,GAAG5H,KAAK,UAG3E+M,EAAYjN,EAAME,KAAK,aAEN,IAAbkB,EAAE6Q,UACArN,EAAKzE,QAAQ8D,aAAYjD,GAAS,GAClCA,GAAS2N,GAAY3N,EAAQ0N,IAAM1N,EAAQ0N,GACnCD,EAARzN,IAAeA,EAAQyN,GACvBzN,GAASiM,IAAWjM,EAAQ4K,IAGjB,IAAbxK,EAAE6Q,UACArN,EAAKzE,QAAQ8D,aAAYjD,GAAS,GACzB,IAATA,IAAaA,EAAQ,GACrBA,GAAS2N,GAAoBH,EAARxN,IAAcA,EAAQwN,GAC3CxN,EAAQ4K,IAAM5K,EAAQ4K,GACtB5K,GAASiM,IAAWjM,EAAQyN,IAGlCzO,EAAME,KAAK,YAAac,GAEnB4D,EAAKzE,QAAQ8D,YAGhB7C,EAAEE,iBACGtB,EAAMC,GAAG,sBACZsO,EAAOtF,YAAY,UACnBsF,EAAOzG,GAAG9G,GAAOsE,SAAS,UAAUD,KAAK,KAAKG,QAC9CxF,EAAMwF,UANR+I,EAAOzG,GAAG9G,GAAOwE,YAUd,KAAKxF,EAAMC,GAAG,SAAU,CAC7B,GACImS,GACAC,EAFAC,IAIJ/D,GAAOvQ,KAAK,WACNX,EAAEa,MAAM+H,SAAShG,GAAG,oBAClB5C,EAAEyL,KAAKzL,EAAEa,MAAMN,OAAO2U,eAAeC,UAAU,EAAG,IAAM1D,EAAW1N,EAAE6Q,UACvEK,EAASzK,KAAKxK,EAAEa,MAAM+H,SAASjF,WAKrCoR,EAAQ/U,EAAEoV,UAAUvS,KAAK,YACzBkS,IACA/U,EAAEoV,UAAUvS,KAAK,WAAYkS,GAE7BC,EAAUhV,EAAEyL,KAAKzL,EAAE,UAAUO,OAAO2U,eAAeC,UAAU,EAAG,GAE5DH,GAAWvD,EAAW1N,EAAE6Q,UAC1BG,EAAQ,EACR/U,EAAEoV,UAAUvS,KAAK,WAAYkS,IACpBA,GAASE,EAAS1K,SAC3BvK,EAAEoV,UAAUvS,KAAK,WAAY,GACzBkS,EAAQE,EAAS1K,SAAQwK,EAAQ,IAGvC7D,EAAOzG,GAAGwK,EAASF,EAAQ,IAAI5M,QAIjC,IAAK,UAAUpG,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MAAS,QAAQzJ,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MAAQjE,EAAKzE,QAAQqE,cAAiBoK,EAAU,CAE9H,GADK,OAAOxP,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MAAMzH,EAAEE,iBACvCsD,EAAKzE,QAAQ8D,WAON,OAAO7E,KAAKgC,EAAE6Q,QAAQpJ,SAAS,OACzCjE,EAAKlD,MAAM2D,KAAK,aAAaE,QAC7BvF,EAAMwF,aATsB,CAC5B,GAAIkN,GAAOrV,EAAE,SACbqV,GAAKnN,QAELmN,EAAKlN,QAELpE,EAAEE,iBAKJjE,EAAEoV,UAAUvS,KAAK,WAAY,IAG1B,WAAWd,KAAKgC,EAAE6Q,QAAQpJ,SAAS,MAAQ+F,IAAahK,EAAKE,UAAYF,EAAKzE,QAAQ8D,aAAiB,OAAO7E,KAAKgC,EAAE6Q,QAAQpJ,SAAS,OAAS+F,KAClJhK,EAAKlD,MAAMuE,SAASgD,YAAY,QAChCrE,EAAKnD,QAAQ+D,WAIjBjB,OAAQ,WACNrG,KAAKqD,SAAS+D,SAAS,iBAAiB+D,SAASnL,KAAKsD,aAClDtD,KAAKiC,QAAQuD,WAAWxF,KAAKwD,MAAMc,QAGzCP,QAAS,WACP/D,KAAKyD,KAAO,KACZzD,KAAKwI,WACLxI,KAAK8D,SACL9D,KAAK2H,WACL3H,KAAKgE,WACLhE,KAAKuH,gBACLvH,KAAK0H,YAGPpD,KAAM,WACJtE,KAAKsD,YAAYgB,QAGnBD,KAAM,WACJrE,KAAKsD,YAAYe,QAGnBD,OAAQ,WACNpE,KAAKsD,YAAYc,SACjBpE,KAAKqD,SAASe,UA0DlB,IAAIqQ,GAAMtV,EAAEqD,GAAGC,YACftD,GAAEqD,GAAGC,aAAerB,EACpBjC,EAAEqD,GAAGC,aAAaiS,YAAcpS,EAIhCnD,EAAEqD,GAAGC,aAAakS,WAAa,WAE7B,MADAxV,GAAEqD,GAAGC,aAAegS,EACbzU,MAGTb,EAAEoV,UACGvS,KAAK,WAAY,GACjBuL,GAAG,UAAW,+FAAgGjL,EAAauB,UAAUuM,SACrI7C,GAAG,gBAAiB,+FAAgG,SAAUrK,GAC7HA,EAAEC,oBAKRhE,EAAEmN,QAAQiB,GAAG,0BAA2B,WACtCpO,EAAE,iBAAiBW,KAAK,WACtB,GAAI8U,GAAgBzV,EAAEa,KACtBoB,GAAOyT,KAAKD,EAAeA,EAAc5S,aAG5C8S"}
|
admin/js/bootstrap-select.min.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
|
3 |
+
*
|
4 |
+
* Copyright 2013-2014 bootstrap-select
|
5 |
+
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
6 |
+
*/
|
7 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){var o=t.fn.jquery.split(" ")[0].split(".");if(o[0]<2&&o[1]<9||1==o[0]&&9==o[1]&&o[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(t){"use strict";function o(o){o&&3===o.which||(t(n).remove(),t(a).each(function(){var e=t(this),n=r(e),a={relatedTarget:this};n.hasClass("open")&&(n.trigger(o=t.Event("hide.bs.dropdown",a)),o.isDefaultPrevented()||(e.attr("aria-expanded","false"),n.removeClass("open").trigger("hidden.bs.dropdown",a)))}))}function r(o){var r=o.attr("data-target");r||(r=o.attr("href"),r=r&&/#[A-Za-z]/.test(r)&&r.replace(/.*(?=#[^\s]*$)/,""));var e=r&&t(r);return e&&e.length?e:o.parent()}function e(o){return this.each(function(){var r=t(this),e=r.data("bs.dropdown");e||r.data("bs.dropdown",e=new i(this)),"string"==typeof o&&e[o].call(r)})}var n=".dropdown-backdrop",a='[data-toggle="dropdown"]',i=function(o){t(o).on("click.bs.dropdown",this.toggle)};i.VERSION="3.3.1",i.prototype.toggle=function(e){var n=t(this);if(!n.is(".disabled, :disabled")){var a=r(n),i=a.hasClass("open");if(o(),!i){"ontouchstart"in document.documentElement&&!a.closest(".navbar-nav").length&&t('<div class="dropdown-backdrop"/>').insertAfter(t(this)).on("click",o);var d={relatedTarget:this};if(a.trigger(e=t.Event("show.bs.dropdown",d)),e.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),a.toggleClass("open").trigger("shown.bs.dropdown",d)}return!1}},i.prototype.keydown=function(o){if(/(38|40|27|32)/.test(o.which)&&!/input|textarea/i.test(o.target.tagName)){var e=t(this);if(o.preventDefault(),o.stopPropagation(),!e.is(".disabled, :disabled")){var n=r(e),i=n.hasClass("open");if(!i&&27!=o.which||i&&27==o.which)return 27==o.which&&n.find(a).trigger("focus"),e.trigger("click");var d=" li:not(.divider):visible a",s=n.find('[role="menu"]'+d+', [role="listbox"]'+d);if(s.length){var p=s.index(o.target);38==o.which&&p>0&&p--,40==o.which&&p<s.length-1&&p++,~p||(p=0),s.eq(p).trigger("focus")}}}};var d=t.fn.dropdown;t.fn.dropdown=e,t.fn.dropdown.Constructor=i,t.fn.dropdown.noConflict=function(){return t.fn.dropdown=d,this},t(document).on("click.bs.dropdown.data-api",o).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",a,i.prototype.toggle).on("keydown.bs.dropdown.data-api",a,i.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',i.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',i.prototype.keydown)}(jQuery);
|
8 |
+
!function(a){"use strict";function b(a,b){return a.toUpperCase().indexOf(b.toUpperCase())>-1}function c(b){var c=[{re:/[\xC0-\xC6]/g,ch:"A"},{re:/[\xE0-\xE6]/g,ch:"a"},{re:/[\xC8-\xCB]/g,ch:"E"},{re:/[\xE8-\xEB]/g,ch:"e"},{re:/[\xCC-\xCF]/g,ch:"I"},{re:/[\xEC-\xEF]/g,ch:"i"},{re:/[\xD2-\xD6]/g,ch:"O"},{re:/[\xF2-\xF6]/g,ch:"o"},{re:/[\xD9-\xDC]/g,ch:"U"},{re:/[\xF9-\xFC]/g,ch:"u"},{re:/[\xC7-\xE7]/g,ch:"c"},{re:/[\xD1]/g,ch:"N"},{re:/[\xF1]/g,ch:"n"}];return a.each(c,function(){b=b.replace(this.re,this.ch)}),b}function d(a){var b={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},c="(?:"+Object.keys(b).join("|")+")",d=new RegExp(c),e=new RegExp(c,"g"),f=null==a?"":""+a;return d.test(f)?f.replace(e,function(a){return b[a]}):f}function e(b,c){var d=arguments,e=b,b=d[0],c=d[1];[].shift.apply(d),"undefined"==typeof b&&(b=e);var g,h=this.each(function(){var e=a(this);if(e.is("select")){var h=e.data("selectpicker"),i="object"==typeof b&&b;if(h){if(i)for(var j in i)i.hasOwnProperty(j)&&(h.options[j]=i[j])}else{var k=a.extend({},f.DEFAULTS,a.fn.selectpicker.defaults||{},e.data(),i);e.data("selectpicker",h=new f(this,k,c))}"string"==typeof b&&(g=h[b]instanceof Function?h[b].apply(h,d):h.options[b])}});return"undefined"!=typeof g?g:h}a.expr[":"].icontains=function(c,d,e){return b(a(c).text(),e[3])},a.expr[":"].aicontains=function(c,d,e){return b(a(c).data("normalizedText")||a(c).text(),e[3])};var f=function(b,c,d){d&&(d.stopPropagation(),d.preventDefault()),this.$element=a(b),this.$newElement=null,this.$button=null,this.$menu=null,this.$lis=null,this.options=c,null===this.options.title&&(this.options.title=this.$element.attr("title")),this.val=f.prototype.val,this.render=f.prototype.render,this.refresh=f.prototype.refresh,this.setStyle=f.prototype.setStyle,this.selectAll=f.prototype.selectAll,this.deselectAll=f.prototype.deselectAll,this.destroy=f.prototype.remove,this.remove=f.prototype.remove,this.show=f.prototype.show,this.hide=f.prototype.hide,this.init()};f.VERSION="1.6.3",f.DEFAULTS={noneSelectedText:"Nothing selected",noneResultsText:"No results match",countSelectedText:function(a){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){var c=[];return c[0]=1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",c[1]=1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)",c},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", ",style:"btn-default",size:"auto",title:null,selectedTextFormat:"values",width:!1,container:!1,hideDisabled:!1,showSubtext:!1,showIcon:!0,showContent:!0,dropupAuto:!0,header:!1,liveSearch:!1,actionsBox:!1,iconBase:"glyphicon",tickIcon:"glyphicon-ok",maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1,searchAccentInsensitive:!1},f.prototype={constructor:f,init:function(){var b=this,c=this.$element.attr("id");this.$element.hide(),this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$newElement=this.createView(),this.$element.after(this.$newElement),this.$menu=this.$newElement.find("> .dropdown-menu"),this.$button=this.$newElement.find("> button"),this.$searchbox=this.$newElement.find("input"),this.options.dropdownAlignRight&&this.$menu.addClass("dropdown-menu-right"),"undefined"!=typeof c&&(this.$button.attr("data-id",c),a('label[for="'+c+'"]').click(function(a){a.preventDefault(),b.$button.focus()})),this.checkDisabled(),this.clickListener(),this.options.liveSearch&&this.liveSearchListener(),this.render(),this.liHeight(),this.setStyle(),this.setWidth(),this.options.container&&this.selectPosition(),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile()},createDropdown:function(){var b=this.multiple?" show-tick":"",c=this.$element.parent().hasClass("input-group")?" input-group-btn":"",d=this.autofocus?" autofocus":"",e=this.$element.parents().hasClass("form-group-lg")?" btn-lg":this.$element.parents().hasClass("form-group-sm")?" btn-sm":"",f=this.options.header?'<div class="popover-title"><button type="button" class="close" aria-hidden="true">×</button>'+this.options.header+"</div>":"",g=this.options.liveSearch?'<div class="bs-searchbox"><input type="text" class="input-block-level form-control" autocomplete="off" /></div>':"",h=this.options.actionsBox?'<div class="bs-actionsbox"><div class="btn-group btn-block"><button class="actions-btn bs-select-all btn btn-sm btn-default">'+this.options.selectAllText+'</button><button class="actions-btn bs-deselect-all btn btn-sm btn-default">'+this.options.deselectAllText+"</button></div></div>":"",i='<div class="btn-group bootstrap-select'+b+c+'"><button type="button" class="btn dropdown-toggle selectpicker'+e+'" data-toggle="dropdown"'+d+'><span class="filter-option pull-left"></span> <span class="caret"></span></button><div class="dropdown-menu open">'+f+g+h+'<ul class="dropdown-menu inner selectpicker" role="menu"></ul></div></div>';return a(i)},createView:function(){var a=this.createDropdown(),b=this.createLi();return a.find("ul").append(b),a},reloadLi:function(){this.destroyLi();var a=this.createLi();this.$menu.find("ul").append(a)},destroyLi:function(){this.$menu.find("li").remove()},createLi:function(){var b=this,e=[],f=0,g=function(a,b,c){return"<li"+("undefined"!=typeof c?' class="'+c+'"':"")+("undefined"!=typeof b|null===b?' data-original-index="'+b+'"':"")+">"+a+"</li>"},h=function(a,e,f,g){var h=c(d(a));return'<a tabindex="0"'+("undefined"!=typeof e?' class="'+e+'"':"")+("undefined"!=typeof f?' style="'+f+'"':"")+("undefined"!=typeof g?'data-optgroup="'+g+'"':"")+' data-normalized-text="'+h+'">'+a+'<span class="'+b.options.iconBase+" "+b.options.tickIcon+' check-mark"></span></a>'};return this.$element.find("option").each(function(){var c=a(this),d=c.attr("class")||"",i=c.attr("style"),j=c.data("content")?c.data("content"):c.html(),k="undefined"!=typeof c.data("subtext")?'<small class="muted text-muted">'+c.data("subtext")+"</small>":"",l="undefined"!=typeof c.data("icon")?'<span class="'+b.options.iconBase+" "+c.data("icon")+'"></span> ':"",m=c.is(":disabled")||c.parent().is(":disabled"),n=c[0].index;if(""!==l&&m&&(l="<span>"+l+"</span>"),c.data("content")||(j=l+'<span class="text">'+j+k+"</span>"),!b.options.hideDisabled||!m)if(c.parent().is("optgroup")&&c.data("divider")!==!0){if(0===c.index()){f+=1;var o=c.parent().attr("label"),p="undefined"!=typeof c.parent().data("subtext")?'<small class="muted text-muted">'+c.parent().data("subtext")+"</small>":"",q=c.parent().data("icon")?'<span class="'+b.options.iconBase+" "+c.parent().data("icon")+'"></span> ':"";o=q+'<span class="text">'+o+p+"</span>",0!==n&&e.length>0&&e.push(g("",null,"divider")),e.push(g(o,null,"dropdown-header"))}e.push(g(h(j,"opt "+d,i,f),n))}else e.push(c.data("divider")===!0?g("",n,"divider"):c.data("hidden")===!0?g(h(j,d,i),n,"hide is-hidden"):g(h(j,d,i),n))}),this.multiple||0!==this.$element.find("option:selected").length||this.options.title||this.$element.find("option").eq(0).prop("selected",!0).attr("selected","selected"),a(e.join(""))},findLis:function(){return null==this.$lis&&(this.$lis=this.$menu.find("li")),this.$lis},render:function(b){var c=this;b!==!1&&this.$element.find("option").each(function(b){c.setDisabled(b,a(this).is(":disabled")||a(this).parent().is(":disabled")),c.setSelected(b,a(this).is(":selected"))}),this.tabIndex();var e=this.options.hideDisabled?":not([disabled])":"",f=this.$element.find("option:selected"+e).map(function(){var b,d=a(this),e=d.data("icon")&&c.options.showIcon?'<i class="'+c.options.iconBase+" "+d.data("icon")+'"></i> ':"";return b=c.options.showSubtext&&d.attr("data-subtext")&&!c.multiple?' <small class="muted text-muted">'+d.data("subtext")+"</small>":"",d.data("content")&&c.options.showContent?d.data("content"):"undefined"!=typeof d.attr("title")?d.attr("title"):e+d.html()+b}).toArray(),g=this.multiple?f.join(this.options.multipleSeparator):f[0];if(this.multiple&&this.options.selectedTextFormat.indexOf("count")>-1){var h=this.options.selectedTextFormat.split(">");if(h.length>1&&f.length>h[1]||1==h.length&&f.length>=2){e=this.options.hideDisabled?", [disabled]":"";var i=this.$element.find("option").not('[data-divider="true"], [data-hidden="true"]'+e).length,j="function"==typeof this.options.countSelectedText?this.options.countSelectedText(f.length,i):this.options.countSelectedText;g=j.replace("{0}",f.length.toString()).replace("{1}",i.toString())}}this.options.title=this.$element.attr("title"),"static"==this.options.selectedTextFormat&&(g=this.options.title),g||(g="undefined"!=typeof this.options.title?this.options.title:this.options.noneSelectedText),this.$button.attr("title",d(g)),this.$newElement.find(".filter-option").html(g)},setStyle:function(a,b){this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|validate\[.*\]/gi,""));var c=a?a:this.options.style;"add"==b?this.$button.addClass(c):"remove"==b?this.$button.removeClass(c):(this.$button.removeClass(this.options.style),this.$button.addClass(c))},liHeight:function(){if(this.options.size!==!1){var a=this.$menu.parent().clone().find("> .dropdown-toggle").prop("autofocus",!1).end().appendTo("body"),b=a.addClass("open").find("> .dropdown-menu"),c=b.find("li").not(".divider").not(".dropdown-header").filter(":visible").children("a").outerHeight(),d=this.options.header?b.find(".popover-title").outerHeight():0,e=this.options.liveSearch?b.find(".bs-searchbox").outerHeight():0,f=this.options.actionsBox?b.find(".bs-actionsbox").outerHeight():0;a.remove(),this.$newElement.data("liHeight",c).data("headerHeight",d).data("searchHeight",e).data("actionsHeight",f)}},setSize:function(){this.findLis();var b,c,d,e=this,f=this.$menu,g=f.find(".inner"),h=this.$newElement.outerHeight(),i=this.$newElement.data("liHeight"),j=this.$newElement.data("headerHeight"),k=this.$newElement.data("searchHeight"),l=this.$newElement.data("actionsHeight"),m=this.$lis.filter(".divider").outerHeight(!0),n=parseInt(f.css("padding-top"))+parseInt(f.css("padding-bottom"))+parseInt(f.css("border-top-width"))+parseInt(f.css("border-bottom-width")),o=this.options.hideDisabled?", .disabled":"",p=a(window),q=n+parseInt(f.css("margin-top"))+parseInt(f.css("margin-bottom"))+2,r=function(){c=e.$newElement.offset().top-p.scrollTop(),d=p.height()-c-h};if(r(),this.options.header&&f.css("padding-top",0),"auto"==this.options.size){var s=function(){var a,h=e.$lis.not(".hide");r(),b=d-q,e.options.dropupAuto&&e.$newElement.toggleClass("dropup",c>d&&b-q<f.height()),e.$newElement.hasClass("dropup")&&(b=c-q),a=h.length+h.filter(".dropdown-header").length>3?3*i+q-2:0,f.css({"max-height":b+"px",overflow:"hidden","min-height":a+j+k+l+"px"}),g.css({"max-height":b-j-k-l-n+"px","overflow-y":"auto","min-height":Math.max(a-n,0)+"px"})};s(),this.$searchbox.off("input.getSize propertychange.getSize").on("input.getSize propertychange.getSize",s),a(window).off("resize.getSize").on("resize.getSize",s),a(window).off("scroll.getSize").on("scroll.getSize",s)}else if(this.options.size&&"auto"!=this.options.size&&f.find("li"+o).length>this.options.size){var t=this.$lis.not(".divider"+o).find(" > *").slice(0,this.options.size).last().parent().index(),u=this.$lis.slice(0,t+1).filter(".divider").length;b=i*this.options.size+u*m+n,e.options.dropupAuto&&this.$newElement.toggleClass("dropup",c>d&&b<f.height()),f.css({"max-height":b+j+k+l+"px",overflow:"hidden"}),g.css({"max-height":b-n+"px","overflow-y":"auto"})}},setWidth:function(){if("auto"==this.options.width){this.$menu.css("min-width","0");var a=this.$newElement.clone().appendTo("body"),b=a.find("> .dropdown-menu").css("width"),c=a.css("width","auto").find("> button").css("width");a.remove(),this.$newElement.css("width",Math.max(parseInt(b),parseInt(c))+"px")}else"fit"==this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width","").addClass("fit-width")):this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width",this.options.width)):(this.$menu.css("min-width",""),this.$newElement.css("width",""));this.$newElement.hasClass("fit-width")&&"fit"!==this.options.width&&this.$newElement.removeClass("fit-width")},selectPosition:function(){var b,c,d=this,e="<div />",f=a(e),g=function(a){f.addClass(a.attr("class").replace(/form-control/gi,"")).toggleClass("dropup",a.hasClass("dropup")),b=a.offset(),c=a.hasClass("dropup")?0:a[0].offsetHeight,f.css({top:b.top+c,left:b.left,width:a[0].offsetWidth,position:"absolute"})};this.$newElement.on("click",function(){d.isDisabled()||(g(a(this)),f.appendTo(d.options.container),f.toggleClass("open",!a(this).hasClass("open")),f.append(d.$menu))}),a(window).resize(function(){g(d.$newElement)}),a(window).on("scroll",function(){g(d.$newElement)}),a("html").on("click",function(b){a(b.target).closest(d.$newElement).length<1&&f.removeClass("open")})},setSelected:function(a,b){this.findLis(),this.$lis.filter('[data-original-index="'+a+'"]').toggleClass("selected",b)},setDisabled:function(a,b){this.findLis(),b?this.$lis.filter('[data-original-index="'+a+'"]').addClass("disabled").find("a").attr("href","#").attr("tabindex",-1):this.$lis.filter('[data-original-index="'+a+'"]').removeClass("disabled").find("a").removeAttr("href").attr("tabindex",0)},isDisabled:function(){return this.$element.is(":disabled")},checkDisabled:function(){var a=this;this.isDisabled()?this.$button.addClass("disabled").attr("tabindex",-1):(this.$button.hasClass("disabled")&&this.$button.removeClass("disabled"),-1==this.$button.attr("tabindex")&&(this.$element.data("tabindex")||this.$button.removeAttr("tabindex"))),this.$button.click(function(){return!a.isDisabled()})},tabIndex:function(){this.$element.is("[tabindex]")&&(this.$element.data("tabindex",this.$element.attr("tabindex")),this.$button.attr("tabindex",this.$element.data("tabindex")))},clickListener:function(){var b=this;this.$newElement.on("touchstart.dropdown",".dropdown-menu",function(a){a.stopPropagation()}),this.$newElement.on("click",function(){b.setSize(),b.options.liveSearch||b.multiple||setTimeout(function(){b.$menu.find(".selected a").focus()},10)}),this.$menu.on("click","li a",function(c){var d=a(this),e=d.parent().data("originalIndex"),f=b.$element.val(),g=b.$element.prop("selectedIndex");if(b.multiple&&c.stopPropagation(),c.preventDefault(),!b.isDisabled()&&!d.parent().hasClass("disabled")){var h=b.$element.find("option"),i=h.eq(e),j=i.prop("selected"),k=i.parent("optgroup"),l=b.options.maxOptions,m=k.data("maxOptions")||!1;if(b.multiple){if(i.prop("selected",!j),b.setSelected(e,!j),d.blur(),l!==!1||m!==!1){var n=l<h.filter(":selected").length,o=m<k.find("option:selected").length;if(l&&n||m&&o)if(l&&1==l)h.prop("selected",!1),i.prop("selected",!0),b.$menu.find(".selected").removeClass("selected"),b.setSelected(e,!0);else if(m&&1==m){k.find("option:selected").prop("selected",!1),i.prop("selected",!0);var p=d.data("optgroup");b.$menu.find(".selected").has('a[data-optgroup="'+p+'"]').removeClass("selected"),b.setSelected(e,!0)}else{var q="function"==typeof b.options.maxOptionsText?b.options.maxOptionsText(l,m):b.options.maxOptionsText,r=q[0].replace("{n}",l),s=q[1].replace("{n}",m),t=a('<div class="notify"></div>');q[2]&&(r=r.replace("{var}",q[2][l>1?0:1]),s=s.replace("{var}",q[2][m>1?0:1])),i.prop("selected",!1),b.$menu.append(t),l&&n&&(t.append(a("<div>"+r+"</div>")),b.$element.trigger("maxReached.bs.select")),m&&o&&(t.append(a("<div>"+s+"</div>")),b.$element.trigger("maxReachedGrp.bs.select")),setTimeout(function(){b.setSelected(e,!1)},10),t.delay(750).fadeOut(300,function(){a(this).remove()})}}}else h.prop("selected",!1),i.prop("selected",!0),b.$menu.find(".selected").removeClass("selected"),b.setSelected(e,!0);b.multiple?b.options.liveSearch&&b.$searchbox.focus():b.$button.focus(),(f!=b.$element.val()&&b.multiple||g!=b.$element.prop("selectedIndex")&&!b.multiple)&&b.$element.change()}}),this.$menu.on("click","li.disabled a, .popover-title, .popover-title :not(.close)",function(a){a.target==this&&(a.preventDefault(),a.stopPropagation(),b.options.liveSearch?b.$searchbox.focus():b.$button.focus())}),this.$menu.on("click","li.divider, li.dropdown-header",function(a){a.preventDefault(),a.stopPropagation(),b.options.liveSearch?b.$searchbox.focus():b.$button.focus()}),this.$menu.on("click",".popover-title .close",function(){b.$button.focus()}),this.$searchbox.on("click",function(a){a.stopPropagation()}),this.$menu.on("click",".actions-btn",function(c){b.options.liveSearch?b.$searchbox.focus():b.$button.focus(),c.preventDefault(),c.stopPropagation(),a(this).is(".bs-select-all")?b.selectAll():b.deselectAll(),b.$element.change()}),this.$element.change(function(){b.render(!1)})},liveSearchListener:function(){var b=this,e=a('<li class="no-results"></li>');this.$newElement.on("click.dropdown.data-api touchstart.dropdown.data-api",function(){b.$menu.find(".active").removeClass("active"),b.$searchbox.val()&&(b.$searchbox.val(""),b.$lis.not(".is-hidden").removeClass("hide"),e.parent().length&&e.remove()),b.multiple||b.$menu.find(".selected").addClass("active"),setTimeout(function(){b.$searchbox.focus()},10)}),this.$searchbox.on("click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api",function(a){a.stopPropagation()}),this.$searchbox.on("input propertychange",function(){b.$searchbox.val()?(b.options.searchAccentInsensitive?b.$lis.not(".is-hidden").removeClass("hide").find("a").not(":aicontains("+c(b.$searchbox.val())+")").parent().addClass("hide"):b.$lis.not(".is-hidden").removeClass("hide").find("a").not(":icontains("+b.$searchbox.val()+")").parent().addClass("hide"),b.$menu.find("li").filter(":visible:not(.no-results)").length?e.parent().length&&e.remove():(e.parent().length&&e.remove(),e.html(b.options.noneResultsText+' "'+d(b.$searchbox.val())+'"').show(),b.$menu.find("li").last().after(e))):(b.$lis.not(".is-hidden").removeClass("hide"),e.parent().length&&e.remove()),b.$menu.find("li.active").removeClass("active"),b.$menu.find("li").filter(":visible:not(.divider)").eq(0).addClass("active").find("a").focus(),a(this).focus()})},val:function(a){return"undefined"!=typeof a?(this.$element.val(a),this.render(),this.$element):this.$element.val()},selectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").not(".selected").filter(":visible").find("a").click()},deselectAll:function(){this.findLis(),this.$lis.not(".divider").not(".disabled").filter(".selected").filter(":visible").find("a").click()},keydown:function(b){var d,e,f,g,h,i,j,k,l,m=a(this),n=m.is("input")?m.parent().parent():m.parent(),o=n.data("this"),p={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"};if(o.options.liveSearch&&(n=m.parent().parent()),o.options.container&&(n=o.$menu),d=a("[role=menu] li a",n),l=o.$menu.parent().hasClass("open"),!l&&/([0-9]|[A-z])/.test(String.fromCharCode(b.keyCode))&&(o.options.container?o.$newElement.trigger("click"):(o.setSize(),o.$menu.parent().addClass("open"),l=!0),o.$searchbox.focus()),o.options.liveSearch&&(/(^9$|27)/.test(b.keyCode.toString(10))&&l&&0===o.$menu.find(".active").length&&(b.preventDefault(),o.$menu.parent().removeClass("open"),o.$button.focus()),d=a("[role=menu] li:not(.divider):not(.dropdown-header):visible",n),m.val()||/(38|40)/.test(b.keyCode.toString(10))||0===d.filter(".active").length&&(d=o.$newElement.find("li").filter(o.options.searchAccentInsensitive?":aicontains("+c(p[b.keyCode])+")":":icontains("+p[b.keyCode]+")"))),d.length){if(/(38|40)/.test(b.keyCode.toString(10)))e=d.index(d.filter(":focus")),g=d.parent(":not(.disabled):visible").first().index(),h=d.parent(":not(.disabled):visible").last().index(),f=d.eq(e).parent().nextAll(":not(.disabled):visible").eq(0).index(),i=d.eq(e).parent().prevAll(":not(.disabled):visible").eq(0).index(),j=d.eq(f).parent().prevAll(":not(.disabled):visible").eq(0).index(),o.options.liveSearch&&(d.each(function(b){a(this).is(":not(.disabled)")&&a(this).data("index",b)}),e=d.index(d.filter(".active")),g=d.filter(":not(.disabled):visible").first().data("index"),h=d.filter(":not(.disabled):visible").last().data("index"),f=d.eq(e).nextAll(":not(.disabled):visible").eq(0).data("index"),i=d.eq(e).prevAll(":not(.disabled):visible").eq(0).data("index"),j=d.eq(f).prevAll(":not(.disabled):visible").eq(0).data("index")),k=m.data("prevIndex"),38==b.keyCode&&(o.options.liveSearch&&(e-=1),e!=j&&e>i&&(e=i),g>e&&(e=g),e==k&&(e=h)),40==b.keyCode&&(o.options.liveSearch&&(e+=1),-1==e&&(e=0),e!=j&&f>e&&(e=f),e>h&&(e=h),e==k&&(e=g)),m.data("prevIndex",e),o.options.liveSearch?(b.preventDefault(),m.is(".dropdown-toggle")||(d.removeClass("active"),d.eq(e).addClass("active").find("a").focus(),m.focus())):d.eq(e).focus();else if(!m.is("input")){var q,r,s=[];d.each(function(){a(this).parent().is(":not(.disabled)")&&a.trim(a(this).text().toLowerCase()).substring(0,1)==p[b.keyCode]&&s.push(a(this).parent().index())}),q=a(document).data("keycount"),q++,a(document).data("keycount",q),r=a.trim(a(":focus").text().toLowerCase()).substring(0,1),r!=p[b.keyCode]?(q=1,a(document).data("keycount",q)):q>=s.length&&(a(document).data("keycount",0),q>s.length&&(q=1)),d.eq(s[q-1]).focus()}(/(13|32)/.test(b.keyCode.toString(10))||/(^9$)/.test(b.keyCode.toString(10))&&o.options.selectOnTab)&&l&&(/(32)/.test(b.keyCode.toString(10))||b.preventDefault(),o.options.liveSearch?/(32)/.test(b.keyCode.toString(10))||(o.$menu.find(".active a").click(),m.focus()):a(":focus").click(),a(document).data("keycount",0)),(/(^9$|27)/.test(b.keyCode.toString(10))&&l&&(o.multiple||o.options.liveSearch)||/(27)/.test(b.keyCode.toString(10))&&!l)&&(o.$menu.parent().removeClass("open"),o.$button.focus())}},mobile:function(){this.$element.addClass("mobile-device").appendTo(this.$newElement),this.options.container&&this.$menu.hide()},refresh:function(){this.$lis=null,this.reloadLi(),this.render(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},update:function(){this.reloadLi(),this.setWidth(),this.setStyle(),this.checkDisabled(),this.liHeight()},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()}};var g=a.fn.selectpicker;a.fn.selectpicker=e,a.fn.selectpicker.Constructor=f,a.fn.selectpicker.noConflict=function(){return a.fn.selectpicker=g,this},a(document).data("keycount",0).on("keydown",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",f.prototype.keydown).on("focusin.modal",".bootstrap-select [data-toggle=dropdown], .bootstrap-select [role=menu], .bs-searchbox input",function(a){a.stopPropagation()}),a(window).on("load.bs.select.data-api",function(){a(".selectpicker").each(function(){var b=a(this);e.call(b,b.data())})})}(jQuery);
|
9 |
+
//# sourceMappingURL=bootstrap-select.js.map
|
admin/js/custom-icon-menu-script.js
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
});
|
{includes → admin}/js/jquery.dropdown.min.js
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
-
/*
|
2 |
-
* jQuery dropdown: A simple dropdown plugin
|
3 |
-
*
|
4 |
-
* Copyright 2013 Cory LaViska for A Beautiful Site, LLC. (http://abeautifulsite.net/)
|
5 |
-
*
|
6 |
-
* Licensed under the MIT license: http://opensource.org/licenses/MIT
|
7 |
-
*
|
8 |
*/jQuery&&function(e){function t(t,i){var s=t?e(this):i,o=e(s.attr("data-dropdown")),u=s.hasClass("dropdown-open");if(t){if(e(t.target).hasClass("dropdown-ignore"))return;t.preventDefault();t.stopPropagation()}else if(s!==i.target&&e(i.target).hasClass("dropdown-ignore"))return;n();if(u||s.hasClass("dropdown-disabled"))return;s.addClass("dropdown-open");o.data("dropdown-trigger",s).show();r();o.trigger("show",{dropdown:o,trigger:s})}function n(t){var n=t?e(t.target).parents().addBack():null;if(n&&n.is(".dropdown")){if(!n.is(".dropdown-menu"))return;if(!n.is("A"))return}e(document).find(".dropdown:visible").each(function(){var t=e(this);t.hide().removeData("dropdown-trigger").trigger("hide",{dropdown:t})});e(document).find(".dropdown-open").removeClass("dropdown-open")}function r(){var t=e(".dropdown:visible").eq(0),n=t.data("dropdown-trigger"),r=n?parseInt(n.attr("data-horizontal-offset")||0,10):null,i=n?parseInt(n.attr("data-vertical-offset")||0,10):null;if(t.length===0||!n)return;t.hasClass("dropdown-relative")?t.css({left:t.hasClass("dropdown-anchor-right")?n.position().left-(t.outerWidth(!0)-n.outerWidth(!0))-parseInt(n.css("margin-right"),10)+r:n.position().left+parseInt(n.css("margin-left"),10)+r,top:n.position().top+n.outerHeight(!0)-parseInt(n.css("margin-top"),10)+i}):t.css({left:t.hasClass("dropdown-anchor-right")?n.offset().left-(t.outerWidth()-n.outerWidth())+r:n.offset().left+r,top:n.offset().top+n.outerHeight()+i})}e.extend(e.fn,{dropdown:function(r,i){switch(r){case"show":t(null,e(this));return e(this);case"hide":n();return e(this);case"attach":return e(this).attr("data-dropdown",i);case"detach":n();return e(this).removeAttr("data-dropdown");case"disable":return e(this).addClass("dropdown-disabled");case"enable":n();return e(this).removeClass("dropdown-disabled")}}});e(document).on("click.dropdown","[data-dropdown]",t);e(document).on("click.dropdown",n);e(window).on("resize",r)}(jQuery);
|
1 |
+
/*
|
2 |
+
* jQuery dropdown: A simple dropdown plugin
|
3 |
+
*
|
4 |
+
* Copyright 2013 Cory LaViska for A Beautiful Site, LLC. (http://abeautifulsite.net/)
|
5 |
+
*
|
6 |
+
* Licensed under the MIT license: http://opensource.org/licenses/MIT
|
7 |
+
*
|
8 |
*/jQuery&&function(e){function t(t,i){var s=t?e(this):i,o=e(s.attr("data-dropdown")),u=s.hasClass("dropdown-open");if(t){if(e(t.target).hasClass("dropdown-ignore"))return;t.preventDefault();t.stopPropagation()}else if(s!==i.target&&e(i.target).hasClass("dropdown-ignore"))return;n();if(u||s.hasClass("dropdown-disabled"))return;s.addClass("dropdown-open");o.data("dropdown-trigger",s).show();r();o.trigger("show",{dropdown:o,trigger:s})}function n(t){var n=t?e(t.target).parents().addBack():null;if(n&&n.is(".dropdown")){if(!n.is(".dropdown-menu"))return;if(!n.is("A"))return}e(document).find(".dropdown:visible").each(function(){var t=e(this);t.hide().removeData("dropdown-trigger").trigger("hide",{dropdown:t})});e(document).find(".dropdown-open").removeClass("dropdown-open")}function r(){var t=e(".dropdown:visible").eq(0),n=t.data("dropdown-trigger"),r=n?parseInt(n.attr("data-horizontal-offset")||0,10):null,i=n?parseInt(n.attr("data-vertical-offset")||0,10):null;if(t.length===0||!n)return;t.hasClass("dropdown-relative")?t.css({left:t.hasClass("dropdown-anchor-right")?n.position().left-(t.outerWidth(!0)-n.outerWidth(!0))-parseInt(n.css("margin-right"),10)+r:n.position().left+parseInt(n.css("margin-left"),10)+r,top:n.position().top+n.outerHeight(!0)-parseInt(n.css("margin-top"),10)+i}):t.css({left:t.hasClass("dropdown-anchor-right")?n.offset().left-(t.outerWidth()-n.outerWidth())+r:n.offset().left+r,top:n.offset().top+n.outerHeight()+i})}e.extend(e.fn,{dropdown:function(r,i){switch(r){case"show":t(null,e(this));return e(this);case"hide":n();return e(this);case"attach":return e(this).attr("data-dropdown",i);case"detach":n();return e(this).removeAttr("data-dropdown");case"disable":return e(this).addClass("dropdown-disabled");case"enable":n();return e(this).removeClass("dropdown-disabled")}}});e(document).on("click.dropdown","[data-dropdown]",t);e(document).on("click.dropdown",n);e(window).on("resize",r)}(jQuery);
|
admin/js/style.css
ADDED
@@ -0,0 +1 @@
|
|
|
|
0 |
-webkit-box-sizing: border-box;
|
1 |
-moz-box-sizing: border-box;
|
2 |
box-sizing: border-box;
|
3 |
margin: 0;
|
4 |
background: #282828;
|
5 |
color: #eee;
|
6 |
font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
7 |
font-size: 14px;
|
8 |
margin: 10px 0;
|
9 |
font-weight: 200;
|
10 |
font-size: 1.8em;
|
11 |
font-weight: 200;
|
12 |
color: #888;
|
13 |
letter-spacing: 1px;
|
14 |
margin-bottom: 20px;
|
15 |
margin: 0;
|
16 |
line-height: 1.5;
|
17 |
font-weight: 200;
|
18 |
color: #00aaee;
|
19 |
text-decoration: none;
|
20 |
color: #0077a2;
|
21 |
text-decoration: underline;
|
22 |
display: none;
|
23 |
height: 2px;
|
24 |
background-color: #000;
|
25 |
border-bottom: 1px solid #333;
|
26 |
max-width: 940px;
|
27 |
margin-right: auto;
|
28 |
margin-left: auto;
|
29 |
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
30 |
-webkit-transition: text-shadow 1s linear;
|
31 |
-moz-transition: text-shadow 1s linear;
|
32 |
-o-transition: text-shadow 1s linear;
|
33 |
transition: text-shadow 1s linear;
|
34 |
text-shadow:
|
35 |
0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8),
|
36 |
0 0 0.5em rgba(255, 255, 255, 0.3);
|
37 |
opacity: 0;
|
38 |
-webkit-transition: opacity 1s linear;
|
39 |
-moz-transition: opacity 1s linear;
|
40 |
-o-transition: opacity 1s linear;
|
41 |
transition: opacity 1s linear;
|
42 |
opacity: 1;
|
43 |
color: #fff;
|
44 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
45 |
display: inline-block;
|
46 |
text-decoration: none;
|
47 |
font-weight: 200;
|
48 |
text-align: center;
|
49 |
vertical-align: middle;
|
50 |
cursor: pointer;
|
51 |
border-radius: 0.5em;
|
52 |
padding: 0.8em 1.2em;
|
53 |
background-color: #ED303C;
|
54 |
background-image: -moz-linear-gradient(top, #ED303C, #8D121A);
|
55 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ED303C), to(#8D121A));
|
56 |
background-image: -webkit-linear-gradient(top, #ED303C, #8D121A);
|
57 |
background-image: -o-linear-gradient(top, #ED303C, #8D121A);
|
58 |
background-image: linear-gradient(to bottom, #ED303C, #8D121A);
|
59 |
background-repeat: repeat-x;
|
60 |
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
61 |
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
62 |
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
63 |
text-decoration: none;
|
64 |
color: #ddd;
|
65 |
background-color: #8D121A;
|
66 |
background-position: 0 -15px;
|
67 |
-webkit-transition: background-position 0.1s linear;
|
68 |
-moz-transition: background-position 0.1s linear;
|
69 |
-o-transition: background-position 0.1s linear;
|
70 |
transition: background-position 0.1s linear;
|
71 |
background-image: none;
|
72 |
outline: 0;
|
73 |
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
74 |
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
75 |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
76 |
position: relative;
|
77 |
padding: 3em 0;
|
78 |
text-align: center;
|
79 |
background: #242424;
|
80 |
color: #fff;
|
81 |
font-family: Rokkitt;
|
82 |
font-size: 13em;
|
83 |
font-weight: 200;
|
84 |
text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8);
|
85 |
visibility: hidden;
|
86 |
color: #ED303C;
|
87 |
margin-top: -1em;
|
88 |
letter-spacing: 0.15em;
|
89 |
color: #ccc;
|
90 |
font-size: 1.25em;
|
91 |
font-weight: 200;
|
92 |
text-shadow: 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.8);
|
93 |
visibility: hidden;
|
94 |
text-align: center;
|
95 |
margin-top: 2em;
|
96 |
margin-bottom: 0.5em;
|
97 |
font-size: 1.6em;
|
98 |
margin-top: 1em;
|
99 |
font-size: 1.2em;
|
100 |
background: #242424;
|
101 |
border-radius: 4px;
|
102 |
border: 1px solid #333;
|
103 |
margin-bottom: 10px;
|
104 |
margin-bottom: 0;
|
105 |
background: #282828;
|
106 |
border-radius: 0 0 4px 4px;
|
107 |
border: 1px solid #0c0c0c;
|
108 |
border-top: 1px solid #333;
|
109 |
margin-bottom: 0;
|
110 |
padding-bottom: 8px;
|
111 |
width: 50%;
|
112 |
margin-right: 10px;
|
113 |
.playground .controls select {
|
114 |
width: 100%;
|
115 |
margin-right: 0;
|
116 |
}
|
117 |
display: table;
|
118 |
min-height: 10em;
|
119 |
padding: 20px;
|
120 |
border-radius: 4px 4px 0 0;
|
121 |
border: 1px solid #0c0c0c;
|
122 |
overflow: hidden;
|
123 |
-webkit-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
124 |
-moz-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
125 |
box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
126 |
color: #fff;
|
127 |
font-size: 1.5em;
|
128 |
font-weight: 200;
|
129 |
letter-spacing: 1px;
|
130 |
padding: 20px 0;
|
131 |
display: inline-block;
|
132 |
vertical-align: middle;
|
133 |
display: table-cell;
|
134 |
text-align: center;
|
135 |
/*visibility: hidden;*/
|
136 |
font-size: 1.2em;
|
137 |
list-style-type: square;
|
138 |
margin: 0;
|
139 |
line-height: 1.5em
|
140 |
font-weight: 200;
|
141 |
content: "";
|
142 |
display: table;
|
143 |
clear: both;
|
144 |
float: left;
|
145 |
padding-right: 20px;
|
146 |
padding-right: 0;
|
147 |
width: 100%;
|
148 |
width: 66.66%;
|
149 |
width: 33.33%;
|
150 |
width: 50%;
|
151 |
width: 25%;
|
152 |
width: 75%;
|
153 |
width: 80%;
|
154 |
width: 16.66%;
|
155 |
width: 12.5%;
|
156 |
padding-left: 20px
|
157 |
padding-top: 20px;
|
158 |
padding-top: 20px;
|
159 |
padding-right: 20px;
|
160 |
[class*='col-'] {
|
161 |
width: 100%;
|
162 |
}
|
163 |
margin-bottom: 5px;
|
164 |
width: 100%;
|
165 |
display: inline-block;
|
166 |
height: 30px;
|
167 |
padding: 4px 6px;
|
168 |
margin-bottom: 10px;
|
169 |
font-size: 14px;
|
170 |
line-height: 20px;
|
171 |
color: #555555;
|
172 |
vertical-align: middle;
|
173 |
-webkit-border-radius: 4px;
|
174 |
-moz-border-radius: 4px;
|
175 |
border-radius: 4px;
|
176 |
background-color: #ddd;
|
177 |
border: 1px solid #ccc;
|
178 |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
179 |
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
180 |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
181 |
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
182 |
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
183 |
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
184 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
185 |
background-color: #fff;
|
186 |
border-color: #8D121A;
|
187 |
outline: 0;
|
188 |
-webkit-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
189 |
-moz-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
190 |
box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
191 |
display: block;
|
192 |
margin-bottom: 5px;
|
193 |
display: inline-block;
|
194 |
padding: 4px 0;
|
195 |
margin-right: 10px;
|
196 |
white-space: nowrap;
|
197 |
vertical-align: top;
|
198 |
background: transparent;
|
1 |
+
* {
|
2 |
-webkit-box-sizing: border-box;
|
3 |
-moz-box-sizing: border-box;
|
4 |
box-sizing: border-box;
|
5 |
margin: 0;
|
6 |
background: #282828;
|
7 |
color: #eee;
|
8 |
font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
9 |
font-size: 14px;
|
10 |
margin: 10px 0;
|
11 |
font-weight: 200;
|
12 |
font-size: 1.8em;
|
13 |
font-weight: 200;
|
14 |
color: #888;
|
15 |
letter-spacing: 1px;
|
16 |
margin-bottom: 20px;
|
17 |
margin: 0;
|
18 |
line-height: 1.5;
|
19 |
font-weight: 200;
|
20 |
color: #00aaee;
|
21 |
text-decoration: none;
|
22 |
color: #0077a2;
|
23 |
text-decoration: underline;
|
24 |
display: none;
|
25 |
height: 2px;
|
26 |
background-color: #000;
|
27 |
border-bottom: 1px solid #333;
|
28 |
max-width: 940px;
|
29 |
margin-right: auto;
|
30 |
margin-left: auto;
|
31 |
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
32 |
-webkit-transition: text-shadow 1s linear;
|
33 |
-moz-transition: text-shadow 1s linear;
|
34 |
-o-transition: text-shadow 1s linear;
|
35 |
transition: text-shadow 1s linear;
|
36 |
text-shadow:
|
37 |
0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8),
|
38 |
0 0 0.5em rgba(255, 255, 255, 0.3);
|
39 |
opacity: 0;
|
40 |
-webkit-transition: opacity 1s linear;
|
41 |
-moz-transition: opacity 1s linear;
|
42 |
-o-transition: opacity 1s linear;
|
43 |
transition: opacity 1s linear;
|
44 |
opacity: 1;
|
45 |
color: #fff;
|
46 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
47 |
display: inline-block;
|
48 |
text-decoration: none;
|
49 |
font-weight: 200;
|
50 |
text-align: center;
|
51 |
vertical-align: middle;
|
52 |
cursor: pointer;
|
53 |
border-radius: 0.5em;
|
54 |
padding: 0.8em 1.2em;
|
55 |
background-color: #ED303C;
|
56 |
background-image: -moz-linear-gradient(top, #ED303C, #8D121A);
|
57 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ED303C), to(#8D121A));
|
58 |
background-image: -webkit-linear-gradient(top, #ED303C, #8D121A);
|
59 |
background-image: -o-linear-gradient(top, #ED303C, #8D121A);
|
60 |
background-image: linear-gradient(to bottom, #ED303C, #8D121A);
|
61 |
background-repeat: repeat-x;
|
62 |
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
63 |
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
64 |
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
65 |
text-decoration: none;
|
66 |
color: #ddd;
|
67 |
background-color: #8D121A;
|
68 |
background-position: 0 -15px;
|
69 |
-webkit-transition: background-position 0.1s linear;
|
70 |
-moz-transition: background-position 0.1s linear;
|
71 |
-o-transition: background-position 0.1s linear;
|
72 |
transition: background-position 0.1s linear;
|
73 |
background-image: none;
|
74 |
outline: 0;
|
75 |
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
76 |
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
77 |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
78 |
position: relative;
|
79 |
padding: 3em 0;
|
80 |
text-align: center;
|
81 |
background: #242424;
|
82 |
color: #fff;
|
83 |
font-family: Rokkitt;
|
84 |
font-size: 13em;
|
85 |
font-weight: 200;
|
86 |
text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8);
|
87 |
visibility: hidden;
|
88 |
color: #ED303C;
|
89 |
margin-top: -1em;
|
90 |
letter-spacing: 0.15em;
|
91 |
color: #ccc;
|
92 |
font-size: 1.25em;
|
93 |
font-weight: 200;
|
94 |
text-shadow: 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.8);
|
95 |
visibility: hidden;
|
96 |
text-align: center;
|
97 |
margin-top: 2em;
|
98 |
margin-bottom: 0.5em;
|
99 |
font-size: 1.6em;
|
100 |
margin-top: 1em;
|
101 |
font-size: 1.2em;
|
102 |
background: #242424;
|
103 |
border-radius: 4px;
|
104 |
border: 1px solid #333;
|
105 |
margin-bottom: 10px;
|
106 |
margin-bottom: 0;
|
107 |
background: #282828;
|
108 |
border-radius: 0 0 4px 4px;
|
109 |
border: 1px solid #0c0c0c;
|
110 |
border-top: 1px solid #333;
|
111 |
margin-bottom: 0;
|
112 |
padding-bottom: 8px;
|
113 |
width: 50%;
|
114 |
margin-right: 10px;
|
115 |
.playground .controls select {
|
116 |
width: 100%;
|
117 |
margin-right: 0;
|
118 |
}
|
119 |
display: table;
|
120 |
min-height: 10em;
|
121 |
padding: 20px;
|
122 |
border-radius: 4px 4px 0 0;
|
123 |
border: 1px solid #0c0c0c;
|
124 |
overflow: hidden;
|
125 |
-webkit-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
126 |
-moz-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
127 |
box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
128 |
color: #fff;
|
129 |
font-size: 1.5em;
|
130 |
font-weight: 200;
|
131 |
letter-spacing: 1px;
|
132 |
padding: 20px 0;
|
133 |
display: inline-block;
|
134 |
vertical-align: middle;
|
135 |
display: table-cell;
|
136 |
text-align: center;
|
137 |
/*visibility: hidden;*/
|
138 |
font-size: 1.2em;
|
139 |
list-style-type: square;
|
140 |
margin: 0;
|
141 |
line-height: 1.5em
|
142 |
font-weight: 200;
|
143 |
content: "";
|
144 |
display: table;
|
145 |
clear: both;
|
146 |
float: left;
|
147 |
padding-right: 20px;
|
148 |
padding-right: 0;
|
149 |
width: 100%;
|
150 |
width: 66.66%;
|
151 |
width: 33.33%;
|
152 |
width: 50%;
|
153 |
width: 25%;
|
154 |
width: 75%;
|
155 |
width: 80%;
|
156 |
width: 16.66%;
|
157 |
width: 12.5%;
|
158 |
padding-left: 20px
|
159 |
padding-top: 20px;
|
160 |
padding-top: 20px;
|
161 |
padding-right: 20px;
|
162 |
[class*='col-'] {
|
163 |
width: 100%;
|
164 |
}
|
165 |
margin-bottom: 5px;
|
166 |
width: 100%;
|
167 |
display: inline-block;
|
168 |
height: 30px;
|
169 |
padding: 4px 6px;
|
170 |
margin-bottom: 10px;
|
171 |
font-size: 14px;
|
172 |
line-height: 20px;
|
173 |
color: #555555;
|
174 |
vertical-align: middle;
|
175 |
-webkit-border-radius: 4px;
|
176 |
-moz-border-radius: 4px;
|
177 |
border-radius: 4px;
|
178 |
background-color: #ddd;
|
179 |
border: 1px solid #ccc;
|
180 |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
181 |
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
182 |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
183 |
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
184 |
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
185 |
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
186 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
187 |
background-color: #fff;
|
188 |
border-color: #8D121A;
|
189 |
outline: 0;
|
190 |
-webkit-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
191 |
-moz-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
192 |
box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
193 |
display: block;
|
194 |
margin-bottom: 5px;
|
195 |
display: inline-block;
|
196 |
padding: 4px 0;
|
197 |
margin-right: 10px;
|
198 |
white-space: nowrap;
|
199 |
vertical-align: top;
|
200 |
background: transparent;
|
admin/js/upgrade-page-script.js
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// custom upgrade page scripts
|
2 |
+
// oh yeaaaa
|
3 |
+
jQuery(document).ready(function() {
|
4 |
+
|
5 |
+
// nav click, swap out content etc.
|
6 |
+
jQuery( '.nav-tab' ).click( function() {
|
7 |
+
var clicked_tab = jQuery( this ).attr( 'data-attr' );
|
8 |
+
jQuery( '.tab_content' ).hide();
|
9 |
+
jQuery( '#'+clicked_tab ).fadeIn();
|
10 |
+
|
11 |
+
jQuery( '.nav-tab' ).removeClass( 'nav-tab-active' );
|
12 |
+
jQuery( this ).addClass( 'nav-tab-active' );
|
13 |
+
});
|
14 |
+
|
15 |
+
});
|
admin/js/wordpress-svg-icon-plugin-scripts.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
/*
|
admin/js/wp-svg-delete-custom-pack-ajax.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
var data = {
|
3 |
+
action : 'svg_delete_custom_pack'
|
4 |
+
};
|
5 |
+
}
|
admin/partials/wp-svg-icons-custom-icons-page.php
ADDED
@@ -0,0 +1,362 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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="http://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 |
+
$uploadedfile = $_FILES['custom_icon_pack'];
|
33 |
+
$upload_overrides = array( 'test_form' => false );
|
34 |
+
|
35 |
+
$filename = $uploadedfile['name'];
|
36 |
+
$break = explode('.', $filename);
|
37 |
+
$count = count( $break );
|
38 |
+
$file_extension = $break[intval( $count - 1 )];
|
39 |
+
|
40 |
+
if( $file_extension != 'zip' ) {
|
41 |
+
?>
|
42 |
+
<style>
|
43 |
+
#social-icons { display: none; }
|
44 |
+
</style>
|
45 |
+
<div class="error">
|
46 |
+
<p><?php _e( "There was a problem importing the file. Ensure that you are uploading a .zip file.", "wp-svg-icons" ); ?></p>
|
47 |
+
<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>
|
48 |
+
<p>
|
49 |
+
<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>
|
50 |
+
<a class="button-secondary" href="http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
|
51 |
+
</p>
|
52 |
+
</div>
|
53 |
+
<?php
|
54 |
+
exit();
|
55 |
+
}
|
56 |
+
|
57 |
+
// move the file to the custom upload path set above on line 63
|
58 |
+
$movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
|
59 |
+
|
60 |
+
// if upload was successful
|
61 |
+
if ( $movefile ) {
|
62 |
+
|
63 |
+
echo '<script>
|
64 |
+
jQuery(document).ready(function() {
|
65 |
+
jQuery(".preview-icon-code-box").show();
|
66 |
+
jQuery(".wp-svg-custom-pack-preloader").show();
|
67 |
+
jQuery("#uninstall-pack-button").removeAttr("disabled");
|
68 |
+
jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled");
|
69 |
+
jQuery("input[value=Import]").attr("disabled","disabled");
|
70 |
+
jQuery(".svg-custom-pack-buttons").after("<div class=updated><p class=fontPackUploadedSuccess>' . __( "Custom font pack successfully uploaded!" , "wp-svg-icons" ) . '</p></div>");
|
71 |
+
});
|
72 |
+
</script>';
|
73 |
+
|
74 |
+
// unzip the file contents to the same directory
|
75 |
+
WP_Filesystem();
|
76 |
+
|
77 |
+
$dest = wp_upload_dir();
|
78 |
+
$dest_path = $dest['path'];
|
79 |
+
$fileNameNoSpaces = str_replace(' ', '-',$uploadedfile['name']);
|
80 |
+
|
81 |
+
$unzipfile = unzip_file( $dest_path.'/'.$fileNameNoSpaces, $dest_path );
|
82 |
+
|
83 |
+
if ( $unzipfile ) {
|
84 |
+
|
85 |
+
// check for the json file
|
86 |
+
// to ensure we've got a icomoon .zip
|
87 |
+
if( !file_exists( $dest_path.'/'.'selection.json' ) ) {
|
88 |
+
?>
|
89 |
+
<style>
|
90 |
+
#social-icons { display: none; }
|
91 |
+
</style>
|
92 |
+
<div class="error">
|
93 |
+
<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>
|
94 |
+
<p>
|
95 |
+
<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>
|
96 |
+
<a class="button-secondary" href="http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank"><?php _e( 'Support' , 'wp-svg-icons' ); ?></a>
|
97 |
+
</p>
|
98 |
+
</div>
|
99 |
+
<?php
|
100 |
+
// delete the files from the directory
|
101 |
+
wp_svg_icons_delete_entire_directory( $dest_path );
|
102 |
+
exit();
|
103 |
+
}
|
104 |
+
|
105 |
+
|
106 |
+
// rename the initial .zip file
|
107 |
+
$test_rename_zip = rename($dest_path.'/'.$fileNameNoSpaces,$dest_path.'/'.'wp-svg-custom-pack.zip');
|
108 |
+
// rename the json file that comes with icomoon files
|
109 |
+
$test_rename_json = rename($dest_path.'/'.'selection.json',$dest_path.'/'.'wp-svg-custom-pack.json');
|
110 |
+
|
111 |
+
$file = $dest_path.'/demo.html';
|
112 |
+
|
113 |
+
// Open the file to get existing content
|
114 |
+
$current = file_get_contents($file);
|
115 |
+
|
116 |
+
// remove the link tags
|
117 |
+
// for css and js files that are not needed any more
|
118 |
+
$current = str_replace('<link rel="stylesheet" href="demo-files/demo.css">','',$current);
|
119 |
+
$current = str_replace('<link rel="stylesheet" href="style.css"></head>','',$current);
|
120 |
+
$current = str_replace('<script src="demo-files/demo.js"></script>','',$current);
|
121 |
+
$current = str_replace( 'icon-' , 'wp-svg-custom-' , $current );
|
122 |
+
|
123 |
+
// Write the contents back to the file
|
124 |
+
$file_put_contents = file_put_contents($file, $current);
|
125 |
+
|
126 |
+
// change path of linked font files in style.css
|
127 |
+
$styleCSS = $dest_path.'/style.css';
|
128 |
+
$currentStyles = file_get_contents($styleCSS);
|
129 |
+
|
130 |
+
// remove the link tags
|
131 |
+
// for css and js files that are not needed any more
|
132 |
+
$newStyles = str_replace( "url('fonts/" , "url( '" . site_url() . "/wp-content/uploads/wp-svg-icons/custom-pack/fonts/" , $currentStyles );
|
133 |
+
$newStyles = str_replace( 'icon-' , 'wp-svg-custom-' , $newStyles );
|
134 |
+
|
135 |
+
// Write the contents back to the file
|
136 |
+
$file_put_contents = file_put_contents($styleCSS, $newStyles);
|
137 |
+
|
138 |
+
// delete unecessary files
|
139 |
+
if ( file_exists( $dest_path . '/demo-files' ) ) {
|
140 |
+
$admin_class = new WP_SVG_Icons_Admin( 'wp-svg-icons' , '1.0' );
|
141 |
+
$admin_class->recursive_delete_directory($dest_path.'/demo-files');
|
142 |
+
}
|
143 |
+
|
144 |
+
// delete the readme file
|
145 |
+
if ( file_exists( $dest_path . '/Read Me.txt' ) ) {
|
146 |
+
unlink($dest_path.'/Read Me.txt');
|
147 |
+
}
|
148 |
+
|
149 |
+
// display success message
|
150 |
+
// disable file upload field
|
151 |
+
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>';
|
152 |
+
|
153 |
+
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>';
|
154 |
+
|
155 |
+
// ajax get demo.html file
|
156 |
+
// ajax get style.css file and append to head to show icons
|
157 |
+
echo '<script>
|
158 |
+
jQuery(document).ready(function() {
|
159 |
+
jQuery(".current-font-pack").load("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/demo.html");
|
160 |
+
jQuery.get("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) {
|
161 |
+
jQuery("head").append("<style>"+data+"</style>");
|
162 |
+
});
|
163 |
+
});
|
164 |
+
</script>';
|
165 |
+
|
166 |
+
|
167 |
+
} else { // error unzipping the file
|
168 |
+
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>';
|
169 |
+
}
|
170 |
+
|
171 |
+
} else { // error importing the file
|
172 |
+
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>';
|
173 |
+
}
|
174 |
+
|
175 |
+
}
|
176 |
+
?>
|
177 |
+
|
178 |
+
|
179 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Import a Custom Icon Pack' , 'wp-svg-icons' ); ?></h1>
|
180 |
+
|
181 |
+
<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>
|
182 |
+
<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="http://www.evan-herman.com/wp-svg-icons/#customPackUploader" target="_blank"><?php _e( 'plugin site' , 'wp-svg-icons' ); ?></a>.</p>
|
183 |
+
<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>
|
184 |
+
<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>
|
185 |
+
|
186 |
+
<div class="preview-icon-code-box" style="display:none;float:right;width:350px;">
|
187 |
+
<p style="position: absolute;margin-top: 4.25em;color: #EE3B3B;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></p>
|
188 |
+
<div class="wp-svg-icon-preview-box" style="float:right;margin-right:0px;">
|
189 |
+
<i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i>
|
190 |
+
</div>
|
191 |
+
<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=""]'>
|
192 |
+
</div>
|
193 |
+
|
194 |
+
<script>
|
195 |
+
var run_interval = null;
|
196 |
+
|
197 |
+
jQuery(document).ready(function() {
|
198 |
+
|
199 |
+
// check if the pack has loaded
|
200 |
+
run_interval = setInterval(function() {
|
201 |
+
if( jQuery( '.current-font-pack' ).children().length <= 1 ) {
|
202 |
+
return;
|
203 |
+
// re-run the interval
|
204 |
+
} else {
|
205 |
+
var fontNameString = jQuery(".mhmm").text();
|
206 |
+
var newfontNameString = fontNameString.replace("Font Name:","");
|
207 |
+
var customPackFontName = newfontNameString.split("(")[0];
|
208 |
+
var customPackFontName = jQuery.trim(customPackFontName);
|
209 |
+
// replace - with a space, just for looks sake
|
210 |
+
var custom_font_pack_title = jQuery( '.current-font-pack' ).find( 'h1' ).first().html( function(index, text) {
|
211 |
+
return text.replace( /-/g , " ");
|
212 |
+
});
|
213 |
+
jQuery('.downloadFontZipLink').parent('li').find('img').remove();
|
214 |
+
jQuery('.downloadFontZipLink').text('Download '+customPackFontName+'.zip');
|
215 |
+
jQuery('.downloadFontjSonLink').parent('li').find('img').remove();
|
216 |
+
jQuery('.downloadFontjSonLink').text('Download '+customPackFontName+'.json');
|
217 |
+
|
218 |
+
|
219 |
+
jQuery('.glyph').click(function() {
|
220 |
+
|
221 |
+
jQuery('.glyph').removeClass("selected");
|
222 |
+
jQuery(this).addClass("selected");
|
223 |
+
jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
|
224 |
+
|
225 |
+
var glyphCode = jQuery(this).find('.mls').text();
|
226 |
+
var glyphCode = jQuery.trim(glyphCode);
|
227 |
+
|
228 |
+
//console.log(glyphCode);
|
229 |
+
jQuery('.wp-svg-icon-preview').remove();
|
230 |
+
jQuery('.wp-svg-icon-preview-box > i').after("<b class='wp-svg-icon-preview'><div class='"+glyphCode+" previewIcon' style='display:none;'></div></b>");
|
231 |
+
jQuery('.previewIcon').fadeIn();
|
232 |
+
|
233 |
+
<?php if( get_current_screen()->base != 'wp-svg-icons_page_wp-svg-icons-custom-set' ) { ?>
|
234 |
+
var iconClass = jQuery( '.custom-pack-container-ajax' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
|
235 |
+
var selectedIconWrapper = jQuery( '.selected-element-wrap' ).attr( 'alt' );
|
236 |
+
<?php } else { ?>
|
237 |
+
var iconClass = jQuery( '.current-font-pack' ).find( '.glyph.selected' ).find( 'span:first-child' ).attr( 'class' );
|
238 |
+
iconClass = iconClass.replace( 'wp-svg-custom-' , '' );
|
239 |
+
var selectedIconWrapper = '<?php echo get_option( 'wp_svg_icons_defualt_icon_container' , 'i' ); ?>';
|
240 |
+
<?php } ?>
|
241 |
+
jQuery('.copy_paste_input').val('[wp-svg-icons custom_icon="'+iconClass.trim()+'" wrap="'+selectedIconWrapper+'"]');
|
242 |
+
|
243 |
+
});
|
244 |
+
|
245 |
+
}
|
246 |
+
|
247 |
+
clearInterval(run_interval);
|
248 |
+
// kill off the interval, once we've got it
|
249 |
+
|
250 |
+
}, 50);
|
251 |
+
});
|
252 |
+
</script>
|
253 |
+
|
254 |
+
|
255 |
+
|
256 |
+
<style>
|
257 |
+
.dropdown-menu img {
|
258 |
+
display:block;
|
259 |
+
width:15px;
|
260 |
+
margin:0 auto;
|
261 |
+
}
|
262 |
+
.ptl { min-width:540px; }
|
263 |
+
#wpbody-content { min-width:900px; }
|
264 |
+
|
265 |
+
|
266 |
+
.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; }
|
267 |
+
.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; }
|
268 |
+
#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; }
|
269 |
+
</style>
|
270 |
+
|
271 |
+
<!-- file upload input field -->
|
272 |
+
<!-- Handling Custom Font Pack Uploads -->
|
273 |
+
<!-- currently uploads to Uploads > WP SVG Icons > Custom Pack -->
|
274 |
+
<form id="wp_svg_icons_upload_custom_pack_form" enctype="multipart/form-data" action="" method="POST">
|
275 |
+
<p id="async-upload-wrap" style="margin-bottom:0;">
|
276 |
+
<label for="async-upload"><?php _e( 'Import a Custom Font Pack' , 'wp-svg-icons' ); ?> :</label><br />
|
277 |
+
<input type="file" id="wp_svg_custom_pack_field" name="custom_icon_pack" required="required">
|
278 |
+
<p style="margin:0;">
|
279 |
+
<span class="custom-icons-file-upload-note"><?php _e( 'note: file must be a .zip downloaded from icomoon' , 'wp-svg-icons' ); ?><span>
|
280 |
+
</p>
|
281 |
+
<span class="svg-custom-pack-buttons">
|
282 |
+
<p>
|
283 |
+
<?php
|
284 |
+
// print form submission button
|
285 |
+
echo submit_button( 'Import', 'primary', '', false, '' );
|
286 |
+
?>
|
287 |
+
</p>
|
288 |
+
<p style="margin-left:1em;">
|
289 |
+
<?php
|
290 |
+
$other_attributes = array( 'onclick' => 'wp_svg_uninstall_font_pack(); return false;' , 'disabled' => 'disabled' );
|
291 |
+
echo submit_button( ' ' . __( "Uninstall Pack" , "wp-svg-icons" ) , 'delete', 'uninstall-pack-button', false, $other_attributes );
|
292 |
+
$dest = wp_upload_dir();
|
293 |
+
$dest_url = $dest['url'];
|
294 |
+
$dest_path = $dest['path'];
|
295 |
+
?>
|
296 |
+
</p>
|
297 |
+
|
298 |
+
<p style="margin-left:1em;">
|
299 |
+
<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>
|
300 |
+
</p>
|
301 |
+
|
302 |
+
<?php if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) { ?>
|
303 |
+
<!-- jquery download dropdown menu -->
|
304 |
+
<div id="dropdown-1" style="left:210px !important; top:290.8125px !important;" class="dropdown dropdown-anchor-left dropdown-tip">
|
305 |
+
<ul class="dropdown-menu">
|
306 |
+
<li>
|
307 |
+
<a class="downloadFontZipLink" href="<?php echo $dest_url.'/wp-svg-custom-pack.zip'; ?>"></a>
|
308 |
+
<img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'; ?>" alt="preloader">
|
309 |
+
</li>
|
310 |
+
<li class="dropdown-divider"></li>
|
311 |
+
<li>
|
312 |
+
<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>
|
313 |
+
<img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'; ?>" alt="preloader">
|
314 |
+
</li>
|
315 |
+
</ul>
|
316 |
+
</div>
|
317 |
+
<?php } ?>
|
318 |
+
|
319 |
+
</span>
|
320 |
+
<!-- display success or error message after font pack deletion -->
|
321 |
+
<p id="delete_succes_and_error_message"></p>
|
322 |
+
<p id="unzip_succes_and_error_message"></p>
|
323 |
+
</p>
|
324 |
+
</form>
|
325 |
+
|
326 |
+
<div class="current-font-pack">
|
327 |
+
<!-- scandir, or some other php function to loop through the upload directory to check if any files exist -->
|
328 |
+
<!-- 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 -->
|
329 |
+
<img style="display:none;" class="wp-svg-custom-pack-preloader" src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader">
|
330 |
+
</div>
|
331 |
+
|
332 |
+
<!-- plugin footer -->
|
333 |
+
<?php
|
334 |
+
if ( file_exists( $dest_path.'/wp-svg-custom-pack.zip' ) ) {
|
335 |
+
$fontPackLocationString = __( 'Your Custom Icon Pack is located in' , 'wp-svg-icons' ) . ' : ';
|
336 |
+
} else {
|
337 |
+
$fontPackLocationString = __( 'Your Custom Icon Pack will be installed to' , 'wp-svg-icons' ) . ' : ';
|
338 |
+
}
|
339 |
+
?>
|
340 |
+
|
341 |
+
<footer style="padding-left:0;margin-left:0; width: 100%;">
|
342 |
+
<p style="float:left;"><?php _e( 'Plugin Created By' , 'wp-svg-icons' ); ?> <a style="color:#B35047;" href="http://www.Evan-Herman.com" target="_blank">Evan Herman</a></p><p style="float:right;"><?php echo $fontPackLocationString.'<b>'.$dest_path.'</b>'; ?></p>
|
343 |
+
</footer>
|
344 |
+
</div>
|
345 |
+
<?php
|
346 |
+
|
347 |
+
/*
|
348 |
+
Function To Recursively Delete an entire directory
|
349 |
+
used on fail upload/rename
|
350 |
+
*/
|
351 |
+
function wp_svg_icons_delete_entire_directory( $dir ) {
|
352 |
+
if ( is_dir( $dir ) ) {
|
353 |
+
$objects = scandir( $dir );
|
354 |
+
foreach ($objects as $object ) {
|
355 |
+
if ( $object != "." && $object != ".." ) {
|
356 |
+
if ( filetype( $dir."/".$object) == "dir" ) wp_svg_icons_delete_entire_directory( $dir."/".$object); else unlink( $dir."/".$object );
|
357 |
+
}
|
358 |
+
}
|
359 |
+
reset( $objects );
|
360 |
+
rmdir( $dir );
|
361 |
+
}
|
362 |
+
}
|
admin/partials/wp-svg-icons-default-icons-page.php
ADDED
@@ -0,0 +1,2589 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
<script>
|
8 |
+
jQuery( document ).ready( function() {
|
9 |
+
if( jQuery( '#TB_ajaxContent' ).is( ':visible' ) ) {
|
10 |
+
jQuery( '.how-to-use' ).css( 'margin-bottom' , '20px' );
|
11 |
+
jQuery( '#wp-svg-nav-tab-wrapper' ).show();
|
12 |
+
}
|
13 |
+
});
|
14 |
+
</script>
|
15 |
+
<style>
|
16 |
+
#TB_ajaxContent {
|
17 |
+
display: block;
|
18 |
+
width: auto !important;
|
19 |
+
height: 94% !important;
|
20 |
+
}
|
21 |
+
.mls { display: none !important; }
|
22 |
+
::selection { background: #FF8000; }
|
23 |
+
</style>
|
24 |
+
|
25 |
+
<!-- display our icons and stuff -->
|
26 |
+
<div class="wrap wp-svg-icons-wrap">
|
27 |
+
|
28 |
+
<?php if( !file_exists( '../../../../../wp-load.php' ) ) { ?>
|
29 |
+
<!-- review us container -->
|
30 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
|
31 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
32 |
+
<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>
|
33 |
+
</div>
|
34 |
+
<!-- social media icons -->
|
35 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
36 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
37 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
38 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
39 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
40 |
+
<a href="http://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
41 |
+
</div>
|
42 |
+
<?php } ?>
|
43 |
+
|
44 |
+
<div class="w-main centered">
|
45 |
+
|
46 |
+
<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>
|
47 |
+
<?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 } ?>
|
48 |
+
|
49 |
+
<div class="help-boxes" >
|
50 |
+
<!-- add our jquery UI styles -->
|
51 |
+
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
|
52 |
+
<!-- initialize the slider -->
|
53 |
+
<script type="text/javascript">
|
54 |
+
jQuery( document ).ready( function() {
|
55 |
+
// Advanced Shortcode Attr.
|
56 |
+
var aFontsSizeArray = new Array('5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '24', '26', '28', '30', '33', '36', '39', '42', '45', '48', '55', '65', '75', '85', '95', '110', '130', '150');
|
57 |
+
|
58 |
+
jQuery('#icon-size-slider').slider({
|
59 |
+
value: 7,
|
60 |
+
min: 1,
|
61 |
+
max: 35,
|
62 |
+
step: 1,
|
63 |
+
slide: function( event, ui ) {
|
64 |
+
var sFontSizeArray = aFontsSizeArray[ui.value];
|
65 |
+
jQuery('#icon-size-input').val(sFontSizeArray + 'px');
|
66 |
+
build_the_icon_shortcode( jQuery( '#advanced-shortcode-attr-toggle' ) );
|
67 |
+
}
|
68 |
+
});
|
69 |
+
|
70 |
+
// initialize the color picker
|
71 |
+
jQuery('.wp-svg-icons-custom-color-picker').wpColorPicker({
|
72 |
+
change: function( event, ui ){
|
73 |
+
// delay the update or the shortcode uses
|
74 |
+
// the previous color
|
75 |
+
setTimeout(function() {
|
76 |
+
build_the_icon_shortcode( jQuery( '#advanced-shortcode-attr-toggle' ) );
|
77 |
+
}, 50);
|
78 |
+
}
|
79 |
+
});
|
80 |
+
|
81 |
+
});
|
82 |
+
</script>
|
83 |
+
|
84 |
+
<div class="how-to-use">
|
85 |
+
|
86 |
+
<section class="wp-svg-how-to-use-container">
|
87 |
+
<h3 style="padding-left:10px;"><?php _e( "How to use:" , "wp-svg-icons" ); ?></h3>
|
88 |
+
<ul style="margin-left:35px; list-style-type:square; margin-bottom: 20px;">
|
89 |
+
<li><?php _e( "Step 1: Locate and click the icon you want to use." , "wp-svg-icons" ); ?></li>
|
90 |
+
<li><?php _e( "Step 2: Select the element to wrap your icon with." , "wp-svg-icons" ); ?></li>
|
91 |
+
<span class="element_selection_container">
|
92 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h1">h1</a>
|
93 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h2">h2</a>
|
94 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="h3">h3</a>
|
95 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="span">span</a>
|
96 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="div">div</a>
|
97 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="i">i</a>
|
98 |
+
<a href="#" onclick="return false;" class="button-secondary icon-wrapper" alt="b">b</a>
|
99 |
+
</span>
|
100 |
+
<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>
|
101 |
+
<!-- copy paste input field -->
|
102 |
+
<li style="list-style-type:none !important; display:block;margin-top:.75em;">
|
103 |
+
<i style="color:red;"><?php _e( 'Shortcode:' , 'wp-svg-icons' ); ?></i>
|
104 |
+
<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>
|
105 |
+
</li>
|
106 |
+
<li style="list-style:none;margin-top:1em;display:none;" id="advanced-attr-toggle-list-item">
|
107 |
+
<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>
|
108 |
+
</li>
|
109 |
+
</ul>
|
110 |
+
|
111 |
+
</section>
|
112 |
+
|
113 |
+
<!-- preview box -->
|
114 |
+
<div class="wp-svg-icon-preview-box">
|
115 |
+
<i style="font-size:14px;" class="copy-paste-text"><?php _e( 'Icon Preview:' , 'wp-svg-icons' ); ?></i><b class="wp-svg-icon-preview"></b>
|
116 |
+
</div>
|
117 |
+
|
118 |
+
<section style="float:left;width:100%;">
|
119 |
+
|
120 |
+
<ul id="advanced-shortcode-attr-list">
|
121 |
+
<section class="wp-svg-advanced-shortcode-attr-row">
|
122 |
+
<!-- Icon Size Attr -->
|
123 |
+
<li>
|
124 |
+
<strong><?php _e( "Icon Size" , "wp-svg-icons" ); ?></strong>
|
125 |
+
<label for="icon-size-slider">
|
126 |
+
<div id="icon-size-slider"></div>
|
127 |
+
<input type="text" id="icon-size-input" value="12px">
|
128 |
+
<?php _e( "Icon Size" , "wp-svg-icons" ); ?>
|
129 |
+
</label>
|
130 |
+
</li>
|
131 |
+
<!-- Class Names Attr -->
|
132 |
+
<li class="shortcode-attr-right-column">
|
133 |
+
<strong><?php _e( "Class Names" , "wp-svg-icons" ); ?></strong>
|
134 |
+
<label for="icon-class-name">
|
135 |
+
<input type="text" id="icon-class-names-input" class="widefat" value="">
|
136 |
+
<span class="description"><?php _e( "add additional class names above." , "wp-svg-icons" ); ?></span>
|
137 |
+
</label>
|
138 |
+
</li>
|
139 |
+
</section>
|
140 |
+
|
141 |
+
<section class="wp-svg-advanced-shortcode-attr-row" style="margin-bottom:1em;">
|
142 |
+
<!-- Icon Link Attr -->
|
143 |
+
<li>
|
144 |
+
<strong><?php _e( "Icon Link" , "wp-svg-icons" ); ?></strong>
|
145 |
+
<label for="icon-link">
|
146 |
+
<input type="text" id="icon-link" class="widefat" placeholder="http://">
|
147 |
+
<span class="description"><?php _e( "open link in new tab" , "wp-svg-icons" ); ?></span>
|
148 |
+
</label>
|
149 |
+
<input type="checkbox" id="open-icon-link-in-new-tab" value="1" style="margin-top:2px;">
|
150 |
+
</li>
|
151 |
+
<!-- Custom Icon Color Attr -->
|
152 |
+
<li class="shortcode-attr-right-column">
|
153 |
+
<strong><?php _e( "Icon Color" , "wp-svg-icons" ); ?></strong>
|
154 |
+
<label for="icon-color">
|
155 |
+
<input type="text" value="#4C4C4C" class="wp-svg-icons-custom-color-picker" data-default-color="#bada55" />
|
156 |
+
<span class="description"><?php _e( "select a custom icon color." , "wp-svg-icons" ); ?></span>
|
157 |
+
</label>
|
158 |
+
</li>
|
159 |
+
</section>
|
160 |
+
</ul>
|
161 |
+
|
162 |
+
<!-- insert the code into a post or page -->
|
163 |
+
<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>
|
164 |
+
|
165 |
+
</section>
|
166 |
+
|
167 |
+
|
168 |
+
</div> <!-- end how to use -->
|
169 |
+
|
170 |
+
</div><!-- end help boxes -->
|
171 |
+
|
172 |
+
<!-- tabs, to switch between default and custom packs on edit.php -->
|
173 |
+
<h2 class="nav-tab-wrapper" id="wp-svg-nav-tab-wrapper" style="display:none;">
|
174 |
+
<a href="#" class="nav-tab default-icon-pack nav-tab-active" onclick="show_defualt_pack( this );"><?php _e( 'Default Pack' , 'wp-svg-icons' ); ?></a>
|
175 |
+
<a href="#" class="nav-tab custom-pack-tab" onclick="load_custom_pack( this );" style="display:none;"><?php _e( 'Custom Pack' , 'wp-svg-icons' ); ?></a>
|
176 |
+
</h2>
|
177 |
+
|
178 |
+
<div class="wp-svg-iconset1-all-glyphs" style="display:inline-block; margin-top:1em; ">
|
179 |
+
|
180 |
+
<section class="mtm clearfix" id="glyphs">
|
181 |
+
|
182 |
+
<div class="glyph glyph-demo">
|
183 |
+
<span class="mls">wp-svg-home</span>
|
184 |
+
<div class="fs1 home" aria-hidden="true" data-icon="" ></div>
|
185 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe000;"> </a>
|
186 |
+
</div>
|
187 |
+
|
188 |
+
<div class="glyph glyph-demo">
|
189 |
+
<span class="mls"> wp-svg-home-2 </span>
|
190 |
+
<div class="fs1 home-2" aria-hidden="true" data-icon=""></div>
|
191 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe001;"> </a>
|
192 |
+
</div>
|
193 |
+
|
194 |
+
|
195 |
+
<div class="glyph glyph-demo">
|
196 |
+
<span class="mls"> wp-svg-home-3 </span>
|
197 |
+
<div class="fs1 home-3" aria-hidden="true" data-icon=""></div>
|
198 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe002;"> </a>
|
199 |
+
</div>
|
200 |
+
|
201 |
+
<div class="glyph glyph-demo">
|
202 |
+
<span class="mls"> wp-svg-office </span>
|
203 |
+
<div class="fs1 office" aria-hidden="true" data-icon=""></div>
|
204 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe003;" > </a>
|
205 |
+
</div>
|
206 |
+
|
207 |
+
<div class="glyph glyph-demo">
|
208 |
+
<span class="mls"> wp-svg-newspaper </span>
|
209 |
+
<div class="fs1 newspaper" aria-hidden="true" data-icon=""></div>
|
210 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe004;" > </a>
|
211 |
+
</div>
|
212 |
+
|
213 |
+
<div class="glyph glyph-demo">
|
214 |
+
<span class="mls"> wp-svg-pencil </span>
|
215 |
+
<div class="fs1 pencil" aria-hidden="true" data-icon=""></div>
|
216 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe005;" > </a>
|
217 |
+
</div>
|
218 |
+
|
219 |
+
<div class="glyph glyph-demo">
|
220 |
+
<span class="mls"> wp-svg-pencil-2 </span>
|
221 |
+
<div class="fs1 pencil-2" aria-hidden="true" data-icon=""></div>
|
222 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe006;" > </a>
|
223 |
+
</div>
|
224 |
+
|
225 |
+
<div class="glyph glyph-demo">
|
226 |
+
<span class="mls"> wp-svg-quill </span>
|
227 |
+
<div class="fs1 quill" aria-hidden="true" data-icon=""></div>
|
228 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe007;" > </a>
|
229 |
+
</div>
|
230 |
+
|
231 |
+
<div class="glyph glyph-demo">
|
232 |
+
<span class="mls"> wp-svg-pen </span>
|
233 |
+
<div class="fs1 pen" aria-hidden="true" data-icon=""></div>
|
234 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe008;" > </a>
|
235 |
+
</div>
|
236 |
+
|
237 |
+
<div class="glyph glyph-demo">
|
238 |
+
<span class="mls"> wp-svg-blog </span>
|
239 |
+
<div class="fs1 blog" aria-hidden="true" data-icon=""></div>
|
240 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe009;" > </a>
|
241 |
+
</div>
|
242 |
+
|
243 |
+
<div class="glyph glyph-demo">
|
244 |
+
<span class="mls"> wp-svg-droplet </span>
|
245 |
+
<div class="fs1 droplet" aria-hidden="true" data-icon=""></div>
|
246 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00a;" > </a>
|
247 |
+
</div>
|
248 |
+
|
249 |
+
<div class="glyph glyph-demo">
|
250 |
+
<span class="mls"> wp-svg-image </span>
|
251 |
+
<div class="fs1 image" aria-hidden="true" data-icon=""></div>
|
252 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00c;" > </a>
|
253 |
+
</div>
|
254 |
+
|
255 |
+
<div class="glyph glyph-demo">
|
256 |
+
<span class="mls"> wp-svg-image-2 </span>
|
257 |
+
<div class="fs1 image-2" aria-hidden="true" data-icon=""></div>
|
258 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00d;" > </a>
|
259 |
+
</div>
|
260 |
+
|
261 |
+
<div class="glyph glyph-demo">
|
262 |
+
<span class="mls"> wp-svg-images </span>
|
263 |
+
<div class="fs1 images" aria-hidden="true" data-icon=""></div>
|
264 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00e;" > </a>
|
265 |
+
</div>
|
266 |
+
|
267 |
+
<div class="glyph glyph-demo">
|
268 |
+
<span class="mls"> wp-svg-camera </span>
|
269 |
+
<div class="fs1 camera" aria-hidden="true" data-icon=""></div>
|
270 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00f;" > </a>
|
271 |
+
</div>
|
272 |
+
|
273 |
+
<div class="glyph glyph-demo">
|
274 |
+
<span class="mls"> wp-svg-music </span>
|
275 |
+
<div class="fs1 music" aria-hidden="true" data-icon=""></div>
|
276 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe010;" > </a>
|
277 |
+
</div>
|
278 |
+
|
279 |
+
<div class="glyph glyph-demo">
|
280 |
+
<span class="mls"> wp-svg-headphones </span>
|
281 |
+
<div class="fs1 headphones" aria-hidden="true" data-icon=""></div>
|
282 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe011;" > </a>
|
283 |
+
</div>
|
284 |
+
|
285 |
+
<div class="glyph glyph-demo">
|
286 |
+
<span class="mls"> wp-svg-play </span>
|
287 |
+
<div class="fs1 play" aria-hidden="true" data-icon=""></div>
|
288 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe012;" > </a>
|
289 |
+
</div>
|
290 |
+
|
291 |
+
<div class="glyph glyph-demo">
|
292 |
+
<span class="mls"> wp-svg-film </span>
|
293 |
+
<div class="fs1 film" aria-hidden="true" data-icon=""></div>
|
294 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe013;" > </a>
|
295 |
+
</div>
|
296 |
+
|
297 |
+
<div class="glyph glyph-demo">
|
298 |
+
<span class="mls"> wp-svg-camera-2 </span>
|
299 |
+
<div class="fs1 camera-2" aria-hidden="true" data-icon=""></div>
|
300 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe014;" > </a>
|
301 |
+
</div>
|
302 |
+
|
303 |
+
<div class="glyph glyph-demo">
|
304 |
+
<span class="mls"> wp-svg-dice </span>
|
305 |
+
<div class="fs1 dice" aria-hidden="true" data-icon=""></div>
|
306 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe015;" > </a>
|
307 |
+
</div>
|
308 |
+
|
309 |
+
<div class="glyph glyph-demo">
|
310 |
+
<span class="mls"> wp-svg-pacman </span>
|
311 |
+
<div class="fs1 pacman" aria-hidden="true" data-icon=""></div>
|
312 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe016;" > </a>
|
313 |
+
</div>
|
314 |
+
|
315 |
+
<div class="glyph glyph-demo">
|
316 |
+
<span class="mls"> wp-svg-spades </span>
|
317 |
+
<div class="fs1 spades" aria-hidden="true" data-icon=""></div>
|
318 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe017;" > </a>
|
319 |
+
</div>
|
320 |
+
|
321 |
+
<div class="glyph glyph-demo">
|
322 |
+
<span class="mls"> wp-svg-clubs </span>
|
323 |
+
<div class="fs1 clubs" aria-hidden="true" data-icon=""></div>
|
324 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe018;" > </a>
|
325 |
+
</div>
|
326 |
+
|
327 |
+
<div class="glyph glyph-demo">
|
328 |
+
<span class="mls"> wp-svg-diamonds </span>
|
329 |
+
<div class="fs1 diamonds" aria-hidden="true" data-icon=""></div>
|
330 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe019;" > </a>
|
331 |
+
</div>
|
332 |
+
|
333 |
+
<div class="glyph glyph-demo">
|
334 |
+
<span class="mls"> wp-svg-pawn </span>
|
335 |
+
<div class="fs1 pawn" aria-hidden="true" data-icon=""></div>
|
336 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01a;" > </a>
|
337 |
+
</div>
|
338 |
+
|
339 |
+
<div class="glyph glyph-demo">
|
340 |
+
<span class="mls"> wp-svg-bullhorn </span>
|
341 |
+
<div class="fs1 bullhorn" aria-hidden="true" data-icon=""></div>
|
342 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01b;" > </a>
|
343 |
+
</div>
|
344 |
+
|
345 |
+
<div class="glyph glyph-demo">
|
346 |
+
<span class="mls"> wp-svg-connection </span>
|
347 |
+
<div class="fs1 connection" aria-hidden="true" data-icon=""></div>
|
348 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01c;" > </a>
|
349 |
+
</div>
|
350 |
+
|
351 |
+
<div class="glyph glyph-demo">
|
352 |
+
<span class="mls"> wp-svg-podcast </span>
|
353 |
+
<div class="fs1 podcast" aria-hidden="true" data-icon=""></div>
|
354 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01d;" > </a>
|
355 |
+
</div>
|
356 |
+
|
357 |
+
<div class="glyph glyph-demo">
|
358 |
+
<span class="mls"> wp-svg-feed </span>
|
359 |
+
<div class="fs1 feed" aria-hidden="true" data-icon=""></div>
|
360 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01e;" > </a>
|
361 |
+
</div>
|
362 |
+
|
363 |
+
<div class="glyph glyph-demo">
|
364 |
+
<span class="mls"> wp-svg-book </span>
|
365 |
+
<div class="fs1 book" aria-hidden="true" data-icon=""></div>
|
366 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01f;" > </a>
|
367 |
+
</div>
|
368 |
+
|
369 |
+
<div class="glyph glyph-demo">
|
370 |
+
<span class="mls"> wp-svg-books </span>
|
371 |
+
<div class="fs1 books" aria-hidden="true" data-icon=""></div>
|
372 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe020;" > </a>
|
373 |
+
</div>
|
374 |
+
|
375 |
+
<div class="glyph glyph-demo">
|
376 |
+
<span class="mls"> wp-svg-library </span>
|
377 |
+
<div class="fs1 library" aria-hidden="true" data-icon=""></div>
|
378 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe021;" > </a>
|
379 |
+
</div>
|
380 |
+
|
381 |
+
<div class="glyph glyph-demo">
|
382 |
+
<span class="mls"> wp-svg-file </span>
|
383 |
+
<div class="fs1 file" aria-hidden="true" data-icon=""></div>
|
384 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe022;" > </a>
|
385 |
+
</div>
|
386 |
+
|
387 |
+
<div class="glyph glyph-demo">
|
388 |
+
<span class="mls"> wp-svg-profile </span>
|
389 |
+
<div class="fs1 profile" aria-hidden="true" data-icon=""></div>
|
390 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe023;" > </a>
|
391 |
+
</div>
|
392 |
+
|
393 |
+
<div class="glyph glyph-demo">
|
394 |
+
<span class="mls"> wp-svg-file-2 </span>
|
395 |
+
<div class="fs1 file-2" aria-hidden="true" data-icon=""></div>
|
396 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe024;" > </a>
|
397 |
+
</div>
|
398 |
+
|
399 |
+
<div class="glyph glyph-demo">
|
400 |
+
<span class="mls"> wp-svg-file-3 </span>
|
401 |
+
<div class="fs1 file-3" aria-hidden="true" data-icon=""></div>
|
402 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe025;" > </a>
|
403 |
+
</div>
|
404 |
+
|
405 |
+
<div class="glyph glyph-demo">
|
406 |
+
<span class="mls"> wp-svg-file-4 </span>
|
407 |
+
<div class="fs1 file-4" aria-hidden="true" data-icon=""></div>
|
408 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe026;" > </a>
|
409 |
+
</div>
|
410 |
+
|
411 |
+
<div class="glyph glyph-demo">
|
412 |
+
<span class="mls"> wp-svg-copy </span>
|
413 |
+
<div class="fs1 copy" aria-hidden="true" data-icon=""></div>
|
414 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe027;" > </a>
|
415 |
+
</div>
|
416 |
+
|
417 |
+
<div class="glyph glyph-demo">
|
418 |
+
<span class="mls"> wp-svg-copy-2 </span>
|
419 |
+
<div class="fs1 copy-2" aria-hidden="true" data-icon=""></div>
|
420 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe028;" > </a>
|
421 |
+
</div>
|
422 |
+
|
423 |
+
<div class="glyph glyph-demo">
|
424 |
+
<span class="mls"> wp-svg-copy-3 </span>
|
425 |
+
<div class="fs1 copy-3" aria-hidden="true" data-icon=""></div>
|
426 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe029;" > </a>
|
427 |
+
</div>
|
428 |
+
|
429 |
+
<div class="glyph glyph-demo">
|
430 |
+
<span class="mls"> wp-svg-paste </span>
|
431 |
+
<div class="fs1 paste" aria-hidden="true" data-icon=""></div>
|
432 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02a;" > </a>
|
433 |
+
</div>
|
434 |
+
|
435 |
+
<div class="glyph glyph-demo">
|
436 |
+
<span class="mls"> wp-svg-paste-2 </span>
|
437 |
+
<div class="fs1 paste-2" aria-hidden="true" data-icon=""></div>
|
438 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02b;" > </a>
|
439 |
+
</div>
|
440 |
+
|
441 |
+
<div class="glyph glyph-demo">
|
442 |
+
<span class="mls"> wp-svg-paste-3 </span>
|
443 |
+
<div class="fs1 paste-3" aria-hidden="true" data-icon=""></div>
|
444 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02c;" > </a>
|
445 |
+
</div>
|
446 |
+
|
447 |
+
<div class="glyph glyph-demo">
|
448 |
+
<span class="mls"> wp-svg-stack </span>
|
449 |
+
<div class="fs1 stack" aria-hidden="true" data-icon=""></div>
|
450 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02d;" > </a>
|
451 |
+
</div>
|
452 |
+
|
453 |
+
<div class="glyph glyph-demo">
|
454 |
+
<span class="mls"> wp-svg-folder </span>
|
455 |
+
<div class="fs1 folder" aria-hidden="true" data-icon=""></div>
|
456 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02e;" > </a>
|
457 |
+
</div>
|
458 |
+
|
459 |
+
<div class="glyph glyph-demo">
|
460 |
+
<span class="mls"> wp-svg-folder-open </span>
|
461 |
+
<div class="fs1 folder-open" aria-hidden="true" data-icon=""></div>
|
462 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02f;" > </a>
|
463 |
+
</div>
|
464 |
+
|
465 |
+
<div class="glyph glyph-demo">
|
466 |
+
<span class="mls"> wp-svg-tag </span>
|
467 |
+
<div class="fs1 tag" aria-hidden="true" data-icon=""></div>
|
468 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe030;" > </a>
|
469 |
+
</div>
|
470 |
+
|
471 |
+
<div class="glyph glyph-demo">
|
472 |
+
<span class="mls"> wp-svg-tags </span>
|
473 |
+
<div class="fs1 tags" aria-hidden="true" data-icon=""></div>
|
474 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe031;" > </a>
|
475 |
+
</div>
|
476 |
+
|
477 |
+
<div class="glyph glyph-demo">
|
478 |
+
<span class="mls"> wp-svg-barcode </span>
|
479 |
+
<div class="fs1 barcode" aria-hidden="true" data-icon=""></div>
|
480 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe032;" > </a>
|
481 |
+
</div>
|
482 |
+
|
483 |
+
<div class="glyph glyph-demo">
|
484 |
+
<span class="mls"> wp-svg-qrcode </span>
|
485 |
+
<div class="fs1 qrcode" aria-hidden="true" data-icon=""></div>
|
486 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe033;" > </a>
|
487 |
+
</div>
|
488 |
+
|
489 |
+
<div class="glyph glyph-demo">
|
490 |
+
<span class="mls"> wp-svg-ticket </span>
|
491 |
+
<div class="fs1 ticket" aria-hidden="true" data-icon=""></div>
|
492 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe034;" > </a>
|
493 |
+
</div>
|
494 |
+
|
495 |
+
<div class="glyph glyph-demo">
|
496 |
+
<span class="mls"> wp-svg-cart </span>
|
497 |
+
<div class="fs1 cart" aria-hidden="true" data-icon=""></div>
|
498 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe035;" > </a>
|
499 |
+
</div>
|
500 |
+
|
501 |
+
<div class="glyph glyph-demo">
|
502 |
+
<span class="mls"> wp-svg-cart-2 </span>
|
503 |
+
<div class="fs1 cart-2" aria-hidden="true" data-icon=""></div>
|
504 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe036;" > </a>
|
505 |
+
</div>
|
506 |
+
|
507 |
+
<div class="glyph glyph-demo">
|
508 |
+
<span class="mls"> wp-svg-cart-3 </span>
|
509 |
+
<div class="fs1 cart-3" aria-hidden="true" data-icon=""></div>
|
510 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe037;" > </a>
|
511 |
+
</div>
|
512 |
+
|
513 |
+
<div class="glyph glyph-demo">
|
514 |
+
<span class="mls"> wp-svg-coin </span>
|
515 |
+
<div class="fs1 coin" aria-hidden="true" data-icon=""></div>
|
516 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe038;" > </a>
|
517 |
+
</div>
|
518 |
+
|
519 |
+
<div class="glyph glyph-demo">
|
520 |
+
<span class="mls"> wp-svg-credit </span>
|
521 |
+
<div class="fs1 credit" aria-hidden="true" data-icon=""></div>
|
522 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe039;" > </a>
|
523 |
+
</div>
|
524 |
+
|
525 |
+
<div class="glyph glyph-demo">
|
526 |
+
<span class="mls"> wp-svg-calculate </span>
|
527 |
+
<div class="fs1 calculate" aria-hidden="true" data-icon=""></div>
|
528 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03a;" > </a>
|
529 |
+
</div>
|
530 |
+
|
531 |
+
<div class="glyph glyph-demo">
|
532 |
+
<span class="mls"> wp-svg-support </span>
|
533 |
+
<div class="fs1 support" aria-hidden="true" data-icon=""></div>
|
534 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03b;" > </a>
|
535 |
+
</div>
|
536 |
+
|
537 |
+
<div class="glyph glyph-demo">
|
538 |
+
<span class="mls"> wp-svg-phone </span>
|
539 |
+
<div class="fs1 phone" aria-hidden="true" data-icon=""></div>
|
540 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03c;" > </a>
|
541 |
+
</div>
|
542 |
+
|
543 |
+
<div class="glyph glyph-demo">
|
544 |
+
<span class="mls"> wp-svg-phone-hang-up </span>
|
545 |
+
<div class="fs1 phone-hang-up" aria-hidden="true" data-icon=""></div>
|
546 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03d;" > </a>
|
547 |
+
</div>
|
548 |
+
|
549 |
+
<div class="glyph glyph-demo">
|
550 |
+
<span class="mls"> wp-svg-address-book </span>
|
551 |
+
<div class="fs1 address-book" aria-hidden="true" data-icon=""></div>
|
552 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03e;" > </a>
|
553 |
+
</div>
|
554 |
+
|
555 |
+
<div class="glyph glyph-demo">
|
556 |
+
<span class="mls"> wp-svg-notebook </span>
|
557 |
+
<div class="fs1 notebook" aria-hidden="true" data-icon=""></div>
|
558 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03f;" > </a>
|
559 |
+
</div>
|
560 |
+
|
561 |
+
<div class="glyph glyph-demo">
|
562 |
+
<span class="mls"> wp-svg-envelop </span>
|
563 |
+
<div class="fs1 envelop" aria-hidden="true" data-icon=""></div>
|
564 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe040;" > </a>
|
565 |
+
</div>
|
566 |
+
|
567 |
+
<div class="glyph glyph-demo">
|
568 |
+
<span class="mls"> wp-svg-pushpin </span>
|
569 |
+
<div class="fs1 pushpin" aria-hidden="true" data-icon=""></div>
|
570 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe041;" > </a>
|
571 |
+
</div>
|
572 |
+
|
573 |
+
<div class="glyph glyph-demo">
|
574 |
+
<span class="mls"> wp-svg-location </span>
|
575 |
+
<div class="fs1 location" aria-hidden="true" data-icon=""></div>
|
576 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe042;" > </a>
|
577 |
+
</div>
|
578 |
+
|
579 |
+
<div class="glyph glyph-demo">
|
580 |
+
<span class="mls"> wp-svg-location-2 </span>
|
581 |
+
<div class="fs1 location-2" aria-hidden="true" data-icon=""></div>
|
582 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe043;" > </a>
|
583 |
+
</div>
|
584 |
+
|
585 |
+
<div class="glyph glyph-demo">
|
586 |
+
<span class="mls"> wp-svg-compass </span>
|
587 |
+
<div class="fs1 compass" aria-hidden="true" data-icon=""></div>
|
588 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe044;" > </a>
|
589 |
+
</div>
|
590 |
+
|
591 |
+
<div class="glyph glyph-demo">
|
592 |
+
<span class="mls"> wp-svg-map </span>
|
593 |
+
<div class="fs1 map" aria-hidden="true" data-icon=""></div>
|
594 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe045;" > </a>
|
595 |
+
</div>
|
596 |
+
|
597 |
+
<div class="glyph glyph-demo">
|
598 |
+
<span class="mls"> wp-svg-map-2 </span>
|
599 |
+
<div class="fs1 map-2" aria-hidden="true" data-icon=""></div>
|
600 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe046;" > </a>
|
601 |
+
</div>
|
602 |
+
|
603 |
+
<div class="glyph glyph-demo">
|
604 |
+
<span class="mls"> wp-svg-history </span>
|
605 |
+
<div class="fs1 history" aria-hidden="true" data-icon=""></div>
|
606 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe047;" > </a>
|
607 |
+
</div>
|
608 |
+
|
609 |
+
<div class="glyph glyph-demo">
|
610 |
+
<span class="mls"> wp-svg-clock </span>
|
611 |
+
<div class="fs1 clock" aria-hidden="true" data-icon=""></div>
|
612 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe048;" > </a>
|
613 |
+
</div>
|
614 |
+
|
615 |
+
<div class="glyph glyph-demo">
|
616 |
+
<span class="mls"> wp-svg-clock-2 </span>
|
617 |
+
<div class="fs1 clock-2" aria-hidden="true" data-icon=""></div>
|
618 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe049;" > </a>
|
619 |
+
</div>
|
620 |
+
|
621 |
+
<div class="glyph glyph-demo">
|
622 |
+
<span class="mls"> wp-svg-alarm </span>
|
623 |
+
<div class="fs1 alarm" aria-hidden="true" data-icon=""></div>
|
624 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04a;" > </a>
|
625 |
+
</div>
|
626 |
+
|
627 |
+
<div class="glyph glyph-demo">
|
628 |
+
<span class="mls"> wp-svg-alarm-2 </span>
|
629 |
+
<div class="fs1 alarm-2" aria-hidden="true" data-icon=""></div>
|
630 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04b;" > </a>
|
631 |
+
</div>
|
632 |
+
|
633 |
+
<div class="glyph glyph-demo">
|
634 |
+
<span class="mls"> wp-svg-bell </span>
|
635 |
+
<div class="fs1 bell" aria-hidden="true" data-icon=""></div>
|
636 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04c;" > </a>
|
637 |
+
</div>
|
638 |
+
|
639 |
+
<div class="glyph glyph-demo">
|
640 |
+
<span class="mls"> wp-svg-stopwatch </span>
|
641 |
+
<div class="fs1 stopwatch" aria-hidden="true" data-icon=""></div>
|
642 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04d;" > </a>
|
643 |
+
</div>
|
644 |
+
|
645 |
+
<div class="glyph glyph-demo">
|
646 |
+
<span class="mls"> wp-svg-calendar </span>
|
647 |
+
<div class="fs1 calendar" aria-hidden="true" data-icon=""></div>
|
648 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04e;" > </a>
|
649 |
+
</div>
|
650 |
+
|
651 |
+
<div class="glyph glyph-demo">
|
652 |
+
<span class="mls"> wp-svg-calendar-2 </span>
|
653 |
+
<div class="fs1 calendar-2" aria-hidden="true" data-icon=""></div>
|
654 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04f;" > </a>
|
655 |
+
</div>
|
656 |
+
|
657 |
+
<div class="glyph glyph-demo">
|
658 |
+
<span class="mls"> wp-svg-print </span>
|
659 |
+
<div class="fs1 print" aria-hidden="true" data-icon=""></div>
|
660 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe050;" > </a>
|
661 |
+
</div>
|
662 |
+
|
663 |
+
<div class="glyph glyph-demo">
|
664 |
+
<span class="mls"> wp-svg-keyboard </span>
|
665 |
+
<div class="fs1 keyboard" aria-hidden="true" data-icon=""></div>
|
666 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe051;" > </a>
|
667 |
+
</div>
|
668 |
+
|
669 |
+
<div class="glyph glyph-demo">
|
670 |
+
<span class="mls"> wp-svg-screen </span>
|
671 |
+
<div class="fs1 screen" aria-hidden="true" data-icon=""></div>
|
672 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe052;" > </a>
|
673 |
+
</div>
|
674 |
+
|
675 |
+
<div class="glyph glyph-demo">
|
676 |
+
<span class="mls"> wp-svg-laptop </span>
|
677 |
+
<div class="fs1 laptop" aria-hidden="true" data-icon=""></div>
|
678 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe053;" > </a>
|
679 |
+
</div>
|
680 |
+
|
681 |
+
<div class="glyph glyph-demo">
|
682 |
+
<span class="mls"> wp-svg-mobile </span>
|
683 |
+
<div class="fs1 mobile" aria-hidden="true" data-icon=""></div>
|
684 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe054;" > </a>
|
685 |
+
</div>
|
686 |
+
|
687 |
+
<div class="glyph glyph-demo">
|
688 |
+
<span class="mls"> wp-svg-mobile-2 </span>
|
689 |
+
<div class="fs1 mobile-2" aria-hidden="true" data-icon=""></div>
|
690 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe055;" > </a>
|
691 |
+
</div>
|
692 |
+
|
693 |
+
<div class="glyph glyph-demo">
|
694 |
+
<span class="mls"> wp-svg-tablet </span>
|
695 |
+
<div class="fs1 tablet" aria-hidden="true" data-icon=""></div>
|
696 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe056;" > </a>
|
697 |
+
</div>
|
698 |
+
|
699 |
+
<div class="glyph glyph-demo">
|
700 |
+
<span class="mls"> wp-svg-tv </span>
|
701 |
+
<div class="fs1 tv" aria-hidden="true" data-icon=""></div>
|
702 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe057;" > </a>
|
703 |
+
</div>
|
704 |
+
|
705 |
+
<div class="glyph glyph-demo">
|
706 |
+
<span class="mls"> wp-svg-cabinet </span>
|
707 |
+
<div class="fs1 cabinet" aria-hidden="true" data-icon=""></div>
|
708 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe058;" > </a>
|
709 |
+
</div>
|
710 |
+
|
711 |
+
<div class="glyph glyph-demo">
|
712 |
+
<span class="mls"> wp-svg-drawer </span>
|
713 |
+
<div class="fs1 drawer" aria-hidden="true" data-icon=""></div>
|
714 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe059;" > </a>
|
715 |
+
</div>
|
716 |
+
|
717 |
+
<div class="glyph glyph-demo">
|
718 |
+
<span class="mls"> wp-svg-drawer-2 </span>
|
719 |
+
<div class="fs1 drawer-2" aria-hidden="true" data-icon=""></div>
|
720 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05a;" > </a>
|
721 |
+
</div>
|
722 |
+
|
723 |
+
<div class="glyph glyph-demo">
|
724 |
+
<span class="mls"> wp-svg-drawer-3 </span>
|
725 |
+
<div class="fs1 drawer-3" aria-hidden="true" data-icon=""></div>
|
726 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05b;" > </a>
|
727 |
+
</div>
|
728 |
+
|
729 |
+
<div class="glyph glyph-demo">
|
730 |
+
<span class="mls"> wp-svg-box-add </span>
|
731 |
+
<div class="fs1 box-add" aria-hidden="true" data-icon=""></div>
|
732 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05c;" > </a>
|
733 |
+
</div>
|
734 |
+
|
735 |
+
<div class="glyph glyph-demo">
|
736 |
+
<span class="mls"> wp-svg-box-remove </span>
|
737 |
+
<div class="fs1 box-remove" aria-hidden="true" data-icon=""></div>
|
738 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05d;" > </a>
|
739 |
+
</div>
|
740 |
+
|
741 |
+
<div class="glyph glyph-demo">
|
742 |
+
<span class="mls"> wp-svg-download </span>
|
743 |
+
<div class="fs1 download" aria-hidden="true" data-icon=""></div>
|
744 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05e;" > </a>
|
745 |
+
</div>
|
746 |
+
|
747 |
+
<div class="glyph glyph-demo">
|
748 |
+
<span class="mls"> wp-svg-upload </span>
|
749 |
+
<div class="fs1 upload" aria-hidden="true" data-icon=""></div>
|
750 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05f;" > </a>
|
751 |
+
</div>
|
752 |
+
|
753 |
+
<div class="glyph glyph-demo">
|
754 |
+
<span class="mls"> wp-svg-disk </span>
|
755 |
+
<div class="fs1 disk" aria-hidden="true" data-icon=""></div>
|
756 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe060;" > </a>
|
757 |
+
</div>
|
758 |
+
|
759 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-storage </span>
|
760 |
+
<div class="fs1 storage" aria-hidden="true" data-icon=""></div>
|
761 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe061;" > </a>
|
762 |
+
</div>
|
763 |
+
|
764 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-undo </span>
|
765 |
+
<div class="fs1 undo" aria-hidden="true" data-icon=""></div>
|
766 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe062;" > </a>
|
767 |
+
</div>
|
768 |
+
|
769 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-redo </span>
|
770 |
+
<div class="fs1 redo" aria-hidden="true" data-icon=""></div>
|
771 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe063;" > </a>
|
772 |
+
</div>
|
773 |
+
|
774 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flip </span>
|
775 |
+
<div class="fs1 flip" aria-hidden="true" data-icon=""></div>
|
776 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe064;" > </a>
|
777 |
+
</div>
|
778 |
+
|
779 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flip-2 </span>
|
780 |
+
<div class="fs1 flip-2" aria-hidden="true" data-icon=""></div>
|
781 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe065;" > </a>
|
782 |
+
</div>
|
783 |
+
|
784 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-undo-2 </span>
|
785 |
+
<div class="fs1 undo-2" aria-hidden="true" data-icon=""></div>
|
786 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe066;" > </a>
|
787 |
+
</div>
|
788 |
+
|
789 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-redo-2 </span>
|
790 |
+
<div class="fs1 redo-2" aria-hidden="true" data-icon=""></div>
|
791 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe067;" > </a>
|
792 |
+
</div>
|
793 |
+
|
794 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward </span>
|
795 |
+
<div class="fs1 forward" aria-hidden="true" data-icon=""></div>
|
796 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe068;" > </a>
|
797 |
+
</div>
|
798 |
+
|
799 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-reply </span>
|
800 |
+
<div class="fs1 reply" aria-hidden="true" data-icon=""></div>
|
801 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe069;" > </a>
|
802 |
+
</div>
|
803 |
+
|
804 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble </span>
|
805 |
+
<div class="fs1 bubble" aria-hidden="true" data-icon=""></div>
|
806 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06a;" > </a>
|
807 |
+
</div>
|
808 |
+
|
809 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles </span>
|
810 |
+
<div class="fs1 bubbles" aria-hidden="true" data-icon=""></div>
|
811 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06b;" > </a>
|
812 |
+
</div>
|
813 |
+
|
814 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-2 </span>
|
815 |
+
<div class="fs1 bubbles-2" aria-hidden="true" data-icon=""></div>
|
816 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06c;" > </a>
|
817 |
+
</div>
|
818 |
+
|
819 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubble-2 </span>
|
820 |
+
<div class="fs1 bubble-2" aria-hidden="true" data-icon=""></div>
|
821 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06d;" > </a>
|
822 |
+
</div>
|
823 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-3 </span>
|
824 |
+
<div class="fs1 bubbles-3" aria-hidden="true" data-icon=""></div>
|
825 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06e;" > </a>
|
826 |
+
</div>
|
827 |
+
|
828 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bubbles-4 </span>
|
829 |
+
<div class="fs1 bubbles-4" aria-hidden="true" data-icon=""></div>
|
830 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06f;" > </a>
|
831 |
+
</div>
|
832 |
+
|
833 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user </span>
|
834 |
+
<div class="fs1 user" aria-hidden="true" data-icon=""></div>
|
835 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe070;" > </a>
|
836 |
+
</div>
|
837 |
+
|
838 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-users </span>
|
839 |
+
<div class="fs1 users" aria-hidden="true" data-icon=""></div>
|
840 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe071;" > </a>
|
841 |
+
</div>
|
842 |
+
|
843 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-2 </span>
|
844 |
+
<div class="fs1 user-2" aria-hidden="true" data-icon=""></div>
|
845 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe072;" > </a>
|
846 |
+
</div>
|
847 |
+
|
848 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-users-2 </span>
|
849 |
+
<div class="fs1 users-2" aria-hidden="true" data-icon=""></div>
|
850 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe073;" > </a>
|
851 |
+
</div>
|
852 |
+
|
853 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-3 </span>
|
854 |
+
<div class="fs1 user-3" aria-hidden="true" data-icon=""></div>
|
855 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe074;" > </a>
|
856 |
+
</div>
|
857 |
+
|
858 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-user-4 </span>
|
859 |
+
<div class="fs1 user-4" aria-hidden="true" data-icon=""></div>
|
860 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe075;" > </a>
|
861 |
+
</div>
|
862 |
+
|
863 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-quotes-left </span>
|
864 |
+
<div class="fs1 quotes-left" aria-hidden="true" data-icon=""></div>
|
865 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe076;" > </a>
|
866 |
+
</div>
|
867 |
+
|
868 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-busy </span>
|
869 |
+
<div class="fs1 busy" aria-hidden="true" data-icon=""></div>
|
870 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe077;" > </a>
|
871 |
+
</div>
|
872 |
+
|
873 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-1 </span>
|
874 |
+
<div class="fs1 spinner-1" aria-hidden="true" data-icon=""></div>
|
875 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe078;" > </a>
|
876 |
+
</div>
|
877 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-2 </span>
|
878 |
+
<div class="fs1 spinner-2" aria-hidden="true" data-icon=""></div>
|
879 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe079;" > </a>
|
880 |
+
</div>
|
881 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-3 </span>
|
882 |
+
<div class="fs1 spinner-3" aria-hidden="true" data-icon=""></div>
|
883 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07a;" > </a>
|
884 |
+
</div>
|
885 |
+
|
886 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-4 </span>
|
887 |
+
<div class="fs1 spinner-4" aria-hidden="true" data-icon=""></div>
|
888 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07b;" > </a>
|
889 |
+
</div>
|
890 |
+
|
891 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-5 </span>
|
892 |
+
<div class="fs1 spinner-5" aria-hidden="true" data-icon=""></div>
|
893 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07c;" > </a>
|
894 |
+
</div>
|
895 |
+
|
896 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spinner-6 </span>
|
897 |
+
<div class="fs1 spinner-6" aria-hidden="true" data-icon=""></div>
|
898 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07d;" > </a>
|
899 |
+
</div>
|
900 |
+
|
901 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-binoculars </span>
|
902 |
+
<div class="fs1 binoculars" aria-hidden="true" data-icon=""></div>
|
903 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07e;" > </a>
|
904 |
+
</div>
|
905 |
+
|
906 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-search-2 </span>
|
907 |
+
<div class="fs1 search-2" aria-hidden="true" data-icon=""></div>
|
908 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07f;" > </a>
|
909 |
+
</div>
|
910 |
+
|
911 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-in </span>
|
912 |
+
<div class="fs1 zoom-in" aria-hidden="true" data-icon=""></div>
|
913 |
+
<a class="glyph-link contract-2" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe080;" > </a>
|
914 |
+
</div>
|
915 |
+
|
916 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-zoom-out </span>
|
917 |
+
<div class="fs1 zoom-out" aria-hidden="true" data-icon=""></div>
|
918 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe081;" > </a>
|
919 |
+
</div>
|
920 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-expand </span>
|
921 |
+
<div class="fs1 expand" aria-hidden="true" data-icon=""></div>
|
922 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe082;" > </a>
|
923 |
+
</div>
|
924 |
+
|
925 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contract </span>
|
926 |
+
<div class="fs1 contract" aria-hidden="true" data-icon=""></div>
|
927 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe083;" > </a>
|
928 |
+
</div>
|
929 |
+
|
930 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-expand-2 </span>
|
931 |
+
<div class="fs1 expand-2" aria-hidden="true" data-icon=""></div>
|
932 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe084;" > </a>
|
933 |
+
</div>
|
934 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contract-2 </span>
|
935 |
+
<div class="fs1 contract-2" aria-hidden="true" data-icon=""></div>
|
936 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe085;" > </a>
|
937 |
+
</div>
|
938 |
+
|
939 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-key </span>
|
940 |
+
<div class="fs1 key" aria-hidden="true" data-icon=""></div>
|
941 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe086;" > </a>
|
942 |
+
</div>
|
943 |
+
|
944 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-key-2 </span>
|
945 |
+
<div class="fs1 key-2" aria-hidden="true" data-icon=""></div>
|
946 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe087;" > </a>
|
947 |
+
</div>
|
948 |
+
|
949 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lock </span>
|
950 |
+
<div class="fs1 lock" aria-hidden="true" data-icon=""></div>
|
951 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe088;" > </a>
|
952 |
+
</div>
|
953 |
+
|
954 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lock-2 </span>
|
955 |
+
<div class="fs1 lock-2" aria-hidden="true" data-icon=""></div>
|
956 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe089;" > </a>
|
957 |
+
</div>
|
958 |
+
|
959 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-unlocked </span>
|
960 |
+
<div class="fs1 unlocked" aria-hidden="true" data-icon=""></div>
|
961 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08a;" > </a>
|
962 |
+
</div>
|
963 |
+
|
964 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wrench </span>
|
965 |
+
<div class="fs1 wrench" aria-hidden="true" data-icon=""></div>
|
966 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08b;" > </a>
|
967 |
+
</div>
|
968 |
+
|
969 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-settings </span>
|
970 |
+
<div class="fs1 settings" aria-hidden="true" data-icon=""></div>
|
971 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08c;" > </a>
|
972 |
+
</div>
|
973 |
+
|
974 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-equalizer </span>
|
975 |
+
<div class="fs1 equalizer" aria-hidden="true" data-icon=""></div>
|
976 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08d;" > </a>
|
977 |
+
</div>
|
978 |
+
|
979 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cog </span>
|
980 |
+
<div class="fs1 cog" aria-hidden="true" data-icon=""></div>
|
981 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08e;" > </a>
|
982 |
+
</div>
|
983 |
+
|
984 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cogs </span>
|
985 |
+
<div class="fs1 cogs" aria-hidden="true" data-icon=""></div>
|
986 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08f;" > </a>
|
987 |
+
</div>
|
988 |
+
|
989 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cog-2 </span>
|
990 |
+
<div class="fs1 cog-2" aria-hidden="true" data-icon=""></div>
|
991 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe090;" > </a>
|
992 |
+
</div>
|
993 |
+
|
994 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer </span>
|
995 |
+
<div class="fs1 hammer" aria-hidden="true" data-icon=""></div>
|
996 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe091;" > </a>
|
997 |
+
</div>
|
998 |
+
|
999 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wand </span>
|
1000 |
+
<div class="fs1 wand" aria-hidden="true" data-icon=""></div>
|
1001 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe092;" > </a>
|
1002 |
+
</div>
|
1003 |
+
|
1004 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-aid </span>
|
1005 |
+
<div class="fs1 aid" aria-hidden="true" data-icon=""></div>
|
1006 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe093;" > </a>
|
1007 |
+
</div>
|
1008 |
+
|
1009 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bug </span>
|
1010 |
+
<div class="fs1 bug" aria-hidden="true" data-icon=""></div>
|
1011 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe094;" > </a>
|
1012 |
+
</div>
|
1013 |
+
|
1014 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pie </span>
|
1015 |
+
<div class="fs1 pie" aria-hidden="true" data-icon=""></div>
|
1016 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe095;" > </a>
|
1017 |
+
</div>
|
1018 |
+
|
1019 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stats </span>
|
1020 |
+
<div class="fs1 stats" aria-hidden="true" data-icon=""></div>
|
1021 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe096;" > </a>
|
1022 |
+
</div>
|
1023 |
+
|
1024 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bars </span>
|
1025 |
+
<div class="fs1 bars" aria-hidden="true" data-icon=""></div>
|
1026 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe097;" > </a>
|
1027 |
+
</div>
|
1028 |
+
|
1029 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bars-2 </span>
|
1030 |
+
<div class="fs1 bars-2" aria-hidden="true" data-icon=""></div>
|
1031 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe098;" > </a>
|
1032 |
+
</div>
|
1033 |
+
|
1034 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-gift </span>
|
1035 |
+
<div class="fs1 gift" aria-hidden="true" data-icon=""></div>
|
1036 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe099;" > </a>
|
1037 |
+
</div>
|
1038 |
+
|
1039 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-trophy </span>
|
1040 |
+
<div class="fs1 trophy" aria-hidden="true" data-icon=""></div>
|
1041 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09a;" > </a>
|
1042 |
+
</div>
|
1043 |
+
|
1044 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-glass </span>
|
1045 |
+
<div class="fs1 glass" aria-hidden="true" data-icon=""></div>
|
1046 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09b;" > </a>
|
1047 |
+
</div>
|
1048 |
+
|
1049 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mug </span>
|
1050 |
+
<div class="fs1 mug" aria-hidden="true" data-icon=""></div>
|
1051 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09c;" > </a>
|
1052 |
+
</div>
|
1053 |
+
|
1054 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-food </span>
|
1055 |
+
<div class="fs1 food" aria-hidden="true" data-icon=""></div>
|
1056 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09d;" > </a>
|
1057 |
+
</div>
|
1058 |
+
|
1059 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-leaf </span>
|
1060 |
+
<div class="fs1 leaf" aria-hidden="true" data-icon=""></div>
|
1061 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09e;" > </a>
|
1062 |
+
</div>
|
1063 |
+
|
1064 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rocket </span>
|
1065 |
+
<div class="fs1 rocket" aria-hidden="true" data-icon=""></div>
|
1066 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09f;" > </a>
|
1067 |
+
</div>
|
1068 |
+
|
1069 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-meter </span>
|
1070 |
+
<div class="fs1 meter" aria-hidden="true" data-icon=""></div>
|
1071 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a0;" > </a>
|
1072 |
+
</div>
|
1073 |
+
|
1074 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-meter2 </span>
|
1075 |
+
<div class="fs1 meter2" aria-hidden="true" data-icon=""></div>
|
1076 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a1;" > </a>
|
1077 |
+
</div>
|
1078 |
+
|
1079 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dashboard </span>
|
1080 |
+
<div class="fs1 dashboard" aria-hidden="true" data-icon=""></div>
|
1081 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a2;" > </a>
|
1082 |
+
</div>
|
1083 |
+
|
1084 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-hammer-2 </span>
|
1085 |
+
<div class="fs1 hammer-2" aria-hidden="true" data-icon=""></div>
|
1086 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a3;" > </a>
|
1087 |
+
</div>
|
1088 |
+
|
1089 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-fire </span>
|
1090 |
+
<div class="fs1 fire" aria-hidden="true" data-icon=""></div>
|
1091 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a4;" > </a>
|
1092 |
+
</div>
|
1093 |
+
|
1094 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lab </span>
|
1095 |
+
<div class="fs1 lab" aria-hidden="true" data-icon=""></div>
|
1096 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a5;" > </a>
|
1097 |
+
</div>
|
1098 |
+
|
1099 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-magnet </span>
|
1100 |
+
<div class="fs1 magnet" aria-hidden="true" data-icon=""></div>
|
1101 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a6;" > </a>
|
1102 |
+
</div>
|
1103 |
+
|
1104 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-remove </span>
|
1105 |
+
<div class="fs1 remove" aria-hidden="true" data-icon=""></div>
|
1106 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a7;" > </a>
|
1107 |
+
</div>
|
1108 |
+
|
1109 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-remove-2 </span>
|
1110 |
+
<div class="fs1 remove-2" aria-hidden="true" data-icon=""></div>
|
1111 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a8;" > </a>
|
1112 |
+
</div>
|
1113 |
+
|
1114 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-briefcase </span>
|
1115 |
+
<div class="fs1 briefcase" aria-hidden="true" data-icon=""></div>
|
1116 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a9;" > </a>
|
1117 |
+
</div>
|
1118 |
+
|
1119 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-airplane </span>
|
1120 |
+
<div class="fs1 airplane" aria-hidden="true" data-icon=""></div>
|
1121 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0aa;" > </a>
|
1122 |
+
</div>
|
1123 |
+
|
1124 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-truck </span>
|
1125 |
+
<div class="fs1 truck" aria-hidden="true" data-icon=""></div>
|
1126 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ab;" > </a>
|
1127 |
+
</div>
|
1128 |
+
|
1129 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-road </span>
|
1130 |
+
<div class="fs1 road" aria-hidden="true" data-icon=""></div>
|
1131 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ac;" > </a>
|
1132 |
+
</div>
|
1133 |
+
|
1134 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-accessibility </span>
|
1135 |
+
<div class="fs1 accessibility" aria-hidden="true" data-icon=""></div>
|
1136 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ad;" > </a>
|
1137 |
+
</div>
|
1138 |
+
|
1139 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-target </span>
|
1140 |
+
<div class="fs1 target" aria-hidden="true" data-icon=""></div>
|
1141 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ae;" > </a>
|
1142 |
+
</div>
|
1143 |
+
|
1144 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shield </span>
|
1145 |
+
<div class="fs1 shield" aria-hidden="true" data-icon=""></div>
|
1146 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0af;" > </a>
|
1147 |
+
</div>
|
1148 |
+
|
1149 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning </span>
|
1150 |
+
<div class="fs1 lightning" aria-hidden="true" data-icon=""></div>
|
1151 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b0;" > </a>
|
1152 |
+
</div>
|
1153 |
+
|
1154 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-switch </span>
|
1155 |
+
<div class="fs1 switch" aria-hidden="true" data-icon=""></div>
|
1156 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b1;" > </a>
|
1157 |
+
</div>
|
1158 |
+
|
1159 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-power-cord </span>
|
1160 |
+
<div class="fs1 power-cord" aria-hidden="true" data-icon=""></div>
|
1161 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b2;" > </a>
|
1162 |
+
</div>
|
1163 |
+
|
1164 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-signup </span>
|
1165 |
+
<div class="fs1 signup" aria-hidden="true" data-icon=""></div>
|
1166 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b3;" > </a>
|
1167 |
+
</div>
|
1168 |
+
|
1169 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-list </span>
|
1170 |
+
<div class="fs1 list" aria-hidden="true" data-icon=""></div>
|
1171 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b4;" > </a>
|
1172 |
+
</div>
|
1173 |
+
|
1174 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-list-2 </span>
|
1175 |
+
<div class="fs1 list-2" aria-hidden="true" data-icon=""></div>
|
1176 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b5;" > </a>
|
1177 |
+
</div>
|
1178 |
+
|
1179 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-numbered-list </span>
|
1180 |
+
<div class="fs1 numbered-list" aria-hidden="true" data-icon=""></div>
|
1181 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b6;" > </a>
|
1182 |
+
</div>
|
1183 |
+
|
1184 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-menu </span>
|
1185 |
+
<div class="fs1 menu" aria-hidden="true" data-icon=""></div>
|
1186 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b7;" > </a>
|
1187 |
+
</div>
|
1188 |
+
|
1189 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-menu-2 </span>
|
1190 |
+
<div class="fs1 menu-2" aria-hidden="true" data-icon=""></div>
|
1191 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b8;" > </a>
|
1192 |
+
</div>
|
1193 |
+
|
1194 |
+
|
1195 |
+
|
1196 |
+
|
1197 |
+
|
1198 |
+
|
1199 |
+
|
1200 |
+
|
1201 |
+
|
1202 |
+
<!-- continue with icon classes for the dropdown here -->
|
1203 |
+
<!-- Continue ---- tree icon -->
|
1204 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tree </span>
|
1205 |
+
<div class="fs1 tree" aria-hidden="true" data-icon=""></div>
|
1206 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b9;" > </a>
|
1207 |
+
</div>
|
1208 |
+
|
1209 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud </span>
|
1210 |
+
<div class="fs1 cloud" aria-hidden="true" data-icon=""></div>
|
1211 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ba;" > </a>
|
1212 |
+
</div>
|
1213 |
+
|
1214 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-download </span>
|
1215 |
+
<div class="fs1 cloud-download" aria-hidden="true" data-icon=""></div>
|
1216 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bb;" > </a>
|
1217 |
+
</div>
|
1218 |
+
|
1219 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-upload </span>
|
1220 |
+
<div class="fs1 cloud-upload" aria-hidden="true" data-icon=""></div>
|
1221 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bc;" > </a>
|
1222 |
+
</div>
|
1223 |
+
|
1224 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-download-2 </span>
|
1225 |
+
<div class="fs1 download-2" aria-hidden="true" data-icon=""></div>
|
1226 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bd;" > </a>
|
1227 |
+
</div>
|
1228 |
+
|
1229 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-2 </span>
|
1230 |
+
<div class="fs1 upload-2" aria-hidden="true" data-icon=""></div>
|
1231 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0be;" > </a>
|
1232 |
+
</div>
|
1233 |
+
|
1234 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-download-3 </span>
|
1235 |
+
<div class="fs1 download-3" aria-hidden="true" data-icon=""></div>
|
1236 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bf;" > </a>
|
1237 |
+
</div>
|
1238 |
+
|
1239 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-upload-3 </span>
|
1240 |
+
<div class="fs1 upload-3" aria-hidden="true" data-icon=""></div>
|
1241 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c0;" > </a>
|
1242 |
+
</div>
|
1243 |
+
|
1244 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-globe </span>
|
1245 |
+
<div class="fs1 globe" aria-hidden="true" data-icon=""></div>
|
1246 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c1;" > </a>
|
1247 |
+
</div>
|
1248 |
+
|
1249 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-earth </span>
|
1250 |
+
<div class="fs1 earth" aria-hidden="true" data-icon=""></div>
|
1251 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c2;" > </a>
|
1252 |
+
</div>
|
1253 |
+
|
1254 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-link </span>
|
1255 |
+
<div class="fs1 link" aria-hidden="true" data-icon=""></div>
|
1256 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c3;" > </a>
|
1257 |
+
</div>
|
1258 |
+
|
1259 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flag </span>
|
1260 |
+
<div class="fs1 flag" aria-hidden="true" data-icon=""></div>
|
1261 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c4;" > </a>
|
1262 |
+
</div>
|
1263 |
+
|
1264 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-attachment </span>
|
1265 |
+
<div class="fs1 attachment" aria-hidden="true" data-icon=""></div>
|
1266 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c5;" > </a>
|
1267 |
+
</div>
|
1268 |
+
|
1269 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye </span>
|
1270 |
+
<div class="fs1 eye" aria-hidden="true" data-icon=""></div>
|
1271 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c6;" > </a>
|
1272 |
+
</div>
|
1273 |
+
|
1274 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-blocked </span>
|
1275 |
+
<div class="fs1 eye-blocked" aria-hidden="true" data-icon=""></div>
|
1276 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c7;" > </a>
|
1277 |
+
</div>
|
1278 |
+
|
1279 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eye-2 </span>
|
1280 |
+
<div class="fs1 eye-2" aria-hidden="true" data-icon=""></div>
|
1281 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c8;" > </a>
|
1282 |
+
</div>
|
1283 |
+
|
1284 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmark </span>
|
1285 |
+
<div class="fs1 bookmark" aria-hidden="true" data-icon=""></div>
|
1286 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c9;" > </a>
|
1287 |
+
</div>
|
1288 |
+
|
1289 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-bookmarks </span>
|
1290 |
+
<div class="fs1 bookmarks" aria-hidden="true" data-icon=""></div>
|
1291 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ca;" > </a>
|
1292 |
+
</div>
|
1293 |
+
|
1294 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-medium </span>
|
1295 |
+
<div class="fs1 brightness-medium" aria-hidden="true" data-icon=""></div>
|
1296 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cb;" > </a>
|
1297 |
+
</div>
|
1298 |
+
|
1299 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-brightness-contrast </span>
|
1300 |
+
<div class="fs1 brightness-contrast" aria-hidden="true" data-icon=""></div>
|
1301 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cc;" > </a>
|
1302 |
+
</div>
|
1303 |
+
|
1304 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-contrast </span>
|
1305 |
+
<div class="fs1 contrast" aria-hidden="true" data-icon=""></div>
|
1306 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cd;" > </a>
|
1307 |
+
</div>
|
1308 |
+
|
1309 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star </span>
|
1310 |
+
<div class="fs1 star" aria-hidden="true" data-icon=""></div>
|
1311 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ce;" > </a>
|
1312 |
+
</div>
|
1313 |
+
|
1314 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star-2 </span>
|
1315 |
+
<div class="fs1 star-2" aria-hidden="true" data-icon=""></div>
|
1316 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cf;" > </a>
|
1317 |
+
</div>
|
1318 |
+
|
1319 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-star-3 </span>
|
1320 |
+
<div class="fs1 star-3" aria-hidden="true" data-icon=""></div>
|
1321 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d0;" > </a>
|
1322 |
+
</div>
|
1323 |
+
|
1324 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart </span>
|
1325 |
+
<div class="fs1 heart" aria-hidden="true" data-icon=""></div>
|
1326 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d1;" > </a>
|
1327 |
+
</div>
|
1328 |
+
|
1329 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-2 </span>
|
1330 |
+
<div class="fs1 heart-2" aria-hidden="true" data-icon=""></div>
|
1331 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d2;" > </a>
|
1332 |
+
</div>
|
1333 |
+
|
1334 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-heart-broken </span>
|
1335 |
+
<div class="fs1 heart-broken" aria-hidden="true" data-icon=""></div>
|
1336 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d3;" > </a>
|
1337 |
+
</div>
|
1338 |
+
|
1339 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up </span>
|
1340 |
+
<div class="fs1 thumbs-up" aria-hidden="true" data-icon=""></div>
|
1341 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d4;" > </a>
|
1342 |
+
</div>
|
1343 |
+
|
1344 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thumbs-up-2 </span>
|
1345 |
+
<div class="fs1 thumpbs-up-2" aria-hidden="true" data-icon=""></div>
|
1346 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d5;" > </a>
|
1347 |
+
</div>
|
1348 |
+
|
1349 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-happy </span>
|
1350 |
+
<div class="fs1 happy" aria-hidden="true" data-icon=""></div>
|
1351 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d6;" > </a>
|
1352 |
+
</div>
|
1353 |
+
|
1354 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-happy-2 </span>
|
1355 |
+
<div class="fs1 happy-2" aria-hidden="true" data-icon=""></div>
|
1356 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d7;" > </a>
|
1357 |
+
</div>
|
1358 |
+
|
1359 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley </span>
|
1360 |
+
<div class="fs1 smiley" aria-hidden="true" data-icon=""></div>
|
1361 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d8;" > </a>
|
1362 |
+
</div>
|
1363 |
+
|
1364 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-smiley-2 </span>
|
1365 |
+
<div class="fs1 smiley-2" aria-hidden="true" data-icon=""></div>
|
1366 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d9;" > </a>
|
1367 |
+
</div>
|
1368 |
+
|
1369 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue </span>
|
1370 |
+
<div class="fs1 tongue" aria-hidden="true" data-icon=""></div>
|
1371 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0da;" > </a>
|
1372 |
+
</div>
|
1373 |
+
|
1374 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tongue-2 </span>
|
1375 |
+
<div class="fs1 tongue-2" aria-hidden="true" data-icon=""></div>
|
1376 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0db;" > </a>
|
1377 |
+
</div>
|
1378 |
+
|
1379 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sad </span>
|
1380 |
+
<div class="fs1 sad" aria-hidden="true" data-icon=""></div>
|
1381 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dc;" > </a>
|
1382 |
+
</div>
|
1383 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sad-2 </span>
|
1384 |
+
<div class="fs1 sad-2" aria-hidden="true" data-icon=""></div>
|
1385 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dd;" > </a>
|
1386 |
+
</div>
|
1387 |
+
|
1388 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wink </span>
|
1389 |
+
<div class="fs1 wink" aria-hidden="true" data-icon=""></div>
|
1390 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0de;" > </a>
|
1391 |
+
</div>
|
1392 |
+
|
1393 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wink-2 </span>
|
1394 |
+
<div class="fs1 wink-2" aria-hidden="true" data-icon=""></div>
|
1395 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0df;" > </a>
|
1396 |
+
</div>
|
1397 |
+
|
1398 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-grin </span>
|
1399 |
+
<div class="fs1 grin" aria-hidden="true" data-icon=""></div>
|
1400 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e0;" > </a>
|
1401 |
+
</div>
|
1402 |
+
|
1403 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-grin-2 </span>
|
1404 |
+
<div class="fs1 grin-2" aria-hidden="true" data-icon=""></div>
|
1405 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e1;" > </a>
|
1406 |
+
</div>
|
1407 |
+
|
1408 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cool </span>
|
1409 |
+
<div class="fs1 cool" aria-hidden="true" data-icon=""></div>
|
1410 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e2;" > </a>
|
1411 |
+
</div>
|
1412 |
+
|
1413 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cool-2 </span>
|
1414 |
+
<div class="fs1 cool-2" aria-hidden="true" data-icon=""></div>
|
1415 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e3;" > </a>
|
1416 |
+
</div>
|
1417 |
+
|
1418 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-angry </span>
|
1419 |
+
<div class="fs1 angry" aria-hidden="true" data-icon=""></div>
|
1420 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e4;" > </a>
|
1421 |
+
</div>
|
1422 |
+
|
1423 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-angry-2 </span>
|
1424 |
+
<div class="fs1 angry-2" aria-hidden="true" data-icon=""></div>
|
1425 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e5;" > </a>
|
1426 |
+
</div>
|
1427 |
+
|
1428 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-evil </span>
|
1429 |
+
<div class="fs1 evil" aria-hidden="true" data-icon=""></div>
|
1430 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e6;" > </a>
|
1431 |
+
</div>
|
1432 |
+
|
1433 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-evil-2 </span>
|
1434 |
+
<div class="fs1 evil-2" aria-hidden="true" data-icon=""></div>
|
1435 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e7;" > </a>
|
1436 |
+
</div>
|
1437 |
+
|
1438 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked </span>
|
1439 |
+
<div class="fs1 shocked" aria-hidden="true" data-icon=""></div>
|
1440 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e8;" > </a>
|
1441 |
+
</div>
|
1442 |
+
|
1443 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shocked-2 </span>
|
1444 |
+
<div class="fs1 shocked-2" aria-hidden="true" data-icon=""></div>
|
1445 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e9;" > </a>
|
1446 |
+
</div>
|
1447 |
+
|
1448 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-confused </span>
|
1449 |
+
<div class="fs1 confused" aria-hidden="true" data-icon=""></div>
|
1450 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ea;" > </a>
|
1451 |
+
</div>
|
1452 |
+
|
1453 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-confused-2 </span>
|
1454 |
+
<div class="fs1 confused-2" aria-hidden="true" data-icon=""></div>
|
1455 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0eb;" > </a>
|
1456 |
+
</div>
|
1457 |
+
|
1458 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral </span>
|
1459 |
+
<div class="fs1 neutral" aria-hidden="true" data-icon=""></div>
|
1460 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ec;" > </a>
|
1461 |
+
</div>
|
1462 |
+
|
1463 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-neutral-2 </span>
|
1464 |
+
<div class="fs1 neutral-2" aria-hidden="true" data-icon=""></div>
|
1465 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ed;" > </a>
|
1466 |
+
</div>
|
1467 |
+
|
1468 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering </span>
|
1469 |
+
<div class="fs1 wondering" aria-hidden="true" data-icon=""></div>
|
1470 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ee;" > </a>
|
1471 |
+
</div>
|
1472 |
+
|
1473 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wondering-2 </span>
|
1474 |
+
<div class="fs1 wondering-2" aria-hidden="true" data-icon=""></div>
|
1475 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ef;" > </a>
|
1476 |
+
</div>
|
1477 |
+
|
1478 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-up </span>
|
1479 |
+
<div class="fs1 point-up" aria-hidden="true" data-icon=""></div>
|
1480 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f0;" > </a>
|
1481 |
+
</div>
|
1482 |
+
|
1483 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-right </span>
|
1484 |
+
<div class="fs1 point-right" aria-hidden="true" data-icon=""></div>
|
1485 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f1;" > </a>
|
1486 |
+
</div>
|
1487 |
+
|
1488 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-down </span>
|
1489 |
+
<div class="fs1 point-down" aria-hidden="true" data-icon=""></div>
|
1490 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f2;" > </a>
|
1491 |
+
</div>
|
1492 |
+
|
1493 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-point-left </span>
|
1494 |
+
<div class="fs1 point-left" aria-hidden="true" data-icon=""></div>
|
1495 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f3;" > </a>
|
1496 |
+
</div>
|
1497 |
+
|
1498 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-warning </span>
|
1499 |
+
<div class="fs1 warning" aria-hidden="true" data-icon=""></div>
|
1500 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f4;" > </a>
|
1501 |
+
</div>
|
1502 |
+
|
1503 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-notification </span>
|
1504 |
+
<div class="fs1 notification" aria-hidden="true" data-icon=""></div>
|
1505 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f5;" > </a>
|
1506 |
+
</div>
|
1507 |
+
|
1508 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-question </span>
|
1509 |
+
<div class="fs1 question" aria-hidden="true" data-icon=""></div>
|
1510 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f6;" > </a>
|
1511 |
+
</div>
|
1512 |
+
|
1513 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-info </span>
|
1514 |
+
<div class="fs1 info" aria-hidden="true" data-icon=""></div>
|
1515 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f7;" > </a>
|
1516 |
+
</div>
|
1517 |
+
|
1518 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-info-2 </span>
|
1519 |
+
<div class="fs1 info-2" aria-hidden="true" data-icon=""></div>
|
1520 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f8;" > </a>
|
1521 |
+
</div>
|
1522 |
+
|
1523 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blocked </span>
|
1524 |
+
<div class="fs1 blocked" aria-hidden="true" data-icon=""></div>
|
1525 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f9;" > </a>
|
1526 |
+
</div>
|
1527 |
+
|
1528 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cancel-circle </span>
|
1529 |
+
<div class="fs1 cancel-circle" aria-hidden="true" data-icon=""></div>
|
1530 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fa;" > </a>
|
1531 |
+
</div>
|
1532 |
+
|
1533 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-circle </span>
|
1534 |
+
<div class="fs1 checkmark-circle" aria-hidden="true" data-icon=""></div>
|
1535 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fb;" > </a>
|
1536 |
+
</div>
|
1537 |
+
|
1538 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spam </span>
|
1539 |
+
<div class="fs1 spam" aria-hidden="true" data-icon=""></div>
|
1540 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fc;" > </a>
|
1541 |
+
</div>
|
1542 |
+
|
1543 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-close </span>
|
1544 |
+
<div class="fs1 close" aria-hidden="true" data-icon=""></div>
|
1545 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fd;" > </a>
|
1546 |
+
</div>
|
1547 |
+
|
1548 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark </span>
|
1549 |
+
<div class="fs1 checkmark" aria-hidden="true" data-icon=""></div>
|
1550 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fe;" > </a>
|
1551 |
+
</div>
|
1552 |
+
|
1553 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkmark-2 </span>
|
1554 |
+
<div class="fs1 checkmark-2" aria-hidden="true" data-icon=""></div>
|
1555 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ff;" > </a>
|
1556 |
+
</div>
|
1557 |
+
|
1558 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-spell-check </span>
|
1559 |
+
<div class="fs1 spell-check" aria-hidden="true" data-icon=""></div>
|
1560 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe100;" > </a>
|
1561 |
+
</div>
|
1562 |
+
|
1563 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-minus </span>
|
1564 |
+
<div class="fs1 minus" aria-hidden="true" data-icon=""></div>
|
1565 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe101;" > </a>
|
1566 |
+
</div>
|
1567 |
+
|
1568 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-plus </span>
|
1569 |
+
<div class="fs1 plus" aria-hidden="true" data-icon=""></div>
|
1570 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe102;" > </a>
|
1571 |
+
</div>
|
1572 |
+
|
1573 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-enter </span>
|
1574 |
+
<div class="fs1 enter" aria-hidden="true" data-icon=""></div>
|
1575 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe103;" > </a>
|
1576 |
+
</div>
|
1577 |
+
|
1578 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-exit </span>
|
1579 |
+
<div class="fs1 exit" aria-hidden="true" data-icon=""></div>
|
1580 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe104;" > </a>
|
1581 |
+
</div>
|
1582 |
+
|
1583 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-play-2 </span>
|
1584 |
+
<div class="fs1 play-2" aria-hidden="true" data-icon=""></div>
|
1585 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe105;" > </a>
|
1586 |
+
</div>
|
1587 |
+
|
1588 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pause </span>
|
1589 |
+
<div class="fs1 pause" aria-hidden="true" data-icon=""></div>
|
1590 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe106;" > </a>
|
1591 |
+
</div>
|
1592 |
+
|
1593 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stop </span>
|
1594 |
+
<div class="fs1 stop" aria-hidden="true" data-icon=""></div>
|
1595 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe107;" > </a>
|
1596 |
+
</div>
|
1597 |
+
|
1598 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-backward </span>
|
1599 |
+
<div class="fs1 backward" aria-hidden="true" data-icon=""></div>
|
1600 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe108;" > </a>
|
1601 |
+
</div>
|
1602 |
+
|
1603 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-2 </span>
|
1604 |
+
<div class="fs1 forward-2" aria-hidden="true" data-icon=""></div>
|
1605 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe109;" > </a>
|
1606 |
+
</div>
|
1607 |
+
|
1608 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-play-3 </span>
|
1609 |
+
<div class="fs1 play-3" aria-hidden="true" data-icon=""></div>
|
1610 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10a;" > </a>
|
1611 |
+
</div>
|
1612 |
+
|
1613 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pause-2 </span>
|
1614 |
+
<div class="fs1 pause-2" aria-hidden="true" data-icon=""></div>
|
1615 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10b;" > </a>
|
1616 |
+
</div>
|
1617 |
+
|
1618 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stop-2 </span>
|
1619 |
+
<div class="fs1 stop-2" aria-hidden="true" data-icon=""></div>
|
1620 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10c;" > </a>
|
1621 |
+
</div>
|
1622 |
+
|
1623 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-backward-2 </span>
|
1624 |
+
<div class="fs1 backward-2" aria-hidden="true" data-icon=""></div>
|
1625 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10d;" > </a>
|
1626 |
+
</div>
|
1627 |
+
|
1628 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forward-3 </span>
|
1629 |
+
<div class="fs1 forward-3" aria-hidden="true" data-icon=""></div>
|
1630 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10e;" > </a>
|
1631 |
+
</div>
|
1632 |
+
|
1633 |
+
|
1634 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-first </span>
|
1635 |
+
<div class="fs1 first" aria-hidden="true" data-icon=""></div>
|
1636 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10f;" > </a>
|
1637 |
+
</div>
|
1638 |
+
|
1639 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-last </span>
|
1640 |
+
<div class="fs1 last" aria-hidden="true" data-icon=""></div>
|
1641 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe110;" > </a>
|
1642 |
+
</div>
|
1643 |
+
|
1644 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-previous </span>
|
1645 |
+
<div class="fs1 previous" aria-hidden="true" data-icon=""></div>
|
1646 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe111;" > </a>
|
1647 |
+
</div>
|
1648 |
+
|
1649 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-next </span>
|
1650 |
+
<div class="fs1 next" aria-hidden="true" data-icon=""></div>
|
1651 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe112;" > </a>
|
1652 |
+
</div>
|
1653 |
+
|
1654 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-eject </span>
|
1655 |
+
<div class="fs1 eject" aria-hidden="true" data-icon=""></div>
|
1656 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe113;" > </a>
|
1657 |
+
</div>
|
1658 |
+
|
1659 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-high </span>
|
1660 |
+
<div class="fs1 volume-high" aria-hidden="true" data-icon=""></div>
|
1661 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe114;" > </a>
|
1662 |
+
</div>
|
1663 |
+
|
1664 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-medium </span>
|
1665 |
+
<div class="fs1 volume-medium" aria-hidden="true" data-icon=""></div>
|
1666 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe115;" > </a>
|
1667 |
+
</div>
|
1668 |
+
|
1669 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-low </span>
|
1670 |
+
<div class="fs1 volume-low" aria-hidden="true" data-icon=""></div>
|
1671 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe116;" > </a>
|
1672 |
+
</div>
|
1673 |
+
|
1674 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute </span>
|
1675 |
+
<div class="fs1 volume-mute" aria-hidden="true" data-icon=""></div>
|
1676 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe117;" > </a>
|
1677 |
+
</div>
|
1678 |
+
|
1679 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-mute-2 </span>
|
1680 |
+
<div class="fs1 volume-mute-2" aria-hidden="true" data-icon=""></div>
|
1681 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe118;" > </a>
|
1682 |
+
</div>
|
1683 |
+
|
1684 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-increase </span>
|
1685 |
+
<div class="fs1 volume-increase" aria-hidden="true" data-icon=""></div>
|
1686 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe119;" > </a>
|
1687 |
+
</div>
|
1688 |
+
|
1689 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-volume-decrease </span>
|
1690 |
+
<div class="fs1 volume-decrease" aria-hidden="true" data-icon=""></div>
|
1691 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11a;" > </a>
|
1692 |
+
</div>
|
1693 |
+
|
1694 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop </span>
|
1695 |
+
<div class="fs1 loop" aria-hidden="true" data-icon=""></div>
|
1696 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11b;" > </a>
|
1697 |
+
</div>
|
1698 |
+
|
1699 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-2 </span>
|
1700 |
+
<div class="fs1 loop-2" aria-hidden="true" data-icon=""></div>
|
1701 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11c;" > </a>
|
1702 |
+
</div>
|
1703 |
+
|
1704 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-loop-3 </span>
|
1705 |
+
<div class="fs1 loop-3" aria-hidden="true" data-icon=""></div>
|
1706 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11d;" > </a>
|
1707 |
+
</div>
|
1708 |
+
|
1709 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-shuffle </span>
|
1710 |
+
<div class="fs1 shuffle" aria-hidden="true" data-icon=""></div>
|
1711 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11e;" > </a>
|
1712 |
+
</div>
|
1713 |
+
|
1714 |
+
|
1715 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left </span>
|
1716 |
+
<div class="fs1 arrow-up-left" aria-hidden="true" data-icon=""></div>
|
1717 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11f;" > </a>
|
1718 |
+
</div>
|
1719 |
+
|
1720 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up </span>
|
1721 |
+
<div class="fs1 arrow-up" aria-hidden="true" data-icon=""></div>
|
1722 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe120;" > </a>
|
1723 |
+
</div>
|
1724 |
+
|
1725 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right </span>
|
1726 |
+
<div class="fs1 arrow-up-right" aria-hidden="true" data-icon=""></div>
|
1727 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe121;" > </a>
|
1728 |
+
</div>
|
1729 |
+
|
1730 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right </span>
|
1731 |
+
<div class="fs1 arrow-right" aria-hidden="true" data-icon=""></div>
|
1732 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe122;" > </a>
|
1733 |
+
</div>
|
1734 |
+
|
1735 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right </span>
|
1736 |
+
<div class="fs1 arrow-down-right" aria-hidden="true" data-icon=""></div>
|
1737 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe123;" > </a>
|
1738 |
+
</div>
|
1739 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down </span>
|
1740 |
+
<div class="fs1 arrow-down" aria-hidden="true" data-icon=""></div>
|
1741 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe124;" > </a>
|
1742 |
+
</div>
|
1743 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left </span>
|
1744 |
+
<div class="fs1 arrow-down-left" aria-hidden="true" data-icon=""></div>
|
1745 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe125;" > </a>
|
1746 |
+
</div>
|
1747 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left </span>
|
1748 |
+
<div class="fs1 arrow-left" aria-hidden="true" data-icon=""></div>
|
1749 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe126;" > </a>
|
1750 |
+
</div>
|
1751 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-2 </span>
|
1752 |
+
<div class="fs1 arrow-up-left-2" aria-hidden="true" data-icon=""></div>
|
1753 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe127;" > </a>
|
1754 |
+
</div>
|
1755 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-2 </span>
|
1756 |
+
<div class="fs1 arrow-up-2" aria-hidden="true" data-icon=""></div>
|
1757 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe128;" > </a>
|
1758 |
+
</div>
|
1759 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-2 </span>
|
1760 |
+
<div class="fs1 arrow-up-right-2" aria-hidden="true" data-icon=""></div>
|
1761 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe129;" > </a>
|
1762 |
+
</div>
|
1763 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-2 </span>
|
1764 |
+
<div class="fs1 arrow-right-2" aria-hidden="true" data-icon=""></div>
|
1765 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12a;" > </a>
|
1766 |
+
</div>
|
1767 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-2 </span>
|
1768 |
+
<div class="fs1 arrow-down-right-2" aria-hidden="true" data-icon=""></div>
|
1769 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12b;" > </a>
|
1770 |
+
</div>
|
1771 |
+
|
1772 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-2 </span>
|
1773 |
+
<div class="fs1 arrow-down-2" aria-hidden="true" data-icon=""></div>
|
1774 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12c;" > </a>
|
1775 |
+
</div>
|
1776 |
+
|
1777 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-2 </span>
|
1778 |
+
<div class="fs1 arrow-down-left-2" aria-hidden="true" data-icon=""></div>
|
1779 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12d;" > </a>
|
1780 |
+
</div>
|
1781 |
+
|
1782 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-2 </span>
|
1783 |
+
<div class="fs1 arrow-left-2" aria-hidden="true" data-icon=""></div>
|
1784 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12e;" > </a>
|
1785 |
+
</div>
|
1786 |
+
|
1787 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-left-3 </span>
|
1788 |
+
<div class="fs1 arrow-up-left-3" aria-hidden="true" data-icon=""></div>
|
1789 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12f;" > </a>
|
1790 |
+
</div>
|
1791 |
+
|
1792 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-3 </span>
|
1793 |
+
<div class="fs1 arrow-up-3" aria-hidden="true" data-icon=""></div>
|
1794 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe130;" > </a>
|
1795 |
+
</div>
|
1796 |
+
|
1797 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-up-right-3 </span>
|
1798 |
+
<div class="fs1 arrow-up-right-3" aria-hidden="true" data-icon=""></div>
|
1799 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe131;" > </a>
|
1800 |
+
</div>
|
1801 |
+
|
1802 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-right-3 </span>
|
1803 |
+
<div class="fs1 arrow-right-3" aria-hidden="true" data-icon=""></div>
|
1804 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe132;" > </a>
|
1805 |
+
</div>
|
1806 |
+
|
1807 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-right-3 </span>
|
1808 |
+
<div class="fs1 arrow-down-right-3" aria-hidden="true" data-icon=""></div>
|
1809 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe133;" > </a>
|
1810 |
+
</div>
|
1811 |
+
|
1812 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-3 </span>
|
1813 |
+
<div class="fs1 arrow-down-3" aria-hidden="true" data-icon=""></div>
|
1814 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe134;" > </a>
|
1815 |
+
</div>
|
1816 |
+
|
1817 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-down-left-3 </span>
|
1818 |
+
<div class="fs1 arrow-down-left-3" aria-hidden="true" data-icon=""></div>
|
1819 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe135;" > </a>
|
1820 |
+
</div>
|
1821 |
+
|
1822 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-arrow-left-3 </span>
|
1823 |
+
<div class="fs1 arrow-left-3" aria-hidden="true" data-icon=""></div>
|
1824 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe136;" > </a>
|
1825 |
+
</div>
|
1826 |
+
|
1827 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tab </span>
|
1828 |
+
<div class="fs1 tab" aria-hidden="true" data-icon=""></div>
|
1829 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe137;" > </a>
|
1830 |
+
</div>
|
1831 |
+
|
1832 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-checked </span>
|
1833 |
+
<div class="fs1 checkbox-checked" aria-hidden="true" data-icon=""></div>
|
1834 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe138;" > </a>
|
1835 |
+
</div>
|
1836 |
+
|
1837 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-unchecked </span>
|
1838 |
+
<div class="fs1 checkbox-unchecked" aria-hidden="true" data-icon=""></div>
|
1839 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe139;" > </a>
|
1840 |
+
</div>
|
1841 |
+
|
1842 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-checkbox-partial </span>
|
1843 |
+
<div class="fs1 checkbox-partial" aria-hidden="true" data-icon=""></div>
|
1844 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13a;" > </a>
|
1845 |
+
</div>
|
1846 |
+
|
1847 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-checked </span>
|
1848 |
+
<div class="fs1 radio-checked" aria-hidden="true" data-icon=""></div>
|
1849 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13b;" > </a>
|
1850 |
+
</div>
|
1851 |
+
|
1852 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-radio-unchecked </span>
|
1853 |
+
<div class="fs1 radio-unchecked" aria-hidden="true" data-icon=""></div>
|
1854 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13c;" > </a>
|
1855 |
+
</div>
|
1856 |
+
|
1857 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-crop </span>
|
1858 |
+
<div class="fs1 crop" aria-hidden="true" data-icon=""></div>
|
1859 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13d;" > </a>
|
1860 |
+
</div>
|
1861 |
+
|
1862 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-scissors </span>
|
1863 |
+
<div class="fs1 scissors" aria-hidden="true" data-icon=""></div>
|
1864 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13e;" > </a>
|
1865 |
+
</div>
|
1866 |
+
|
1867 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-italic </span>
|
1868 |
+
<div class="fs1 italic" aria-hidden="true" data-icon=""></div>
|
1869 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe146;" > </a>
|
1870 |
+
</div>
|
1871 |
+
|
1872 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-strikethrough </span>
|
1873 |
+
<div class="fs1 strikethrough" aria-hidden="true" data-icon=""></div>
|
1874 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe147;" > </a>
|
1875 |
+
</div>
|
1876 |
+
|
1877 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-omega </span>
|
1878 |
+
<div class="fs1 omega" aria-hidden="true" data-icon=""></div>
|
1879 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe148;" > </a>
|
1880 |
+
</div>
|
1881 |
+
|
1882 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sigma </span>
|
1883 |
+
<div class="fs1 sigma" aria-hidden="true" data-icon=""></div>
|
1884 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe149;" > </a>
|
1885 |
+
</div>
|
1886 |
+
|
1887 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-table </span>
|
1888 |
+
<div class="fs1 table" aria-hidden="true" data-icon=""></div>
|
1889 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14a;" > </a>
|
1890 |
+
</div>
|
1891 |
+
|
1892 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-table-2 </span>
|
1893 |
+
<div class="fs1 table-2" aria-hidden="true" data-icon=""></div>
|
1894 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14b;" > </a>
|
1895 |
+
</div>
|
1896 |
+
|
1897 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-insert-template </span>
|
1898 |
+
<div class="fs1 insert-template" aria-hidden="true" data-icon=""></div>
|
1899 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14c;" > </a>
|
1900 |
+
</div>
|
1901 |
+
|
1902 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pilcrow </span>
|
1903 |
+
<div class="fs1 pilcrow" aria-hidden="true" data-icon=""></div>
|
1904 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14d;" > </a>
|
1905 |
+
</div>
|
1906 |
+
|
1907 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-left-to-right </span>
|
1908 |
+
<div class="fs1 left-to-right" aria-hidden="true" data-icon=""></div>
|
1909 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14e;" > </a>
|
1910 |
+
</div>
|
1911 |
+
|
1912 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-right-to-left </span>
|
1913 |
+
<div class="fs1 right-to-left" aria-hidden="true" data-icon=""></div>
|
1914 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14f;" > </a>
|
1915 |
+
</div>
|
1916 |
+
|
1917 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left </span>
|
1918 |
+
<div class="fs1 paragraph-left" aria-hidden="true" data-icon=""></div>
|
1919 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe150;" > </a>
|
1920 |
+
</div>
|
1921 |
+
|
1922 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center </span>
|
1923 |
+
<div class="fs1 paragraph-center" aria-hidden="true" data-icon=""></div>
|
1924 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe151;" > </a>
|
1925 |
+
</div>
|
1926 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right </span>
|
1927 |
+
<div class="fs1 paragraph-right" aria-hidden="true" data-icon=""></div>
|
1928 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe152;" > </a>
|
1929 |
+
</div>
|
1930 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify </span>
|
1931 |
+
<div class="fs1 paragraph-justify" aria-hidden="true" data-icon=""></div>
|
1932 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe153;" > </a>
|
1933 |
+
</div>
|
1934 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-left-2 </span>
|
1935 |
+
<div class="fs1 paragraph-left-2" aria-hidden="true" data-icon=""></div>
|
1936 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe154;" > </a>
|
1937 |
+
</div>
|
1938 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-center-2 </span>
|
1939 |
+
<div class="fs1 paragraph-center-2" aria-hidden="true" data-icon=""></div>
|
1940 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe155;" > </a>
|
1941 |
+
</div>
|
1942 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-right-2 </span>
|
1943 |
+
<div class="fs1 paragraph-right-2" aria-hidden="true" data-icon=""></div>
|
1944 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe156;" > </a>
|
1945 |
+
</div>
|
1946 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paragraph-justify-2 </span>
|
1947 |
+
<div class="fs1 paragraph-justify-2" aria-hidden="true" data-icon=""></div>
|
1948 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe157;" > </a>
|
1949 |
+
</div>
|
1950 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-increase </span>
|
1951 |
+
<div class="fs1 indent-increase" aria-hidden="true" data-icon=""></div>
|
1952 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe158;" > </a>
|
1953 |
+
</div>
|
1954 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-indent-decrease </span>
|
1955 |
+
<div class="fs1 indent-decrease" aria-hidden="true" data-icon=""></div>
|
1956 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe159;" > </a>
|
1957 |
+
</div>
|
1958 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-new-tab </span>
|
1959 |
+
<div class="fs1 new-tab" aria-hidden="true" data-icon=""></div>
|
1960 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15a;" > </a>
|
1961 |
+
</div>
|
1962 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-embed </span>
|
1963 |
+
<div class="fs1 embed" aria-hidden="true" data-icon=""></div>
|
1964 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15b;" > </a>
|
1965 |
+
</div>
|
1966 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-code </span>
|
1967 |
+
<div class="fs1 code" aria-hidden="true" data-icon=""></div>
|
1968 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15c;" > </a>
|
1969 |
+
</div>
|
1970 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-console </span>
|
1971 |
+
<div class="fs1 console" aria-hidden="true" data-icon=""></div>
|
1972 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15d;" > </a>
|
1973 |
+
</div>
|
1974 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-share </span>
|
1975 |
+
<div class="fs1 share" aria-hidden="true" data-icon=""></div>
|
1976 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15e;" > </a>
|
1977 |
+
</div>
|
1978 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail </span>
|
1979 |
+
<div class="fs1 mail" aria-hidden="true" data-icon=""></div>
|
1980 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15f;" > </a>
|
1981 |
+
</div>
|
1982 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-2 </span>
|
1983 |
+
<div class="fs1 mail-2" aria-hidden="true" data-icon=""></div>
|
1984 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe160;" > </a>
|
1985 |
+
</div>
|
1986 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-3 </span>
|
1987 |
+
<div class="fs1 mail-3" aria-hidden="true" data-icon=""></div>
|
1988 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe161;" > </a>
|
1989 |
+
</div>
|
1990 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-mail-4 </span>
|
1991 |
+
<div class="fs1 mail-4" aria-hidden="true" data-icon=""></div>
|
1992 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe162;" > </a>
|
1993 |
+
</div>
|
1994 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google </span>
|
1995 |
+
<div class="fs1 google" aria-hidden="true" data-icon=""></div>
|
1996 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe163;" > </a>
|
1997 |
+
</div>
|
1998 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus </span>
|
1999 |
+
<div class="fs1 google-plus" aria-hidden="true" data-icon=""></div>
|
2000 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe164;" > </a>
|
2001 |
+
</div>
|
2002 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-2 </span>
|
2003 |
+
<div class="fs1 google-plus-2" aria-hidden="true" data-icon=""></div>
|
2004 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe165;" > </a>
|
2005 |
+
</div>
|
2006 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-3 </span>
|
2007 |
+
<div class="fs1 google-plus-3" aria-hidden="true" data-icon=""></div>
|
2008 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe166;" > </a>
|
2009 |
+
</div>
|
2010 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-plus-4 </span>
|
2011 |
+
<div class="fs1 google-plus-4" aria-hidden="true" data-icon=""></div>
|
2012 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe167;" > </a>
|
2013 |
+
</div>
|
2014 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-google-drive </span>
|
2015 |
+
<div class="fs1 google-drive" aria-hidden="true" data-icon=""></div>
|
2016 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe168;" > </a>
|
2017 |
+
</div>
|
2018 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook </span>
|
2019 |
+
<div class="fs1 facebook" aria-hidden="true" data-icon=""></div>
|
2020 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe169;" > </a>
|
2021 |
+
</div>
|
2022 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-2 </span>
|
2023 |
+
<div class="fs1 facebook-2" aria-hidden="true" data-icon=""></div>
|
2024 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16a;" > </a>
|
2025 |
+
</div>
|
2026 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-facebook-3 </span>
|
2027 |
+
<div class="fs1 facebook-3" aria-hidden="true" data-icon=""></div>
|
2028 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16b;" > </a>
|
2029 |
+
</div>
|
2030 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-instagram </span>
|
2031 |
+
<div class="fs1 instagram" aria-hidden="true" data-icon=""></div>
|
2032 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16c;" > </a>
|
2033 |
+
</div>
|
2034 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter </span>
|
2035 |
+
<div class="fs1 twitter" aria-hidden="true" data-icon=""></div>
|
2036 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16d;" > </a>
|
2037 |
+
</div>
|
2038 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-2 </span>
|
2039 |
+
<div class="fs1 twitter-2" aria-hidden="true" data-icon=""></div>
|
2040 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16e;" > </a>
|
2041 |
+
</div>
|
2042 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-twitter-3 </span>
|
2043 |
+
<div class="fs1 twitter-3" aria-hidden="true" data-icon=""></div>
|
2044 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16f;" > </a>
|
2045 |
+
</div>
|
2046 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-2 </span>
|
2047 |
+
<div class="fs1 feed-2" aria-hidden="true" data-icon=""></div>
|
2048 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe170;" > </a>
|
2049 |
+
</div>
|
2050 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-3 </span>
|
2051 |
+
<div class="fs1 feed-3" aria-hidden="true" data-icon=""></div>
|
2052 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe171;" > </a>
|
2053 |
+
</div>
|
2054 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-feed-4 </span>
|
2055 |
+
<div class="fs1 feed-4" aria-hidden="true" data-icon=""></div>
|
2056 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe172;" > </a>
|
2057 |
+
</div>
|
2058 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube </span>
|
2059 |
+
<div class="fs1 youtube" aria-hidden="true" data-icon=""></div>
|
2060 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe173;" > </a>
|
2061 |
+
</div>
|
2062 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-youtube-2 </span>
|
2063 |
+
<div class="fs1 youtube-2" aria-hidden="true" data-icon=""></div>
|
2064 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe174;" > </a>
|
2065 |
+
</div>
|
2066 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo </span>
|
2067 |
+
<div class="fs1 vimeo" aria-hidden="true" data-icon=""></div>
|
2068 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe175;" > </a>
|
2069 |
+
</div>
|
2070 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo2 </span>
|
2071 |
+
<div class="fs1 vimeo2" aria-hidden="true" data-icon=""></div>
|
2072 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe176;" > </a>
|
2073 |
+
</div>
|
2074 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-vimeo-2 </span>
|
2075 |
+
<div class="fs1 vimeo-2" aria-hidden="true" data-icon=""></div>
|
2076 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe177;" > </a>
|
2077 |
+
</div>
|
2078 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lanyrd </span>
|
2079 |
+
<div class="fs1 lanyrd" aria-hidden="true" data-icon=""></div>
|
2080 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe178;" > </a>
|
2081 |
+
</div>
|
2082 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr </span>
|
2083 |
+
<div class="fs1 flickr" aria-hidden="true" data-icon=""></div>
|
2084 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe179;" > </a>
|
2085 |
+
</div>
|
2086 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-2 </span>
|
2087 |
+
<div class="fs1 flickr-2" aria-hidden="true" data-icon=""></div>
|
2088 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17a;" > </a>
|
2089 |
+
</div>
|
2090 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-3 </span>
|
2091 |
+
<div class="fs1 flickr-3" aria-hidden="true" data-icon=""></div>
|
2092 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17b;" > </a>
|
2093 |
+
</div>
|
2094 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flickr-4 </span>
|
2095 |
+
<div class="fs1 flickr-4" aria-hidden="true" data-icon=""></div>
|
2096 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17c;" > </a>
|
2097 |
+
</div>
|
2098 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa </span>
|
2099 |
+
<div class="fs1 picassa" aria-hidden="true" data-icon=""></div>
|
2100 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17d;" > </a>
|
2101 |
+
</div>
|
2102 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-picassa-2 </span>
|
2103 |
+
<div class="fs1 picassa-2" aria-hidden="true" data-icon=""></div>
|
2104 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17e;" > </a>
|
2105 |
+
</div>
|
2106 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble </span>
|
2107 |
+
<div class="fs1 dribbble" aria-hidden="true" data-icon=""></div>
|
2108 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17f;" > </a>
|
2109 |
+
</div>
|
2110 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-2 </span>
|
2111 |
+
<div class="fs1 dribbble-2" aria-hidden="true" data-icon=""></div>
|
2112 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe180;" > </a>
|
2113 |
+
</div>
|
2114 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-dribbble-3 </span>
|
2115 |
+
<div class="fs1 dribbble-3" aria-hidden="true" data-icon=""></div>
|
2116 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe181;" > </a>
|
2117 |
+
</div>
|
2118 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst </span>
|
2119 |
+
<div class="fs1 forrst" aria-hidden="true" data-icon=""></div>
|
2120 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe182;" > </a>
|
2121 |
+
</div>
|
2122 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-forrst-2 </span>
|
2123 |
+
<div class="fs1 forrst-2" aria-hidden="true" data-icon=""></div>
|
2124 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe183;" > </a>
|
2125 |
+
</div>
|
2126 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart </span>
|
2127 |
+
<div class="fs1 deviantart" aria-hidden="true" data-icon=""></div>
|
2128 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe184;" > </a>
|
2129 |
+
</div>
|
2130 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-deviantart-2 </span>
|
2131 |
+
<div class="fs1 deviantart-2" aria-hidden="true" data-icon=""></div>
|
2132 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe185;" > </a>
|
2133 |
+
</div>
|
2134 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-steam </span>
|
2135 |
+
<div class="fs1 steam" aria-hidden="true" data-icon=""></div>
|
2136 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe186;" > </a>
|
2137 |
+
</div>
|
2138 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-steam-2 </span>
|
2139 |
+
<div class="fs1 steam-2" aria-hidden="true" data-icon=""></div>
|
2140 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe187;" > </a>
|
2141 |
+
</div>
|
2142 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github </span>
|
2143 |
+
<div class="fs1 github" aria-hidden="true" data-icon=""></div>
|
2144 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe188;" > </a>
|
2145 |
+
</div>
|
2146 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-2 </span>
|
2147 |
+
<div class="fs1 github-2" aria-hidden="true" data-icon=""></div>
|
2148 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe189;" > </a>
|
2149 |
+
</div>
|
2150 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-3 </span>
|
2151 |
+
<div class="fs1 github-3" aria-hidden="true" data-icon=""></div>
|
2152 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18a;" > </a>
|
2153 |
+
</div>
|
2154 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-4 </span>
|
2155 |
+
<div class="fs1 github-4" aria-hidden="true" data-icon=""></div>
|
2156 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18b;" > </a>
|
2157 |
+
</div>
|
2158 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-github-5 </span>
|
2159 |
+
<div class="fs1 github-5" aria-hidden="true" data-icon=""></div>
|
2160 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18c;" > </a>
|
2161 |
+
</div>
|
2162 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress </span>
|
2163 |
+
<div class="fs1 wordpress" aria-hidden="true" data-icon=""></div>
|
2164 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18d;" > </a>
|
2165 |
+
</div>
|
2166 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wordpress-2 </span>
|
2167 |
+
<div class="fs1 wordpress-2" aria-hidden="true" data-icon=""></div>
|
2168 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18e;" > </a>
|
2169 |
+
</div>
|
2170 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-joomla </span>
|
2171 |
+
<div class="fs1 joomla" aria-hidden="true" data-icon=""></div>
|
2172 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18f;" > </a>
|
2173 |
+
</div>
|
2174 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger </span>
|
2175 |
+
<div class="fs1 blogger" aria-hidden="true" data-icon=""></div>
|
2176 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe190;" > </a>
|
2177 |
+
</div>
|
2178 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-blogger-2 </span>
|
2179 |
+
<div class="fs1 blogger-2" aria-hidden="true" data-icon=""></div>
|
2180 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe191;" > </a>
|
2181 |
+
</div>
|
2182 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr </span>
|
2183 |
+
<div class="fs1 tumblr" aria-hidden="true" data-icon=""></div>
|
2184 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe192;" > </a>
|
2185 |
+
</div>
|
2186 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tumblr-2 </span>
|
2187 |
+
<div class="fs1 tumblr-2" aria-hidden="true" data-icon=""></div>
|
2188 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe193;" > </a>
|
2189 |
+
</div>
|
2190 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-yahoo </span>
|
2191 |
+
<div class="fs1 yahoo" aria-hidden="true" data-icon=""></div>
|
2192 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe194;" > </a>
|
2193 |
+
</div>
|
2194 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-tux </span>
|
2195 |
+
<div class="fs1 tux" aria-hidden="true" data-icon=""></div>
|
2196 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe195;" > </a>
|
2197 |
+
</div>
|
2198 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-apple </span>
|
2199 |
+
<div class="fs1 apple" aria-hidden="true" data-icon=""></div>
|
2200 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe196;" > </a>
|
2201 |
+
</div>
|
2202 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-finder </span>
|
2203 |
+
<div class="fs1 finder" aria-hidden="true" data-icon=""></div>
|
2204 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe197;" > </a>
|
2205 |
+
</div>
|
2206 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-android </span>
|
2207 |
+
<div class="fs1 android" aria-hidden="true" data-icon=""></div>
|
2208 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe198;" > </a>
|
2209 |
+
</div>
|
2210 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windows </span>
|
2211 |
+
<div class="fs1 windows" aria-hidden="true" data-icon=""></div>
|
2212 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe199;" > </a>
|
2213 |
+
</div>
|
2214 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windows8 </span>
|
2215 |
+
<div class="fs1 windows8" aria-hidden="true" data-icon=""></div>
|
2216 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19a;" > </a>
|
2217 |
+
</div>
|
2218 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud </span>
|
2219 |
+
<div class="fs1 soundcloud" aria-hidden="true" data-icon=""></div>
|
2220 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19b;" > </a>
|
2221 |
+
</div>
|
2222 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-soundcloud-2 </span>
|
2223 |
+
<div class="fs1 soundcloud-2" aria-hidden="true" data-icon=""></div>
|
2224 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19c;" > </a>
|
2225 |
+
</div>
|
2226 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-skype </span>
|
2227 |
+
<div class="fs1 skype" aria-hidden="true" data-icon=""></div>
|
2228 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19d;" > </a>
|
2229 |
+
</div>
|
2230 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-reddit </span>
|
2231 |
+
<div class="fs1 reddit" aria-hidden="true" data-icon=""></div>
|
2232 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19e;" > </a>
|
2233 |
+
</div>
|
2234 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-linkedin </span>
|
2235 |
+
<div class="fs1 linkedin" aria-hidden="true" data-icon=""></div>
|
2236 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19f;" > </a>
|
2237 |
+
</div>
|
2238 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm </span>
|
2239 |
+
<div class="fs1 lastfm" aria-hidden="true" data-icon=""></div>
|
2240 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a0;" > </a>
|
2241 |
+
</div>
|
2242 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lastfm-2 </span>
|
2243 |
+
<div class="fs1 lastfm-2" aria-hidden="true" data-icon=""></div>
|
2244 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a1;" > </a>
|
2245 |
+
</div>
|
2246 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-delicious </span>
|
2247 |
+
<div class="fs1 delicious" aria-hidden="true" data-icon=""></div>
|
2248 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a2;" > </a>
|
2249 |
+
</div>
|
2250 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon </span>
|
2251 |
+
<div class="fs1 stumbleupon" aria-hidden="true" data-icon=""></div>
|
2252 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a3;" > </a>
|
2253 |
+
</div>
|
2254 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stumbleupon-2 </span>
|
2255 |
+
<div class="fs1 stumbleupon-2" aria-hidden="true" data-icon=""></div>
|
2256 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a4;" > </a>
|
2257 |
+
</div>
|
2258 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-stackoverflow </span>
|
2259 |
+
<div class="fs1 stackoverflow" aria-hidden="true" data-icon=""></div>
|
2260 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a5;" > </a>
|
2261 |
+
</div>
|
2262 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest </span>
|
2263 |
+
<div class="fs1 pinterest" aria-hidden="true" data-icon=""></div>
|
2264 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a6;" > </a>
|
2265 |
+
</div>
|
2266 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-pinterest-2 </span>
|
2267 |
+
<div class="fs1 pinterest-2" aria-hidden="true" data-icon=""></div>
|
2268 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a7;" > </a>
|
2269 |
+
</div>
|
2270 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-xing </span>
|
2271 |
+
<div class="fs1 xing" aria-hidden="true" data-icon=""></div>
|
2272 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a8;" > </a>
|
2273 |
+
</div>
|
2274 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-xing-2 </span>
|
2275 |
+
<div class="fs1 xing-2" aria-hidden="true" data-icon=""></div>
|
2276 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a9;" > </a>
|
2277 |
+
</div>
|
2278 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-flattr </span>
|
2279 |
+
<div class="fs1 flattr" aria-hidden="true" data-icon=""></div>
|
2280 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1aa;" > </a>
|
2281 |
+
</div>
|
2282 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
|
2283 |
+
<div class="fs1 foursquare" aria-hidden="true" data-icon=""></div>
|
2284 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ab;" > </a>
|
2285 |
+
</div>
|
2286 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-foursquare </span>
|
2287 |
+
<div class="fs1 foursquare" aria-hidden="true" data-icon=""></div>
|
2288 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ac;" > </a>
|
2289 |
+
</div>
|
2290 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal </span>
|
2291 |
+
<div class="fs1 paypal" aria-hidden="true" data-icon=""></div>
|
2292 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ad;" > </a>
|
2293 |
+
</div>
|
2294 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-2 </span>
|
2295 |
+
<div class="fs1 paypal-2" aria-hidden="true" data-icon=""></div>
|
2296 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ae;" > </a>
|
2297 |
+
</div>
|
2298 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-paypal-3 </span>
|
2299 |
+
<div class="fs1 paypal-3" aria-hidden="true" data-icon=""></div>
|
2300 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1af;" > </a>
|
2301 |
+
</div>
|
2302 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-yelp </span>
|
2303 |
+
<div class="fs1 yelp" aria-hidden="true" data-icon=""></div>
|
2304 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b0;" > </a>
|
2305 |
+
</div>
|
2306 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-libreoffice </span>
|
2307 |
+
<div class="fs1 libreoffice" aria-hidden="true" data-icon=""></div>
|
2308 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b1;" > </a>
|
2309 |
+
</div>
|
2310 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-pdf </span>
|
2311 |
+
<div class="fs1 file-pdf" aria-hidden="true" data-icon=""></div>
|
2312 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b2;" > </a>
|
2313 |
+
</div>
|
2314 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-openoffice </span>
|
2315 |
+
<div class="fs1 file-openoffice" aria-hidden="true" data-icon=""></div>
|
2316 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b3;" > </a>
|
2317 |
+
</div>
|
2318 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-word </span>
|
2319 |
+
<div class="fs1 file-word" aria-hidden="true" data-icon=""></div>
|
2320 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b4;" > </a>
|
2321 |
+
</div>
|
2322 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-excel </span>
|
2323 |
+
<div class="fs1 file-excel" aria-hidden="true" data-icon=""></div>
|
2324 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b5;" > </a>
|
2325 |
+
</div>
|
2326 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-zip </span>
|
2327 |
+
<div class="fs1 file-zip" aria-hidden="true" data-icon=""></div>
|
2328 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b6;" > </a>
|
2329 |
+
</div>
|
2330 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-powerpoint </span>
|
2331 |
+
<div class="fs1 file-powerpoint" aria-hidden="true" data-icon=""></div>
|
2332 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b7;" > </a>
|
2333 |
+
</div>
|
2334 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-xml </span>
|
2335 |
+
<div class="fs1 file-xml" aria-hidden="true" data-icon=""></div>
|
2336 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b8;" > </a>
|
2337 |
+
</div>
|
2338 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-file-css </span>
|
2339 |
+
<div class="fs1 file-css" aria-hidden="true" data-icon=""></div>
|
2340 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b9;" > </a>
|
2341 |
+
</div>
|
2342 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-html5 </span>
|
2343 |
+
<div class="fs1 html5" aria-hidden="true" data-icon=""></div>
|
2344 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ba;" > </a>
|
2345 |
+
</div>
|
2346 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-html5-2 </span>
|
2347 |
+
<div class="fs1 html5-2" aria-hidden="true" data-icon=""></div>
|
2348 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bb;" > </a>
|
2349 |
+
</div>
|
2350 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-css3 </span>
|
2351 |
+
<div class="fs1 css3" aria-hidden="true" data-icon=""></div>
|
2352 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bc;" > </a>
|
2353 |
+
</div>
|
2354 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-chrome </span>
|
2355 |
+
<div class="fs1 chrome" aria-hidden="true" data-icon=""></div>
|
2356 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bd;" > </a>
|
2357 |
+
</div>
|
2358 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-firefox </span>
|
2359 |
+
<div class="fs1 firefox" aria-hidden="true" data-icon=""></div>
|
2360 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1be;" > </a>
|
2361 |
+
</div>
|
2362 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-IE </span>
|
2363 |
+
<div class="fs1 IE" aria-hidden="true" data-icon=""></div>
|
2364 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bf;" > </a>
|
2365 |
+
</div>
|
2366 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-opera </span>
|
2367 |
+
<div class="fs1 opera" aria-hidden="true" data-icon=""></div>
|
2368 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c0;" > </a>
|
2369 |
+
</div>
|
2370 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-safari </span>
|
2371 |
+
<div class="fs1 safari" aria-hidden="true" data-icon=""></div>
|
2372 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c1;" > </a>
|
2373 |
+
</div>
|
2374 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-IcoMoon </span>
|
2375 |
+
<div class="fs1 IcoMoon" aria-hidden="true" data-icon=""></div>
|
2376 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c2;" > </a>
|
2377 |
+
</div>
|
2378 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sunrise </span>
|
2379 |
+
<div class="fs1 sunrise" aria-hidden="true" data-icon=""></div>
|
2380 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c3;" > </a>
|
2381 |
+
</div>
|
2382 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun </span>
|
2383 |
+
<div class="fs1 sun" aria-hidden="true" data-icon=""></div>
|
2384 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c4;" > </a>
|
2385 |
+
</div>
|
2386 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-moon </span>
|
2387 |
+
<div class="fs1 moon" aria-hidden="true" data-icon=""></div>
|
2388 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c5;" > </a>
|
2389 |
+
</div>
|
2390 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-2 </span>
|
2391 |
+
<div class="fs1 sun-2" aria-hidden="true" data-icon=""></div>
|
2392 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c6;" > </a>
|
2393 |
+
</div>
|
2394 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy </span>
|
2395 |
+
<div class="fs1 windy" aria-hidden="true" data-icon=""></div>
|
2396 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c7;" > </a>
|
2397 |
+
</div>
|
2398 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-wind </span>
|
2399 |
+
<div class="fs1 wind" aria-hidden="true" data-icon=""></div>
|
2400 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c8;" > </a>
|
2401 |
+
</div>
|
2402 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowflake </span>
|
2403 |
+
<div class="fs1 snowflake" aria-hidden="true" data-icon=""></div>
|
2404 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c9;" > </a>
|
2405 |
+
</div>
|
2406 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy </span>
|
2407 |
+
<div class="fs1 cloudy" aria-hidden="true" data-icon=""></div>
|
2408 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ca;" > </a>
|
2409 |
+
</div>
|
2410 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-2 </span>
|
2411 |
+
<div class="fs1 cloud-2" aria-hidden="true" data-icon=""></div>
|
2412 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cb;" > </a>
|
2413 |
+
</div>
|
2414 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather </span>
|
2415 |
+
<div class="fs1 weather" aria-hidden="true" data-icon=""></div>
|
2416 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cc;" > </a>
|
2417 |
+
</div>
|
2418 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
|
2419 |
+
<div class="fs1 weather-2" aria-hidden="true" data-icon=""></div>
|
2420 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cd;" > </a>
|
2421 |
+
</div>
|
2422 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-3 </span>
|
2423 |
+
<div class="fs1 weather-3" aria-hidden="true" data-icon=""></div>
|
2424 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ce;" > </a>
|
2425 |
+
</div>
|
2426 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lines </span>
|
2427 |
+
<div class="fs1 lines" aria-hidden="true" data-icon=""></div>
|
2428 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cf;" > </a>
|
2429 |
+
</div>
|
2430 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-3 </span>
|
2431 |
+
<div class="fs1 cloud-3" aria-hidden="true" data-icon=""></div>
|
2432 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d0;" > </a>
|
2433 |
+
</div>
|
2434 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-2 </span>
|
2435 |
+
<div class="fs1 lightning-2" aria-hidden="true" data-icon=""></div>
|
2436 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d1;" > </a>
|
2437 |
+
</div>
|
2438 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-3 </span>
|
2439 |
+
<div class="fs1 lightning-3" aria-hidden="true" data-icon=""></div>
|
2440 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d2;" > </a>
|
2441 |
+
</div>
|
2442 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy </span>
|
2443 |
+
<div class="fs1 rainy" aria-hidden="true" data-icon=""></div>
|
2444 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d3;" > </a>
|
2445 |
+
</div>
|
2446 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-2 </span>
|
2447 |
+
<div class="fs1 rainy-2" aria-hidden="true" data-icon=""></div>
|
2448 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d4;" > </a>
|
2449 |
+
</div>
|
2450 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-2 </span>
|
2451 |
+
<div class="fs1 windy-2" aria-hidden="true" data-icon=""></div>
|
2452 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d5;" > </a>
|
2453 |
+
</div>
|
2454 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-3 </span>
|
2455 |
+
<div class="fs1 windy-3" aria-hidden="true" data-icon=""></div>
|
2456 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d6;" > </a>
|
2457 |
+
</div>
|
2458 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy </span>
|
2459 |
+
<div class="fs1 snowy" aria-hidden="true" data-icon=""></div>
|
2460 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d7;" > </a>
|
2461 |
+
</div>
|
2462 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-2 </span>
|
2463 |
+
<div class="fs1 snowy-2" aria-hidden="true" data-icon=""></div>
|
2464 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d8;" > </a>
|
2465 |
+
</div>
|
2466 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-3 </span>
|
2467 |
+
<div class="fs1 snowy-3" aria-hidden="true" data-icon=""></div>
|
2468 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d9;" > </a>
|
2469 |
+
</div>
|
2470 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-4 </span>
|
2471 |
+
<div class="fs1 weather-4" aria-hidden="true" data-icon=""></div>
|
2472 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1da;" > </a>
|
2473 |
+
</div>
|
2474 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-2 </span>
|
2475 |
+
<div class="fs1 cloudy-2" aria-hidden="true" data-icon=""></div>
|
2476 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1db;" > </a>
|
2477 |
+
</div>
|
2478 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-4 </span>
|
2479 |
+
<div class="fs1 cloud-4" aria-hidden="true" data-icon=""></div>
|
2480 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dc;" > </a>
|
2481 |
+
</div>
|
2482 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-4 </span>
|
2483 |
+
<div class="fs1 lightning-4" aria-hidden="true" data-icon=""></div>
|
2484 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dd;" > </a>
|
2485 |
+
</div>
|
2486 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-sun-3 </span>
|
2487 |
+
<div class="fs1 sun-3" aria-hidden="true" data-icon=""></div>
|
2488 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1de;" > </a>
|
2489 |
+
</div>
|
2490 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-moon-2 </span>
|
2491 |
+
<div class="fs1 moon-2" aria-hidden="true" data-icon=""></div>
|
2492 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1df;" > </a>
|
2493 |
+
</div>
|
2494 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-3 </span>
|
2495 |
+
<div class="fs1 cloudy-3" aria-hidden="true" data-icon=""></div>
|
2496 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e0;" > </a>
|
2497 |
+
</div>
|
2498 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-5 </span>
|
2499 |
+
<div class="fs1 cloud-5" aria-hidden="true" data-icon=""></div>
|
2500 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e1;" > </a>
|
2501 |
+
</div>
|
2502 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloud-6 </span>
|
2503 |
+
<div class="fs1 cloud-6" aria-hidden="true" data-icon=""></div>
|
2504 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e2;" > </a>
|
2505 |
+
</div>
|
2506 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-5 </span>
|
2507 |
+
<div class="fs1 lightning-5" aria-hidden="true" data-icon=""></div>
|
2508 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e3;" > </a>
|
2509 |
+
</div>
|
2510 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-3 </span>
|
2511 |
+
<div class="fs1 rainy-3" aria-hidden="true" data-icon=""></div>
|
2512 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e4;" > </a>
|
2513 |
+
</div>
|
2514 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-rainy-4 </span>
|
2515 |
+
<div class="fs1 rainy-4" aria-hidden="true" data-icon=""></div>
|
2516 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e5;" > </a>
|
2517 |
+
</div>
|
2518 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-4 </span>
|
2519 |
+
<div class="fs1 windy-4" aria-hidden="true" data-icon=""></div>
|
2520 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e6;" > </a>
|
2521 |
+
</div>
|
2522 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-windy-5 </span>
|
2523 |
+
<div class="fs1 windy-5" aria-hidden="true" data-icon=""></div>
|
2524 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e7;" > </a>
|
2525 |
+
</div>
|
2526 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-4 </span>
|
2527 |
+
<div class="fs1 snowy-4" aria-hidden="true" data-icon=""></div>
|
2528 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e8;" > </a>
|
2529 |
+
</div>
|
2530 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-snowy-5 </span>
|
2531 |
+
<div class="fs1 snowy-5" aria-hidden="true" data-icon=""></div>
|
2532 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e9;" > </a>
|
2533 |
+
</div>
|
2534 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-weather-5 </span>
|
2535 |
+
<div class="fs1 weather-5" aria-hidden="true" data-icon=""></div>
|
2536 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ea;" > </a>
|
2537 |
+
</div>
|
2538 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-cloudy-4 </span>
|
2539 |
+
<div class="fs1 cloudy-4" aria-hidden="true" data-icon=""></div>
|
2540 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1eb;" > </a>
|
2541 |
+
</div>
|
2542 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-lightning-6 </span>
|
2543 |
+
<div class="fs1 lightning-6" aria-hidden="true" data-icon=""></div>
|
2544 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ec;" > </a>
|
2545 |
+
</div>
|
2546 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-thermometer </span>
|
2547 |
+
<div class="fs1 thermometer" aria-hidden="true" data-icon=""></div>
|
2548 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ed;" > </a>
|
2549 |
+
</div>
|
2550 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-compass-2 </span>
|
2551 |
+
<div class="fs1 compass-2" aria-hidden="true" data-icon=""></div>
|
2552 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ee;" > </a>
|
2553 |
+
</div>
|
2554 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-none </span>
|
2555 |
+
<div class="fs1 none" aria-hidden="true" data-icon=""></div>
|
2556 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ef;" > </a>
|
2557 |
+
</div>
|
2558 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-Celsius </span>
|
2559 |
+
<div class="fs1 Celsius" aria-hidden="true" data-icon=""></div>
|
2560 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f0;" > </a>
|
2561 |
+
</div>
|
2562 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-Fahrenheit </span>
|
2563 |
+
<div class="fs1 Fahrenheit" aria-hidden="true" data-icon=""></div>
|
2564 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f1;" > </a>
|
2565 |
+
</div>
|
2566 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-aperture </span>
|
2567 |
+
<div class="fs1 aperture" aria-hidden="true" data-icon=""></div>
|
2568 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f2;" > </a>
|
2569 |
+
</div>
|
2570 |
+
<div class="glyph glyph-demo"><span class="mls"> wp-svg-camera-3 </span>
|
2571 |
+
<div class="fs1 camera-3" aria-hidden="true" data-icon=""></div>
|
2572 |
+
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f3;" > </a>
|
2573 |
+
</div>
|
2574 |
+
|
2575 |
+
</section>
|
2576 |
+
|
2577 |
+
</div>
|
2578 |
+
|
2579 |
+
<div class="custom-pack-container-ajax" style="display:inline-block; margin-top:1em; "></div>
|
2580 |
+
|
2581 |
+
<div class="clear"></div>
|
2582 |
+
|
2583 |
+
<footer>
|
2584 |
+
<p><?php _e( 'Plugin Created By' , 'wp-svg-icons' ); ?> <a style="color:#B35047;" href="http://www.Evan-Herman.com" target="_blank">Evan Herman</a></p>
|
2585 |
+
</footer>
|
2586 |
+
|
2587 |
+
</div>
|
2588 |
+
|
2589 |
+
</div>
|
admin/partials/wp-svg-icons-icon-page.php
ADDED
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Create Menu Pages
|
4 |
+
// Create Sub Menu pages for Custom Icon Pack Uploads
|
5 |
+
function wordpress_svg_icons_plugin_add_menu_page() {
|
6 |
+
|
7 |
+
// Top Level Menu
|
8 |
+
add_menu_page(
|
9 |
+
__('WP SVG Icons','wp-svg-icons'),
|
10 |
+
'WP SVG Icons',
|
11 |
+
'manage_options',
|
12 |
+
'wp-svg-icons',
|
13 |
+
'render_wp_svg_icon_page',
|
14 |
+
'dashicons-wp-svg-gift'
|
15 |
+
);
|
16 |
+
|
17 |
+
// Sub Pages
|
18 |
+
/* Default Icons Page */
|
19 |
+
add_submenu_page(
|
20 |
+
'wp-svg-icons',
|
21 |
+
__('WP SVG Icons - Default Icon Set','wp-svg-icons'),
|
22 |
+
__('Default Icon Set','wp-svg-icons'),
|
23 |
+
'manage_options',
|
24 |
+
'wp-svg-icons',
|
25 |
+
'render_wp_svg_icon_page'
|
26 |
+
);
|
27 |
+
|
28 |
+
/* Custom Icons Page */
|
29 |
+
add_submenu_page(
|
30 |
+
'wp-svg-icons',
|
31 |
+
__('Custom Icon Set','wp-svg-icons'),
|
32 |
+
__('Custom Icon Set','wp-svg-icons'),
|
33 |
+
'manage_options',
|
34 |
+
'wp-svg-icons-custom-set',
|
35 |
+
'render_custom_icon_page'
|
36 |
+
);
|
37 |
+
|
38 |
+
/* Settings Page */
|
39 |
+
add_submenu_page(
|
40 |
+
'wp-svg-icons',
|
41 |
+
__( 'WP SVG Icons - Settings' , 'wp-svg-icon' ),
|
42 |
+
__( 'Settings' , 'wp-svg-icon' ),
|
43 |
+
'manage_options',
|
44 |
+
'wp_svg_icons',
|
45 |
+
'wp_svg_icons_options_page'
|
46 |
+
);
|
47 |
+
|
48 |
+
/* Support Page */
|
49 |
+
add_submenu_page(
|
50 |
+
'wp-svg-icons',
|
51 |
+
__( 'Upgrade', 'wp-svg-icons' ),
|
52 |
+
__( 'Upgrade', 'wp-svg-icons' ),
|
53 |
+
'manage_options',
|
54 |
+
'wp-svg-icons-upgrade',
|
55 |
+
'render_upgrade_page'
|
56 |
+
);
|
57 |
+
|
58 |
+
}
|
59 |
+
add_action('admin_menu', 'wordpress_svg_icons_plugin_add_menu_page');
|
60 |
+
|
61 |
+
|
62 |
+
// Callback to render icon listing page
|
63 |
+
function render_wp_svg_icon_page() {
|
64 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-default-icons-page.php';
|
65 |
+
}
|
66 |
+
|
67 |
+
// Callback to render icon listing page
|
68 |
+
function render_custom_icon_page() {
|
69 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-custom-icons-page.php';
|
70 |
+
}
|
71 |
+
|
72 |
+
// Callback to render support page
|
73 |
+
function render_upgrade_page() {
|
74 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/wp-svg-icons-upgrade-page.php';
|
75 |
+
}
|
76 |
+
|
77 |
+
|
78 |
+
/** Settings Page **/
|
79 |
+
|
80 |
+
function wp_svg_icons_settings_init( ) {
|
81 |
+
|
82 |
+
register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_enqueue_defualt_icon_pack' );
|
83 |
+
register_setting( 'wp_svg_icons_settings_page', 'wp_svg_icons_defualt_icon_container' );
|
84 |
+
|
85 |
+
/* Register settings section */
|
86 |
+
add_settings_section(
|
87 |
+
'wp_svg_icons_plugin_section',
|
88 |
+
__( '', 'wp-svg-icons' ),
|
89 |
+
'wp_svg_icons_settings_section_callback',
|
90 |
+
'wp_svg_icons_settings_page'
|
91 |
+
);
|
92 |
+
|
93 |
+
/* Register checkbox Setting */
|
94 |
+
add_settings_field(
|
95 |
+
'wp_svg_icons_enqueue_defualt_icon_pack',
|
96 |
+
__( 'Load Default Icons', 'wp-svg-icons' ),
|
97 |
+
'wp_svg_icons_enqueue_defualt_icon_pack_callback',
|
98 |
+
'wp_svg_icons_settings_page',
|
99 |
+
'wp_svg_icons_plugin_section'
|
100 |
+
);
|
101 |
+
|
102 |
+
/* Default Icon Element */
|
103 |
+
add_settings_field(
|
104 |
+
'wp_svg_icons_defualt_icon_container',
|
105 |
+
__( 'Defualt Icon Element', 'wp-svg-icons' ),
|
106 |
+
'wp_svg_icons_enqueue_defualt_icon_container_callback',
|
107 |
+
'wp_svg_icons_settings_page',
|
108 |
+
'wp_svg_icons_plugin_section'
|
109 |
+
);
|
110 |
+
|
111 |
+
}
|
112 |
+
add_action( 'admin_init', 'wp_svg_icons_settings_init' );
|
113 |
+
|
114 |
+
|
115 |
+
// Enqueue default icon pack setting - checkbox - callback
|
116 |
+
function wp_svg_icons_enqueue_defualt_icon_pack_callback( ) {
|
117 |
+
|
118 |
+
$enqueue_default_icons_setting = get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' );
|
119 |
+
if( $enqueue_default_icons_setting == '1' ) {
|
120 |
+
$checked = 'checked="checked"';
|
121 |
+
$enqueued = __( 'the default icon pack stylesheet will be loaded on the front end.' , 'wp-svg-icons' );
|
122 |
+
} else {
|
123 |
+
$checked = '';
|
124 |
+
$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' );
|
125 |
+
}
|
126 |
+
?>
|
127 |
+
<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>
|
128 |
+
<?php
|
129 |
+
|
130 |
+
}
|
131 |
+
|
132 |
+
// Default icons element cotainer - dropdown - callback
|
133 |
+
// doesn't currently do anything
|
134 |
+
// unable to use get_option() on edit.php to dictate the default icons
|
135 |
+
function wp_svg_icons_enqueue_defualt_icon_container_callback( ) {
|
136 |
+
|
137 |
+
$default_icon_container = get_option( 'wp_svg_icons_defualt_icon_container' , 'i' );
|
138 |
+
|
139 |
+
?>
|
140 |
+
<select id="wp_svg_icons_defualt_icon_container" name="wp_svg_icons_defualt_icon_container">
|
141 |
+
<option val="H1" <?php selected( $default_icon_container , 'h1' ); ?>>h1</option>
|
142 |
+
<option val="h2" <?php selected( $default_icon_container , 'h2' ); ?>>h2</option>
|
143 |
+
<option val="h3" <?php selected( $default_icon_container , 'h3' ); ?>>h3</option>
|
144 |
+
<option val="span" <?php selected( $default_icon_container , 'span' ); ?>>span</option>
|
145 |
+
<option val="div" <?php selected( $default_icon_container , 'div' ); ?>>div</option>
|
146 |
+
<option val="i" <?php selected( $default_icon_container , 'i' ); ?>>i</option>
|
147 |
+
<option val="b" <?php selected( $default_icon_container , 'b' ); ?>>b</option>
|
148 |
+
</select>
|
149 |
+
<?php
|
150 |
+
|
151 |
+
}
|
152 |
+
|
153 |
+
// description of the settings page
|
154 |
+
function wp_svg_icons_settings_section_callback( ) {
|
155 |
+
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>';
|
156 |
+
echo '<hr />';
|
157 |
+
// Display a confirmation to the user when the settings have been updated
|
158 |
+
if( isset( $_GET['settings-updated'] ) ) {
|
159 |
+
?>
|
160 |
+
<div class="updated">
|
161 |
+
<p><?php _e( 'Settings successfully updated.' , 'wp-svg-icons' ); ?></p>
|
162 |
+
</div>
|
163 |
+
<?php
|
164 |
+
}
|
165 |
+
}
|
166 |
+
|
167 |
+
/* Options Page Callback */
|
168 |
+
function wp_svg_icons_options_page( ) {
|
169 |
+
?>
|
170 |
+
<style>
|
171 |
+
::selection { background: #FF8000; }
|
172 |
+
</style>
|
173 |
+
<div class="svg-custom-upload-wrap wrap">
|
174 |
+
<form action='options.php' method='post'>
|
175 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Settings' , 'wp-svg-icons' ) ?></h1>
|
176 |
+
<!-- review us container -->
|
177 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
|
178 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
179 |
+
<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>
|
180 |
+
</div>
|
181 |
+
<!-- social media icons -->
|
182 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
183 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
184 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
185 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
186 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
187 |
+
<a href="http://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
188 |
+
</div>
|
189 |
+
<?php
|
190 |
+
settings_fields( 'wp_svg_icons_settings_page' );
|
191 |
+
do_settings_sections( 'wp_svg_icons_settings_page' );
|
192 |
+
submit_button();
|
193 |
+
?>
|
194 |
+
</form>
|
195 |
+
</div>
|
196 |
+
<?php
|
197 |
+
}
|
198 |
+
|
199 |
+
|
200 |
+
?>
|
admin/partials/wp-svg-icons-upgrade-page.php
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// enqueue our upgrade page script
|
3 |
+
wp_register_script( 'upgrade-page-script' , plugin_dir_url(__FILE__).'../js/upgrade-page-script.js' , array( 'jquery' ), 'all' );
|
4 |
+
wp_enqueue_script( 'upgrade-page-script' );
|
5 |
+
?>
|
6 |
+
|
7 |
+
<style>
|
8 |
+
::selection { background: #FF8000; }
|
9 |
+
|
10 |
+
.upgrade-button {
|
11 |
+
border: 0 none;
|
12 |
+
border-radius: 2px 2px 2px 2px;
|
13 |
+
color: #FFFFFF;
|
14 |
+
cursor: pointer;
|
15 |
+
display: inline-block;
|
16 |
+
font-size: 16px;
|
17 |
+
font-weight: 200;
|
18 |
+
line-height: 20px;
|
19 |
+
margin-bottom: 0;
|
20 |
+
margin-top: 10px;
|
21 |
+
padding: 9px 12px;
|
22 |
+
text-transform: none;
|
23 |
+
transition: all 0.3s ease 0s;
|
24 |
+
-moz-transition: all 0.3s ease 0s;
|
25 |
+
-webkit-transition: all 0.3s ease 0s;
|
26 |
+
width: 12.795%;
|
27 |
+
text-align: center;
|
28 |
+
min-width: 168px;
|
29 |
+
}
|
30 |
+
|
31 |
+
.green {
|
32 |
+
background: none repeat scroll 0 0 #46b98a;
|
33 |
+
color: #ffffff;
|
34 |
+
}
|
35 |
+
.green:hover {
|
36 |
+
cursor: pointer;
|
37 |
+
background: none repeat scroll 0 0 #3AAC7D;
|
38 |
+
color: #ffffff;
|
39 |
+
}
|
40 |
+
</style>
|
41 |
+
|
42 |
+
<div id="wp-svg-icons-support-page-wrap" class="svg-custom-upload-wrap wrap" >
|
43 |
+
|
44 |
+
<section id="wp-svg-icons-support-page-header">
|
45 |
+
|
46 |
+
<section class="support-subhead">
|
47 |
+
<h1 class="wp-svg-title"><span style="color:#FF8000;">WP SVG Icons</span> | <?php _e( 'Upgrade' , 'wp-svg-icons' ); ?></h2>
|
48 |
+
<!-- review us container -->
|
49 |
+
<div id="review-wp-svg-icons" style="position:absolute;right:15em;top:0;margin:0 3em 0 0;text-align:center;">
|
50 |
+
<p><?php _e( 'Leave Us A Review!' , 'wp-svg-icons' ); ?></p>
|
51 |
+
<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>
|
52 |
+
</div>
|
53 |
+
<!-- social media icons -->
|
54 |
+
<div id="social-icons" style="position:absolute;right:0;top:0;margin:0 3em 0 0;text-align:center;">
|
55 |
+
<p><?php _e( 'Follow me elsewhere' , 'wp-svg-icons' ); ?></p>
|
56 |
+
<a href="https://profiles.wordpress.org/eherman24#content-plugins"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/wordpress-icon.png"></a>
|
57 |
+
<a href="http://twitter.com/evanmherman"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/twitter.png"></a>
|
58 |
+
<a href="https://www.linkedin.com/profile/view?id=46246110"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/linkedin.png"></a>
|
59 |
+
<a href="http://www.evan-herman.com/feed/"><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/rss_icon.png"></a><br />
|
60 |
+
<a href="http://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>
|
61 |
+
</div>
|
62 |
+
<p><?php _e( 'Enjoying the free version? Consider upgrading to the pro version for added features, and premium support.' , 'wp-svg-icons' ); ?></p>
|
63 |
+
</section>
|
64 |
+
|
65 |
+
</section>
|
66 |
+
|
67 |
+
<h2 class="nav-tab-wrapper">
|
68 |
+
<a href="#" class="nav-tab nav-tab-active" data-attr="icon_customizer"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></a>
|
69 |
+
<a href="#" class="nav-tab" data-attr="menu_icons"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></a>
|
70 |
+
<a href="#" class="nav-tab" data-attr="premium_support"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></a>
|
71 |
+
</h2>
|
72 |
+
|
73 |
+
<div id="icon_customizer" class="tab_content">
|
74 |
+
|
75 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Icon Customizer' , 'wp-svg-icons' ); ?></h2>
|
76 |
+
<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>
|
77 |
+
<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;">
|
78 |
+
|
79 |
+
</div>
|
80 |
+
|
81 |
+
<div id="menu_icons" style="display:none;" class="tab_content">
|
82 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Menu Icons' , 'wp-svg-icons' ); ?></h2>
|
83 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
|
84 |
+
<?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' ); ?>
|
85 |
+
</p>
|
86 |
+
<div style="text-align:center;">
|
87 |
+
<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;">
|
88 |
+
<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%;">
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
|
92 |
+
|
93 |
+
<div id="premium_support" style="display:none;" class="tab_content">
|
94 |
+
<h2 style="display:block;text-align:center;"><?php _e( 'Premium Support' , 'wp-svg-icons' ); ?></h2>
|
95 |
+
<p class="description" style="max-width:80%;display:block;margin: 0 auto;margin-top:5px;margin-bottom:15px;">
|
96 |
+
<?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" ); ?>
|
97 |
+
</p>
|
98 |
+
</div>
|
99 |
+
|
100 |
+
<br />
|
101 |
+
|
102 |
+
<br />
|
103 |
+
|
104 |
+
<br />
|
105 |
+
|
106 |
+
<a href="http://www.evan-herman.com/wordpress-plugins/wp-svg-icons" target="_blank" style="display:block;width:200px;margin:0 auto;">
|
107 |
+
<div class="upgrade-button green center"><i class="wp-svg-box-remove"></i> Go Pro Now!</div>
|
108 |
+
</a>
|
109 |
+
<section id="eh-logos" style="display:block;width:100%;text-align:right;">
|
110 |
+
<img src="<?php echo plugin_dir_url( __FILE__ ); ?>/../../images/evan-herman-mascot.png" alt="Evan Herman Mascot" style="width:300px;margin-top:1em;" >
|
111 |
+
</section>
|
112 |
+
|
113 |
+
</div>
|
admin/partials/wp-svg-icons-views-test.php
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Class wp_svg_icons_view
|
5 |
+
* handles the creation of [wp-svg-icons] shortcode
|
6 |
+
* creates a wordpress view representing this shortcode in the editor
|
7 |
+
* delete button on wp view as well makes for easy shortcode managements.
|
8 |
+
*
|
9 |
+
* separate css is in style.content.css - this is loaded in frontend and also backend with add_editor_style
|
10 |
+
*
|
11 |
+
* Author: evan.m.herman@gmail.com
|
12 |
+
* Copyright 2014
|
13 |
+
*/
|
14 |
+
|
15 |
+
class wp_svg_icons_view {
|
16 |
+
|
17 |
+
private static $instance = null;
|
18 |
+
|
19 |
+
public static function get_instance() {
|
20 |
+
if ( ! self::$instance )
|
21 |
+
self::$instance = new self;
|
22 |
+
return self::$instance;
|
23 |
+
}
|
24 |
+
|
25 |
+
public function init(){
|
26 |
+
// comment this 'add_action' out to disable shortcode backend mce view feature
|
27 |
+
add_action( 'admin_init', array( $this, 'init_plugin' ), 20 );
|
28 |
+
}
|
29 |
+
public function init_plugin() {
|
30 |
+
add_action( 'print_media_templates', array( $this, 'print_media_templates' ) );
|
31 |
+
add_action( 'admin_print_footer_scripts', array( $this, 'admin_print_footer_scripts' ), 100 );
|
32 |
+
}
|
33 |
+
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Outputs the view inside the wordpress editor.
|
37 |
+
*/
|
38 |
+
public function print_media_templates() {
|
39 |
+
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
40 |
+
return;
|
41 |
+
?>
|
42 |
+
<script type="text/html" id="tmpl-editor-boutique-banner">
|
43 |
+
<b class="wp-svg-{{ data.icon }}"></b>
|
44 |
+
</script>
|
45 |
+
<?php
|
46 |
+
}
|
47 |
+
|
48 |
+
public function admin_print_footer_scripts() {
|
49 |
+
if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
|
50 |
+
return;
|
51 |
+
?>
|
52 |
+
<script type="text/javascript">
|
53 |
+
(function($){
|
54 |
+
var media = wp.media, shortcode_string = 'wp-svg-icons';
|
55 |
+
wp.mce = wp.mce || {};
|
56 |
+
wp.mce.boutique_banner = {
|
57 |
+
shortcode_data: {},
|
58 |
+
View: {
|
59 |
+
template: media.template( 'editor-boutique-banner' ),
|
60 |
+
postID: $('#post_ID').val(),
|
61 |
+
initialize: function( options ) {
|
62 |
+
this.shortcode = options.shortcode;
|
63 |
+
wp.mce.boutique_banner.shortcode_data = this.shortcode;
|
64 |
+
|
65 |
+
},
|
66 |
+
getHtml: function() {
|
67 |
+
var options = this.shortcode.attrs.named;
|
68 |
+
options['innercontent'] = this.shortcode.content;
|
69 |
+
return this.template(options);
|
70 |
+
}
|
71 |
+
},
|
72 |
+
edit: function( node ) {
|
73 |
+
var data = window.decodeURIComponent( $( node ).attr('data-wpview-text') );
|
74 |
+
console.debug(this);
|
75 |
+
var values = this.shortcode_data.attrs.named;
|
76 |
+
values['innercontent'] = this.shortcode_data.content;
|
77 |
+
console.log(values);
|
78 |
+
|
79 |
+
wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, values);
|
80 |
+
//$( node ).attr( 'data-wpview-text', window.encodeURIComponent( shortcode ) );
|
81 |
+
},
|
82 |
+
// this is called from our tinymce plugin, also can call from our "edit" function above
|
83 |
+
// wp.mce.boutique_banner.popupwindow(tinyMCE.activeEditor, "bird");
|
84 |
+
popupwindow: function(editor, values, onsubmit_callback){
|
85 |
+
if(typeof onsubmit_callback != 'function'){
|
86 |
+
onsubmit_callback = function( e ) {
|
87 |
+
// Insert content when the window form is submitted (this also replaces during edit, handy!)
|
88 |
+
var s = '[' + shortcode_string;
|
89 |
+
for(var i in e.data){
|
90 |
+
if(e.data.hasOwnProperty(i) && i != 'innercontent'){
|
91 |
+
s += ' ' + i + '="' + e.data[i] + '"';
|
92 |
+
}
|
93 |
+
}
|
94 |
+
s += ']';
|
95 |
+
if(typeof e.data.innercontent != 'undefined'){
|
96 |
+
s += e.data.innercontent;
|
97 |
+
s += '[/' + shortcode_string + ']';
|
98 |
+
}
|
99 |
+
editor.insertContent( s );
|
100 |
+
};
|
101 |
+
}
|
102 |
+
editor.windowManager.open( {
|
103 |
+
title: 'WP SVG Icons',
|
104 |
+
body: [
|
105 |
+
{
|
106 |
+
type: 'textbox',
|
107 |
+
name: 'icon',
|
108 |
+
label: 'icon',
|
109 |
+
value: values['icon']
|
110 |
+
},
|
111 |
+
{
|
112 |
+
type: 'listbox',
|
113 |
+
name: 'wrap',
|
114 |
+
label: 'Element Wrap',
|
115 |
+
values: 'test'
|
116 |
+
},
|
117 |
+
{
|
118 |
+
type: 'textbox',
|
119 |
+
name: 'linkhref',
|
120 |
+
label: 'Button URL',
|
121 |
+
value: values['linkhref']
|
122 |
+
},
|
123 |
+
{
|
124 |
+
type: 'textbox',
|
125 |
+
name: 'innercontent',
|
126 |
+
label: 'Content',
|
127 |
+
value: values['innercontent']
|
128 |
+
}
|
129 |
+
],
|
130 |
+
onsubmit: onsubmit_callback
|
131 |
+
} );
|
132 |
+
}
|
133 |
+
};
|
134 |
+
wp.mce.views.register( shortcode_string, wp.mce.boutique_banner );
|
135 |
+
}(jQuery));
|
136 |
+
</script>
|
137 |
+
|
138 |
+
<?php
|
139 |
+
}
|
140 |
+
|
141 |
+
}
|
142 |
+
|
143 |
+
wp_svg_icons_view::get_instance()->init();
|
includes/class-wp-svg-icons-activator.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Fired during plugin activation.
|
4 |
+
*
|
5 |
+
* This class defines all code necessary to run during the plugin's activation.
|
6 |
+
*
|
7 |
+
* @since 3.0.0
|
8 |
+
* @package svg-vector-icon-plugin
|
9 |
+
* @subpackage svg-vector-icon-plugin/includes
|
10 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
11 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
12 |
+
*/
|
13 |
+
class WP_SVG_Icons_Activator {
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Short Description. (use period)
|
17 |
+
*
|
18 |
+
* Long Description.
|
19 |
+
*
|
20 |
+
* @since 1.0.0
|
21 |
+
*/
|
22 |
+
public static function activate() {
|
23 |
+
|
24 |
+
}
|
25 |
+
|
26 |
+
}
|
includes/class-wp-svg-icons-deactivator.php
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Fired during plugin deactivation.
|
4 |
+
*
|
5 |
+
* This class defines all code necessary to run during the plugin's deactivation.
|
6 |
+
*
|
7 |
+
* @since 3.0.0
|
8 |
+
* @package svg-vector-icon-plugin
|
9 |
+
* @subpackage svg-vector-icon-plugin/includes
|
10 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
11 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
12 |
+
*/
|
13 |
+
|
14 |
+
class WP_SVG_Icons_Deactivator {
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Long Description.
|
18 |
+
*
|
19 |
+
* @since 3.0.0
|
20 |
+
*/
|
21 |
+
public static function deactivate() {
|
22 |
+
|
23 |
+
}
|
24 |
+
|
25 |
+
}
|
includes/class-wp-svg-icons-i18n.php
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Define the internationalization functionality.
|
4 |
+
*
|
5 |
+
* Loads and defines the internationalization files for this plugin
|
6 |
+
* so that it is ready for translation.
|
7 |
+
*
|
8 |
+
* @since 3.0.0
|
9 |
+
* @package svg-vector-icon-plugin
|
10 |
+
* @subpackage svg-vector-icon-plugin/includes
|
11 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
12 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
13 |
+
*/
|
14 |
+
|
15 |
+
class WP_SVG_Icons_i18n {
|
16 |
+
|
17 |
+
/**
|
18 |
+
* The domain specified for this plugin.
|
19 |
+
*
|
20 |
+
* @since 3.0.0
|
21 |
+
* @access private
|
22 |
+
* @var string $domain The domain identifier for this plugin.
|
23 |
+
*/
|
24 |
+
private $domain;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Load the plugin text domain for translation.
|
28 |
+
*
|
29 |
+
* @since 3.0.0
|
30 |
+
*/
|
31 |
+
public function load_wp_svg_icons_textdomain() {
|
32 |
+
|
33 |
+
load_plugin_textdomain(
|
34 |
+
$this->domain,
|
35 |
+
false,
|
36 |
+
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
|
37 |
+
);
|
38 |
+
|
39 |
+
}
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Set the domain equal to that of the specified domain.
|
43 |
+
*
|
44 |
+
* @since 3.0.0
|
45 |
+
* @param string $domain The domain that represents the locale of this plugin.
|
46 |
+
*/
|
47 |
+
public function set_domain( $domain ) {
|
48 |
+
$this->domain = $domain;
|
49 |
+
}
|
50 |
+
|
51 |
+
}
|
includes/class-wp-svg-icons-loader.php
ADDED
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Register all actions and filters for the plugin.
|
4 |
+
*
|
5 |
+
* Maintain a list of all hooks that are registered throughout
|
6 |
+
* the plugin, and register them with the WordPress API. Call the
|
7 |
+
* run function to execute the list of actions and filters.
|
8 |
+
*
|
9 |
+
* @package svg-vector-icon-plugin
|
10 |
+
* @subpackage svg-vector-icon-plugin/includes
|
11 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
12 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
13 |
+
*/
|
14 |
+
|
15 |
+
class WP_SVG_Icons_Loader {
|
16 |
+
|
17 |
+
/**
|
18 |
+
* The array of actions registered with WordPress.
|
19 |
+
*
|
20 |
+
* @since 3.0.0
|
21 |
+
* @access protected
|
22 |
+
* @var array $actions The actions registered with WordPress to fire when the plugin loads.
|
23 |
+
*/
|
24 |
+
protected $actions;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* The array of filters registered with WordPress.
|
28 |
+
*
|
29 |
+
* @since 3.0.0
|
30 |
+
* @access protected
|
31 |
+
* @var array $filters The filters registered with WordPress to fire when the plugin loads.
|
32 |
+
*/
|
33 |
+
protected $filters;
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Initialize the collections used to maintain the actions and filters.
|
37 |
+
*
|
38 |
+
* @since 3.0.0
|
39 |
+
*/
|
40 |
+
public function __construct() {
|
41 |
+
|
42 |
+
$this->actions = array();
|
43 |
+
$this->filters = array();
|
44 |
+
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Add a new action to the collection to be registered with WordPress.
|
49 |
+
*
|
50 |
+
* @since 3.0.0
|
51 |
+
* @var string $hook The name of the WordPress action that is being registered.
|
52 |
+
* @var object $component A reference to the instance of the object on which the action is defined.
|
53 |
+
* @var string $callback The name of the function definition on the $component.
|
54 |
+
* @var int Optional $priority The priority at which the function should be fired.
|
55 |
+
* @var int Optional $accepted_args The number of arguments that should be passed to the $callback.
|
56 |
+
*/
|
57 |
+
public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
|
58 |
+
$this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args );
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Add a new filter to the collection to be registered with WordPress.
|
63 |
+
*
|
64 |
+
* @since 3.0.0
|
65 |
+
* @var string $hook The name of the WordPress filter that is being registered.
|
66 |
+
* @var object $component A reference to the instance of the object on which the filter is defined.
|
67 |
+
* @var string $callback The name of the function definition on the $component.
|
68 |
+
* @var int Optional $priority The priority at which the function should be fired.
|
69 |
+
* @var int Optional $accepted_args The number of arguments that should be passed to the $callback.
|
70 |
+
*/
|
71 |
+
public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
|
72 |
+
$this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args );
|
73 |
+
}
|
74 |
+
|
75 |
+
/**
|
76 |
+
* A utility function that is used to register the actions and hooks into a single
|
77 |
+
* collection.
|
78 |
+
*
|
79 |
+
* @since 3.0.0
|
80 |
+
* @access private
|
81 |
+
* @var array $hooks The collection of hooks that is being registered (that is, actions or filters).
|
82 |
+
* @var string $hook The name of the WordPress filter that is being registered.
|
83 |
+
* @var object $component A reference to the instance of the object on which the filter is defined.
|
84 |
+
* @var string $callback The name of the function definition on the $component.
|
85 |
+
* @var int Optional $priority The priority at which the function should be fired.
|
86 |
+
* @var int Optional $accepted_args The number of arguments that should be passed to the $callback.
|
87 |
+
* @return type The collection of actions and filters registered with WordPress.
|
88 |
+
*/
|
89 |
+
private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) {
|
90 |
+
|
91 |
+
$hooks[] = array(
|
92 |
+
'hook' => $hook,
|
93 |
+
'component' => $component,
|
94 |
+
'callback' => $callback,
|
95 |
+
'priority' => $priority,
|
96 |
+
'accepted_args' => $accepted_args
|
97 |
+
);
|
98 |
+
|
99 |
+
return $hooks;
|
100 |
+
|
101 |
+
}
|
102 |
+
|
103 |
+
/**
|
104 |
+
* Register the filters and actions with WordPress.
|
105 |
+
*
|
106 |
+
* @since 3.0.0
|
107 |
+
*/
|
108 |
+
public function run() {
|
109 |
+
|
110 |
+
foreach ( $this->filters as $hook ) {
|
111 |
+
add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
|
112 |
+
}
|
113 |
+
|
114 |
+
foreach ( $this->actions as $hook ) {
|
115 |
+
add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
|
116 |
+
}
|
117 |
+
|
118 |
+
}
|
119 |
+
|
120 |
+
}
|
includes/class-wp-svg-icons.php
ADDED
@@ -0,0 +1,198 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The file that defines the core plugin class
|
4 |
+
*
|
5 |
+
* @since 3.0.0
|
6 |
+
* @package svg-vector-icon-plugin
|
7 |
+
* @subpackage svg-vector-icon-plugin/includes
|
8 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
9 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
10 |
+
*/
|
11 |
+
|
12 |
+
class WP_SVG_Icons {
|
13 |
+
|
14 |
+
/**
|
15 |
+
* The loader that's responsible for maintaining and registering all hooks that power
|
16 |
+
* the plugin.
|
17 |
+
*
|
18 |
+
* @since 3.0.0
|
19 |
+
* @access protected
|
20 |
+
* @var Plugin_Name_Loader $loader Maintains and registers all hooks for the plugin.
|
21 |
+
*/
|
22 |
+
protected $loader;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* The unique identifier of this plugin.
|
26 |
+
*
|
27 |
+
* @since 3.0.0
|
28 |
+
* @access protected
|
29 |
+
* @var string $plugin_name The string used to uniquely identify this plugin.
|
30 |
+
*/
|
31 |
+
protected $plugin_name;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* The current version of the plugin.
|
35 |
+
*
|
36 |
+
* @since 3.0.0
|
37 |
+
* @access protected
|
38 |
+
* @var string $version The current version of the plugin.
|
39 |
+
*/
|
40 |
+
protected $version;
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Define the core functionality of the plugin.
|
44 |
+
*
|
45 |
+
* Set the plugin name and the plugin version that can be used throughout the plugin.
|
46 |
+
* Load the dependencies, define the locale, and set the hooks for the Dashboard and
|
47 |
+
* the public-facing side of the site.
|
48 |
+
*
|
49 |
+
* @since 3.0.0
|
50 |
+
*/
|
51 |
+
public function __construct() {
|
52 |
+
|
53 |
+
$this->plugin_name = 'wp-svg-icons';
|
54 |
+
$this->version = '3.0.0';
|
55 |
+
|
56 |
+
$this->load_dependencies();
|
57 |
+
$this->set_locale();
|
58 |
+
$this->define_admin_hooks();
|
59 |
+
$this->define_public_hooks();
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Load the required dependencies for this plugin.
|
65 |
+
*
|
66 |
+
* Include the following files that make up the plugin:
|
67 |
+
*
|
68 |
+
* - WP_SVG_Icons_Loader. Orchestrates the hooks of the plugin.
|
69 |
+
* - WP_SVG_Icons_i18n. Defines internationalization functionality.
|
70 |
+
* - WP_SVG_Icons_Admin. Defines all hooks for the dashboard.
|
71 |
+
* - WP_SVG_Icons_Public. Defines all hooks for the public side of the site.
|
72 |
+
*
|
73 |
+
* Create an instance of the loader which will be used to register the hooks
|
74 |
+
* with WordPress.
|
75 |
+
*
|
76 |
+
* @since 3.0.0
|
77 |
+
* @access private
|
78 |
+
*/
|
79 |
+
private function load_dependencies() {
|
80 |
+
|
81 |
+
/**
|
82 |
+
* The class responsible for orchestrating the actions and filters of the
|
83 |
+
* core plugin.
|
84 |
+
*/
|
85 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wp-svg-icons-loader.php';
|
86 |
+
|
87 |
+
/**
|
88 |
+
* The class responsible for defining internationalization functionality
|
89 |
+
* of the plugin.
|
90 |
+
*/
|
91 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wp-svg-icons-i18n.php';
|
92 |
+
|
93 |
+
/**
|
94 |
+
* The class responsible for defining all actions that occur in the Dashboard.
|
95 |
+
*/
|
96 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-wp-svg-icons-admin.php';
|
97 |
+
|
98 |
+
/**
|
99 |
+
* The class responsible for defining all actions that occur in the public-facing
|
100 |
+
* side of the site.
|
101 |
+
*/
|
102 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-wp-svg-icons-public.php';
|
103 |
+
|
104 |
+
$this->loader = new WP_SVG_Icons_Loader();
|
105 |
+
|
106 |
+
}
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Define the locale for this plugin for internationalization.
|
110 |
+
*
|
111 |
+
* Uses the WP_SVG_Icons_i18n class in order to set the domain and to register the hook
|
112 |
+
* with WordPress.
|
113 |
+
*
|
114 |
+
* @since 3.0.0
|
115 |
+
* @access private
|
116 |
+
*/
|
117 |
+
private function set_locale() {
|
118 |
+
|
119 |
+
$plugin_i18n = new WP_SVG_Icons_i18n();
|
120 |
+
$plugin_i18n->set_domain( $this->get_plugin_name() );
|
121 |
+
|
122 |
+
$this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_wp_svg_icons_textdomain' );
|
123 |
+
|
124 |
+
}
|
125 |
+
|
126 |
+
/**
|
127 |
+
* Register all of the hooks related to the dashboard functionality
|
128 |
+
* of the plugin.
|
129 |
+
*
|
130 |
+
* @since 3.0.0
|
131 |
+
* @access private
|
132 |
+
*/
|
133 |
+
private function define_admin_hooks() {
|
134 |
+
|
135 |
+
$plugin_admin = new WP_SVG_Icons_Admin( $this->get_plugin_name(), $this->get_version() );
|
136 |
+
|
137 |
+
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
|
138 |
+
$this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
|
139 |
+
|
140 |
+
}
|
141 |
+
|
142 |
+
/**
|
143 |
+
* Register all of the hooks related to the public-facing functionality
|
144 |
+
* of the plugin.
|
145 |
+
*
|
146 |
+
* @since 3.0.0
|
147 |
+
* @access private
|
148 |
+
*/
|
149 |
+
private function define_public_hooks() {
|
150 |
+
|
151 |
+
$plugin_public = new WP_SVG_Icons_Public( $this->get_plugin_name(), $this->get_version() );
|
152 |
+
|
153 |
+
$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
|
154 |
+
$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
|
155 |
+
|
156 |
+
}
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Run the loader to execute all of the hooks with WordPress.
|
160 |
+
*
|
161 |
+
* @since 3.0.0
|
162 |
+
*/
|
163 |
+
public function run() {
|
164 |
+
$this->loader->run();
|
165 |
+
}
|
166 |
+
|
167 |
+
/**
|
168 |
+
* The name of the plugin used to uniquely identify it within the context of
|
169 |
+
* WordPress and to define internationalization functionality.
|
170 |
+
*
|
171 |
+
* @since 3.0.0
|
172 |
+
* @return string The name of the plugin.
|
173 |
+
*/
|
174 |
+
public function get_plugin_name() {
|
175 |
+
return $this->plugin_name;
|
176 |
+
}
|
177 |
+
|
178 |
+
/**
|
179 |
+
* The reference to the class that orchestrates the hooks with the plugin.
|
180 |
+
*
|
181 |
+
* @since 3.0.0
|
182 |
+
* @return Plugin_Name_Loader Orchestrates the hooks of the plugin.
|
183 |
+
*/
|
184 |
+
public function get_loader() {
|
185 |
+
return $this->loader;
|
186 |
+
}
|
187 |
+
|
188 |
+
/**
|
189 |
+
* Retrieve the version number of the plugin.
|
190 |
+
*
|
191 |
+
* @since 3.0.0
|
192 |
+
* @return string The version number of the plugin.
|
193 |
+
*/
|
194 |
+
public function get_version() {
|
195 |
+
return $this->version;
|
196 |
+
}
|
197 |
+
|
198 |
+
}
|
includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.eot
DELETED
Binary file
|
includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.svg
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Generated by IcoMoon</metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="wp-svg-plugin-icon-set1-expansion" horiz-adv-x="1024">
|
7 |
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
-
<missing-glyph horiz-adv-x="1024" />
|
9 |
-
<glyph unicode=" " d="" horiz-adv-x="512" />
|
10 |
-
<glyph unicode="" d="M1018.201 444.444c-0.168-280.013-225.14-504.273-505.89-504.309-281.852-0.028-506.716 225.886-506.379 508.732 0.346 282.661 224.724 503.91 510.668 503.545 279.606-0.364 501.779-225.362 501.601-507.968zM445.411 375.922c1.216-0.007 2.425-0.007 3.641-0.007 0-39.929 2.318-80.034-0.586-119.749-3.613-49.324 25.906-49.679 61.838-50.762 39.058-1.191 57.85 10.55 55.391 52.718-2.566 44.218-0.915 88.701-0.374 133.061 0.558 45.853 22.495 76.046 55.425 77.816 33.943 1.829 58.578-29.726 59.555-78.623 0.951-47.307 1.608-94.68 0.134-141.952-1.323-42.371 25.603-43.117 55.798-42.379 29.619 0.719 61.775-5 60.718 41.874-1.323 59.121 1.056 118.346-0.746 177.44-3.525 115.169-101.465 169.813-202.431 114.155-8.206-4.531-17.202-18.33-26.359-6.189-26.438 35.017-62.698 15.834-94.546 18.819-22.905 2.149-28.801-12.397-27.983-34.466 1.732-47.193 0.524-94.501 0.524-141.746zM263.666 381.4c0.064 0 0.114 0 0.178 0 0-45.825 0.214-91.66-0.078-137.492-0.168-25.729 11.732-38.286 37.735-37.592 16.252 0.435 32.53 0.39 48.783 0.053 26.51-0.558 36.953 13.374 36.892 38.534-0.231 90.184-0.231 180.38-0.035 270.565 0.053 25.729-11.812 38.279-37.789 37.557-14.778-0.399-29.6-0.622-44.341 0.178-30.915 1.67-42.113-13.935-41.535-43.162 0.817-42.868 0.195-85.762 0.195-128.64zM326.798 599.477c32.743 0.959 60.975 30.523 60.888 63.749-0.099 34.974-26.359 58.621-64.030 57.629-37.789-0.985-61.633-25.24-60.301-61.305 1.287-34.715 29.147-61.082 63.447-60.072z" />
|
11 |
-
</font></defs></svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.ttf
DELETED
Binary file
|
includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.woff
DELETED
Binary file
|
includes/css/jquery.dropdown.css
DELETED
@@ -1,134 +0,0 @@
|
|
1 |
-
.dropdown {
|
2 |
-
position: absolute;
|
3 |
-
z-index: 9999999;
|
4 |
-
display: none;
|
5 |
-
}
|
6 |
-
|
7 |
-
.dropdown .dropdown-menu,
|
8 |
-
.dropdown .dropdown-panel {
|
9 |
-
min-width: 160px;
|
10 |
-
max-width: 360px;
|
11 |
-
list-style: none;
|
12 |
-
background: #FFF;
|
13 |
-
border: solid 1px #DDD;
|
14 |
-
border: solid 1px rgba(0, 0, 0, .2);
|
15 |
-
border-radius: 6px;
|
16 |
-
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
17 |
-
overflow: visible;
|
18 |
-
padding: 4px 0;
|
19 |
-
margin: 0;
|
20 |
-
}
|
21 |
-
|
22 |
-
.dropdown .dropdown-panel {
|
23 |
-
padding: 10px;
|
24 |
-
}
|
25 |
-
|
26 |
-
.dropdown.dropdown-tip {
|
27 |
-
margin-top: 8px;
|
28 |
-
}
|
29 |
-
|
30 |
-
.dropdown.dropdown-tip:before {
|
31 |
-
position: absolute;
|
32 |
-
top: -6px;
|
33 |
-
left: 9px;
|
34 |
-
content: '';
|
35 |
-
border-left: 7px solid transparent;
|
36 |
-
border-right: 7px solid transparent;
|
37 |
-
border-bottom: 7px solid #CCC;
|
38 |
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
39 |
-
display: inline-block;
|
40 |
-
}
|
41 |
-
|
42 |
-
.dropdown.dropdown-tip.dropdown-anchor-right:before {
|
43 |
-
left: auto;
|
44 |
-
right: 9px;
|
45 |
-
}
|
46 |
-
|
47 |
-
.dropdown.dropdown-tip:after {
|
48 |
-
position: absolute;
|
49 |
-
top: -5px;
|
50 |
-
left: 10px;
|
51 |
-
content: '';
|
52 |
-
border-left: 6px solid transparent;
|
53 |
-
border-right: 6px solid transparent;
|
54 |
-
border-bottom: 6px solid #FFF;
|
55 |
-
display: inline-block;
|
56 |
-
}
|
57 |
-
|
58 |
-
.dropdown.dropdown-tip.dropdown-anchor-right:after {
|
59 |
-
left: auto;
|
60 |
-
right: 10px;
|
61 |
-
}
|
62 |
-
|
63 |
-
|
64 |
-
.dropdown.dropdown-scroll .dropdown-menu,
|
65 |
-
.dropdown.dropdown-scroll .dropdown-panel {
|
66 |
-
max-height: 358px;
|
67 |
-
overflow: auto;
|
68 |
-
}
|
69 |
-
|
70 |
-
.dropdown .dropdown-menu LI {
|
71 |
-
list-style: none;
|
72 |
-
padding: 0 0;
|
73 |
-
margin: 0;
|
74 |
-
line-height: 18px;
|
75 |
-
}
|
76 |
-
|
77 |
-
.dropdown .dropdown-menu LI > A,
|
78 |
-
.dropdown .dropdown-menu LABEL {
|
79 |
-
display: block;
|
80 |
-
color: #555;
|
81 |
-
text-decoration: none;
|
82 |
-
line-height: 18px;
|
83 |
-
padding: 3px 15px;
|
84 |
-
white-space: nowrap;
|
85 |
-
}
|
86 |
-
|
87 |
-
.dropdown .dropdown-menu LI > A:hover,
|
88 |
-
.dropdown .dropdown-menu LABEL:hover {
|
89 |
-
background-color: rgba(255, 128, 0, 0.6);
|
90 |
-
color: #FFF;
|
91 |
-
cursor: pointer;
|
92 |
-
}
|
93 |
-
|
94 |
-
.dropdown .dropdown-menu .dropdown-divider {
|
95 |
-
font-size: 1px;
|
96 |
-
border-top: solid 1px #E5E5E5;
|
97 |
-
padding: 0;
|
98 |
-
margin: 5px 0;
|
99 |
-
}
|
100 |
-
|
101 |
-
/* Icon Examples - icons courtesy of http://p.yusukekamiyamane.com/ */
|
102 |
-
.dropdown.has-icons LI > A {
|
103 |
-
padding-left: 30px;
|
104 |
-
background-position: 8px center;
|
105 |
-
background-repeat: no-repeat;
|
106 |
-
}
|
107 |
-
|
108 |
-
.dropdown .undo A { background-image: url(icons/arrow-curve-180-left.png); }
|
109 |
-
.dropdown .redo A { background-image: url(icons/arrow-curve.png); }
|
110 |
-
.dropdown .cut A { background-image: url(icons/scissors.png); }
|
111 |
-
.dropdown .copy A { background-image: url(icons/document-copy.png); }
|
112 |
-
.dropdown .paste A { background-image: url(icons/clipboard.png); }
|
113 |
-
.dropdown .delete A { background-image: url(icons/cross-script.png); }
|
114 |
-
|
115 |
-
|
116 |
-
.glyph {
|
117 |
-
font-size: 16px;
|
118 |
-
float: left;
|
119 |
-
text-align: center;
|
120 |
-
background: #eee;
|
121 |
-
padding: .75em;
|
122 |
-
margin: .75em 1.5em .75em 0;
|
123 |
-
width: 7.5em;
|
124 |
-
border-radius: .25em;
|
125 |
-
box-shadow: inset 0 0 0 1px #f8f8f8, 0 0 0 1px #CCC;
|
126 |
-
}
|
127 |
-
|
128 |
-
.fs1 {
|
129 |
-
font-size: 2em;
|
130 |
-
}
|
131 |
-
|
132 |
-
.wp-svg-icon-preview-box { display:inline-block; float:right; margin-top: -210px; margin-right: 15px; width:170px; border: 1px dashed #CCCCCC; height:125px; padding:.8em; margin-bottom:10px; text-align:center; }
|
133 |
-
|
134 |
-
footer { float:left; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/css/wordpress-svg-icon-plugin-expansion-style.css
DELETED
@@ -1,40 +0,0 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'wp-svg-plugin-icon-set1-expansion';
|
3 |
-
src:url('icon-font/wp-svg-plugin-icon-set1-expansion.eot');
|
4 |
-
src:url('icon-font/wp-svg-plugin-icon-set1-expansion.eot?#iefix') format('embedded-opentype'),
|
5 |
-
url('icon-font/wp-svg-plugin-icon-set1-expansion.woff') format('woff'),
|
6 |
-
url('icon-font/wp-svg-plugin-icon-set1-expansion.ttf') format('truetype'),
|
7 |
-
url('icon-font/wp-svg-plugin-icon-set1-expansion.svg#wp-svg-plugin-icon-set1') format('svg');
|
8 |
-
font-weight: normal;
|
9 |
-
font-style: normal;
|
10 |
-
}
|
11 |
-
|
12 |
-
[class*="wp-svg-icon-set1-expansion-"] {
|
13 |
-
font-family: 'wp-svg-plugin-icon-set1-expansion';
|
14 |
-
speak: none;
|
15 |
-
font-style: normal;
|
16 |
-
font-weight: normal;
|
17 |
-
font-variant: normal;
|
18 |
-
text-transform: none;
|
19 |
-
line-height: 1;
|
20 |
-
|
21 |
-
/* Better Font Rendering =========== */
|
22 |
-
-webkit-font-smoothing: antialiased;
|
23 |
-
-moz-osx-font-smoothing: grayscale;
|
24 |
-
}
|
25 |
-
|
26 |
-
|
27 |
-
.wp-svg-icon-set1-expansion-linkedin_circle {
|
28 |
-
font-family: 'wp-svg-plugin-icon-set1-expansion';
|
29 |
-
speak: none;
|
30 |
-
font-style: normal;
|
31 |
-
font-weight: normal;
|
32 |
-
font-variant: normal;
|
33 |
-
text-transform: none;
|
34 |
-
line-height: 1;
|
35 |
-
-webkit-font-smoothing: antialiased;
|
36 |
-
}
|
37 |
-
|
38 |
-
.wp-svg-icon-set1-expansion-linkedin_circle:before {
|
39 |
-
content: "\e600";
|
40 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/css/wordpress-svg-icon-plugin-style.css
DELETED
@@ -1,1595 +0,0 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'wp-svg-plugin-icon-set1';
|
3 |
-
src:url('icon-font/wp-svg-plugin-icon-set1.eot');
|
4 |
-
src:url('icon-font/wp-svg-plugin-icon-set1.eot?#iefix') format('embedded-opentype'),
|
5 |
-
url('icon-font/wp-svg-plugin-icon-set1.woff') format('woff'),
|
6 |
-
url('icon-font/wp-svg-plugin-icon-set1.ttf') format('truetype'),
|
7 |
-
url('icon-font/wp-svg-plugin-icon-set1.svg#wp-svg-plugin-icon-set1') format('svg');
|
8 |
-
font-weight: normal;
|
9 |
-
font-style: normal;
|
10 |
-
}
|
11 |
-
|
12 |
-
|
13 |
-
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
14 |
-
[data-icon]:before {
|
15 |
-
font-family: 'wp-svg-plugin-icon-set1';
|
16 |
-
content: attr(data-icon);
|
17 |
-
speak: none;
|
18 |
-
font-weight: normal;
|
19 |
-
font-variant: normal;
|
20 |
-
text-transform: none;
|
21 |
-
line-height: 1;
|
22 |
-
-webkit-font-smoothing: antialiased;
|
23 |
-
}
|
24 |
-
|
25 |
-
/* Use the following CSS code if you want to have a class per icon */
|
26 |
-
/*
|
27 |
-
Instead of a list of all class selectors,
|
28 |
-
you can use the generic selector below, but it's slower:
|
29 |
-
[class*="wp-svg-icon-set1-"] {
|
30 |
-
*/
|
31 |
-
.wp-svg-icon-set1-home, .wp-svg-icon-set1-home-2, .wp-svg-icon-set1-home-3, .wp-svg-icon-set1-office, .wp-svg-icon-set1-newspaper, .wp-svg-icon-set1-pencil, .wp-svg-icon-set1-pencil-2, .wp-svg-icon-set1-quill, .wp-svg-icon-set1-pen, .wp-svg-icon-set1-blog, .wp-svg-icon-set1-droplet, .wp-svg-icon-set1-paint-format, .wp-svg-icon-set1-image, .wp-svg-icon-set1-image-2, .wp-svg-icon-set1-images, .wp-svg-icon-set1-camera, .wp-svg-icon-set1-music, .wp-svg-icon-set1-headphones, .wp-svg-icon-set1-play, .wp-svg-icon-set1-film, .wp-svg-icon-set1-camera-2, .wp-svg-icon-set1-dice, .wp-svg-icon-set1-pacman, .wp-svg-icon-set1-spades, .wp-svg-icon-set1-clubs, .wp-svg-icon-set1-diamonds, .wp-svg-icon-set1-pawn, .wp-svg-icon-set1-bullhorn, .wp-svg-icon-set1-connection, .wp-svg-icon-set1-podcast, .wp-svg-icon-set1-feed, .wp-svg-icon-set1-book, .wp-svg-icon-set1-books, .wp-svg-icon-set1-library, .wp-svg-icon-set1-file, .wp-svg-icon-set1-profile, .wp-svg-icon-set1-file-2, .wp-svg-icon-set1-file-3, .wp-svg-icon-set1-file-4, .wp-svg-icon-set1-copy, .wp-svg-icon-set1-copy-2, .wp-svg-icon-set1-copy-3, .wp-svg-icon-set1-paste, .wp-svg-icon-set1-paste-2, .wp-svg-icon-set1-paste-3, .wp-svg-icon-set1-stack, .wp-svg-icon-set1-folder, .wp-svg-icon-set1-folder-open, .wp-svg-icon-set1-tag, .wp-svg-icon-set1-tags, .wp-svg-icon-set1-barcode, .wp-svg-icon-set1-qrcode, .wp-svg-icon-set1-ticket, .wp-svg-icon-set1-cart, .wp-svg-icon-set1-cart-2, .wp-svg-icon-set1-cart-3, .wp-svg-icon-set1-coin, .wp-svg-icon-set1-credit, .wp-svg-icon-set1-calculate, .wp-svg-icon-set1-support, .wp-svg-icon-set1-phone, .wp-svg-icon-set1-phone-hang-up, .wp-svg-icon-set1-address-book, .wp-svg-icon-set1-notebook, .wp-svg-icon-set1-envelop, .wp-svg-icon-set1-pushpin, .wp-svg-icon-set1-location, .wp-svg-icon-set1-location-2, .wp-svg-icon-set1-compass, .wp-svg-icon-set1-map, .wp-svg-icon-set1-map-2, .wp-svg-icon-set1-history, .wp-svg-icon-set1-clock, .wp-svg-icon-set1-clock-2, .wp-svg-icon-set1-alarm, .wp-svg-icon-set1-alarm-2, .wp-svg-icon-set1-bell, .wp-svg-icon-set1-stopwatch, .wp-svg-icon-set1-calendar, .wp-svg-icon-set1-calendar-2, .wp-svg-icon-set1-print, .wp-svg-icon-set1-keyboard, .wp-svg-icon-set1-screen, .wp-svg-icon-set1-laptop, .wp-svg-icon-set1-mobile, .wp-svg-icon-set1-mobile-2, .wp-svg-icon-set1-tablet, .wp-svg-icon-set1-tv, .wp-svg-icon-set1-cabinet, .wp-svg-icon-set1-drawer, .wp-svg-icon-set1-drawer-2, .wp-svg-icon-set1-drawer-3, .wp-svg-icon-set1-box-add, .wp-svg-icon-set1-box-remove, .wp-svg-icon-set1-download, .wp-svg-icon-set1-upload, .wp-svg-icon-set1-disk, .wp-svg-icon-set1-storage, .wp-svg-icon-set1-undo, .wp-svg-icon-set1-redo, .wp-svg-icon-set1-flip, .wp-svg-icon-set1-flip-2, .wp-svg-icon-set1-undo-2, .wp-svg-icon-set1-redo-2, .wp-svg-icon-set1-forward, .wp-svg-icon-set1-reply, .wp-svg-icon-set1-bubble, .wp-svg-icon-set1-bubbles, .wp-svg-icon-set1-bubbles-2, .wp-svg-icon-set1-bubble-2, .wp-svg-icon-set1-bubbles-3, .wp-svg-icon-set1-bubbles-4, .wp-svg-icon-set1-user, .wp-svg-icon-set1-users, .wp-svg-icon-set1-user-2, .wp-svg-icon-set1-users-2, .wp-svg-icon-set1-user-3, .wp-svg-icon-set1-user-4, .wp-svg-icon-set1-quotes-left, .wp-svg-icon-set1-busy, .wp-svg-icon-set1-spinner, .wp-svg-icon-set1-spinner-2, .wp-svg-icon-set1-spinner-3, .wp-svg-icon-set1-spinner-4, .wp-svg-icon-set1-spinner-5, .wp-svg-icon-set1-spinner-6, .wp-svg-icon-set1-binoculars, .wp-svg-icon-set1-search, .wp-svg-icon-set1-zoom-in, .wp-svg-icon-set1-zoom-out, .wp-svg-icon-set1-expand, .wp-svg-icon-set1-contract, .wp-svg-icon-set1-expand-2, .wp-svg-icon-set1-contract-2, .wp-svg-icon-set1-key, .wp-svg-icon-set1-key-2, .wp-svg-icon-set1-lock, .wp-svg-icon-set1-lock-2, .wp-svg-icon-set1-unlocked, .wp-svg-icon-set1-wrench, .wp-svg-icon-set1-settings, .wp-svg-icon-set1-equalizer, .wp-svg-icon-set1-cog, .wp-svg-icon-set1-cogs, .wp-svg-icon-set1-cog-2, .wp-svg-icon-set1-hammer, .wp-svg-icon-set1-wand, .wp-svg-icon-set1-aid, .wp-svg-icon-set1-bug, .wp-svg-icon-set1-pie, .wp-svg-icon-set1-stats, .wp-svg-icon-set1-bars, .wp-svg-icon-set1-bars-2, .wp-svg-icon-set1-gift, .wp-svg-icon-set1-trophy, .wp-svg-icon-set1-glass, .wp-svg-icon-set1-mug, .wp-svg-icon-set1-food, .wp-svg-icon-set1-leaf, .wp-svg-icon-set1-rocket, .wp-svg-icon-set1-meter, .wp-svg-icon-set1-meter2, .wp-svg-icon-set1-dashboard, .wp-svg-icon-set1-hammer-2, .wp-svg-icon-set1-fire, .wp-svg-icon-set1-lab, .wp-svg-icon-set1-magnet, .wp-svg-icon-set1-remove, .wp-svg-icon-set1-remove-2, .wp-svg-icon-set1-briefcase, .wp-svg-icon-set1-airplane, .wp-svg-icon-set1-truck, .wp-svg-icon-set1-road, .wp-svg-icon-set1-accessibility, .wp-svg-icon-set1-target, .wp-svg-icon-set1-shield, .wp-svg-icon-set1-lightning, .wp-svg-icon-set1-switch, .wp-svg-icon-set1-power-cord, .wp-svg-icon-set1-signup, .wp-svg-icon-set1-list, .wp-svg-icon-set1-list-2, .wp-svg-icon-set1-numbered-list, .wp-svg-icon-set1-menu, .wp-svg-icon-set1-menu-2, .wp-svg-icon-set1-tree, .wp-svg-icon-set1-cloud, .wp-svg-icon-set1-cloud-download, .wp-svg-icon-set1-cloud-upload, .wp-svg-icon-set1-download-2, .wp-svg-icon-set1-upload-2, .wp-svg-icon-set1-download-3, .wp-svg-icon-set1-upload-3, .wp-svg-icon-set1-globe, .wp-svg-icon-set1-earth, .wp-svg-icon-set1-link, .wp-svg-icon-set1-flag, .wp-svg-icon-set1-attachment, .wp-svg-icon-set1-eye, .wp-svg-icon-set1-eye-blocked, .wp-svg-icon-set1-eye-2, .wp-svg-icon-set1-bookmark, .wp-svg-icon-set1-bookmarks, .wp-svg-icon-set1-brightness-medium, .wp-svg-icon-set1-brightness-contrast, .wp-svg-icon-set1-contrast, .wp-svg-icon-set1-star, .wp-svg-icon-set1-star-2, .wp-svg-icon-set1-star-3, .wp-svg-icon-set1-heart, .wp-svg-icon-set1-heart-2, .wp-svg-icon-set1-heart-broken, .wp-svg-icon-set1-thumbs-up, .wp-svg-icon-set1-thumbs-up-2, .wp-svg-icon-set1-happy, .wp-svg-icon-set1-happy-2, .wp-svg-icon-set1-smiley, .wp-svg-icon-set1-smiley-2, .wp-svg-icon-set1-tongue, .wp-svg-icon-set1-tongue-2, .wp-svg-icon-set1-sad, .wp-svg-icon-set1-sad-2, .wp-svg-icon-set1-wink, .wp-svg-icon-set1-wink-2, .wp-svg-icon-set1-grin, .wp-svg-icon-set1-grin-2, .wp-svg-icon-set1-cool, .wp-svg-icon-set1-cool-2, .wp-svg-icon-set1-angry, .wp-svg-icon-set1-angry-2, .wp-svg-icon-set1-evil, .wp-svg-icon-set1-evil-2, .wp-svg-icon-set1-shocked, .wp-svg-icon-set1-shocked-2, .wp-svg-icon-set1-confused, .wp-svg-icon-set1-confused-2, .wp-svg-icon-set1-neutral, .wp-svg-icon-set1-neutral-2, .wp-svg-icon-set1-wondering, .wp-svg-icon-set1-wondering-2, .wp-svg-icon-set1-point-up, .wp-svg-icon-set1-point-right, .wp-svg-icon-set1-point-down, .wp-svg-icon-set1-point-left, .wp-svg-icon-set1-warning, .wp-svg-icon-set1-notification, .wp-svg-icon-set1-question, .wp-svg-icon-set1-info, .wp-svg-icon-set1-info-2, .wp-svg-icon-set1-blocked, .wp-svg-icon-set1-cancel-circle, .wp-svg-icon-set1-checkmark-circle, .wp-svg-icon-set1-spam, .wp-svg-icon-set1-close, .wp-svg-icon-set1-checkmark, .wp-svg-icon-set1-checkmark-2, .wp-svg-icon-set1-spell-check, .wp-svg-icon-set1-minus, .wp-svg-icon-set1-plus, .wp-svg-icon-set1-enter, .wp-svg-icon-set1-exit, .wp-svg-icon-set1-play-2, .wp-svg-icon-set1-pause, .wp-svg-icon-set1-stop, .wp-svg-icon-set1-backward, .wp-svg-icon-set1-forward-2, .wp-svg-icon-set1-play-3, .wp-svg-icon-set1-pause-2, .wp-svg-icon-set1-stop-2, .wp-svg-icon-set1-backward-2, .wp-svg-icon-set1-forward-3, .wp-svg-icon-set1-first, .wp-svg-icon-set1-last, .wp-svg-icon-set1-previous, .wp-svg-icon-set1-next, .wp-svg-icon-set1-eject, .wp-svg-icon-set1-volume-high, .wp-svg-icon-set1-volume-medium, .wp-svg-icon-set1-volume-low, .wp-svg-icon-set1-volume-mute, .wp-svg-icon-set1-volume-mute-2, .wp-svg-icon-set1-volume-increase, .wp-svg-icon-set1-volume-decrease, .wp-svg-icon-set1-loop, .wp-svg-icon-set1-loop-2, .wp-svg-icon-set1-loop-3, .wp-svg-icon-set1-shuffle, .wp-svg-icon-set1-arrow-up-left, .wp-svg-icon-set1-arrow-up, .wp-svg-icon-set1-arrow-up-right, .wp-svg-icon-set1-arrow-right, .wp-svg-icon-set1-arrow-down-right, .wp-svg-icon-set1-arrow-down, .wp-svg-icon-set1-arrow-down-left, .wp-svg-icon-set1-arrow-left, .wp-svg-icon-set1-arrow-up-left-2, .wp-svg-icon-set1-arrow-up-2, .wp-svg-icon-set1-arrow-up-right-2, .wp-svg-icon-set1-arrow-right-2, .wp-svg-icon-set1-arrow-down-right-2, .wp-svg-icon-set1-arrow-down-2, .wp-svg-icon-set1-arrow-down-left-2, .wp-svg-icon-set1-arrow-left-2, .wp-svg-icon-set1-arrow-up-left-3, .wp-svg-icon-set1-arrow-up-3, .wp-svg-icon-set1-arrow-up-right-3, .wp-svg-icon-set1-arrow-right-3, .wp-svg-icon-set1-arrow-down-right-3, .wp-svg-icon-set1-arrow-down-3, .wp-svg-icon-set1-arrow-down-left-3, .wp-svg-icon-set1-arrow-left-3, .wp-svg-icon-set1-tab, .wp-svg-icon-set1-checkbox-checked, .wp-svg-icon-set1-checkbox-unchecked, .wp-svg-icon-set1-checkbox-partial, .wp-svg-icon-set1-radio-checked, .wp-svg-icon-set1-radio-unchecked, .wp-svg-icon-set1-crop, .wp-svg-icon-set1-scissors, .wp-svg-icon-set1-filter, .wp-svg-icon-set1-filter-2, .wp-svg-icon-set1-font, .wp-svg-icon-set1-text-height, .wp-svg-icon-set1-text-width, .wp-svg-icon-set1-bold, .wp-svg-icon-set1-underline, .wp-svg-icon-set1-italic, .wp-svg-icon-set1-strikethrough, .wp-svg-icon-set1-omega, .wp-svg-icon-set1-sigma, .wp-svg-icon-set1-table, .wp-svg-icon-set1-table-2, .wp-svg-icon-set1-insert-template, .wp-svg-icon-set1-pilcrow, .wp-svg-icon-set1-left-to-right, .wp-svg-icon-set1-right-to-left, .wp-svg-icon-set1-paragraph-left, .wp-svg-icon-set1-paragraph-center, .wp-svg-icon-set1-paragraph-right, .wp-svg-icon-set1-paragraph-justify, .wp-svg-icon-set1-paragraph-left-2, .wp-svg-icon-set1-paragraph-center-2, .wp-svg-icon-set1-paragraph-right-2, .wp-svg-icon-set1-paragraph-justify-2, .wp-svg-icon-set1-indent-increase, .wp-svg-icon-set1-indent-decrease, .wp-svg-icon-set1-new-tab, .wp-svg-icon-set1-embed, .wp-svg-icon-set1-code, .wp-svg-icon-set1-console, .wp-svg-icon-set1-share, .wp-svg-icon-set1-mail, .wp-svg-icon-set1-mail-2, .wp-svg-icon-set1-mail-3, .wp-svg-icon-set1-mail-4, .wp-svg-icon-set1-google, .wp-svg-icon-set1-google-plus, .wp-svg-icon-set1-google-plus-2, .wp-svg-icon-set1-google-plus-3, .wp-svg-icon-set1-google-plus-4, .wp-svg-icon-set1-google-drive, .wp-svg-icon-set1-facebook, .wp-svg-icon-set1-facebook-2, .wp-svg-icon-set1-facebook-3, .wp-svg-icon-set1-instagram, .wp-svg-icon-set1-twitter, .wp-svg-icon-set1-twitter-2, .wp-svg-icon-set1-twitter-3, .wp-svg-icon-set1-feed-2, .wp-svg-icon-set1-feed-3, .wp-svg-icon-set1-feed-4, .wp-svg-icon-set1-youtube, .wp-svg-icon-set1-youtube-2, .wp-svg-icon-set1-vimeo, .wp-svg-icon-set1-vimeo2, .wp-svg-icon-set1-vimeo-2, .wp-svg-icon-set1-lanyrd, .wp-svg-icon-set1-flickr, .wp-svg-icon-set1-flickr-2, .wp-svg-icon-set1-flickr-3, .wp-svg-icon-set1-flickr-4, .wp-svg-icon-set1-picassa, .wp-svg-icon-set1-picassa-2, .wp-svg-icon-set1-dribbble, .wp-svg-icon-set1-dribbble-2, .wp-svg-icon-set1-dribbble-3, .wp-svg-icon-set1-forrst, .wp-svg-icon-set1-forrst-2, .wp-svg-icon-set1-deviantart, .wp-svg-icon-set1-deviantart-2, .wp-svg-icon-set1-steam, .wp-svg-icon-set1-steam-2, .wp-svg-icon-set1-github, .wp-svg-icon-set1-github-2, .wp-svg-icon-set1-github-3, .wp-svg-icon-set1-github-4, .wp-svg-icon-set1-github-5, .wp-svg-icon-set1-wordpress, .wp-svg-icon-set1-wordpress-2, .wp-svg-icon-set1-joomla, .wp-svg-icon-set1-blogger, .wp-svg-icon-set1-blogger-2, .wp-svg-icon-set1-tumblr, .wp-svg-icon-set1-tumblr-2, .wp-svg-icon-set1-yahoo, .wp-svg-icon-set1-tux, .wp-svg-icon-set1-apple, .wp-svg-icon-set1-finder, .wp-svg-icon-set1-android, .wp-svg-icon-set1-windows, .wp-svg-icon-set1-windows8, .wp-svg-icon-set1-soundcloud, .wp-svg-icon-set1-soundcloud-2, .wp-svg-icon-set1-skype, .wp-svg-icon-set1-reddit, .wp-svg-icon-set1-linkedin, .wp-svg-icon-set1-lastfm, .wp-svg-icon-set1-lastfm-2, .wp-svg-icon-set1-delicious, .wp-svg-icon-set1-stumbleupon, .wp-svg-icon-set1-stumbleupon-2, .wp-svg-icon-set1-stackoverflow, .wp-svg-icon-set1-pinterest, .wp-svg-icon-set1-pinterest-2, .wp-svg-icon-set1-xing, .wp-svg-icon-set1-xing-2, .wp-svg-icon-set1-flattr, .wp-svg-icon-set1-foursquare, .wp-svg-icon-set1-foursquare-2, .wp-svg-icon-set1-paypal, .wp-svg-icon-set1-paypal-2, .wp-svg-icon-set1-paypal-3, .wp-svg-icon-set1-yelp, .wp-svg-icon-set1-libreoffice, .wp-svg-icon-set1-file-pdf, .wp-svg-icon-set1-file-openoffice, .wp-svg-icon-set1-file-word, .wp-svg-icon-set1-file-excel, .wp-svg-icon-set1-file-zip, .wp-svg-icon-set1-file-powerpoint, .wp-svg-icon-set1-file-xml, .wp-svg-icon-set1-file-css, .wp-svg-icon-set1-html5, .wp-svg-icon-set1-html5-2, .wp-svg-icon-set1-css3, .wp-svg-icon-set1-chrome, .wp-svg-icon-set1-firefox, .wp-svg-icon-set1-IE, .wp-svg-icon-set1-opera, .wp-svg-icon-set1-safari, .wp-svg-icon-set1-IcoMoon, .wp-svg-icon-set1-sunrise, .wp-svg-icon-set1-sun, .wp-svg-icon-set1-moon, .wp-svg-icon-set1-sun-2, .wp-svg-icon-set1-windy, .wp-svg-icon-set1-wind, .wp-svg-icon-set1-snowflake, .wp-svg-icon-set1-cloudy, .wp-svg-icon-set1-cloud-2, .wp-svg-icon-set1-weather, .wp-svg-icon-set1-weather-2, .wp-svg-icon-set1-weather-3, .wp-svg-icon-set1-lines, .wp-svg-icon-set1-cloud-3, .wp-svg-icon-set1-lightning-2, .wp-svg-icon-set1-lightning-3, .wp-svg-icon-set1-rainy, .wp-svg-icon-set1-rainy-2, .wp-svg-icon-set1-windy-2, .wp-svg-icon-set1-windy-3, .wp-svg-icon-set1-snowy, .wp-svg-icon-set1-snowy-2, .wp-svg-icon-set1-snowy-3, .wp-svg-icon-set1-weather-4, .wp-svg-icon-set1-cloudy-2, .wp-svg-icon-set1-cloud-4, .wp-svg-icon-set1-lightning-4, .wp-svg-icon-set1-sun-3, .wp-svg-icon-set1-moon-2, .wp-svg-icon-set1-cloudy-3, .wp-svg-icon-set1-cloud-5, .wp-svg-icon-set1-cloud-6, .wp-svg-icon-set1-lightning-5, .wp-svg-icon-set1-rainy-3, .wp-svg-icon-set1-rainy-4, .wp-svg-icon-set1-windy-4, .wp-svg-icon-set1-windy-5, .wp-svg-icon-set1-snowy-4, .wp-svg-icon-set1-snowy-5, .wp-svg-icon-set1-weather-5, .wp-svg-icon-set1-cloudy-4, .wp-svg-icon-set1-lightning-6, .wp-svg-icon-set1-thermometer, .wp-svg-icon-set1-compass-2, .wp-svg-icon-set1-none, .wp-svg-icon-set1-Celsius, .wp-svg-icon-set1-Fahrenheit, .wp-svg-icon-set1-aperture, .wp-svg-icon-set1-camera-3 {
|
32 |
-
font-family: 'wp-svg-plugin-icon-set1';
|
33 |
-
speak: none;
|
34 |
-
font-style: normal;
|
35 |
-
font-weight: normal;
|
36 |
-
font-variant: normal;
|
37 |
-
text-transform: none;
|
38 |
-
line-height: 1;
|
39 |
-
-webkit-font-smoothing: antialiased;
|
40 |
-
}
|
41 |
-
.wp-svg-icon-set1-home:before {
|
42 |
-
content: "\e000";
|
43 |
-
}
|
44 |
-
.wp-svg-icon-set1-home-2:before {
|
45 |
-
content: "\e001";
|
46 |
-
}
|
47 |
-
.wp-svg-icon-set1-home-3:before {
|
48 |
-
content: "\e002";
|
49 |
-
}
|
50 |
-
.wp-svg-icon-set1-office:before {
|
51 |
-
content: "\e003";
|
52 |
-
}
|
53 |
-
.wp-svg-icon-set1-newspaper:before {
|
54 |
-
content: "\e004";
|
55 |
-
}
|
56 |
-
.wp-svg-icon-set1-pencil:before {
|
57 |
-
content: "\e005";
|
58 |
-
}
|
59 |
-
.wp-svg-icon-set1-pencil-2:before {
|
60 |
-
content: "\e006";
|
61 |
-
}
|
62 |
-
.wp-svg-icon-set1-quill:before {
|
63 |
-
content: "\e007";
|
64 |
-
}
|
65 |
-
.wp-svg-icon-set1-pen:before {
|
66 |
-
content: "\e008";
|
67 |
-
}
|
68 |
-
.wp-svg-icon-set1-blog:before {
|
69 |
-
content: "\e009";
|
70 |
-
}
|
71 |
-
.wp-svg-icon-set1-droplet:before {
|
72 |
-
content: "\e00a";
|
73 |
-
}
|
74 |
-
.wp-svg-icon-set1-paint-format:before {
|
75 |
-
content: "\e00b";
|
76 |
-
}
|
77 |
-
.wp-svg-icon-set1-image:before {
|
78 |
-
content: "\e00c";
|
79 |
-
}
|
80 |
-
.wp-svg-icon-set1-image-2:before {
|
81 |
-
content: "\e00d";
|
82 |
-
}
|
83 |
-
.wp-svg-icon-set1-images:before {
|
84 |
-
content: "\e00e";
|
85 |
-
}
|
86 |
-
.wp-svg-icon-set1-camera:before {
|
87 |
-
content: "\e00f";
|
88 |
-
}
|
89 |
-
.wp-svg-icon-set1-music:before {
|
90 |
-
content: "\e010";
|
91 |
-
}
|
92 |
-
.wp-svg-icon-set1-headphones:before {
|
93 |
-
content: "\e011";
|
94 |
-
}
|
95 |
-
.wp-svg-icon-set1-play:before {
|
96 |
-
content: "\e012";
|
97 |
-
}
|
98 |
-
.wp-svg-icon-set1-film:before {
|
99 |
-
content: "\e013";
|
100 |
-
}
|
101 |
-
.wp-svg-icon-set1-camera-2:before {
|
102 |
-
content: "\e014";
|
103 |
-
}
|
104 |
-
.wp-svg-icon-set1-dice:before {
|
105 |
-
content: "\e015";
|
106 |
-
}
|
107 |
-
.wp-svg-icon-set1-pacman:before {
|
108 |
-
content: "\e016";
|
109 |
-
}
|
110 |
-
.wp-svg-icon-set1-spades:before {
|
111 |
-
content: "\e017";
|
112 |
-
}
|
113 |
-
.wp-svg-icon-set1-clubs:before {
|
114 |
-
content: "\e018";
|
115 |
-
}
|
116 |
-
.wp-svg-icon-set1-diamonds:before {
|
117 |
-
content: "\e019";
|
118 |
-
}
|
119 |
-
.wp-svg-icon-set1-pawn:before {
|
120 |
-
content: "\e01a";
|
121 |
-
}
|
122 |
-
.wp-svg-icon-set1-bullhorn:before {
|
123 |
-
content: "\e01b";
|
124 |
-
}
|
125 |
-
.wp-svg-icon-set1-connection:before {
|
126 |
-
content: "\e01c";
|
127 |
-
}
|
128 |
-
.wp-svg-icon-set1-podcast:before {
|
129 |
-
content: "\e01d";
|
130 |
-
}
|
131 |
-
.wp-svg-icon-set1-feed:before {
|
132 |
-
content: "\e01e";
|
133 |
-
}
|
134 |
-
.wp-svg-icon-set1-book:before {
|
135 |
-
content: "\e01f";
|
136 |
-
}
|
137 |
-
.wp-svg-icon-set1-books:before {
|
138 |
-
content: "\e020";
|
139 |
-
}
|
140 |
-
.wp-svg-icon-set1-library:before {
|
141 |
-
content: "\e021";
|
142 |
-
}
|
143 |
-
.wp-svg-icon-set1-file:before {
|
144 |
-
content: "\e022";
|
145 |
-
}
|
146 |
-
.wp-svg-icon-set1-profile:before {
|
147 |
-
content: "\e023";
|
148 |
-
}
|
149 |
-
.wp-svg-icon-set1-file-2:before {
|
150 |
-
content: "\e024";
|
151 |
-
}
|
152 |
-
.wp-svg-icon-set1-file-3:before {
|
153 |
-
content: "\e025";
|
154 |
-
}
|
155 |
-
.wp-svg-icon-set1-file-4:before {
|
156 |
-
content: "\e026";
|
157 |
-
}
|
158 |
-
.wp-svg-icon-set1-copy:before {
|
159 |
-
content: "\e027";
|
160 |
-
}
|
161 |
-
.wp-svg-icon-set1-copy-2:before {
|
162 |
-
content: "\e028";
|
163 |
-
}
|
164 |
-
.wp-svg-icon-set1-copy-3:before {
|
165 |
-
content: "\e029";
|
166 |
-
}
|
167 |
-
.wp-svg-icon-set1-paste:before {
|
168 |
-
content: "\e02a";
|
169 |
-
}
|
170 |
-
.wp-svg-icon-set1-paste-2:before {
|
171 |
-
content: "\e02b";
|
172 |
-
}
|
173 |
-
.wp-svg-icon-set1-paste-3:before {
|
174 |
-
content: "\e02c";
|
175 |
-
}
|
176 |
-
.wp-svg-icon-set1-stack:before {
|
177 |
-
content: "\e02d";
|
178 |
-
}
|
179 |
-
.wp-svg-icon-set1-folder:before {
|
180 |
-
content: "\e02e";
|
181 |
-
}
|
182 |
-
.wp-svg-icon-set1-folder-open:before {
|
183 |
-
content: "\e02f";
|
184 |
-
}
|
185 |
-
.wp-svg-icon-set1-tag:before {
|
186 |
-
content: "\e030";
|
187 |
-
}
|
188 |
-
.wp-svg-icon-set1-tags:before {
|
189 |
-
content: "\e031";
|
190 |
-
}
|
191 |
-
.wp-svg-icon-set1-barcode:before {
|
192 |
-
content: "\e032";
|
193 |
-
}
|
194 |
-
.wp-svg-icon-set1-qrcode:before {
|
195 |
-
content: "\e033";
|
196 |
-
}
|
197 |
-
.wp-svg-icon-set1-ticket:before {
|
198 |
-
content: "\e034";
|
199 |
-
}
|
200 |
-
.wp-svg-icon-set1-cart:before {
|
201 |
-
content: "\e035";
|
202 |
-
}
|
203 |
-
.wp-svg-icon-set1-cart-2:before {
|
204 |
-
content: "\e036";
|
205 |
-
}
|
206 |
-
.wp-svg-icon-set1-cart-3:before {
|
207 |
-
content: "\e037";
|
208 |
-
}
|
209 |
-
.wp-svg-icon-set1-coin:before {
|
210 |
-
content: "\e038";
|
211 |
-
}
|
212 |
-
.wp-svg-icon-set1-credit:before {
|
213 |
-
content: "\e039";
|
214 |
-
}
|
215 |
-
.wp-svg-icon-set1-calculate:before {
|
216 |
-
content: "\e03a";
|
217 |
-
}
|
218 |
-
.wp-svg-icon-set1-support:before {
|
219 |
-
content: "\e03b";
|
220 |
-
}
|
221 |
-
.wp-svg-icon-set1-phone:before {
|
222 |
-
content: "\e03c";
|
223 |
-
}
|
224 |
-
.wp-svg-icon-set1-phone-hang-up:before {
|
225 |
-
content: "\e03d";
|
226 |
-
}
|
227 |
-
.wp-svg-icon-set1-address-book:before {
|
228 |
-
content: "\e03e";
|
229 |
-
}
|
230 |
-
.wp-svg-icon-set1-notebook:before {
|
231 |
-
content: "\e03f";
|
232 |
-
}
|
233 |
-
.wp-svg-icon-set1-envelop:before {
|
234 |
-
content: "\e040";
|
235 |
-
}
|
236 |
-
.wp-svg-icon-set1-pushpin:before {
|
237 |
-
content: "\e041";
|
238 |
-
}
|
239 |
-
.wp-svg-icon-set1-location:before {
|
240 |
-
content: "\e042";
|
241 |
-
}
|
242 |
-
.wp-svg-icon-set1-location-2:before {
|
243 |
-
content: "\e043";
|
244 |
-
}
|
245 |
-
.wp-svg-icon-set1-compass:before {
|
246 |
-
content: "\e044";
|
247 |
-
}
|
248 |
-
.wp-svg-icon-set1-map:before {
|
249 |
-
content: "\e045";
|
250 |
-
}
|
251 |
-
.wp-svg-icon-set1-map-2:before {
|
252 |
-
content: "\e046";
|
253 |
-
}
|
254 |
-
.wp-svg-icon-set1-history:before {
|
255 |
-
content: "\e047";
|
256 |
-
}
|
257 |
-
.wp-svg-icon-set1-clock:before {
|
258 |
-
content: "\e048";
|
259 |
-
}
|
260 |
-
.wp-svg-icon-set1-clock-2:before {
|
261 |
-
content: "\e049";
|
262 |
-
}
|
263 |
-
.wp-svg-icon-set1-alarm:before {
|
264 |
-
content: "\e04a";
|
265 |
-
}
|
266 |
-
.wp-svg-icon-set1-alarm-2:before {
|
267 |
-
content: "\e04b";
|
268 |
-
}
|
269 |
-
.wp-svg-icon-set1-bell:before {
|
270 |
-
content: "\e04c";
|
271 |
-
}
|
272 |
-
.wp-svg-icon-set1-stopwatch:before {
|
273 |
-
content: "\e04d";
|
274 |
-
}
|
275 |
-
.wp-svg-icon-set1-calendar:before {
|
276 |
-
content: "\e04e";
|
277 |
-
}
|
278 |
-
.wp-svg-icon-set1-calendar-2:before {
|
279 |
-
content: "\e04f";
|
280 |
-
}
|
281 |
-
.wp-svg-icon-set1-print:before {
|
282 |
-
content: "\e050";
|
283 |
-
}
|
284 |
-
.wp-svg-icon-set1-keyboard:before {
|
285 |
-
content: "\e051";
|
286 |
-
}
|
287 |
-
.wp-svg-icon-set1-screen:before {
|
288 |
-
content: "\e052";
|
289 |
-
}
|
290 |
-
.wp-svg-icon-set1-laptop:before {
|
291 |
-
content: "\e053";
|
292 |
-
}
|
293 |
-
.wp-svg-icon-set1-mobile:before {
|
294 |
-
content: "\e054";
|
295 |
-
}
|
296 |
-
.wp-svg-icon-set1-mobile-2:before {
|
297 |
-
content: "\e055";
|
298 |
-
}
|
299 |
-
.wp-svg-icon-set1-tablet:before {
|
300 |
-
content: "\e056";
|
301 |
-
}
|
302 |
-
.wp-svg-icon-set1-tv:before {
|
303 |
-
content: "\e057";
|
304 |
-
}
|
305 |
-
.wp-svg-icon-set1-cabinet:before {
|
306 |
-
content: "\e058";
|
307 |
-
}
|
308 |
-
.wp-svg-icon-set1-drawer:before {
|
309 |
-
content: "\e059";
|
310 |
-
}
|
311 |
-
.wp-svg-icon-set1-drawer-2:before {
|
312 |
-
content: "\e05a";
|
313 |
-
}
|
314 |
-
.wp-svg-icon-set1-drawer-3:before {
|
315 |
-
content: "\e05b";
|
316 |
-
}
|
317 |
-
.wp-svg-icon-set1-box-add:before {
|
318 |
-
content: "\e05c";
|
319 |
-
}
|
320 |
-
.wp-svg-icon-set1-box-remove:before {
|
321 |
-
content: "\e05d";
|
322 |
-
}
|
323 |
-
.wp-svg-icon-set1-download:before {
|
324 |
-
content: "\e05e";
|
325 |
-
}
|
326 |
-
.wp-svg-icon-set1-upload:before {
|
327 |
-
content: "\e05f";
|
328 |
-
}
|
329 |
-
.wp-svg-icon-set1-disk:before {
|
330 |
-
content: "\e060";
|
331 |
-
}
|
332 |
-
.wp-svg-icon-set1-storage:before {
|
333 |
-
content: "\e061";
|
334 |
-
}
|
335 |
-
.wp-svg-icon-set1-undo:before {
|
336 |
-
content: "\e062";
|
337 |
-
}
|
338 |
-
.wp-svg-icon-set1-redo:before {
|
339 |
-
content: "\e063";
|
340 |
-
}
|
341 |
-
.wp-svg-icon-set1-flip:before {
|
342 |
-
content: "\e064";
|
343 |
-
}
|
344 |
-
.wp-svg-icon-set1-flip-2:before {
|
345 |
-
content: "\e065";
|
346 |
-
}
|
347 |
-
.wp-svg-icon-set1-undo-2:before {
|
348 |
-
content: "\e066";
|
349 |
-
}
|
350 |
-
.wp-svg-icon-set1-redo-2:before {
|
351 |
-
content: "\e067";
|
352 |
-
}
|
353 |
-
.wp-svg-icon-set1-forward:before {
|
354 |
-
content: "\e068";
|
355 |
-
}
|
356 |
-
.wp-svg-icon-set1-reply:before {
|
357 |
-
content: "\e069";
|
358 |
-
}
|
359 |
-
.wp-svg-icon-set1-bubble:before {
|
360 |
-
content: "\e06a";
|
361 |
-
}
|
362 |
-
.wp-svg-icon-set1-bubbles:before {
|
363 |
-
content: "\e06b";
|
364 |
-
}
|
365 |
-
.wp-svg-icon-set1-bubbles-2:before {
|
366 |
-
content: "\e06c";
|
367 |
-
}
|
368 |
-
.wp-svg-icon-set1-bubble-2:before {
|
369 |
-
content: "\e06d";
|
370 |
-
}
|
371 |
-
.wp-svg-icon-set1-bubbles-3:before {
|
372 |
-
content: "\e06e";
|
373 |
-
}
|
374 |
-
.wp-svg-icon-set1-bubbles-4:before {
|
375 |
-
content: "\e06f";
|
376 |
-
}
|
377 |
-
.wp-svg-icon-set1-user:before {
|
378 |
-
content: "\e070";
|
379 |
-
}
|
380 |
-
.wp-svg-icon-set1-users:before {
|
381 |
-
content: "\e071";
|
382 |
-
}
|
383 |
-
.wp-svg-icon-set1-user-2:before {
|
384 |
-
content: "\e072";
|
385 |
-
}
|
386 |
-
.wp-svg-icon-set1-users-2:before {
|
387 |
-
content: "\e073";
|
388 |
-
}
|
389 |
-
.wp-svg-icon-set1-user-3:before {
|
390 |
-
content: "\e074";
|
391 |
-
}
|
392 |
-
.wp-svg-icon-set1-user-4:before {
|
393 |
-
content: "\e075";
|
394 |
-
}
|
395 |
-
.wp-svg-icon-set1-quotes-left:before {
|
396 |
-
content: "\e076";
|
397 |
-
}
|
398 |
-
.wp-svg-icon-set1-busy:before {
|
399 |
-
content: "\e077";
|
400 |
-
}
|
401 |
-
.wp-svg-icon-set1-spinner:before {
|
402 |
-
content: "\e078";
|
403 |
-
}
|
404 |
-
.wp-svg-icon-set1-spinner-2:before {
|
405 |
-
content: "\e079";
|
406 |
-
}
|
407 |
-
.wp-svg-icon-set1-spinner-3:before {
|
408 |
-
content: "\e07a";
|
409 |
-
}
|
410 |
-
.wp-svg-icon-set1-spinner-4:before {
|
411 |
-
content: "\e07b";
|
412 |
-
}
|
413 |
-
.wp-svg-icon-set1-spinner-5:before {
|
414 |
-
content: "\e07c";
|
415 |
-
}
|
416 |
-
.wp-svg-icon-set1-spinner-6:before {
|
417 |
-
content: "\e07d";
|
418 |
-
}
|
419 |
-
.wp-svg-icon-set1-binoculars:before {
|
420 |
-
content: "\e07e";
|
421 |
-
}
|
422 |
-
.wp-svg-icon-set1-search:before {
|
423 |
-
content: "\e07f";
|
424 |
-
}
|
425 |
-
.wp-svg-icon-set1-zoom-in:before {
|
426 |
-
content: "\e080";
|
427 |
-
}
|
428 |
-
.wp-svg-icon-set1-zoom-out:before {
|
429 |
-
content: "\e081";
|
430 |
-
}
|
431 |
-
.wp-svg-icon-set1-expand:before {
|
432 |
-
content: "\e082";
|
433 |
-
}
|
434 |
-
.wp-svg-icon-set1-contract:before {
|
435 |
-
content: "\e083";
|
436 |
-
}
|
437 |
-
.wp-svg-icon-set1-expand-2:before {
|
438 |
-
content: "\e084";
|
439 |
-
}
|
440 |
-
.wp-svg-icon-set1-contract-2:before {
|
441 |
-
content: "\e085";
|
442 |
-
}
|
443 |
-
.wp-svg-icon-set1-key:before {
|
444 |
-
content: "\e086";
|
445 |
-
}
|
446 |
-
.wp-svg-icon-set1-key-2:before {
|
447 |
-
content: "\e087";
|
448 |
-
}
|
449 |
-
.wp-svg-icon-set1-lock:before {
|
450 |
-
content: "\e088";
|
451 |
-
}
|
452 |
-
.wp-svg-icon-set1-lock-2:before {
|
453 |
-
content: "\e089";
|
454 |
-
}
|
455 |
-
.wp-svg-icon-set1-unlocked:before {
|
456 |
-
content: "\e08a";
|
457 |
-
}
|
458 |
-
.wp-svg-icon-set1-wrench:before {
|
459 |
-
content: "\e08b";
|
460 |
-
}
|
461 |
-
.wp-svg-icon-set1-settings:before {
|
462 |
-
content: "\e08c";
|
463 |
-
}
|
464 |
-
.wp-svg-icon-set1-equalizer:before {
|
465 |
-
content: "\e08d";
|
466 |
-
}
|
467 |
-
.wp-svg-icon-set1-cog:before {
|
468 |
-
content: "\e08e";
|
469 |
-
}
|
470 |
-
.wp-svg-icon-set1-cogs:before {
|
471 |
-
content: "\e08f";
|
472 |
-
}
|
473 |
-
.wp-svg-icon-set1-cog-2:before {
|
474 |
-
content: "\e090";
|
475 |
-
}
|
476 |
-
.wp-svg-icon-set1-hammer:before {
|
477 |
-
content: "\e091";
|
478 |
-
}
|
479 |
-
.wp-svg-icon-set1-wand:before {
|
480 |
-
content: "\e092";
|
481 |
-
}
|
482 |
-
.wp-svg-icon-set1-aid:before {
|
483 |
-
content: "\e093";
|
484 |
-
}
|
485 |
-
.wp-svg-icon-set1-bug:before {
|
486 |
-
content: "\e094";
|
487 |
-
}
|
488 |
-
.wp-svg-icon-set1-pie:before {
|
489 |
-
content: "\e095";
|
490 |
-
}
|
491 |
-
.wp-svg-icon-set1-stats:before {
|
492 |
-
content: "\e096";
|
493 |
-
}
|
494 |
-
.wp-svg-icon-set1-bars:before {
|
495 |
-
content: "\e097";
|
496 |
-
}
|
497 |
-
.wp-svg-icon-set1-bars-2:before {
|
498 |
-
content: "\e098";
|
499 |
-
}
|
500 |
-
.wp-svg-icon-set1-gift:before {
|
501 |
-
content: "\e099";
|
502 |
-
}
|
503 |
-
.wp-svg-icon-set1-trophy:before {
|
504 |
-
content: "\e09a";
|
505 |
-
}
|
506 |
-
.wp-svg-icon-set1-glass:before {
|
507 |
-
content: "\e09b";
|
508 |
-
}
|
509 |
-
.wp-svg-icon-set1-mug:before {
|
510 |
-
content: "\e09c";
|
511 |
-
}
|
512 |
-
.wp-svg-icon-set1-food:before {
|
513 |
-
content: "\e09d";
|
514 |
-
}
|
515 |
-
.wp-svg-icon-set1-leaf:before {
|
516 |
-
content: "\e09e";
|
517 |
-
}
|
518 |
-
.wp-svg-icon-set1-rocket:before {
|
519 |
-
content: "\e09f";
|
520 |
-
}
|
521 |
-
.wp-svg-icon-set1-meter:before {
|
522 |
-
content: "\e0a0";
|
523 |
-
}
|
524 |
-
.wp-svg-icon-set1-meter2:before {
|
525 |
-
content: "\e0a1";
|
526 |
-
}
|
527 |
-
.wp-svg-icon-set1-dashboard:before {
|
528 |
-
content: "\e0a2";
|
529 |
-
}
|
530 |
-
.wp-svg-icon-set1-hammer-2:before {
|
531 |
-
content: "\e0a3";
|
532 |
-
}
|
533 |
-
.wp-svg-icon-set1-fire:before {
|
534 |
-
content: "\e0a4";
|
535 |
-
}
|
536 |
-
.wp-svg-icon-set1-lab:before {
|
537 |
-
content: "\e0a5";
|
538 |
-
}
|
539 |
-
.wp-svg-icon-set1-magnet:before {
|
540 |
-
content: "\e0a6";
|
541 |
-
}
|
542 |
-
.wp-svg-icon-set1-remove:before {
|
543 |
-
content: "\e0a7";
|
544 |
-
}
|
545 |
-
.wp-svg-icon-set1-remove-2:before {
|
546 |
-
content: "\e0a8";
|
547 |
-
}
|
548 |
-
.wp-svg-icon-set1-briefcase:before {
|
549 |
-
content: "\e0a9";
|
550 |
-
}
|
551 |
-
.wp-svg-icon-set1-airplane:before {
|
552 |
-
content: "\e0aa";
|
553 |
-
}
|
554 |
-
.wp-svg-icon-set1-truck:before {
|
555 |
-
content: "\e0ab";
|
556 |
-
}
|
557 |
-
.wp-svg-icon-set1-road:before {
|
558 |
-
content: "\e0ac";
|
559 |
-
}
|
560 |
-
.wp-svg-icon-set1-accessibility:before {
|
561 |
-
content: "\e0ad";
|
562 |
-
}
|
563 |
-
.wp-svg-icon-set1-target:before {
|
564 |
-
content: "\e0ae";
|
565 |
-
}
|
566 |
-
.wp-svg-icon-set1-shield:before {
|
567 |
-
content: "\e0af";
|
568 |
-
}
|
569 |
-
.wp-svg-icon-set1-lightning:before {
|
570 |
-
content: "\e0b0";
|
571 |
-
}
|
572 |
-
.wp-svg-icon-set1-switch:before {
|
573 |
-
content: "\e0b1";
|
574 |
-
}
|
575 |
-
.wp-svg-icon-set1-power-cord:before {
|
576 |
-
content: "\e0b2";
|
577 |
-
}
|
578 |
-
.wp-svg-icon-set1-signup:before {
|
579 |
-
content: "\e0b3";
|
580 |
-
}
|
581 |
-
.wp-svg-icon-set1-list:before {
|
582 |
-
content: "\e0b4";
|
583 |
-
}
|
584 |
-
.wp-svg-icon-set1-list-2:before {
|
585 |
-
content: "\e0b5";
|
586 |
-
}
|
587 |
-
.wp-svg-icon-set1-numbered-list:before {
|
588 |
-
content: "\e0b6";
|
589 |
-
}
|
590 |
-
.wp-svg-icon-set1-menu:before {
|
591 |
-
content: "\e0b7";
|
592 |
-
}
|
593 |
-
.wp-svg-icon-set1-menu-2:before {
|
594 |
-
content: "\e0b8";
|
595 |
-
}
|
596 |
-
.wp-svg-icon-set1-tree:before {
|
597 |
-
content: "\e0b9";
|
598 |
-
}
|
599 |
-
.wp-svg-icon-set1-cloud:before {
|
600 |
-
content: "\e0ba";
|
601 |
-
}
|
602 |
-
.wp-svg-icon-set1-cloud-download:before {
|
603 |
-
content: "\e0bb";
|
604 |
-
}
|
605 |
-
.wp-svg-icon-set1-cloud-upload:before {
|
606 |
-
content: "\e0bc";
|
607 |
-
}
|
608 |
-
.wp-svg-icon-set1-download-2:before {
|
609 |
-
content: "\e0bd";
|
610 |
-
}
|
611 |
-
.wp-svg-icon-set1-upload-2:before {
|
612 |
-
content: "\e0be";
|
613 |
-
}
|
614 |
-
.wp-svg-icon-set1-download-3:before {
|
615 |
-
content: "\e0bf";
|
616 |
-
}
|
617 |
-
.wp-svg-icon-set1-upload-3:before {
|
618 |
-
content: "\e0c0";
|
619 |
-
}
|
620 |
-
.wp-svg-icon-set1-globe:before {
|
621 |
-
content: "\e0c1";
|
622 |
-
}
|
623 |
-
.wp-svg-icon-set1-earth:before {
|
624 |
-
content: "\e0c2";
|
625 |
-
}
|
626 |
-
.wp-svg-icon-set1-link:before {
|
627 |
-
content: "\e0c3";
|
628 |
-
}
|
629 |
-
.wp-svg-icon-set1-flag:before {
|
630 |
-
content: "\e0c4";
|
631 |
-
}
|
632 |
-
.wp-svg-icon-set1-attachment:before {
|
633 |
-
content: "\e0c5";
|
634 |
-
}
|
635 |
-
.wp-svg-icon-set1-eye:before {
|
636 |
-
content: "\e0c6";
|
637 |
-
}
|
638 |
-
.wp-svg-icon-set1-eye-blocked:before {
|
639 |
-
content: "\e0c7";
|
640 |
-
}
|
641 |
-
.wp-svg-icon-set1-eye-2:before {
|
642 |
-
content: "\e0c8";
|
643 |
-
}
|
644 |
-
.wp-svg-icon-set1-bookmark:before {
|
645 |
-
content: "\e0c9";
|
646 |
-
}
|
647 |
-
.wp-svg-icon-set1-bookmarks:before {
|
648 |
-
content: "\e0ca";
|
649 |
-
}
|
650 |
-
.wp-svg-icon-set1-brightness-medium:before {
|
651 |
-
content: "\e0cb";
|
652 |
-
}
|
653 |
-
.wp-svg-icon-set1-brightness-contrast:before {
|
654 |
-
content: "\e0cc";
|
655 |
-
}
|
656 |
-
.wp-svg-icon-set1-contrast:before {
|
657 |
-
content: "\e0cd";
|
658 |
-
}
|
659 |
-
.wp-svg-icon-set1-star:before {
|
660 |
-
content: "\e0ce";
|
661 |
-
}
|
662 |
-
.wp-svg-icon-set1-star-2:before {
|
663 |
-
content: "\e0cf";
|
664 |
-
}
|
665 |
-
.wp-svg-icon-set1-star-3:before {
|
666 |
-
content: "\e0d0";
|
667 |
-
}
|
668 |
-
.wp-svg-icon-set1-heart:before {
|
669 |
-
content: "\e0d1";
|
670 |
-
}
|
671 |
-
.wp-svg-icon-set1-heart-2:before {
|
672 |
-
content: "\e0d2";
|
673 |
-
}
|
674 |
-
.wp-svg-icon-set1-heart-broken:before {
|
675 |
-
content: "\e0d3";
|
676 |
-
}
|
677 |
-
.wp-svg-icon-set1-thumbs-up:before {
|
678 |
-
content: "\e0d4";
|
679 |
-
}
|
680 |
-
.wp-svg-icon-set1-thumbs-up-2:before {
|
681 |
-
content: "\e0d5";
|
682 |
-
}
|
683 |
-
.wp-svg-icon-set1-happy:before {
|
684 |
-
content: "\e0d6";
|
685 |
-
}
|
686 |
-
.wp-svg-icon-set1-happy-2:before {
|
687 |
-
content: "\e0d7";
|
688 |
-
}
|
689 |
-
.wp-svg-icon-set1-smiley:before {
|
690 |
-
content: "\e0d8";
|
691 |
-
}
|
692 |
-
.wp-svg-icon-set1-smiley-2:before {
|
693 |
-
content: "\e0d9";
|
694 |
-
}
|
695 |
-
.wp-svg-icon-set1-tongue:before {
|
696 |
-
content: "\e0da";
|
697 |
-
}
|
698 |
-
.wp-svg-icon-set1-tongue-2:before {
|
699 |
-
content: "\e0db";
|
700 |
-
}
|
701 |
-
.wp-svg-icon-set1-sad:before {
|
702 |
-
content: "\e0dc";
|
703 |
-
}
|
704 |
-
.wp-svg-icon-set1-sad-2:before {
|
705 |
-
content: "\e0dd";
|
706 |
-
}
|
707 |
-
.wp-svg-icon-set1-wink:before {
|
708 |
-
content: "\e0de";
|
709 |
-
}
|
710 |
-
.wp-svg-icon-set1-wink-2:before {
|
711 |
-
content: "\e0df";
|
712 |
-
}
|
713 |
-
.wp-svg-icon-set1-grin:before {
|
714 |
-
content: "\e0e0";
|
715 |
-
}
|
716 |
-
.wp-svg-icon-set1-grin-2:before {
|
717 |
-
content: "\e0e1";
|
718 |
-
}
|
719 |
-
.wp-svg-icon-set1-cool:before {
|
720 |
-
content: "\e0e2";
|
721 |
-
}
|
722 |
-
.wp-svg-icon-set1-cool-2:before {
|
723 |
-
content: "\e0e3";
|
724 |
-
}
|
725 |
-
.wp-svg-icon-set1-angry:before {
|
726 |
-
content: "\e0e4";
|
727 |
-
}
|
728 |
-
.wp-svg-icon-set1-angry-2:before {
|
729 |
-
content: "\e0e5";
|
730 |
-
}
|
731 |
-
.wp-svg-icon-set1-evil:before {
|
732 |
-
content: "\e0e6";
|
733 |
-
}
|
734 |
-
.wp-svg-icon-set1-evil-2:before {
|
735 |
-
content: "\e0e7";
|
736 |
-
}
|
737 |
-
.wp-svg-icon-set1-shocked:before {
|
738 |
-
content: "\e0e8";
|
739 |
-
}
|
740 |
-
.wp-svg-icon-set1-shocked-2:before {
|
741 |
-
content: "\e0e9";
|
742 |
-
}
|
743 |
-
.wp-svg-icon-set1-confused:before {
|
744 |
-
content: "\e0ea";
|
745 |
-
}
|
746 |
-
.wp-svg-icon-set1-confused-2:before {
|
747 |
-
content: "\e0eb";
|
748 |
-
}
|
749 |
-
.wp-svg-icon-set1-neutral:before {
|
750 |
-
content: "\e0ec";
|
751 |
-
}
|
752 |
-
.wp-svg-icon-set1-neutral-2:before {
|
753 |
-
content: "\e0ed";
|
754 |
-
}
|
755 |
-
.wp-svg-icon-set1-wondering:before {
|
756 |
-
content: "\e0ee";
|
757 |
-
}
|
758 |
-
.wp-svg-icon-set1-wondering-2:before {
|
759 |
-
content: "\e0ef";
|
760 |
-
}
|
761 |
-
.wp-svg-icon-set1-point-up:before {
|
762 |
-
content: "\e0f0";
|
763 |
-
}
|
764 |
-
.wp-svg-icon-set1-point-right:before {
|
765 |
-
content: "\e0f1";
|
766 |
-
}
|
767 |
-
.wp-svg-icon-set1-point-down:before {
|
768 |
-
content: "\e0f2";
|
769 |
-
}
|
770 |
-
.wp-svg-icon-set1-point-left:before {
|
771 |
-
content: "\e0f3";
|
772 |
-
}
|
773 |
-
.wp-svg-icon-set1-warning:before {
|
774 |
-
content: "\e0f4";
|
775 |
-
}
|
776 |
-
.wp-svg-icon-set1-notification:before {
|
777 |
-
content: "\e0f5";
|
778 |
-
}
|
779 |
-
.wp-svg-icon-set1-question:before {
|
780 |
-
content: "\e0f6";
|
781 |
-
}
|
782 |
-
.wp-svg-icon-set1-info:before {
|
783 |
-
content: "\e0f7";
|
784 |
-
}
|
785 |
-
.wp-svg-icon-set1-info-2:before {
|
786 |
-
content: "\e0f8";
|
787 |
-
}
|
788 |
-
.wp-svg-icon-set1-blocked:before {
|
789 |
-
content: "\e0f9";
|
790 |
-
}
|
791 |
-
.wp-svg-icon-set1-cancel-circle:before {
|
792 |
-
content: "\e0fa";
|
793 |
-
}
|
794 |
-
.wp-svg-icon-set1-checkmark-circle:before {
|
795 |
-
content: "\e0fb";
|
796 |
-
}
|
797 |
-
.wp-svg-icon-set1-spam:before {
|
798 |
-
content: "\e0fc";
|
799 |
-
}
|
800 |
-
.wp-svg-icon-set1-close:before {
|
801 |
-
content: "\e0fd";
|
802 |
-
}
|
803 |
-
.wp-svg-icon-set1-checkmark:before {
|
804 |
-
content: "\e0fe";
|
805 |
-
}
|
806 |
-
.wp-svg-icon-set1-checkmark-2:before {
|
807 |
-
content: "\e0ff";
|
808 |
-
}
|
809 |
-
.wp-svg-icon-set1-spell-check:before {
|
810 |
-
content: "\e100";
|
811 |
-
}
|
812 |
-
.wp-svg-icon-set1-minus:before {
|
813 |
-
content: "\e101";
|
814 |
-
}
|
815 |
-
.wp-svg-icon-set1-plus:before {
|
816 |
-
content: "\e102";
|
817 |
-
}
|
818 |
-
.wp-svg-icon-set1-enter:before {
|
819 |
-
content: "\e103";
|
820 |
-
}
|
821 |
-
.wp-svg-icon-set1-exit:before {
|
822 |
-
content: "\e104";
|
823 |
-
}
|
824 |
-
.wp-svg-icon-set1-play-2:before {
|
825 |
-
content: "\e105";
|
826 |
-
}
|
827 |
-
.wp-svg-icon-set1-pause:before {
|
828 |
-
content: "\e106";
|
829 |
-
}
|
830 |
-
.wp-svg-icon-set1-stop:before {
|
831 |
-
content: "\e107";
|
832 |
-
}
|
833 |
-
.wp-svg-icon-set1-backward:before {
|
834 |
-
content: "\e108";
|
835 |
-
}
|
836 |
-
.wp-svg-icon-set1-forward-2:before {
|
837 |
-
content: "\e109";
|
838 |
-
}
|
839 |
-
.wp-svg-icon-set1-play-3:before {
|
840 |
-
content: "\e10a";
|
841 |
-
}
|
842 |
-
.wp-svg-icon-set1-pause-2:before {
|
843 |
-
content: "\e10b";
|
844 |
-
}
|
845 |
-
.wp-svg-icon-set1-stop-2:before {
|
846 |
-
content: "\e10c";
|
847 |
-
}
|
848 |
-
.wp-svg-icon-set1-backward-2:before {
|
849 |
-
content: "\e10d";
|
850 |
-
}
|
851 |
-
.wp-svg-icon-set1-forward-3:before {
|
852 |
-
content: "\e10e";
|
853 |
-
}
|
854 |
-
.wp-svg-icon-set1-first:before {
|
855 |
-
content: "\e10f";
|
856 |
-
}
|
857 |
-
.wp-svg-icon-set1-last:before {
|
858 |
-
content: "\e110";
|
859 |
-
}
|
860 |
-
.wp-svg-icon-set1-previous:before {
|
861 |
-
content: "\e111";
|
862 |
-
}
|
863 |
-
.wp-svg-icon-set1-next:before {
|
864 |
-
content: "\e112";
|
865 |
-
}
|
866 |
-
.wp-svg-icon-set1-eject:before {
|
867 |
-
content: "\e113";
|
868 |
-
}
|
869 |
-
.wp-svg-icon-set1-volume-high:before {
|
870 |
-
content: "\e114";
|
871 |
-
}
|
872 |
-
.wp-svg-icon-set1-volume-medium:before {
|
873 |
-
content: "\e115";
|
874 |
-
}
|
875 |
-
.wp-svg-icon-set1-volume-low:before {
|
876 |
-
content: "\e116";
|
877 |
-
}
|
878 |
-
.wp-svg-icon-set1-volume-mute:before {
|
879 |
-
content: "\e117";
|
880 |
-
}
|
881 |
-
.wp-svg-icon-set1-volume-mute-2:before {
|
882 |
-
content: "\e118";
|
883 |
-
}
|
884 |
-
.wp-svg-icon-set1-volume-increase:before {
|
885 |
-
content: "\e119";
|
886 |
-
}
|
887 |
-
.wp-svg-icon-set1-volume-decrease:before {
|
888 |
-
content: "\e11a";
|
889 |
-
}
|
890 |
-
.wp-svg-icon-set1-loop:before {
|
891 |
-
content: "\e11b";
|
892 |
-
}
|
893 |
-
.wp-svg-icon-set1-loop-2:before {
|
894 |
-
content: "\e11c";
|
895 |
-
}
|
896 |
-
.wp-svg-icon-set1-loop-3:before {
|
897 |
-
content: "\e11d";
|
898 |
-
}
|
899 |
-
.wp-svg-icon-set1-shuffle:before {
|
900 |
-
content: "\e11e";
|
901 |
-
}
|
902 |
-
.wp-svg-icon-set1-arrow-up-left:before {
|
903 |
-
content: "\e11f";
|
904 |
-
}
|
905 |
-
.wp-svg-icon-set1-arrow-up:before {
|
906 |
-
content: "\e120";
|
907 |
-
}
|
908 |
-
.wp-svg-icon-set1-arrow-up-right:before {
|
909 |
-
content: "\e121";
|
910 |
-
}
|
911 |
-
.wp-svg-icon-set1-arrow-right:before {
|
912 |
-
content: "\e122";
|
913 |
-
}
|
914 |
-
.wp-svg-icon-set1-arrow-down-right:before {
|
915 |
-
content: "\e123";
|
916 |
-
}
|
917 |
-
.wp-svg-icon-set1-arrow-down:before {
|
918 |
-
content: "\e124";
|
919 |
-
}
|
920 |
-
.wp-svg-icon-set1-arrow-down-left:before {
|
921 |
-
content: "\e125";
|
922 |
-
}
|
923 |
-
.wp-svg-icon-set1-arrow-left:before {
|
924 |
-
content: "\e126";
|
925 |
-
}
|
926 |
-
.wp-svg-icon-set1-arrow-up-left-2:before {
|
927 |
-
content: "\e127";
|
928 |
-
}
|
929 |
-
.wp-svg-icon-set1-arrow-up-2:before {
|
930 |
-
content: "\e128";
|
931 |
-
}
|
932 |
-
.wp-svg-icon-set1-arrow-up-right-2:before {
|
933 |
-
content: "\e129";
|
934 |
-
}
|
935 |
-
.wp-svg-icon-set1-arrow-right-2:before {
|
936 |
-
content: "\e12a";
|
937 |
-
}
|
938 |
-
.wp-svg-icon-set1-arrow-down-right-2:before {
|
939 |
-
content: "\e12b";
|
940 |
-
}
|
941 |
-
.wp-svg-icon-set1-arrow-down-2:before {
|
942 |
-
content: "\e12c";
|
943 |
-
}
|
944 |
-
.wp-svg-icon-set1-arrow-down-left-2:before {
|
945 |
-
content: "\e12d";
|
946 |
-
}
|
947 |
-
.wp-svg-icon-set1-arrow-left-2:before {
|
948 |
-
content: "\e12e";
|
949 |
-
}
|
950 |
-
.wp-svg-icon-set1-arrow-up-left-3:before {
|
951 |
-
content: "\e12f";
|
952 |
-
}
|
953 |
-
.wp-svg-icon-set1-arrow-up-3:before {
|
954 |
-
content: "\e130";
|
955 |
-
}
|
956 |
-
.wp-svg-icon-set1-arrow-up-right-3:before {
|
957 |
-
content: "\e131";
|
958 |
-
}
|
959 |
-
.wp-svg-icon-set1-arrow-right-3:before {
|
960 |
-
content: "\e132";
|
961 |
-
}
|
962 |
-
.wp-svg-icon-set1-arrow-down-right-3:before {
|
963 |
-
content: "\e133";
|
964 |
-
}
|
965 |
-
.wp-svg-icon-set1-arrow-down-3:before {
|
966 |
-
content: "\e134";
|
967 |
-
}
|
968 |
-
.wp-svg-icon-set1-arrow-down-left-3:before {
|
969 |
-
content: "\e135";
|
970 |
-
}
|
971 |
-
.wp-svg-icon-set1-arrow-left-3:before {
|
972 |
-
content: "\e136";
|
973 |
-
}
|
974 |
-
.wp-svg-icon-set1-tab:before {
|
975 |
-
content: "\e137";
|
976 |
-
}
|
977 |
-
.wp-svg-icon-set1-checkbox-checked:before {
|
978 |
-
content: "\e138";
|
979 |
-
}
|
980 |
-
.wp-svg-icon-set1-checkbox-unchecked:before {
|
981 |
-
content: "\e139";
|
982 |
-
}
|
983 |
-
.wp-svg-icon-set1-checkbox-partial:before {
|
984 |
-
content: "\e13a";
|
985 |
-
}
|
986 |
-
.wp-svg-icon-set1-radio-checked:before {
|
987 |
-
content: "\e13b";
|
988 |
-
}
|
989 |
-
.wp-svg-icon-set1-radio-unchecked:before {
|
990 |
-
content: "\e13c";
|
991 |
-
}
|
992 |
-
.wp-svg-icon-set1-crop:before {
|
993 |
-
content: "\e13d";
|
994 |
-
}
|
995 |
-
.wp-svg-icon-set1-scissors:before {
|
996 |
-
content: "\e13e";
|
997 |
-
}
|
998 |
-
.wp-svg-icon-set1-filter:before {
|
999 |
-
content: "\e13f";
|
1000 |
-
}
|
1001 |
-
.wp-svg-icon-set1-filter-2:before {
|
1002 |
-
content: "\e140";
|
1003 |
-
}
|
1004 |
-
.wp-svg-icon-set1-font:before {
|
1005 |
-
content: "\e141";
|
1006 |
-
}
|
1007 |
-
.wp-svg-icon-set1-text-height:before {
|
1008 |
-
content: "\e142";
|
1009 |
-
}
|
1010 |
-
.wp-svg-icon-set1-text-width:before {
|
1011 |
-
content: "\e143";
|
1012 |
-
}
|
1013 |
-
.wp-svg-icon-set1-bold:before {
|
1014 |
-
content: "\e144";
|
1015 |
-
}
|
1016 |
-
.wp-svg-icon-set1-underline:before {
|
1017 |
-
content: "\e145";
|
1018 |
-
}
|
1019 |
-
.wp-svg-icon-set1-italic:before {
|
1020 |
-
content: "\e146";
|
1021 |
-
}
|
1022 |
-
.wp-svg-icon-set1-strikethrough:before {
|
1023 |
-
content: "\e147";
|
1024 |
-
}
|
1025 |
-
.wp-svg-icon-set1-omega:before {
|
1026 |
-
content: "\e148";
|
1027 |
-
}
|
1028 |
-
.wp-svg-icon-set1-sigma:before {
|
1029 |
-
content: "\e149";
|
1030 |
-
}
|
1031 |
-
.wp-svg-icon-set1-table:before {
|
1032 |
-
content: "\e14a";
|
1033 |
-
}
|
1034 |
-
.wp-svg-icon-set1-table-2:before {
|
1035 |
-
content: "\e14b";
|
1036 |
-
}
|
1037 |
-
.wp-svg-icon-set1-insert-template:before {
|
1038 |
-
content: "\e14c";
|
1039 |
-
}
|
1040 |
-
.wp-svg-icon-set1-pilcrow:before {
|
1041 |
-
content: "\e14d";
|
1042 |
-
}
|
1043 |
-
.wp-svg-icon-set1-left-to-right:before {
|
1044 |
-
content: "\e14e";
|
1045 |
-
}
|
1046 |
-
.wp-svg-icon-set1-right-to-left:before {
|
1047 |
-
content: "\e14f";
|
1048 |
-
}
|
1049 |
-
.wp-svg-icon-set1-paragraph-left:before {
|
1050 |
-
content: "\e150";
|
1051 |
-
}
|
1052 |
-
.wp-svg-icon-set1-paragraph-center:before {
|
1053 |
-
content: "\e151";
|
1054 |
-
}
|
1055 |
-
.wp-svg-icon-set1-paragraph-right:before {
|
1056 |
-
content: "\e152";
|
1057 |
-
}
|
1058 |
-
.wp-svg-icon-set1-paragraph-justify:before {
|
1059 |
-
content: "\e153";
|
1060 |
-
}
|
1061 |
-
.wp-svg-icon-set1-paragraph-left-2:before {
|
1062 |
-
content: "\e154";
|
1063 |
-
}
|
1064 |
-
.wp-svg-icon-set1-paragraph-center-2:before {
|
1065 |
-
content: "\e155";
|
1066 |
-
}
|
1067 |
-
.wp-svg-icon-set1-paragraph-right-2:before {
|
1068 |
-
content: "\e156";
|
1069 |
-
}
|
1070 |
-
.wp-svg-icon-set1-paragraph-justify-2:before {
|
1071 |
-
content: "\e157";
|
1072 |
-
}
|
1073 |
-
.wp-svg-icon-set1-indent-increase:before {
|
1074 |
-
content: "\e158";
|
1075 |
-
}
|
1076 |
-
.wp-svg-icon-set1-indent-decrease:before {
|
1077 |
-
content: "\e159";
|
1078 |
-
}
|
1079 |
-
.wp-svg-icon-set1-new-tab:before {
|
1080 |
-
content: "\e15a";
|
1081 |
-
}
|
1082 |
-
.wp-svg-icon-set1-embed:before {
|
1083 |
-
content: "\e15b";
|
1084 |
-
}
|
1085 |
-
.wp-svg-icon-set1-code:before {
|
1086 |
-
content: "\e15c";
|
1087 |
-
}
|
1088 |
-
.wp-svg-icon-set1-console:before {
|
1089 |
-
content: "\e15d";
|
1090 |
-
}
|
1091 |
-
.wp-svg-icon-set1-share:before {
|
1092 |
-
content: "\e15e";
|
1093 |
-
}
|
1094 |
-
.wp-svg-icon-set1-mail:before {
|
1095 |
-
content: "\e15f";
|
1096 |
-
}
|
1097 |
-
.wp-svg-icon-set1-mail-2:before {
|
1098 |
-
content: "\e160";
|
1099 |
-
}
|
1100 |
-
.wp-svg-icon-set1-mail-3:before {
|
1101 |
-
content: "\e161";
|
1102 |
-
}
|
1103 |
-
.wp-svg-icon-set1-mail-4:before {
|
1104 |
-
content: "\e162";
|
1105 |
-
}
|
1106 |
-
.wp-svg-icon-set1-google:before {
|
1107 |
-
content: "\e163";
|
1108 |
-
}
|
1109 |
-
.wp-svg-icon-set1-google-plus:before {
|
1110 |
-
content: "\e164";
|
1111 |
-
}
|
1112 |
-
.wp-svg-icon-set1-google-plus-2:before {
|
1113 |
-
content: "\e165";
|
1114 |
-
}
|
1115 |
-
.wp-svg-icon-set1-google-plus-3:before {
|
1116 |
-
content: "\e166";
|
1117 |
-
}
|
1118 |
-
.wp-svg-icon-set1-google-plus-4:before {
|
1119 |
-
content: "\e167";
|
1120 |
-
}
|
1121 |
-
.wp-svg-icon-set1-google-drive:before {
|
1122 |
-
content: "\e168";
|
1123 |
-
}
|
1124 |
-
.wp-svg-icon-set1-facebook:before {
|
1125 |
-
content: "\e169";
|
1126 |
-
}
|
1127 |
-
.wp-svg-icon-set1-facebook-2:before {
|
1128 |
-
content: "\e16a";
|
1129 |
-
}
|
1130 |
-
.wp-svg-icon-set1-facebook-3:before {
|
1131 |
-
content: "\e16b";
|
1132 |
-
}
|
1133 |
-
.wp-svg-icon-set1-instagram:before {
|
1134 |
-
content: "\e16c";
|
1135 |
-
}
|
1136 |
-
.wp-svg-icon-set1-twitter:before {
|
1137 |
-
content: "\e16d";
|
1138 |
-
}
|
1139 |
-
.wp-svg-icon-set1-twitter-2:before {
|
1140 |
-
content: "\e16e";
|
1141 |
-
}
|
1142 |
-
.wp-svg-icon-set1-twitter-3:before {
|
1143 |
-
content: "\e16f";
|
1144 |
-
}
|
1145 |
-
.wp-svg-icon-set1-feed-2:before {
|
1146 |
-
content: "\e170";
|
1147 |
-
}
|
1148 |
-
.wp-svg-icon-set1-feed-3:before {
|
1149 |
-
content: "\e171";
|
1150 |
-
}
|
1151 |
-
.wp-svg-icon-set1-feed-4:before {
|
1152 |
-
content: "\e172";
|
1153 |
-
}
|
1154 |
-
.wp-svg-icon-set1-youtube:before {
|
1155 |
-
content: "\e173";
|
1156 |
-
}
|
1157 |
-
.wp-svg-icon-set1-youtube-2:before {
|
1158 |
-
content: "\e174";
|
1159 |
-
}
|
1160 |
-
.wp-svg-icon-set1-vimeo:before {
|
1161 |
-
content: "\e175";
|
1162 |
-
}
|
1163 |
-
.wp-svg-icon-set1-vimeo2:before {
|
1164 |
-
content: "\e176";
|
1165 |
-
}
|
1166 |
-
.wp-svg-icon-set1-vimeo-2:before {
|
1167 |
-
content: "\e177";
|
1168 |
-
}
|
1169 |
-
.wp-svg-icon-set1-lanyrd:before {
|
1170 |
-
content: "\e178";
|
1171 |
-
}
|
1172 |
-
.wp-svg-icon-set1-flickr:before {
|
1173 |
-
content: "\e179";
|
1174 |
-
}
|
1175 |
-
.wp-svg-icon-set1-flickr-2:before {
|
1176 |
-
content: "\e17a";
|
1177 |
-
}
|
1178 |
-
.wp-svg-icon-set1-flickr-3:before {
|
1179 |
-
content: "\e17b";
|
1180 |
-
}
|
1181 |
-
.wp-svg-icon-set1-flickr-4:before {
|
1182 |
-
content: "\e17c";
|
1183 |
-
}
|
1184 |
-
.wp-svg-icon-set1-picassa:before {
|
1185 |
-
content: "\e17d";
|
1186 |
-
}
|
1187 |
-
.wp-svg-icon-set1-picassa-2:before {
|
1188 |
-
content: "\e17e";
|
1189 |
-
}
|
1190 |
-
.wp-svg-icon-set1-dribbble:before {
|
1191 |
-
content: "\e17f";
|
1192 |
-
}
|
1193 |
-
.wp-svg-icon-set1-dribbble-2:before {
|
1194 |
-
content: "\e180";
|
1195 |
-
}
|
1196 |
-
.wp-svg-icon-set1-dribbble-3:before {
|
1197 |
-
content: "\e181";
|
1198 |
-
}
|
1199 |
-
.wp-svg-icon-set1-forrst:before {
|
1200 |
-
content: "\e182";
|
1201 |
-
}
|
1202 |
-
.wp-svg-icon-set1-forrst-2:before {
|
1203 |
-
content: "\e183";
|
1204 |
-
}
|
1205 |
-
.wp-svg-icon-set1-deviantart:before {
|
1206 |
-
content: "\e184";
|
1207 |
-
}
|
1208 |
-
.wp-svg-icon-set1-deviantart-2:before {
|
1209 |
-
content: "\e185";
|
1210 |
-
}
|
1211 |
-
.wp-svg-icon-set1-steam:before {
|
1212 |
-
content: "\e186";
|
1213 |
-
}
|
1214 |
-
.wp-svg-icon-set1-steam-2:before {
|
1215 |
-
content: "\e187";
|
1216 |
-
}
|
1217 |
-
.wp-svg-icon-set1-github:before {
|
1218 |
-
content: "\e188";
|
1219 |
-
}
|
1220 |
-
.wp-svg-icon-set1-github-2:before {
|
1221 |
-
content: "\e189";
|
1222 |
-
}
|
1223 |
-
.wp-svg-icon-set1-github-3:before {
|
1224 |
-
content: "\e18a";
|
1225 |
-
}
|
1226 |
-
.wp-svg-icon-set1-github-4:before {
|
1227 |
-
content: "\e18b";
|
1228 |
-
}
|
1229 |
-
.wp-svg-icon-set1-github-5:before {
|
1230 |
-
content: "\e18c";
|
1231 |
-
}
|
1232 |
-
.wp-svg-icon-set1-wordpress:before {
|
1233 |
-
content: "\e18d";
|
1234 |
-
}
|
1235 |
-
.wp-svg-icon-set1-wordpress-2:before {
|
1236 |
-
content: "\e18e";
|
1237 |
-
}
|
1238 |
-
.wp-svg-icon-set1-joomla:before {
|
1239 |
-
content: "\e18f";
|
1240 |
-
}
|
1241 |
-
.wp-svg-icon-set1-blogger:before {
|
1242 |
-
content: "\e190";
|
1243 |
-
}
|
1244 |
-
.wp-svg-icon-set1-blogger-2:before {
|
1245 |
-
content: "\e191";
|
1246 |
-
}
|
1247 |
-
.wp-svg-icon-set1-tumblr:before {
|
1248 |
-
content: "\e192";
|
1249 |
-
}
|
1250 |
-
.wp-svg-icon-set1-tumblr-2:before {
|
1251 |
-
content: "\e193";
|
1252 |
-
}
|
1253 |
-
.wp-svg-icon-set1-yahoo:before {
|
1254 |
-
content: "\e194";
|
1255 |
-
}
|
1256 |
-
.wp-svg-icon-set1-tux:before {
|
1257 |
-
content: "\e195";
|
1258 |
-
}
|
1259 |
-
.wp-svg-icon-set1-apple:before {
|
1260 |
-
content: "\e196";
|
1261 |
-
}
|
1262 |
-
.wp-svg-icon-set1-finder:before {
|
1263 |
-
content: "\e197";
|
1264 |
-
}
|
1265 |
-
.wp-svg-icon-set1-android:before {
|
1266 |
-
content: "\e198";
|
1267 |
-
}
|
1268 |
-
.wp-svg-icon-set1-windows:before {
|
1269 |
-
content: "\e199";
|
1270 |
-
}
|
1271 |
-
.wp-svg-icon-set1-windows8:before {
|
1272 |
-
content: "\e19a";
|
1273 |
-
}
|
1274 |
-
.wp-svg-icon-set1-soundcloud:before {
|
1275 |
-
content: "\e19b";
|
1276 |
-
}
|
1277 |
-
.wp-svg-icon-set1-soundcloud-2:before {
|
1278 |
-
content: "\e19c";
|
1279 |
-
}
|
1280 |
-
.wp-svg-icon-set1-skype:before {
|
1281 |
-
content: "\e19d";
|
1282 |
-
}
|
1283 |
-
.wp-svg-icon-set1-reddit:before {
|
1284 |
-
content: "\e19e";
|
1285 |
-
}
|
1286 |
-
.wp-svg-icon-set1-linkedin:before {
|
1287 |
-
content: "\e19f";
|
1288 |
-
}
|
1289 |
-
.wp-svg-icon-set1-lastfm:before {
|
1290 |
-
content: "\e1a0";
|
1291 |
-
}
|
1292 |
-
.wp-svg-icon-set1-lastfm-2:before {
|
1293 |
-
content: "\e1a1";
|
1294 |
-
}
|
1295 |
-
.wp-svg-icon-set1-delicious:before {
|
1296 |
-
content: "\e1a2";
|
1297 |
-
}
|
1298 |
-
.wp-svg-icon-set1-stumbleupon:before {
|
1299 |
-
content: "\e1a3";
|
1300 |
-
}
|
1301 |
-
.wp-svg-icon-set1-stumbleupon-2:before {
|
1302 |
-
content: "\e1a4";
|
1303 |
-
}
|
1304 |
-
.wp-svg-icon-set1-stackoverflow:before {
|
1305 |
-
content: "\e1a5";
|
1306 |
-
}
|
1307 |
-
.wp-svg-icon-set1-pinterest:before {
|
1308 |
-
content: "\e1a6";
|
1309 |
-
}
|
1310 |
-
.wp-svg-icon-set1-pinterest-2:before {
|
1311 |
-
content: "\e1a7";
|
1312 |
-
}
|
1313 |
-
.wp-svg-icon-set1-xing:before {
|
1314 |
-
content: "\e1a8";
|
1315 |
-
}
|
1316 |
-
.wp-svg-icon-set1-xing-2:before {
|
1317 |
-
content: "\e1a9";
|
1318 |
-
}
|
1319 |
-
.wp-svg-icon-set1-flattr:before {
|
1320 |
-
content: "\e1aa";
|
1321 |
-
}
|
1322 |
-
.wp-svg-icon-set1-foursquare:before {
|
1323 |
-
content: "\e1ab";
|
1324 |
-
}
|
1325 |
-
.wp-svg-icon-set1-foursquare-2:before {
|
1326 |
-
content: "\e1ac";
|
1327 |
-
}
|
1328 |
-
.wp-svg-icon-set1-paypal:before {
|
1329 |
-
content: "\e1ad";
|
1330 |
-
}
|
1331 |
-
.wp-svg-icon-set1-paypal-2:before {
|
1332 |
-
content: "\e1ae";
|
1333 |
-
}
|
1334 |
-
.wp-svg-icon-set1-paypal-3:before {
|
1335 |
-
content: "\e1af";
|
1336 |
-
}
|
1337 |
-
.wp-svg-icon-set1-yelp:before {
|
1338 |
-
content: "\e1b0";
|
1339 |
-
}
|
1340 |
-
.wp-svg-icon-set1-libreoffice:before {
|
1341 |
-
content: "\e1b1";
|
1342 |
-
}
|
1343 |
-
.wp-svg-icon-set1-file-pdf:before {
|
1344 |
-
content: "\e1b2";
|
1345 |
-
}
|
1346 |
-
.wp-svg-icon-set1-file-openoffice:before {
|
1347 |
-
content: "\e1b3";
|
1348 |
-
}
|
1349 |
-
.wp-svg-icon-set1-file-word:before {
|
1350 |
-
content: "\e1b4";
|
1351 |
-
}
|
1352 |
-
.wp-svg-icon-set1-file-excel:before {
|
1353 |
-
content: "\e1b5";
|
1354 |
-
}
|
1355 |
-
.wp-svg-icon-set1-file-zip:before {
|
1356 |
-
content: "\e1b6";
|
1357 |
-
}
|
1358 |
-
.wp-svg-icon-set1-file-powerpoint:before {
|
1359 |
-
content: "\e1b7";
|
1360 |
-
}
|
1361 |
-
.wp-svg-icon-set1-file-xml:before {
|
1362 |
-
content: "\e1b8";
|
1363 |
-
}
|
1364 |
-
.wp-svg-icon-set1-file-css:before {
|
1365 |
-
content: "\e1b9";
|
1366 |
-
}
|
1367 |
-
.wp-svg-icon-set1-html5:before {
|
1368 |
-
content: "\e1ba";
|
1369 |
-
}
|
1370 |
-
.wp-svg-icon-set1-html5-2:before {
|
1371 |
-
content: "\e1bb";
|
1372 |
-
}
|
1373 |
-
.wp-svg-icon-set1-css3:before {
|
1374 |
-
content: "\e1bc";
|
1375 |
-
}
|
1376 |
-
.wp-svg-icon-set1-chrome:before {
|
1377 |
-
content: "\e1bd";
|
1378 |
-
}
|
1379 |
-
.wp-svg-icon-set1-firefox:before {
|
1380 |
-
content: "\e1be";
|
1381 |
-
}
|
1382 |
-
.wp-svg-icon-set1-IE:before {
|
1383 |
-
content: "\e1bf";
|
1384 |
-
}
|
1385 |
-
.wp-svg-icon-set1-opera:before {
|
1386 |
-
content: "\e1c0";
|
1387 |
-
}
|
1388 |
-
.wp-svg-icon-set1-safari:before {
|
1389 |
-
content: "\e1c1";
|
1390 |
-
}
|
1391 |
-
.wp-svg-icon-set1-IcoMoon:before {
|
1392 |
-
content: "\e1c2";
|
1393 |
-
}
|
1394 |
-
.wp-svg-icon-set1-sunrise:before {
|
1395 |
-
content: "\e1c3";
|
1396 |
-
}
|
1397 |
-
.wp-svg-icon-set1-sun:before {
|
1398 |
-
content: "\e1c4";
|
1399 |
-
}
|
1400 |
-
.wp-svg-icon-set1-moon:before {
|
1401 |
-
content: "\e1c5";
|
1402 |
-
}
|
1403 |
-
.wp-svg-icon-set1-sun-2:before {
|
1404 |
-
content: "\e1c6";
|
1405 |
-
}
|
1406 |
-
.wp-svg-icon-set1-windy:before {
|
1407 |
-
content: "\e1c7";
|
1408 |
-
}
|
1409 |
-
.wp-svg-icon-set1-wind:before {
|
1410 |
-
content: "\e1c8";
|
1411 |
-
}
|
1412 |
-
.wp-svg-icon-set1-snowflake:before {
|
1413 |
-
content: "\e1c9";
|
1414 |
-
}
|
1415 |
-
.wp-svg-icon-set1-cloudy:before {
|
1416 |
-
content: "\e1ca";
|
1417 |
-
}
|
1418 |
-
.wp-svg-icon-set1-cloud-2:before {
|
1419 |
-
content: "\e1cb";
|
1420 |
-
}
|
1421 |
-
.wp-svg-icon-set1-weather:before {
|
1422 |
-
content: "\e1cc";
|
1423 |
-
}
|
1424 |
-
.wp-svg-icon-set1-weather-2:before {
|
1425 |
-
content: "\e1cd";
|
1426 |
-
}
|
1427 |
-
.wp-svg-icon-set1-weather-3:before {
|
1428 |
-
content: "\e1ce";
|
1429 |
-
}
|
1430 |
-
.wp-svg-icon-set1-lines:before {
|
1431 |
-
content: "\e1cf";
|
1432 |
-
}
|
1433 |
-
.wp-svg-icon-set1-cloud-3:before {
|
1434 |
-
content: "\e1d0";
|
1435 |
-
}
|
1436 |
-
.wp-svg-icon-set1-lightning-2:before {
|
1437 |
-
content: "\e1d1";
|
1438 |
-
}
|
1439 |
-
.wp-svg-icon-set1-lightning-3:before {
|
1440 |
-
content: "\e1d2";
|
1441 |
-
}
|
1442 |
-
.wp-svg-icon-set1-rainy:before {
|
1443 |
-
content: "\e1d3";
|
1444 |
-
}
|
1445 |
-
.wp-svg-icon-set1-rainy-2:before {
|
1446 |
-
content: "\e1d4";
|
1447 |
-
}
|
1448 |
-
.wp-svg-icon-set1-windy-2:before {
|
1449 |
-
content: "\e1d5";
|
1450 |
-
}
|
1451 |
-
.wp-svg-icon-set1-windy-3:before {
|
1452 |
-
content: "\e1d6";
|
1453 |
-
}
|
1454 |
-
.wp-svg-icon-set1-snowy:before {
|
1455 |
-
content: "\e1d7";
|
1456 |
-
}
|
1457 |
-
.wp-svg-icon-set1-snowy-2:before {
|
1458 |
-
content: "\e1d8";
|
1459 |
-
}
|
1460 |
-
.wp-svg-icon-set1-snowy-3:before {
|
1461 |
-
content: "\e1d9";
|
1462 |
-
}
|
1463 |
-
.wp-svg-icon-set1-weather-4:before {
|
1464 |
-
content: "\e1da";
|
1465 |
-
}
|
1466 |
-
.wp-svg-icon-set1-cloudy-2:before {
|
1467 |
-
content: "\e1db";
|
1468 |
-
}
|
1469 |
-
.wp-svg-icon-set1-cloud-4:before {
|
1470 |
-
content: "\e1dc";
|
1471 |
-
}
|
1472 |
-
.wp-svg-icon-set1-lightning-4:before {
|
1473 |
-
content: "\e1dd";
|
1474 |
-
}
|
1475 |
-
.wp-svg-icon-set1-sun-3:before {
|
1476 |
-
content: "\e1de";
|
1477 |
-
}
|
1478 |
-
.wp-svg-icon-set1-moon-2:before {
|
1479 |
-
content: "\e1df";
|
1480 |
-
}
|
1481 |
-
.wp-svg-icon-set1-cloudy-3:before {
|
1482 |
-
content: "\e1e0";
|
1483 |
-
}
|
1484 |
-
.wp-svg-icon-set1-cloud-5:before {
|
1485 |
-
content: "\e1e1";
|
1486 |
-
}
|
1487 |
-
.wp-svg-icon-set1-cloud-6:before {
|
1488 |
-
content: "\e1e2";
|
1489 |
-
}
|
1490 |
-
.wp-svg-icon-set1-lightning-5:before {
|
1491 |
-
content: "\e1e3";
|
1492 |
-
}
|
1493 |
-
.wp-svg-icon-set1-rainy-3:before {
|
1494 |
-
content: "\e1e4";
|
1495 |
-
}
|
1496 |
-
.wp-svg-icon-set1-rainy-4:before {
|
1497 |
-
content: "\e1e5";
|
1498 |
-
}
|
1499 |
-
.wp-svg-icon-set1-windy-4:before {
|
1500 |
-
content: "\e1e6";
|
1501 |
-
}
|
1502 |
-
.wp-svg-icon-set1-windy-5:before {
|
1503 |
-
content: "\e1e7";
|
1504 |
-
}
|
1505 |
-
.wp-svg-icon-set1-snowy-4:before {
|
1506 |
-
content: "\e1e8";
|
1507 |
-
}
|
1508 |
-
.wp-svg-icon-set1-snowy-5:before {
|
1509 |
-
content: "\e1e9";
|
1510 |
-
}
|
1511 |
-
.wp-svg-icon-set1-weather-5:before {
|
1512 |
-
content: "\e1ea";
|
1513 |
-
}
|
1514 |
-
.wp-svg-icon-set1-cloudy-4:before {
|
1515 |
-
content: "\e1eb";
|
1516 |
-
}
|
1517 |
-
.wp-svg-icon-set1-lightning-6:before {
|
1518 |
-
content: "\e1ec";
|
1519 |
-
}
|
1520 |
-
.wp-svg-icon-set1-thermometer:before {
|
1521 |
-
content: "\e1ed";
|
1522 |
-
}
|
1523 |
-
.wp-svg-icon-set1-compass-2:before {
|
1524 |
-
content: "\e1ee";
|
1525 |
-
}
|
1526 |
-
.wp-svg-icon-set1-none:before {
|
1527 |
-
content: "\e1ef";
|
1528 |
-
}
|
1529 |
-
.wp-svg-icon-set1-Celsius:before {
|
1530 |
-
content: "\e1f0";
|
1531 |
-
}
|
1532 |
-
.wp-svg-icon-set1-Fahrenheit:before {
|
1533 |
-
content: "\e1f1";
|
1534 |
-
}
|
1535 |
-
.wp-svg-icon-set1-aperture:before {
|
1536 |
-
content: "\e1f2";
|
1537 |
-
}
|
1538 |
-
.wp-svg-icon-set1-camera-3:before {
|
1539 |
-
content: "\e1f3";
|
1540 |
-
}
|
1541 |
-
|
1542 |
-
|
1543 |
-
/* WP SVG Icons Plugin Specific Classes */
|
1544 |
-
|
1545 |
-
/* Add any of these classes to an icon for the desired effect */
|
1546 |
-
/* DropShadow Effect */
|
1547 |
-
.wpSVGiconDropShadow { text-shadow: 3px 3px 8px #888888; }
|
1548 |
-
|
1549 |
-
/* WP SVG Icons Animation Effect */
|
1550 |
-
.wpSVGanimatedSpin-fast {
|
1551 |
-
-webkit-animation-name: rotate;
|
1552 |
-
-webkit-animation-duration:1000ms;
|
1553 |
-
-webkit-animation-iteration-count: infinite;
|
1554 |
-
-webkit-animation-timing-function: linear;
|
1555 |
-
}
|
1556 |
-
|
1557 |
-
.wpSVGanimatedSpin-medium {
|
1558 |
-
/* Webkit Support */
|
1559 |
-
}
|
1560 |
-
|
1561 |
-
.wpSVGanimatedSpin-slow {
|
1562 |
-
/* Webkit Support */
|
1563 |
-
}
|
1564 |
-
|
1565 |
-
@-webkit-keyframes rotate {
|
1566 |
-
from { -webkit-transform: rotate(0deg); }
|
1567 |
-
to { -webkit-transform: rotate(360deg); }
|
1568 |
-
}
|
1569 |
-
@-ms-keyframes rotate {
|
1570 |
-
|
1571 |
-
/* Link for Smooth Color Transition */
|
1572 |
-
.wpSVGlink {
|
1573 |
-
-o-transition:color .2s ease-out;
|
1574 |
-
-ms-transition:color .2s ease-out;
|
1575 |
-
-moz-transition:color .2s ease-out;
|
1576 |
-
-webkit-transition:color .2s ease-out;
|
1577 |
-
transition:color .2s ease-out;
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
/* Icon Font Sizes */
|
1581 |
-
.wpSVGsmall { font-size: 1.5em !important;}
|
1582 |
-
.wpSVGmedium { font-size: 4em !important;}
|
1583 |
-
.wpSVGlarge { font-size: 6.5em !important;}
|
1584 |
-
.wpSVGxlarge { font-size: 9em !important;}
|
1585 |
-
|
1586 |
-
/* Rounded Corner Border Radius */
|
1587 |
-
.wpSVGroundedCorners {
|
1588 |
-
-moz-border-radius: 50%;
|
1589 |
-
border-radius: 50%;
|
1590 |
-
}
|
1591 |
-
|
1592 |
-
/* Float Classes */
|
1593 |
-
.wpSVGfloatRight { float:right; margin-left:13px; }
|
1594 |
-
.wpSVGfloatLeft { float:left; margin-right:13px; }
|
1595 |
-
.wpSVGnoFloat { float:none !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/error_log
DELETED
File without changes
|
includes/images/New-Logo.png
DELETED
Binary file
|
includes/images/svg-set1-menu-icon.png
DELETED
Binary file
|
includes/js/style.css
DELETED
@@ -1,398 +0,0 @@
|
|
1 |
-
* {
|
2 |
-
-webkit-box-sizing: border-box;
|
3 |
-
-moz-box-sizing: border-box;
|
4 |
-
box-sizing: border-box;
|
5 |
-
}
|
6 |
-
|
7 |
-
body {
|
8 |
-
margin: 0;
|
9 |
-
background: #282828;
|
10 |
-
color: #eee;
|
11 |
-
font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
12 |
-
font-size: 14px;
|
13 |
-
}
|
14 |
-
|
15 |
-
h1, h2, h3, h4, h5, h6 {
|
16 |
-
margin: 10px 0;
|
17 |
-
font-weight: 200;
|
18 |
-
}
|
19 |
-
|
20 |
-
h2 {
|
21 |
-
font-size: 1.8em;
|
22 |
-
font-weight: 200;
|
23 |
-
color: #888;
|
24 |
-
letter-spacing: 1px;
|
25 |
-
}
|
26 |
-
|
27 |
-
section {
|
28 |
-
margin-bottom: 20px;
|
29 |
-
}
|
30 |
-
|
31 |
-
p {
|
32 |
-
margin: 0;
|
33 |
-
line-height: 1.5;
|
34 |
-
font-weight: 200;
|
35 |
-
}
|
36 |
-
|
37 |
-
a {
|
38 |
-
color: #00aaee;
|
39 |
-
text-decoration: none;
|
40 |
-
}
|
41 |
-
|
42 |
-
a:hover {
|
43 |
-
color: #0077a2;
|
44 |
-
text-decoration: underline;
|
45 |
-
}
|
46 |
-
|
47 |
-
.hide {
|
48 |
-
display: none;
|
49 |
-
}
|
50 |
-
|
51 |
-
.decal {
|
52 |
-
height: 2px;
|
53 |
-
background-color: #000;
|
54 |
-
border-bottom: 1px solid #333;
|
55 |
-
}
|
56 |
-
|
57 |
-
.container {
|
58 |
-
max-width: 940px;
|
59 |
-
margin-right: auto;
|
60 |
-
margin-left: auto;
|
61 |
-
}
|
62 |
-
|
63 |
-
/* EFFECTS
|
64 |
-
***************/
|
65 |
-
|
66 |
-
.glow {
|
67 |
-
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
68 |
-
-webkit-transition: text-shadow 1s linear;
|
69 |
-
-moz-transition: text-shadow 1s linear;
|
70 |
-
-o-transition: text-shadow 1s linear;
|
71 |
-
transition: text-shadow 1s linear;
|
72 |
-
}
|
73 |
-
|
74 |
-
.glow.in {
|
75 |
-
text-shadow:
|
76 |
-
0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8),
|
77 |
-
0 0 0.5em rgba(255, 255, 255, 0.3);
|
78 |
-
}
|
79 |
-
|
80 |
-
.fade {
|
81 |
-
opacity: 0;
|
82 |
-
-webkit-transition: opacity 1s linear;
|
83 |
-
-moz-transition: opacity 1s linear;
|
84 |
-
-o-transition: opacity 1s linear;
|
85 |
-
transition: opacity 1s linear;
|
86 |
-
}
|
87 |
-
|
88 |
-
.fade.in {
|
89 |
-
opacity: 1;
|
90 |
-
}
|
91 |
-
|
92 |
-
/* BUTTONS
|
93 |
-
***************/
|
94 |
-
|
95 |
-
.btn {
|
96 |
-
color: #fff;
|
97 |
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
98 |
-
display: inline-block;
|
99 |
-
text-decoration: none;
|
100 |
-
font-weight: 200;
|
101 |
-
text-align: center;
|
102 |
-
vertical-align: middle;
|
103 |
-
cursor: pointer;
|
104 |
-
border-radius: 0.5em;
|
105 |
-
padding: 0.8em 1.2em;
|
106 |
-
background-color: #ED303C;
|
107 |
-
background-image: -moz-linear-gradient(top, #ED303C, #8D121A);
|
108 |
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ED303C), to(#8D121A));
|
109 |
-
background-image: -webkit-linear-gradient(top, #ED303C, #8D121A);
|
110 |
-
background-image: -o-linear-gradient(top, #ED303C, #8D121A);
|
111 |
-
background-image: linear-gradient(to bottom, #ED303C, #8D121A);
|
112 |
-
background-repeat: repeat-x;
|
113 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
114 |
-
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
115 |
-
box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
|
116 |
-
}
|
117 |
-
|
118 |
-
.btn:hover,
|
119 |
-
.btn-primary:active,
|
120 |
-
.btn-primary.active,
|
121 |
-
.btn-primary.disabled,
|
122 |
-
.btn-primary[disabled] {
|
123 |
-
text-decoration: none;
|
124 |
-
color: #ddd;
|
125 |
-
background-color: #8D121A;
|
126 |
-
background-position: 0 -15px;
|
127 |
-
-webkit-transition: background-position 0.1s linear;
|
128 |
-
-moz-transition: background-position 0.1s linear;
|
129 |
-
-o-transition: background-position 0.1s linear;
|
130 |
-
transition: background-position 0.1s linear;
|
131 |
-
}
|
132 |
-
|
133 |
-
.btn.active,
|
134 |
-
.btn:active {
|
135 |
-
background-image: none;
|
136 |
-
outline: 0;
|
137 |
-
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
138 |
-
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
139 |
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
140 |
-
}
|
141 |
-
|
142 |
-
/* MARKETING
|
143 |
-
***************/
|
144 |
-
|
145 |
-
.jumbotron {
|
146 |
-
position: relative;
|
147 |
-
padding: 3em 0;
|
148 |
-
text-align: center;
|
149 |
-
background: #242424;
|
150 |
-
}
|
151 |
-
|
152 |
-
.jumbotron h1 {
|
153 |
-
color: #fff;
|
154 |
-
font-family: Rokkitt;
|
155 |
-
font-size: 13em;
|
156 |
-
font-weight: 200;
|
157 |
-
text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.8);
|
158 |
-
visibility: hidden;
|
159 |
-
}
|
160 |
-
|
161 |
-
.jumbotron h1 .char11 {
|
162 |
-
color: #ED303C;
|
163 |
-
}
|
164 |
-
|
165 |
-
.jumbotron p {
|
166 |
-
margin-top: -1em;
|
167 |
-
letter-spacing: 0.15em;
|
168 |
-
color: #ccc;
|
169 |
-
font-size: 1.25em;
|
170 |
-
font-weight: 200;
|
171 |
-
text-shadow: 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.8);
|
172 |
-
visibility: hidden;
|
173 |
-
text-align: center;
|
174 |
-
}
|
175 |
-
|
176 |
-
.jumbotron .btn {
|
177 |
-
margin-top: 2em;
|
178 |
-
margin-bottom: 0.5em;
|
179 |
-
font-size: 1.6em;
|
180 |
-
}
|
181 |
-
|
182 |
-
.about {
|
183 |
-
margin-top: 1em;
|
184 |
-
}
|
185 |
-
|
186 |
-
.about p {
|
187 |
-
font-size: 1.2em;
|
188 |
-
}
|
189 |
-
|
190 |
-
.playground {
|
191 |
-
background: #242424;
|
192 |
-
border-radius: 4px;
|
193 |
-
border: 1px solid #333;
|
194 |
-
margin-bottom: 10px;
|
195 |
-
}
|
196 |
-
|
197 |
-
.playground .controls {
|
198 |
-
margin-bottom: 0;
|
199 |
-
background: #282828;
|
200 |
-
border-radius: 0 0 4px 4px;
|
201 |
-
border: 1px solid #0c0c0c;
|
202 |
-
border-top: 1px solid #333;
|
203 |
-
}
|
204 |
-
|
205 |
-
.playground .controls form {
|
206 |
-
margin-bottom: 0;
|
207 |
-
padding-bottom: 8px;
|
208 |
-
}
|
209 |
-
|
210 |
-
.playground .controls select {
|
211 |
-
width: 50%;
|
212 |
-
margin-right: 10px;
|
213 |
-
}
|
214 |
-
|
215 |
-
@media (max-width: 480px) {
|
216 |
-
.playground .controls select {
|
217 |
-
width: 100%;
|
218 |
-
margin-right: 0;
|
219 |
-
}
|
220 |
-
}
|
221 |
-
|
222 |
-
.playground .viewport {
|
223 |
-
display: table;
|
224 |
-
min-height: 10em;
|
225 |
-
padding: 20px;
|
226 |
-
border-radius: 4px 4px 0 0;
|
227 |
-
border: 1px solid #0c0c0c;
|
228 |
-
overflow: hidden;
|
229 |
-
-webkit-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
230 |
-
-moz-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
231 |
-
box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.5);
|
232 |
-
}
|
233 |
-
|
234 |
-
.playground .viewport .tlt {
|
235 |
-
color: #fff;
|
236 |
-
font-size: 1.5em;
|
237 |
-
font-weight: 200;
|
238 |
-
letter-spacing: 1px;
|
239 |
-
padding: 20px 0;
|
240 |
-
display: inline-block;
|
241 |
-
vertical-align: middle;
|
242 |
-
display: table-cell;
|
243 |
-
text-align: center;
|
244 |
-
/*visibility: hidden;*/
|
245 |
-
}
|
246 |
-
|
247 |
-
.deps {
|
248 |
-
font-size: 1.2em;
|
249 |
-
}
|
250 |
-
|
251 |
-
.deps ul {
|
252 |
-
list-style-type: square;
|
253 |
-
margin: 0;
|
254 |
-
}
|
255 |
-
|
256 |
-
.deps ul li {
|
257 |
-
line-height: 1.5em
|
258 |
-
font-weight: 200;
|
259 |
-
}
|
260 |
-
|
261 |
-
/* GRID
|
262 |
-
***************/
|
263 |
-
|
264 |
-
.grid:after {
|
265 |
-
content: "";
|
266 |
-
display: table;
|
267 |
-
clear: both;
|
268 |
-
}
|
269 |
-
|
270 |
-
[class*='col-'] {
|
271 |
-
float: left;
|
272 |
-
padding-right: 20px;
|
273 |
-
}
|
274 |
-
.grid [class*='col-']:last-of-type {
|
275 |
-
padding-right: 0;
|
276 |
-
}
|
277 |
-
|
278 |
-
.col-1-1 {
|
279 |
-
width: 100%;
|
280 |
-
}
|
281 |
-
|
282 |
-
.col-2-3 {
|
283 |
-
width: 66.66%;
|
284 |
-
}
|
285 |
-
|
286 |
-
.col-1-3 {
|
287 |
-
width: 33.33%;
|
288 |
-
}
|
289 |
-
|
290 |
-
.col-1-2 {
|
291 |
-
width: 50%;
|
292 |
-
}
|
293 |
-
|
294 |
-
.col-1-4 {
|
295 |
-
width: 25%;
|
296 |
-
}
|
297 |
-
|
298 |
-
.col-3-4 {
|
299 |
-
width: 75%;
|
300 |
-
}
|
301 |
-
|
302 |
-
.col-4-5 {
|
303 |
-
width: 80%;
|
304 |
-
}
|
305 |
-
|
306 |
-
.col-1-6 {
|
307 |
-
width: 16.66%;
|
308 |
-
}
|
309 |
-
|
310 |
-
.col-1-8 {
|
311 |
-
width: 12.5%;
|
312 |
-
}
|
313 |
-
|
314 |
-
.grid-pad {
|
315 |
-
padding-left: 20px
|
316 |
-
}
|
317 |
-
|
318 |
-
.grid-pad [class*='col-'] {
|
319 |
-
padding-top: 20px;
|
320 |
-
padding-top: 20px;
|
321 |
-
}
|
322 |
-
|
323 |
-
.grid-pad [class*='col-']:last-of-type {
|
324 |
-
padding-right: 20px;
|
325 |
-
}
|
326 |
-
|
327 |
-
@media (max-width: 767px) {
|
328 |
-
[class*='col-'] {
|
329 |
-
width: 100%;
|
330 |
-
}
|
331 |
-
}
|
332 |
-
|
333 |
-
/* FORM
|
334 |
-
*********/
|
335 |
-
|
336 |
-
form .control {
|
337 |
-
margin-bottom: 5px;
|
338 |
-
}
|
339 |
-
|
340 |
-
select,
|
341 |
-
input[type="text"] {
|
342 |
-
width: 100%;
|
343 |
-
display: inline-block;
|
344 |
-
height: 30px;
|
345 |
-
padding: 4px 6px;
|
346 |
-
margin-bottom: 10px;
|
347 |
-
font-size: 14px;
|
348 |
-
line-height: 20px;
|
349 |
-
color: #555555;
|
350 |
-
vertical-align: middle;
|
351 |
-
-webkit-border-radius: 4px;
|
352 |
-
-moz-border-radius: 4px;
|
353 |
-
border-radius: 4px;
|
354 |
-
}
|
355 |
-
|
356 |
-
input[type="text"] {
|
357 |
-
background-color: #ddd;
|
358 |
-
border: 1px solid #ccc;
|
359 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
360 |
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
361 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
362 |
-
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
363 |
-
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
364 |
-
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
365 |
-
transition: border linear 0.2s, box-shadow linear 0.2s;
|
366 |
-
}
|
367 |
-
|
368 |
-
input[type="text"]:focus {
|
369 |
-
background-color: #fff;
|
370 |
-
border-color: #8D121A;
|
371 |
-
outline: 0;
|
372 |
-
-webkit-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
373 |
-
-moz-box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
374 |
-
box-shadow: inset 0 1px 1px #8D121A, 0 0 8px #ED303C;
|
375 |
-
}
|
376 |
-
|
377 |
-
label {
|
378 |
-
display: block;
|
379 |
-
margin-bottom: 5px;
|
380 |
-
}
|
381 |
-
|
382 |
-
label.inline {
|
383 |
-
display: inline-block;
|
384 |
-
}
|
385 |
-
|
386 |
-
label.checkbox {
|
387 |
-
padding: 4px 0;
|
388 |
-
margin-right: 10px;
|
389 |
-
white-space: nowrap;
|
390 |
-
vertical-align: top;
|
391 |
-
}
|
392 |
-
|
393 |
-
/* CODE
|
394 |
-
**************/
|
395 |
-
|
396 |
-
pre code {
|
397 |
-
background: transparent;
|
398 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/js/wordpress-svg-icon-plugin-scripts.js
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
/* WP SVG ICON PLUGIN PRO SCRIPTS
|
2 |
-
Compiled by Evan Herman - www.Evan-Herman.com
|
3 |
-
|
4 |
-
jQuery(document).ready(function(){
|
5 |
-
|
6 |
-
jQuery('.expansion-Glyph').hover(function(){ jQuery('.expansion-Glyph').css('cursor','pointer'); });
|
7 |
-
jQuery('input[type=text].glyph_unicode').click(buttonClick);
|
8 |
-
jQuery('input[type=text].expansion_glyph_unicode').click(expansionButtonClick);
|
9 |
-
jQuery('.glyph').click(buttonClick);
|
10 |
-
jQuery('.expansion-Glyph').click(expansionButtonClick);
|
11 |
-
|
12 |
-
function buttonClick() {
|
13 |
-
var glyphUnicode = jQuery('input[type=text].glyph_unicode', this).val();
|
14 |
-
jQuery('.glyph').removeClass('selected');
|
15 |
-
|
16 |
-
jQuery('input[type=text].copy_paste_input').val('<span data-icon="'+glyphUnicode + '"></span>');
|
17 |
-
jQuery('input[type=text].expansion_glyph_unicode').css('background-color','#eee');
|
18 |
-
jQuery('input[type=text].glyph_unicode').css('background-color','#eee');
|
19 |
-
jQuery('input[type=text].glyph_unicode', this).css('background-color','#FF8000', 'font-color', '#000');
|
20 |
-
jQuery('.wp-svg-icon-preview').html('<div class="wp-svg-iconset1-preview" data-icon="'+ glyphUnicode + '"></div>');
|
21 |
-
jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
|
22 |
-
};
|
23 |
-
|
24 |
-
function expansionButtonClick() {
|
25 |
-
var glyphUnicode = jQuery('input[type=text].expansion_glyph_unicode', this).val();
|
26 |
-
|
27 |
-
jQuery('input[type=text].copy_paste_input').val('<span class="'+glyphUnicode + '"></span>');
|
28 |
-
jQuery('input[type=text].glyph_unicode').css('background-color','#eee');
|
29 |
-
jQuery('input[type=text].expansion_glyph_unicode').css('background-color','#eee');
|
30 |
-
jQuery('input[type=text].expansion_glyph_unicode', this).css('background-color','#FF8000', 'font-color', '#000');
|
31 |
-
|
32 |
-
jQuery('.wp-svg-icon-preview').html('<div class="wp-svg-iconset1-preview"><span class="'+ glyphUnicode + '"></span></div>');
|
33 |
-
jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
|
34 |
-
};
|
35 |
-
|
36 |
-
|
37 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/js/wp_svg_delete_custom_pack_ajax.js
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
function wp_svg_uninstall_font_pack() {
|
2 |
-
|
3 |
-
var data = {
|
4 |
-
action : 'svg_delete_custom_pack'
|
5 |
-
};
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
jQuery('.error').remove();
|
10 |
-
|
11 |
-
return false;
|
12 |
-
|
13 |
-
}
|
14 |
-
|
15 |
-
jQuery(document).ready(function() {
|
16 |
-
// if the upload file field is blank, alert with an error
|
17 |
-
jQuery('input[value="Import"]').click(function() {
|
18 |
-
|
19 |
-
var icon_pack_upload_field = jQuery('#wp_svg_custom_pack_field').val();
|
20 |
-
|
21 |
-
if ( icon_pack_upload_field == '' ) {
|
22 |
-
|
23 |
-
alert('Please select a file.');
|
24 |
-
return false;
|
25 |
-
|
26 |
-
} else {
|
27 |
-
|
28 |
-
var svgPackFileExtension = jQuery('#wp_svg_custom_pack_field').val().split('.').pop().toLowerCase();
|
29 |
-
|
30 |
-
|
31 |
-
if(jQuery.inArray(svgPackFileExtension, ['zip']) == -1) {
|
32 |
-
|
33 |
-
|
34 |
-
alert('Please select a .zip file.');
|
35 |
-
|
36 |
-
|
37 |
-
event.preventDefault();
|
38 |
-
|
39 |
-
|
40 |
-
} else {
|
41 |
-
|
42 |
-
|
43 |
-
jQuery('#wp_svg_icons_upload_custom_pack_form').submit();
|
44 |
-
|
45 |
-
|
46 |
-
}
|
47 |
-
|
48 |
-
}
|
49 |
-
|
50 |
-
});
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/scripts.php
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
<?php
|
|
error_log → languages/wp-svg-icons.pot
RENAMED
File without changes
|
license.txt
ADDED
@@ -0,0 +1,339 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The public-facing functionality of the plugin.
|
4 |
+
*
|
5 |
+
* @package WP_SVG_Icons
|
6 |
+
* @subpackage WP_SVG_Icons/public
|
7 |
+
* @author Evan Herman <Evan.M.Herman@gmail.com>
|
8 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
9 |
+
*/
|
10 |
+
|
11 |
+
class WP_SVG_Icons_Public {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* The ID of this plugin.
|
15 |
+
*
|
16 |
+
* @since 3.0.0
|
17 |
+
* @access private
|
18 |
+
* @var string $plugin_name The ID of this plugin.
|
19 |
+
*/
|
20 |
+
private $plugin_name;
|
21 |
+
|
22 |
+
/**
|
23 |
+
* The version of this plugin.
|
24 |
+
*
|
25 |
+
* @since 3.0.0
|
26 |
+
* @access private
|
27 |
+
* @var string $version The current version of this plugin.
|
28 |
+
*/
|
29 |
+
private $version;
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Initialize the class and set its properties.
|
33 |
+
*
|
34 |
+
* @since 3.0.0
|
35 |
+
* @var string $plugin_name The name of the plugin.
|
36 |
+
* @var string $version The version of this plugin.
|
37 |
+
*/
|
38 |
+
public function __construct( $plugin_name, $version ) {
|
39 |
+
|
40 |
+
$this->plugin_name = $plugin_name;
|
41 |
+
$this->version = $version;
|
42 |
+
|
43 |
+
// allow the icon shortcode to be used in widgets
|
44 |
+
// so users don't need to add this themselves
|
45 |
+
add_filter('widget_text', 'do_shortcode');
|
46 |
+
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* Register our stylesheets for the public-facing side of the site.
|
51 |
+
*
|
52 |
+
* @since 3.0.0
|
53 |
+
*/
|
54 |
+
public function enqueue_styles() {
|
55 |
+
|
56 |
+
// if the user has opted to enqueue the default icon pack
|
57 |
+
// load it up on the front end
|
58 |
+
if ( get_option( 'wp_svg_icons_enqueue_defualt_icon_pack' , '1' ) == '1' ) {
|
59 |
+
// enqueue default font icon pack, if setting dictates so
|
60 |
+
wp_enqueue_style( 'default-icon-styles' , plugin_dir_url( __FILE__ ) . '../admin/css/wordpress-svg-icon-plugin-style.min.css' );
|
61 |
+
}
|
62 |
+
// Enqueue custom styles if the user has uploaded a custom pack
|
63 |
+
add_action( 'wp_head' , array( &$this , 'enqueueCustomIconStyles' ) );
|
64 |
+
|
65 |
+
}
|
66 |
+
|
67 |
+
/**
|
68 |
+
* Register our scripts for the public-facing side of the site.
|
69 |
+
*
|
70 |
+
* @since 3.0.0
|
71 |
+
*/
|
72 |
+
public function enqueue_scripts() {
|
73 |
+
|
74 |
+
}
|
75 |
+
|
76 |
+
/*
|
77 |
+
* Enqueue our custom styles if the user has uploaded a custom pack
|
78 |
+
* @since 3.0.0
|
79 |
+
*/
|
80 |
+
public function enqueueCustomIconStyles() {
|
81 |
+
|
82 |
+
// enqueue our custom icon pack styles if they exist
|
83 |
+
$dest = wp_upload_dir();
|
84 |
+
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
85 |
+
$path = $dest['basedir'] . $upload['subdir'];
|
86 |
+
$customPackStyles = '/style.css';
|
87 |
+
|
88 |
+
// Check if there is a custom pack style file
|
89 |
+
// if there is enqueue it
|
90 |
+
if ( file_exists( $path . $customPackStyles ) ) {
|
91 |
+
wp_register_style( 'wp_svg_custom_pack_style' , '/wp-content/uploads/wp-svg-icons/custom-pack' . $customPackStyles );
|
92 |
+
wp_enqueue_style( 'wp_svg_custom_pack_style' );
|
93 |
+
}
|
94 |
+
|
95 |
+
}
|
96 |
+
|
97 |
+
|
98 |
+
}
|
99 |
+
|
100 |
+
/*
|
101 |
+
* Include our shortcode [wp-svg-icons icon="#"]
|
102 |
+
* @since 3.0.0
|
103 |
+
*/
|
104 |
+
include_once( plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/wp-svg-icons-shortcodes.php' );
|
public/partials/wp-svg-icons-shortcodes.php
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Function to process our shortcode and render our WP SVG Icon
|
5 |
+
*
|
6 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
7 |
+
* @since 3.0.0
|
8 |
+
*
|
9 |
+
* @package WP_SVG_Icons
|
10 |
+
* @subpackage WP_SVG_Icons/public
|
11 |
+
*
|
12 |
+
*/
|
13 |
+
|
14 |
+
// Add [wp-svg-icons] Shortcode
|
15 |
+
function generate_wp_svg_icon( $atts ) {
|
16 |
+
|
17 |
+
// Extract our shortcode attributes
|
18 |
+
extract( shortcode_atts(
|
19 |
+
array(
|
20 |
+
'icon' => '',
|
21 |
+
'wrap' => '',
|
22 |
+
'class' => '',
|
23 |
+
'size' => '',
|
24 |
+
'custom_icon' => '',
|
25 |
+
'link' => '',
|
26 |
+
'new_tab' => '',
|
27 |
+
'color' => ''
|
28 |
+
), $atts )
|
29 |
+
);
|
30 |
+
|
31 |
+
// if icon and custom icon is left blank
|
32 |
+
if( !isset( $icon ) || empty( $icon ) ) {
|
33 |
+
if( !isset( $custom_icon ) || empty( $custom_icon ) ) {
|
34 |
+
return __( 'Whoops! It looks like you forgot to specify an icon.' , 'wp-svg-icons' );
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
+
// if the user forgot to set a wrap
|
39 |
+
if( !isset( $wrap ) || empty( $wrap ) ) {
|
40 |
+
return __( 'Whoops! It looks like you forgot to specify your html tag.' , 'wp-svg-icons' );
|
41 |
+
}
|
42 |
+
|
43 |
+
// if the user has set extra classes for the element
|
44 |
+
if( !empty( $class ) ) {
|
45 |
+
$classes = ' ' . esc_attr( $class );
|
46 |
+
}
|
47 |
+
|
48 |
+
// if the user has set a custom icon
|
49 |
+
if( !empty( $custom_icon ) ) { // display a custom icon
|
50 |
+
$classes = ' class="wp-svg-custom-' . trim( esc_attr( $custom_icon . ' ' . $class ) ) . '"';
|
51 |
+
} else { // display our default icon
|
52 |
+
$classes = ' class="wp-svg-' . trim( esc_attr( $icon . ' ' . $class ) ). '"';
|
53 |
+
}
|
54 |
+
|
55 |
+
// create an array to populate with some styles
|
56 |
+
$styles_array = array();
|
57 |
+
|
58 |
+
// if the user has a set a custom icon size, set up our variable
|
59 |
+
if( !empty( $size ) ) {
|
60 |
+
$icon_size = 'font-size:' . esc_attr( $size ) . ';';
|
61 |
+
$styles_array[0] = $icon_size;
|
62 |
+
} else {
|
63 |
+
$icon_size = '';
|
64 |
+
}
|
65 |
+
|
66 |
+
// if the user has a set a custom icon color, set up our variable
|
67 |
+
if( !empty( $color ) ) {
|
68 |
+
$icon_color = 'color:' . esc_attr( $color ) . ';';
|
69 |
+
$styles_array[1] = $icon_color;
|
70 |
+
} else {
|
71 |
+
$icon_color = '';
|
72 |
+
}
|
73 |
+
|
74 |
+
// build up an array of styles,
|
75 |
+
// to pass to our element
|
76 |
+
if( !empty( $styles_array ) ) {
|
77 |
+
$styles = 'style="' . esc_attr( implode( '' , $styles_array ) ) . '"';
|
78 |
+
} else {
|
79 |
+
$styles = '';
|
80 |
+
}
|
81 |
+
|
82 |
+
|
83 |
+
// check if this icon should be set as a link
|
84 |
+
if( !empty( $link ) ) {
|
85 |
+
// wrap our element in an anchor tag, for the link
|
86 |
+
// don't forget to esc_url
|
87 |
+
if( $new_tab == '1' ) {
|
88 |
+
return '<a href="' . esc_url( $link ) . '" target="_blank"><' . esc_attr( $wrap ) . $classes . $styles . '></' . esc_attr( $wrap ) . '></a>';
|
89 |
+
} else {
|
90 |
+
return '<a href="' . esc_url( $link ) . '"><' . esc_attr( $wrap ) . $classes . $styles . '></' . esc_attr( $wrap ) . '></a>';
|
91 |
+
}
|
92 |
+
} else {
|
93 |
+
// return the default icon
|
94 |
+
return '<' . esc_attr( $wrap ) . $classes . $styles . '></' . esc_attr( $wrap ) . '>';
|
95 |
+
}
|
96 |
+
|
97 |
+
}
|
98 |
+
|
99 |
+
// hook in and add our custom shortcode
|
100 |
+
add_shortcode( 'wp-svg-icons', 'generate_wp_svg_icon' );
|
101 |
+
|
102 |
+
?>
|
readme.txt
CHANGED
@@ -1 +1,304 @@
|
|
1 |
-
===
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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, 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
|
5 |
+
Requires at least: 3.5
|
6 |
+
Tested up to: 4.1.1
|
7 |
+
Stable tag: 3.0
|
8 |
+
License: GPLv3 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
+
|
11 |
+
Quickly and effortlessly enable 490+ beautifully designed SVG font icons, available on the frontend and backend of your site.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
><strong>Features</strong>
|
16 |
+
|
17 |
+
>- Over 490 icons included
|
18 |
+
>- Create and upload your own custom icons using the custom icon importer
|
19 |
+
>- Download and import your own custom icon build from <a href="http://icomoon.io/app/#/select">IcoMoon</a>
|
20 |
+
>- Insert Icons Directly Into Posts/Pages/Sidebars
|
21 |
+
>- No need to write a single line of code
|
22 |
+
>- Actively under development
|
23 |
+
|
24 |
+
**New In v3.0 : Shortcode Support**
|
25 |
+
|
26 |
+
Utilize the newly implemented shortcode to prevent icons from being stripped between the visual and html tabs of the editor!
|
27 |
+
|
28 |
+
*(fully backwards compatible!)*
|
29 |
+
|
30 |
+
**Basic Plugin Demo**
|
31 |
+
|
32 |
+
http://www.youtube.com/watch?v=hXUJjQb82WY
|
33 |
+
|
34 |
+
**Consider Going Pro For Additional Features!**
|
35 |
+
|
36 |
+
><strong>Pro Features</strong>
|
37 |
+
|
38 |
+
>- Icon customizer to adjust icon size, color, link and more on the fly without writing any code!
|
39 |
+
>- Add icons to menu items directly from within the menu edit screen
|
40 |
+
>- Premium support for any troubles you may run into, or the times you'd like to achieve something more custom
|
41 |
+
>- Built in widget support for *all* icons
|
42 |
+
>- No need to write code or adjust shortcode parameters manually in the pro version
|
43 |
+
>- Continuously iterated on and under development
|
44 |
+
|
45 |
+
><a href="http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" title="Upgrade Now!">Get the premium version now!</a>
|
46 |
+
|
47 |
+
|
48 |
+
**Demo Page**
|
49 |
+
|
50 |
+
<a href="http://www.evan-herman.com/wp-svg-icons/">Check Out The Plugin Demo Page</a>
|
51 |
+
|
52 |
+
I originally created this plugin for my own personal use on client projects. After witnessing the power of this plugin first hand, I wanted to give a little something back to the community who have helped me through the years. The 'WordPress SVG Icon Set' is extremely easy for any one to use. Two clicks of the mouse and you have an icon ready to be placed on to your site. These icons are a set of web-fonts, and are extremely scale-able. Meaning they will not degrade in quality the larger they get. Another great feature of this plugin is the ability to use the same icons across all devices. No need to generate Retina specific images for mobile devices. By setting a max-width on the icon, it then becomes responsive. This plugin is also great for developers who use icons on multiple sites and want to avoid the hassle of re-installing
|
53 |
+
web fonts on to a new server every time. With this plugin its one click and you're ready to begin working. You can use these any where in your themes.
|
54 |
+
|
55 |
+
**Special Thanks Goes To:**
|
56 |
+
|
57 |
+
* [IcoMoon](http://www.icomoon.io) for an amazing base set of free icon's for use, many in this plugin.
|
58 |
+
* [Alessio Atzeni](http://www.alessioatzeni.com/) for the inclusion of a few 'Metoicons' icons in this plugin.
|
59 |
+
* [PJ Onori](http://somerandomdude.com) for the inclusion of a few 'Iconic' icons in this plugin.
|
60 |
+
|
61 |
+
**and of course**
|
62 |
+
|
63 |
+
* [Matt Mullenweg](http://www.ma.tt/) for everything he does for the WordPress community. Without him none of this would be possible.
|
64 |
+
|
65 |
+
|
66 |
+
*Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to rate and review it, as this will only make future iterations of it better.*
|
67 |
+
|
68 |
+
== Installation ==
|
69 |
+
|
70 |
+
<strong>Installation</strong>
|
71 |
+
|
72 |
+
1. Upload `wordpress-svg-icons-plugin.zip` to the `/wp-content/plugins/` directory
|
73 |
+
2. Activate the plugin through the 'Plugins' menu in WordPress
|
74 |
+
3. Go to the 'WP SVG Icon' plugin page in the dashboard
|
75 |
+
4. Click on which icon you would like to use
|
76 |
+
5. A preview of the icon will then appear in the preview box at the top. You can either copy the generated shortcode, or click on 'Insert Icon' (if on the post or page edit screens)
|
77 |
+
6. Keep in mind, you can also use the shortcode in widgets or anywhere else on your site. If the shortcode isn't suitable for your needs, consider using the generated HTML instead.
|
78 |
+
|
79 |
+
<hr />
|
80 |
+
|
81 |
+
<strong>Custom Pack Installation</strong>
|
82 |
+
|
83 |
+
1. Visit <a href="http://icomoon.io/app/#/select">IcoMoon</a> and begin selecting icons you want to use.
|
84 |
+
2. Import icomoon icons from the library
|
85 |
+
3. select which icons you want to include in your pack
|
86 |
+
4. Click 'Font' at the bottom of the browser window
|
87 |
+
5. Click 'Preferences' and input a font-name and a customized prefix (must end in - for best results)
|
88 |
+
6. Click 'Download'
|
89 |
+
7. Import the .zip right into the plugin and start using your fonts! No coding required!
|
90 |
+
|
91 |
+
== Frequently Asked Questions ==
|
92 |
+
|
93 |
+
= I need some help! What's the best way to go about getting support? =
|
94 |
+
|
95 |
+
Please consider <a href="https://www.evan-herman.com/wordpress-plugin/wp-svg-icons/" target="_blank">purchasing the premium version</a> of the plugin if you require support. The idea behind the free version was to give something back to the community. Constantly iterating and supporting a free plugin is time consuming and not sustainable.
|
96 |
+
|
97 |
+
With the premium version you're guaranteed a level of support you wouldn't otherwise get. You'll receive top notch support from a full-time and professional WordPress developer.
|
98 |
+
|
99 |
+
If your not interested in purchasing the premium version, please <a href="http://www.evan-herman.com/wordpress-support/" target="_blank">register for support on my site</a>. Once registered please post in the respective forum and I will get back to you as time permits. Pro version holders ger priority access to support.
|
100 |
+
|
101 |
+
= Will these icons loose quality as they scale up? =
|
102 |
+
|
103 |
+
No. These icons are not .png or .jpg format. They are .svg (scalable vector graphics), which means you can scale them as large as you want with out any loss in quality. (really....as large as you want!)
|
104 |
+
|
105 |
+
= Can you change the color of the icons? =
|
106 |
+
|
107 |
+
Yes, by adding the 'color' parameter to the shortcode, and then specifying either a hex, rgb or rgba color code.
|
108 |
+
For example :
|
109 |
+
`[wp-svg-icons icon="menu-2" wrap="i" color="#B4DA55"]`
|
110 |
+
|
111 |
+
= What's different between the free and the pro version? =
|
112 |
+
|
113 |
+
The pro version comes with a pretty sweet icon customizer. Not only does this allow you to adjust the size, color and link attribute but it allows you to easily customize your icon without ever needing to remember any of the shortcode parameters or write a single line of code!
|
114 |
+
|
115 |
+
The pro version also comes with custom nav walkers implemented, to easily add icons to any of your menu items. This is a neat little feature which allows you to select an icon from a dropdown to assign to your menu directly from within the menu edit screen.
|
116 |
+
|
117 |
+
If you buy the pro version you will also receive support and updates for one year, for those times you need to make something out of the ordinary happen.
|
118 |
+
|
119 |
+
== Screenshots ==
|
120 |
+
|
121 |
+
1. Default icon pack shortcode generator
|
122 |
+
2. Entire default icon pack collection. All available on initial install.
|
123 |
+
3. Custom icomoon font pack importer.
|
124 |
+
4. Brand new - generate your shortcode and enter icons into a post or page directly from the edit screen
|
125 |
+
5. Add icons to menu items without ever writing code - Pro Version Only -
|
126 |
+
6. Customize your icon before adding it to a page or post - Pro Version Only -
|
127 |
+
|
128 |
+
== Changelog ==
|
129 |
+
|
130 |
+
= 3.0 - February 27th, 2015 =
|
131 |
+
* Re-wrote the entire plugin from the ground up.
|
132 |
+
* Built in shortcode support which ultimately prevents code from being stripped when toggling between html/visual tabs
|
133 |
+
* Added all new shortcode parameters to make altering icons that much easier
|
134 |
+
* Began to finalize the pro version with an icon customizer, icon selector from the menu screen and more.
|
135 |
+
* Began to update example/demo page
|
136 |
+
|
137 |
+
= 2.3.3 - November 13th, 2014 =
|
138 |
+
* Added some error checks for failed upload attempts
|
139 |
+
|
140 |
+
= 2.3.2 =
|
141 |
+
* Resolved two PHP warnings
|
142 |
+
|
143 |
+
= 2.3.1 =
|
144 |
+
* Resolved the 'Warning: Cannot modify header information' error thrown
|
145 |
+
|
146 |
+
= 2.3 =
|
147 |
+
* Fixed some URL structures to allow plugin to be used on localhost
|
148 |
+
* Updating some core functions
|
149 |
+
* Added new styles to dashboard icons
|
150 |
+
* 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
|
151 |
+
|
152 |
+
= 2.2.1 =
|
153 |
+
* Remove the default icon size which was overriding the users icon size
|
154 |
+
|
155 |
+
= 2.2 =
|
156 |
+
* Remove $hook parameter that was conditionally loading styles on admin end - prevented users from using icons in the dashboard
|
157 |
+
|
158 |
+
= 2.0 =
|
159 |
+
* Added <a href="http://www.icomoon.io">Icomoon</a> icon pack importer
|
160 |
+
* Fixed what dashboard pages styles/scripts get enqueued
|
161 |
+
* Adjusted styles to maintain consistency - January 15th, 2014
|
162 |
+
|
163 |
+
= 1.3.2 =
|
164 |
+
* Added pre-defined classes for easy icon styling - October 29th, 2013
|
165 |
+
* Check <a href="http://www.evan-herman.com/wp-svg-icons/"> the demo page </a> for more information.
|
166 |
+
|
167 |
+
= 1.3.1 =
|
168 |
+
* Fixed inconsistency with new rounded Linked in icon - October 23rd, 2013
|
169 |
+
|
170 |
+
= 1.3 =
|
171 |
+
* Added a new expansion section
|
172 |
+
* Added 1 new rounded Linked in icon - October 19th, 2013
|
173 |
+
|
174 |
+
= 1.2 =
|
175 |
+
* Replaced icon container holder from a `<div>` to a `<span>` - fixes line breaks when inserting icons into content - September 20th, 2013
|
176 |
+
|
177 |
+
= 1.1 =
|
178 |
+
* Made it easier to select icons by making the entire div selectable
|
179 |
+
* Added icon highlighting after selection
|
180 |
+
* Added smooth scroll back to top
|
181 |
+
* Placed scripts in external file - August 2nd, 2013
|
182 |
+
|
183 |
+
= 1.0 =
|
184 |
+
* Original Release - July 20th, 2013
|
185 |
+
|
186 |
+
== Upgrade Notice ==
|
187 |
+
|
188 |
+
= 3.0 - February 27th, 2015 =
|
189 |
+
* Re-wrote the entire plugin from the ground up.
|
190 |
+
* Built in shortcode support which ultimately prevents code from being stripped when toggling between html/visual tabs
|
191 |
+
* Added all new shortcode parameters to make altering icons that much easier
|
192 |
+
* Began to finalize the pro version with an icon customizer, icon selector from the menu screen and more.
|
193 |
+
* Began to update example/demo page
|
194 |
+
|
195 |
+
= 2.3.3 - November 13th, 2014 =
|
196 |
+
* Added some error checks for failed upload attempts
|
197 |
+
|
198 |
+
= 2.3.2 =
|
199 |
+
* Resolved two PHP warnings
|
200 |
+
|
201 |
+
= 2.3.1 =
|
202 |
+
* Resolved the 'Warning: Cannot modify header information' error thrown
|
203 |
+
|
204 |
+
= 2.3 =
|
205 |
+
* Fixed some URL structures to allow plugin to be used on localhost
|
206 |
+
* Updating some core functions
|
207 |
+
* Added new styles to dashboard icons
|
208 |
+
* 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
|
209 |
+
|
210 |
+
= 2.2.1 =
|
211 |
+
* Remove the default icon size which was overriding the users icon size - January 17th, 2014
|
212 |
+
|
213 |
+
= 2.2 =
|
214 |
+
* Remove $hook parameter that was conditionally loading styles on admin end - prevented users from using icons in the dashboard
|
215 |
+
|
216 |
+
= 2.0 =
|
217 |
+
* Added <a href="http://www.icomoon.io">Icomoon</a> icon pack importer
|
218 |
+
* Fixed what dashboard pages styles/scripts get enqueued
|
219 |
+
* Adjusted styles to maintain consistency - January 15th, 2014
|
220 |
+
|
221 |
+
= 1.3.2 =
|
222 |
+
* Added pre-defined classes for easy icon styling - October 29th, 2013
|
223 |
+
* Check <a href="http://www.evan-herman.com/wp-svg-icons/"> the demo page </a> for more information.
|
224 |
+
|
225 |
+
= 1.3.1 =
|
226 |
+
* Fixed inconsistency with new rounded Linked in icon - October 23rd, 2013
|
227 |
+
|
228 |
+
= 1.3 =
|
229 |
+
* Added a new expansion section
|
230 |
+
* Added 1 new rounded linked in icon - October 19th, 2013
|
231 |
+
|
232 |
+
= 1.2 =
|
233 |
+
* Replaced icon container holder from a <div> to a <span> - fixes line breaks when inserting icons into content - September 20th, 2013
|
234 |
+
|
235 |
+
= 1.1 =
|
236 |
+
* Made it easier to select icons by making the entire div selectable
|
237 |
+
* Added icon highlighting after selection
|
238 |
+
* Added smooth scroll back to top - August 2nd, 2013
|
239 |
+
|
240 |
+
= 1.0 =
|
241 |
+
* Original release - July 20th, 2013
|
242 |
+
|
243 |
+
== Usage Instructions ==
|
244 |
+
|
245 |
+
You have two possible avenues for using the plugin. Head over to the main 'Default Icon Set' page to generate a shortcode for your icon, or click the 'Add Icon' button from the post or page editor.
|
246 |
+
|
247 |
+
The icon shortcode will look like the following:
|
248 |
+
|
249 |
+
`[wp-svg-icons icon="pencil-2" wrap="span"]`
|
250 |
+
|
251 |
+
Custom icons utilize 'custom_icon' parameter instead of 'icon'.
|
252 |
+
|
253 |
+
It is also extremely simple to change the size of the icon. You can either change the element that the icon is housed in (h1,h2,h3 etc.) or you can utilize the 'size' shortcode parameter.
|
254 |
+
|
255 |
+
*Example:*
|
256 |
+
|
257 |
+
`[wp-svg-icons icon="menu-2" wrap="i" size="3em"]`
|
258 |
+
|
259 |
+
The above shortcode will set the icon size to 3em. You may also specify 'px', '%' or 'rem' as the font size.
|
260 |
+
|
261 |
+
Additionally you can easily change the icon color as well, using the 'color' parameter.
|
262 |
+
|
263 |
+
*Example:*
|
264 |
+
|
265 |
+
`[wp-svg-icons icon="menu-2" wrap="i" color="#2ECC4B"]`
|
266 |
+
|
267 |
+
You may also use hex, rgb or rgba values.
|
268 |
+
|
269 |
+
*Example:*
|
270 |
+
`[wp-svg-icons icon="menu-2" wrap="i" color="rgba(45, 223, 78, 0.28)"]`
|
271 |
+
|
272 |
+
The above two example shortcodes would set the color of the icon to a light green.
|
273 |
+
|
274 |
+
Additionally you can add custom classes to your icon through the use of the class shortcode parameter.
|
275 |
+
|
276 |
+
*Example:*
|
277 |
+
`[wp-svg-icons icon="menu-2" wrap="i" class="custom-icon icon-class testing-custom-icon-class"]`
|
278 |
+
|
279 |
+
The resulting HTML would look like :
|
280 |
+
`<i class="wp-svg-menu-2 custom-icon icon-class testing-custom-icon-class"></i>`
|
281 |
+
|
282 |
+
Adding custom classes to your icon allows you to more easily target singular icons via CSS. This is helpful for adding hover fades, or simple CSS animations to an icon.
|
283 |
+
|
284 |
+
*All Shortcode Parameters:*
|
285 |
+
|
286 |
+
*'icon' => '',
|
287 |
+
*wrap - set the element your icon will be housed in (div, span, h1, h2 etc.)
|
288 |
+
*class - assign additional classes to your icon. awesome for targeting your icons more easily.
|
289 |
+
*size - alter the size of the icon regardless of the container (px, em, rem, %)
|
290 |
+
*icon - assign a default icon
|
291 |
+
*custom_icon - assign a custom icon
|
292 |
+
*link - link the icon to a page or post
|
293 |
+
*new_tab - open the link in a new tab
|
294 |
+
*color - alter the color of the icon (hex, rgb, rgba)
|
295 |
+
|
296 |
+
**Icomoon Icon Font Importer**
|
297 |
+
|
298 |
+
http://www.youtube.com/watch?v=8bRny8gW2_k
|
299 |
+
|
300 |
+
We've listened to your feature requests, and after many hours behind the keyboard developing, we're pleased to announce our newest addition to WP SVG Icons.
|
301 |
+
|
302 |
+
Now, you're no longer limited to the icons that come pre-packaged with the plugin. Create an unlimited number of custom icon combinations and start using them on your site in a matter of minutes.
|
303 |
+
|
304 |
+
<p> Check out the <a href="https://www.evan-herman.com/wp-svg-icons/">demo page</a> for icon examples, the icon playground and code samples before downloading.</p>=======
|
uninstall.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Fired when the plugin is uninstalled.
|
4 |
+
*
|
5 |
+
* @link http://www.evan-herman.com/wordpress-plugin/wp-svg-icons/
|
6 |
+
* @since 3.0.0
|
7 |
+
*
|
8 |
+
* @package WP_SVG_Icons
|
9 |
+
*/
|
10 |
+
|
11 |
+
// If uninstall not called from WordPress, then exit.
|
12 |
+
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
13 |
+
|
14 |
+
delete_option( 'wp_svg_icons_license_status' );
|
15 |
+
delete_option( 'wp_svg_icons_license_key' );
|
16 |
+
|
17 |
+
exit;
|
18 |
+
}
|
wordpress-svg-icons-plugin.php
DELETED
@@ -1,2592 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Plugin Name: WordPress Icons - SVG
|
4 |
-
Plugin URI: http://evan-herman.com/wp-svg-icon-set-1-example/
|
5 |
-
Description: Easily insert svg icons directly in to your WordPress blog with this plugin.
|
6 |
-
Version: 2.3.3
|
7 |
-
Author: Evan Herman
|
8 |
-
Author URI: http://www.Evan-Herman.com
|
9 |
-
License:
|
10 |
-
Copyright 2013 Evan Herman (email : Evan.M.Herman@gmail.com)
|
11 |
-
This program is free software; you can redistribute it and/or modify
|
12 |
-
it under the terms of the GNU General Public License, version 2, as
|
13 |
-
published by the Free Software Foundation.
|
14 |
-
This program is distributed in the hope that it will be useful,
|
15 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17 |
-
GNU General Public License for more details.
|
18 |
-
You should have received a copy of the GNU General Public License
|
19 |
-
along with this program; if not, write to the Free Software
|
20 |
-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
21 |
-
*/
|
22 |
-
/***********************************
|
23 |
-
* INCLUDES
|
24 |
-
***********************************/
|
25 |
-
|
26 |
-
/* path to any included files */
|
27 |
-
include(dirname(__FILE__) . '/includes/scripts.php'); // this controls all js/css
|
28 |
-
|
29 |
-
// on plugin activation redirect
|
30 |
-
function wp_svg_icons_activate() {
|
31 |
-
add_option('wp_svg_icons_do_activation_redirect', true);
|
32 |
-
}
|
33 |
-
|
34 |
-
function wp_svg_icons_redirect() {
|
35 |
-
$site_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
36 |
-
if (get_option('wp_svg_icons_do_activation_redirect', false)) {
|
37 |
-
delete_option('wp_svg_icons_do_activation_redirect');
|
38 |
-
wp_redirect(site_url().'/wp-admin/admin.php?page=wordpress_svg_icons_cheat_sheet');
|
39 |
-
}
|
40 |
-
}
|
41 |
-
register_activation_hook(__FILE__, 'wp_svg_icons_activate');
|
42 |
-
add_action('admin_init', 'wp_svg_icons_redirect');
|
43 |
-
|
44 |
-
// Creates Dynamic Uploads Path
|
45 |
-
// Sets path to wp-content/uploads/wp-svg-icons/custom-pack
|
46 |
-
function wp_svg_set_upload_dir( $upload ) {
|
47 |
-
$upload['subdir'] = '/wp-svg-icons/custom-pack';
|
48 |
-
$upload['path'] = $upload['basedir'] . $upload['subdir'];
|
49 |
-
$upload['url'] = $upload['baseurl'] . $upload['subdir'];
|
50 |
-
return $upload;
|
51 |
-
}
|
52 |
-
|
53 |
-
// Gets urlBasename from the URL string
|
54 |
-
// If you are on the Upload a Custom Icon Pack page => set custom path for all uploads to wp-content/uploads/wp-svg-icons/custom-pack
|
55 |
-
function wp_svg_change_downloads_upload_dir() {
|
56 |
-
$actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
57 |
-
$actual_link_explode = explode('/', $actual_link);
|
58 |
-
$urlBasename = array_pop($actual_link_explode);
|
59 |
-
if ($urlBasename == 'admin.php?page=wp-svg-icons-upload-custom-pack' ) {
|
60 |
-
add_filter( 'upload_dir', 'wp_svg_set_upload_dir' );
|
61 |
-
}
|
62 |
-
}
|
63 |
-
add_action( 'admin_init', 'wp_svg_change_downloads_upload_dir', 999 );
|
64 |
-
|
65 |
-
// Register custom pack already installed error
|
66 |
-
function wp_svg_customPack_installed_error(){
|
67 |
-
$actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
68 |
-
$actual_link_explode = explode('/', $actual_link);
|
69 |
-
$urlBasename = array_pop($actual_link_explode);
|
70 |
-
if ($urlBasename == 'admin.php?page=wp-svg-icons-upload-custom-pack' ) {
|
71 |
-
$dest = wp_upload_dir();
|
72 |
-
$dest_path = $dest['path'];
|
73 |
-
// if a file exists print the error on the custom pack upload page
|
74 |
-
if (file_exists( $dest_path.'/wp-svg-custom-pack.zip' )) {
|
75 |
-
// print error
|
76 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".wp-svg-custom-pack-preloader").show(); jQuery(".wp-svg-custom-pack-buttons").after("<div class=error><p>You already have a font pack installed. If you want to install a new font pack, you must first uninstall the current one.</p></div>"); });</script>';
|
77 |
-
// disable file upload field if custom font pack exists
|
78 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".preview-icon-code-box").show(); jQuery(".dropDownButton").removeAttr("disabled"); jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled"); jQuery("input[value=Import]").attr("disabled","disabled"); });</script>';
|
79 |
-
|
80 |
-
|
81 |
-
echo '<script>
|
82 |
-
jQuery(document).ready(function() {
|
83 |
-
jQuery.get( "'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/demo.html", function( data ) {
|
84 |
-
setTimeout(function() {
|
85 |
-
jQuery( ".current-font-pack" ).html( data );
|
86 |
-
}, 1200);
|
87 |
-
});
|
88 |
-
});
|
89 |
-
</script>';
|
90 |
-
|
91 |
-
} else {
|
92 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".wp-svg-custom-pack-preloader").hide(); jQuery("#uninstall-pack-button").attr("disabled","disabled"); jQuery("#dropDownButton").attr("disabled","disabled"); });</script>';
|
93 |
-
}
|
94 |
-
}
|
95 |
-
}
|
96 |
-
add_action('admin_notices', 'wp_svg_customPack_installed_error');
|
97 |
-
|
98 |
-
// Create menu page to display icons
|
99 |
-
// Create Menu Page
|
100 |
-
// Create Sub Menu page for Custom Pack Uploads
|
101 |
-
function wordpress_svg_icons_plugin_add_menu_page(){
|
102 |
-
add_menu_page( 'WP SVG Icons',
|
103 |
-
'WP SVG Icons',
|
104 |
-
'manage_options',
|
105 |
-
'wordpress_svg_icons_cheat_sheet',
|
106 |
-
'wordpresssvgiconscheatsheet_callback',
|
107 |
-
plugins_url( '/svg-vector-icon-plugin/includes/images/svg-set1-menu-icon.png' )
|
108 |
-
);
|
109 |
-
}
|
110 |
-
add_action('admin_menu', 'wordpress_svg_icons_plugin_add_menu_page');
|
111 |
-
|
112 |
-
function wordpress_svg_icons_plugin_add_submenu_page(){
|
113 |
-
add_submenu_page(
|
114 |
-
'wordpress_svg_icons_cheat_sheet',
|
115 |
-
'Import Custom Icon Pack',
|
116 |
-
'Import Custom Icon Pack',
|
117 |
-
'manage_options',
|
118 |
-
'wp-svg-icons-upload-custom-pack',
|
119 |
-
'wp_svg_icons_upload_custom_pack_callback'
|
120 |
-
);
|
121 |
-
|
122 |
-
}
|
123 |
-
add_action('admin_menu', 'wordpress_svg_icons_plugin_add_submenu_page');
|
124 |
-
|
125 |
-
function wp_svg_custom_pack_enable_fields() {
|
126 |
-
?>
|
127 |
-
<script>
|
128 |
-
jQuery(document).ready(function() {
|
129 |
-
jQuery('input[value="Import"]').removeAttr("disabled");
|
130 |
-
jQuery('#wp_svg_custom_pack_field').removeAttr("disabled");
|
131 |
-
});
|
132 |
-
</script>
|
133 |
-
<?php
|
134 |
-
}
|
135 |
-
// function to delete an entire directory (even if it is not empty)
|
136 |
-
// used to delete wp-svg-icons/custom-pack and all contents when font pack is uninstalled
|
137 |
-
function rrmdir($dir) {
|
138 |
-
if (is_dir($dir)) {
|
139 |
-
$objects = scandir($dir);
|
140 |
-
foreach ($objects as $object) {
|
141 |
-
if ($object != "." && $object != "..") {
|
142 |
-
if (filetype($dir."/".$object) == "dir") rrmdir($dir."/".$object); else unlink($dir."/".$object);
|
143 |
-
}
|
144 |
-
}
|
145 |
-
reset($objects);
|
146 |
-
rmdir($dir);
|
147 |
-
}
|
148 |
-
}
|
149 |
-
|
150 |
-
// Function that handles the ajax request of deleting files
|
151 |
-
function svg_delete_custom_pack_ajax() {
|
152 |
-
$dest = wp_upload_dir();
|
153 |
-
$dest_path = $dest['path'];
|
154 |
-
$this_year = date('Y');
|
155 |
-
$this_month = date('m');
|
156 |
-
$the_date_string = $this_year.'/'.$this_month.'/';
|
157 |
-
|
158 |
-
$customFontPackPath = $dest_path.'/wp-svg-icons/custom-pack/';
|
159 |
-
|
160 |
-
$newCustomFontPackPath = str_replace($the_date_string,'',$customFontPackPath);
|
161 |
-
$fileName = 'wp-svg-custom-pack.zip';
|
162 |
-
|
163 |
-
$deleteZip = rrmdir($newCustomFontPackPath);
|
164 |
-
rrmdir($newCustomFontPackPath);
|
165 |
-
|
166 |
-
}
|
167 |
-
add_action('wp_ajax_svg_delete_custom_pack','svg_delete_custom_pack_ajax');
|
168 |
-
|
169 |
-
// move this to it's own file, and do an include()
|
170 |
-
function wordpresssvgiconscheatsheet_callback() {
|
171 |
-
?>
|
172 |
-
<html>
|
173 |
-
<head>
|
174 |
-
<link rel="stylesheet" href="<?php echo plugins_url( '/svg-vector-icon-plugin/includes/css/wordpress-svg-icon-plugin-style.css' );?>" />
|
175 |
-
<script src="<?php echo plugins_url('/svg-vector-icon-plugin/includes/js/wordpress-svg-icon-plugin-scripts.js');?>"></script>
|
176 |
-
<style>
|
177 |
-
section, header, footer {display: block;}
|
178 |
-
body {
|
179 |
-
font-family: sans-serif;
|
180 |
-
color: #444;
|
181 |
-
line-height: 1.5;
|
182 |
-
font-size: 1em;
|
183 |
-
}
|
184 |
-
* {
|
185 |
-
-moz-box-sizing: border-box;
|
186 |
-
-webkit-box-sizing: border-box;
|
187 |
-
box-sizing: border-box;
|
188 |
-
margin: 0;
|
189 |
-
padding: 0;
|
190 |
-
}
|
191 |
-
.glyph, .expansion-Glyph {
|
192 |
-
font-size: .75em;
|
193 |
-
float: left;
|
194 |
-
text-align: center;
|
195 |
-
padding: .15em;
|
196 |
-
margin: .75em .62em .75em 0;
|
197 |
-
border-radius: .25em;
|
198 |
-
color:#333333;
|
199 |
-
-o-transition:.15s;
|
200 |
-
-ms-transition:.15s;
|
201 |
-
-moz-transition:.15s;
|
202 |
-
-webkit-transition:.15s;
|
203 |
-
transition:.15s;
|
204 |
-
margin-top:0;
|
205 |
-
}
|
206 |
-
|
207 |
-
.expansion-Glyph {
|
208 |
-
font-size:2em !important;
|
209 |
-
}
|
210 |
-
|
211 |
-
.glyph:hover {
|
212 |
-
color:#FF8000;
|
213 |
-
cursor:pointer;
|
214 |
-
}
|
215 |
-
.glyph input, .expansion-Glyph input {
|
216 |
-
font-family: consolas, monospace;
|
217 |
-
font-size: 13px;
|
218 |
-
width: 100%;
|
219 |
-
text-align: center;
|
220 |
-
border: 0;
|
221 |
-
box-shadow: 0 0 0 1px #ccc;
|
222 |
-
padding: .125em;
|
223 |
-
display:none;
|
224 |
-
}
|
225 |
-
|
226 |
-
.selected {
|
227 |
-
color:#FF8000;
|
228 |
-
background:#d8d8d8;
|
229 |
-
border-radius:5px;
|
230 |
-
}
|
231 |
-
.expansion-Glyph:hover { background-color: #CCCCCC !important; cursor:pointer !important; }
|
232 |
-
.w-main {
|
233 |
-
width: 95%;
|
234 |
-
}
|
235 |
-
.centered {
|
236 |
-
margin-left: auto;
|
237 |
-
margin-right: auto;
|
238 |
-
}
|
239 |
-
header {
|
240 |
-
margin: 2em 0;
|
241 |
-
color: #666;
|
242 |
-
}
|
243 |
-
header h1 {
|
244 |
-
font-size: 2em;
|
245 |
-
font-weight: normal;
|
246 |
-
}
|
247 |
-
.clearfix:before, .clearfix:after { content: ""; display: table; }
|
248 |
-
.clearfix:after, .clear { clear: both; }
|
249 |
-
footer {
|
250 |
-
margin-top: 2em;
|
251 |
-
padding: .5em 0;
|
252 |
-
box-shadow: 0 -2px #eee;
|
253 |
-
}
|
254 |
-
a { color: #333; }
|
255 |
-
a:hover { color: #B35047; }
|
256 |
-
a:visited { color: #333; text-decoration: none; }
|
257 |
-
a:active { color: none; }
|
258 |
-
.box1 {
|
259 |
-
font-size: 16px;
|
260 |
-
display: inline-block;
|
261 |
-
width: 15em;
|
262 |
-
padding: .25em .5em;
|
263 |
-
background: #eee;
|
264 |
-
margin: .5em 1em .5em 0;
|
265 |
-
}
|
266 |
-
|
267 |
-
input:focus { background: #E1E1E1; }
|
268 |
-
|
269 |
-
.wp-svg-icon-preview { width: 30px;}
|
270 |
-
.fs1 { padding:.85em; border-radius:5px; }
|
271 |
-
.wp-svg-iconset1-preview { font-size:40px !important; position:absolute; font-size:90px !important; margin-left:25px; margin-top:5px; width:95px; }
|
272 |
-
.wp-svg-icon-preview-box { display:inline-block; float:right; margin-top: -170px; margin-right: 15px; width:170px; border: 1px dashed #CCCCCC; height:145px; padding:.8em; margin-bottom:10px; text-align:center; padding-bottom: 140px !important;}
|
273 |
-
.wp-svg-paypal-donation-button { margin-top: -50px; right:0; }
|
274 |
-
|
275 |
-
::selection {
|
276 |
-
background: #FF8000;
|
277 |
-
}
|
278 |
-
|
279 |
-
.how-to-use { width:749px; border: 1px solid #CCCCCC; margin-bottom: 5px; float:left;}
|
280 |
-
.tips-box { width: 500px; height: 236px; float: left; margin-left: 25px; border: 1px solid #cccccc;}
|
281 |
-
.help-boxes { width: 100%; height: 236px; }
|
282 |
-
|
283 |
-
.glyph-demo {
|
284 |
-
font-size:1.25em !important;
|
285 |
-
}
|
286 |
-
.glyph-demo .fs1 {
|
287 |
-
padding: .35em !important;
|
288 |
-
font-size:1.25em;
|
289 |
-
}
|
290 |
-
</style>
|
291 |
-
</head>
|
292 |
-
<body>
|
293 |
-
<div class="w-main centered">
|
294 |
-
|
295 |
-
<header>
|
296 |
-
<h1>The <i style="color:#FF8000;">WordPress SVG Icons</i> plugin contains the following icons</h1>
|
297 |
-
<h4>These icons are scaleable vector graphics, meaning you can set them to whatever size you want with out any loss in quality. <span style="color:#FF8000;">Enjoy!</span></h3>
|
298 |
-
</header>
|
299 |
-
<div class="help-boxes" >
|
300 |
-
|
301 |
-
<div class="how-to-use">
|
302 |
-
<h3 style="padding-left:10px;">How to use:</h3>
|
303 |
-
<ul style="margin-left:35px; list-style-type:square; margin-bottom: 20px;">
|
304 |
-
<li>Step 1: Locate and click the icon you want to use.</li>
|
305 |
-
<li>Step 2: Copy the code out of the example box</li>
|
306 |
-
<li style="padding-left:50px; list-style-type:none !important; display:inline;"><i style="color:red;">example:</i> <input class="copy_paste_input" style='width:298px;' readonly type='text' value='<div data-icon="Unicode Here" ></div>'></li>
|
307 |
-
<li>Step 3: Insert the code anywhere you want your icon to appear on a page.</li>
|
308 |
-
</ul>
|
309 |
-
<div class="wp-svg-icon-preview-box"><i style="font-size:14px;" class="copy-paste-text">Icon Preview:</i><b class="wp-svg-icon-preview"></b></div>
|
310 |
-
</div> <!-- end how to use -->
|
311 |
-
<div class="tips-box">
|
312 |
-
<h3 style="padding-left:10px;">Tips:</h3>
|
313 |
-
<div class="wp-svg-paypal-donation-button" style="position:inherit; display:inline; float:left; margin-left:100px;">
|
314 |
-
<b style="text-decoration:underline; float:left; margin-top:5px; font-size:13px;">Buy me a Monster Energy Drink</b>
|
315 |
-
<form action="https://www.paypal.com/cgi-bin/webscr" style=" float:left;" method="post" target="_top">
|
316 |
-
<input type="hidden" name="cmd" value="_donations">
|
317 |
-
<input type="hidden" name="business" value="evan.m.herman@gmail.com">
|
318 |
-
<input type="hidden" name="lc" value="US">
|
319 |
-
<input type="hidden" name="item_name" value="Donation for the SVG icon plugin">
|
320 |
-
<input type="hidden" name="no_note" value="0">
|
321 |
-
<input type="hidden" name="currency_code" value="USD">
|
322 |
-
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donate_SM.gif:NonHostedGuest">
|
323 |
-
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
324 |
-
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
325 |
-
</form>
|
326 |
-
</div> <!-- end paypal donation button -->
|
327 |
-
<ul style="margin-left:35px; list-style-type:square; margin-bottom: 20px;">
|
328 |
-
<li>To increase icon size an inline font-size style to the icon div.<i style="color:green;">(ie style="font-size:100px;")</i></li>
|
329 |
-
<li>To change the color add an inline color style to the icon div. <i style="color:green;">(ie style="color:green;")</i></li>
|
330 |
-
<li>Remember: You can also add CSS3 Animations to all the icons!</li>
|
331 |
-
</ul>
|
332 |
-
</div> <!-- end tips box -->
|
333 |
-
</div><!-- end help boxes -->
|
334 |
-
|
335 |
-
<div class="wp-svg-iconset1-all-glyps" style="display:inline-block; width:90.5%; margin-top:1em; ">
|
336 |
-
<section class="mtm clearfix" id="glyphs">
|
337 |
-
<div class="glyph glyph-demo">
|
338 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
339 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe000;" > </a>
|
340 |
-
</div>
|
341 |
-
|
342 |
-
<div class="glyph glyph-demo">
|
343 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
344 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe001;" > </a>
|
345 |
-
</div>
|
346 |
-
|
347 |
-
|
348 |
-
<div class="glyph glyph-demo">
|
349 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
350 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe002;" > </a>
|
351 |
-
</div>
|
352 |
-
<div class="glyph glyph-demo">
|
353 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
354 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe003;" > </a>
|
355 |
-
</div>
|
356 |
-
<div class="glyph glyph-demo">
|
357 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
358 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe004;" > </a>
|
359 |
-
</div>
|
360 |
-
<div class="glyph glyph-demo">
|
361 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
362 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe005;" > </a>
|
363 |
-
</div>
|
364 |
-
<div class="glyph glyph-demo">
|
365 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
366 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe006;" > </a>
|
367 |
-
</div>
|
368 |
-
<div class="glyph glyph-demo">
|
369 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
370 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe007;" > </a>
|
371 |
-
</div>
|
372 |
-
<div class="glyph glyph-demo">
|
373 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
374 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe008;" > </a>
|
375 |
-
</div>
|
376 |
-
<div class="glyph glyph-demo">
|
377 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
378 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe009;" > </a>
|
379 |
-
</div>
|
380 |
-
<div class="glyph glyph-demo">
|
381 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
382 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00a;" > </a>
|
383 |
-
</div>
|
384 |
-
<div class="glyph glyph-demo">
|
385 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
386 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00b;" > </a>
|
387 |
-
</div>
|
388 |
-
<div class="glyph glyph-demo">
|
389 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
390 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00c;" > </a>
|
391 |
-
</div>
|
392 |
-
<div class="glyph glyph-demo">
|
393 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
394 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00d;" > </a>
|
395 |
-
</div>
|
396 |
-
<div class="glyph glyph-demo">
|
397 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
398 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00e;" > </a>
|
399 |
-
</div>
|
400 |
-
<div class="glyph glyph-demo">
|
401 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
402 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe00f;" > </a>
|
403 |
-
</div>
|
404 |
-
<div class="glyph glyph-demo">
|
405 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
406 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe010;" > </a>
|
407 |
-
</div>
|
408 |
-
<div class="glyph glyph-demo">
|
409 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
410 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe011;" > </a>
|
411 |
-
</div>
|
412 |
-
<div class="glyph glyph-demo">
|
413 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
414 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe012;" > </a>
|
415 |
-
</div>
|
416 |
-
<div class="glyph glyph-demo">
|
417 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
418 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe013;" > </a>
|
419 |
-
</div>
|
420 |
-
<div class="glyph glyph-demo">
|
421 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
422 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe014;" > </a>
|
423 |
-
</div>
|
424 |
-
<div class="glyph glyph-demo">
|
425 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
426 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe015;" > </a>
|
427 |
-
</div>
|
428 |
-
<div class="glyph glyph-demo">
|
429 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
430 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe016;" > </a>
|
431 |
-
</div>
|
432 |
-
<div class="glyph glyph-demo">
|
433 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
434 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe017;" > </a>
|
435 |
-
</div>
|
436 |
-
<div class="glyph glyph-demo">
|
437 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
438 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe018;" > </a>
|
439 |
-
</div>
|
440 |
-
<div class="glyph glyph-demo">
|
441 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
442 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe019;" > </a>
|
443 |
-
</div>
|
444 |
-
<div class="glyph glyph-demo">
|
445 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
446 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01a;" > </a>
|
447 |
-
</div>
|
448 |
-
<div class="glyph glyph-demo">
|
449 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
450 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01b;" > </a>
|
451 |
-
</div>
|
452 |
-
<div class="glyph glyph-demo">
|
453 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
454 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01c;" > </a>
|
455 |
-
</div>
|
456 |
-
<div class="glyph glyph-demo">
|
457 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
458 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01d;" > </a>
|
459 |
-
</div>
|
460 |
-
<div class="glyph glyph-demo">
|
461 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
462 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01e;" > </a>
|
463 |
-
</div>
|
464 |
-
<div class="glyph glyph-demo">
|
465 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
466 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe01f;" > </a>
|
467 |
-
</div>
|
468 |
-
<div class="glyph glyph-demo">
|
469 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
470 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe020;" > </a>
|
471 |
-
</div>
|
472 |
-
<div class="glyph glyph-demo">
|
473 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
474 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe021;" > </a>
|
475 |
-
</div>
|
476 |
-
<div class="glyph glyph-demo">
|
477 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
478 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe022;" > </a>
|
479 |
-
</div>
|
480 |
-
<div class="glyph glyph-demo">
|
481 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
482 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe023;" > </a>
|
483 |
-
</div>
|
484 |
-
<div class="glyph glyph-demo">
|
485 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
486 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe024;" > </a>
|
487 |
-
</div>
|
488 |
-
<div class="glyph glyph-demo">
|
489 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
490 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe025;" > </a>
|
491 |
-
</div>
|
492 |
-
<div class="glyph glyph-demo">
|
493 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
494 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe026;" > </a>
|
495 |
-
</div>
|
496 |
-
<div class="glyph glyph-demo">
|
497 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
498 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe027;" > </a>
|
499 |
-
</div>
|
500 |
-
<div class="glyph glyph-demo">
|
501 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
502 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe028;" > </a>
|
503 |
-
</div>
|
504 |
-
<div class="glyph glyph-demo">
|
505 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
506 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe029;" > </a>
|
507 |
-
</div>
|
508 |
-
<div class="glyph glyph-demo">
|
509 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
510 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02a;" > </a>
|
511 |
-
</div>
|
512 |
-
<div class="glyph glyph-demo">
|
513 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
514 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02b;" > </a>
|
515 |
-
</div>
|
516 |
-
<div class="glyph glyph-demo">
|
517 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
518 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02c;" > </a>
|
519 |
-
</div>
|
520 |
-
<div class="glyph glyph-demo">
|
521 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
522 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02d;" > </a>
|
523 |
-
</div>
|
524 |
-
<div class="glyph glyph-demo">
|
525 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
526 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02e;" > </a>
|
527 |
-
</div>
|
528 |
-
<div class="glyph glyph-demo">
|
529 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
530 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe02f;" > </a>
|
531 |
-
</div>
|
532 |
-
<div class="glyph glyph-demo">
|
533 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
534 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe030;" > </a>
|
535 |
-
</div>
|
536 |
-
<div class="glyph glyph-demo">
|
537 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
538 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe031;" > </a>
|
539 |
-
</div>
|
540 |
-
<div class="glyph glyph-demo">
|
541 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
542 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe032;" > </a>
|
543 |
-
</div>
|
544 |
-
<div class="glyph glyph-demo">
|
545 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
546 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe033;" > </a>
|
547 |
-
</div>
|
548 |
-
<div class="glyph glyph-demo">
|
549 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
550 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe034;" > </a>
|
551 |
-
</div>
|
552 |
-
<div class="glyph glyph-demo">
|
553 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
554 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe035;" > </a>
|
555 |
-
</div>
|
556 |
-
<div class="glyph glyph-demo">
|
557 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
558 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe036;" > </a>
|
559 |
-
</div>
|
560 |
-
<div class="glyph glyph-demo">
|
561 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
562 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe037;" > </a>
|
563 |
-
</div>
|
564 |
-
<div class="glyph glyph-demo">
|
565 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
566 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe038;" > </a>
|
567 |
-
</div>
|
568 |
-
<div class="glyph glyph-demo">
|
569 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
570 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe039;" > </a>
|
571 |
-
</div>
|
572 |
-
<div class="glyph glyph-demo">
|
573 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
574 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03a;" > </a>
|
575 |
-
</div>
|
576 |
-
<div class="glyph glyph-demo">
|
577 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
578 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03b;" > </a>
|
579 |
-
</div>
|
580 |
-
<div class="glyph glyph-demo">
|
581 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
582 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03c;" > </a>
|
583 |
-
</div>
|
584 |
-
<div class="glyph glyph-demo">
|
585 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
586 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03d;" > </a>
|
587 |
-
</div>
|
588 |
-
<div class="glyph glyph-demo">
|
589 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
590 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03e;" > </a>
|
591 |
-
</div>
|
592 |
-
<div class="glyph glyph-demo">
|
593 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
594 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe03f;" > </a>
|
595 |
-
</div>
|
596 |
-
<div class="glyph glyph-demo">
|
597 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
598 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe040;" > </a>
|
599 |
-
</div>
|
600 |
-
<div class="glyph glyph-demo">
|
601 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
602 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe041;" > </a>
|
603 |
-
</div>
|
604 |
-
<div class="glyph glyph-demo">
|
605 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
606 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe042;" > </a>
|
607 |
-
</div>
|
608 |
-
<div class="glyph glyph-demo">
|
609 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
610 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe043;" > </a>
|
611 |
-
</div>
|
612 |
-
<div class="glyph glyph-demo">
|
613 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
614 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe044;" > </a>
|
615 |
-
</div>
|
616 |
-
<div class="glyph glyph-demo">
|
617 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
618 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe045;" > </a>
|
619 |
-
</div>
|
620 |
-
<div class="glyph glyph-demo">
|
621 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
622 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe046;" > </a>
|
623 |
-
</div>
|
624 |
-
<div class="glyph glyph-demo">
|
625 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
626 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe047;" > </a>
|
627 |
-
</div>
|
628 |
-
<div class="glyph glyph-demo">
|
629 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
630 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe048;" > </a>
|
631 |
-
</div>
|
632 |
-
<div class="glyph glyph-demo">
|
633 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
634 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe049;" > </a>
|
635 |
-
</div>
|
636 |
-
<div class="glyph glyph-demo">
|
637 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
638 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04a;" > </a>
|
639 |
-
</div>
|
640 |
-
<div class="glyph glyph-demo">
|
641 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
642 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04b;" > </a>
|
643 |
-
</div>
|
644 |
-
<div class="glyph glyph-demo">
|
645 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
646 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04c;" > </a>
|
647 |
-
</div>
|
648 |
-
<div class="glyph glyph-demo">
|
649 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
650 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04d;" > </a>
|
651 |
-
</div>
|
652 |
-
<div class="glyph glyph-demo">
|
653 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
654 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04e;" > </a>
|
655 |
-
</div>
|
656 |
-
<div class="glyph glyph-demo">
|
657 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
658 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe04f;" > </a>
|
659 |
-
</div>
|
660 |
-
<div class="glyph glyph-demo">
|
661 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
662 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe050;" > </a>
|
663 |
-
</div>
|
664 |
-
<div class="glyph glyph-demo">
|
665 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
666 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe051;" > </a>
|
667 |
-
</div>
|
668 |
-
<div class="glyph glyph-demo">
|
669 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
670 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe052;" > </a>
|
671 |
-
</div>
|
672 |
-
<div class="glyph glyph-demo">
|
673 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
674 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe053;" > </a>
|
675 |
-
</div>
|
676 |
-
<div class="glyph glyph-demo">
|
677 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
678 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe054;" > </a>
|
679 |
-
</div>
|
680 |
-
<div class="glyph glyph-demo">
|
681 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
682 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe055;" > </a>
|
683 |
-
</div>
|
684 |
-
<div class="glyph glyph-demo">
|
685 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
686 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe056;" > </a>
|
687 |
-
</div>
|
688 |
-
<div class="glyph glyph-demo">
|
689 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
690 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe057;" > </a>
|
691 |
-
</div>
|
692 |
-
<div class="glyph glyph-demo">
|
693 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
694 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe058;" > </a>
|
695 |
-
</div>
|
696 |
-
<div class="glyph glyph-demo">
|
697 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
698 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe059;" > </a>
|
699 |
-
</div>
|
700 |
-
<div class="glyph glyph-demo">
|
701 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
702 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05a;" > </a>
|
703 |
-
</div>
|
704 |
-
<div class="glyph glyph-demo">
|
705 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
706 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05b;" > </a>
|
707 |
-
</div>
|
708 |
-
<div class="glyph glyph-demo">
|
709 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
710 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05c;" > </a>
|
711 |
-
</div>
|
712 |
-
<div class="glyph glyph-demo">
|
713 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
714 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05d;" > </a>
|
715 |
-
</div>
|
716 |
-
<div class="glyph glyph-demo">
|
717 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
718 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05e;" > </a>
|
719 |
-
</div>
|
720 |
-
<div class="glyph glyph-demo">
|
721 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
722 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe05f;" > </a>
|
723 |
-
</div>
|
724 |
-
<div class="glyph glyph-demo">
|
725 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
726 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe060;" > </a>
|
727 |
-
</div>
|
728 |
-
<div class="glyph glyph-demo">
|
729 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
730 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe061;" > </a>
|
731 |
-
</div>
|
732 |
-
<div class="glyph glyph-demo">
|
733 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
734 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe062;" > </a>
|
735 |
-
</div>
|
736 |
-
<div class="glyph glyph-demo">
|
737 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
738 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe063;" > </a>
|
739 |
-
</div>
|
740 |
-
<div class="glyph glyph-demo">
|
741 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
742 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe064;" > </a>
|
743 |
-
</div>
|
744 |
-
<div class="glyph glyph-demo">
|
745 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
746 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe065;" > </a>
|
747 |
-
</div>
|
748 |
-
<div class="glyph glyph-demo">
|
749 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
750 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe066;" > </a>
|
751 |
-
</div>
|
752 |
-
<div class="glyph glyph-demo">
|
753 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
754 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe067;" > </a>
|
755 |
-
</div>
|
756 |
-
<div class="glyph glyph-demo">
|
757 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
758 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe068;" > </a>
|
759 |
-
</div>
|
760 |
-
<div class="glyph glyph-demo">
|
761 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
762 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe069;" > </a>
|
763 |
-
</div>
|
764 |
-
<div class="glyph glyph-demo">
|
765 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
766 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06a;" > </a>
|
767 |
-
</div>
|
768 |
-
<div class="glyph glyph-demo">
|
769 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
770 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06b;" > </a>
|
771 |
-
</div>
|
772 |
-
<div class="glyph glyph-demo">
|
773 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
774 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06c;" > </a>
|
775 |
-
</div>
|
776 |
-
<div class="glyph glyph-demo">
|
777 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
778 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06d;" > </a>
|
779 |
-
</div>
|
780 |
-
<div class="glyph glyph-demo">
|
781 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
782 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06e;" > </a>
|
783 |
-
</div>
|
784 |
-
<div class="glyph glyph-demo">
|
785 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
786 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe06f;" > </a>
|
787 |
-
</div>
|
788 |
-
<div class="glyph glyph-demo">
|
789 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
790 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe070;" > </a>
|
791 |
-
</div>
|
792 |
-
<div class="glyph glyph-demo">
|
793 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
794 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe071;" > </a>
|
795 |
-
</div>
|
796 |
-
<div class="glyph glyph-demo">
|
797 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
798 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe072;" > </a>
|
799 |
-
</div>
|
800 |
-
<div class="glyph glyph-demo">
|
801 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
802 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe073;" > </a>
|
803 |
-
</div>
|
804 |
-
<div class="glyph glyph-demo">
|
805 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
806 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe074;" > </a>
|
807 |
-
</div>
|
808 |
-
<div class="glyph glyph-demo">
|
809 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
810 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe075;" > </a>
|
811 |
-
</div>
|
812 |
-
<div class="glyph glyph-demo">
|
813 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
814 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe076;" > </a>
|
815 |
-
</div>
|
816 |
-
<div class="glyph glyph-demo">
|
817 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
818 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe077;" > </a>
|
819 |
-
</div>
|
820 |
-
<div class="glyph glyph-demo">
|
821 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
822 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe078;" > </a>
|
823 |
-
</div>
|
824 |
-
<div class="glyph glyph-demo">
|
825 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
826 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe079;" > </a>
|
827 |
-
</div>
|
828 |
-
<div class="glyph glyph-demo">
|
829 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
830 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07a;" > </a>
|
831 |
-
</div>
|
832 |
-
<div class="glyph glyph-demo">
|
833 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
834 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07b;" > </a>
|
835 |
-
</div>
|
836 |
-
<div class="glyph glyph-demo">
|
837 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
838 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07c;" > </a>
|
839 |
-
</div>
|
840 |
-
<div class="glyph glyph-demo">
|
841 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
842 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07d;" > </a>
|
843 |
-
</div>
|
844 |
-
<div class="glyph glyph-demo">
|
845 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
846 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07e;" > </a>
|
847 |
-
</div>
|
848 |
-
<div class="glyph glyph-demo">
|
849 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
850 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe07f;" > </a>
|
851 |
-
</div>
|
852 |
-
<div class="glyph glyph-demo">
|
853 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
854 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe080;" > </a>
|
855 |
-
</div>
|
856 |
-
<div class="glyph glyph-demo">
|
857 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
858 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe081;" > </a>
|
859 |
-
</div>
|
860 |
-
<div class="glyph glyph-demo">
|
861 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
862 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe082;" > </a>
|
863 |
-
</div>
|
864 |
-
<div class="glyph glyph-demo">
|
865 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
866 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe083;" > </a>
|
867 |
-
</div>
|
868 |
-
<div class="glyph glyph-demo">
|
869 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
870 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe084;" > </a>
|
871 |
-
</div>
|
872 |
-
<div class="glyph glyph-demo">
|
873 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
874 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe085;" > </a>
|
875 |
-
</div>
|
876 |
-
<div class="glyph glyph-demo">
|
877 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
878 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe086;" > </a>
|
879 |
-
</div>
|
880 |
-
<div class="glyph glyph-demo">
|
881 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
882 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe087;" > </a>
|
883 |
-
</div>
|
884 |
-
<div class="glyph glyph-demo">
|
885 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
886 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe088;" > </a>
|
887 |
-
</div>
|
888 |
-
<div class="glyph glyph-demo">
|
889 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
890 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe089;" > </a>
|
891 |
-
</div>
|
892 |
-
<div class="glyph glyph-demo">
|
893 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
894 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08a;" > </a>
|
895 |
-
</div>
|
896 |
-
<div class="glyph glyph-demo">
|
897 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
898 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08b;" > </a>
|
899 |
-
</div>
|
900 |
-
<div class="glyph glyph-demo">
|
901 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
902 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08c;" > </a>
|
903 |
-
</div>
|
904 |
-
<div class="glyph glyph-demo">
|
905 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
906 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08d;" > </a>
|
907 |
-
</div>
|
908 |
-
<div class="glyph glyph-demo">
|
909 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
910 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08e;" > </a>
|
911 |
-
</div>
|
912 |
-
<div class="glyph glyph-demo">
|
913 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
914 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe08f;" > </a>
|
915 |
-
</div>
|
916 |
-
<div class="glyph glyph-demo">
|
917 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
918 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe090;" > </a>
|
919 |
-
</div>
|
920 |
-
<div class="glyph glyph-demo">
|
921 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
922 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe091;" > </a>
|
923 |
-
</div>
|
924 |
-
<div class="glyph glyph-demo">
|
925 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
926 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe092;" > </a>
|
927 |
-
</div>
|
928 |
-
<div class="glyph glyph-demo">
|
929 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
930 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe093;" > </a>
|
931 |
-
</div>
|
932 |
-
<div class="glyph glyph-demo">
|
933 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
934 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe094;" > </a>
|
935 |
-
</div>
|
936 |
-
<div class="glyph glyph-demo">
|
937 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
938 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe095;" > </a>
|
939 |
-
</div>
|
940 |
-
<div class="glyph glyph-demo">
|
941 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
942 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe096;" > </a>
|
943 |
-
</div>
|
944 |
-
<div class="glyph glyph-demo">
|
945 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
946 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe097;" > </a>
|
947 |
-
</div>
|
948 |
-
<div class="glyph glyph-demo">
|
949 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
950 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe098;" > </a>
|
951 |
-
</div>
|
952 |
-
<div class="glyph glyph-demo">
|
953 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
954 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe099;" > </a>
|
955 |
-
</div>
|
956 |
-
<div class="glyph glyph-demo">
|
957 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
958 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09a;" > </a>
|
959 |
-
</div>
|
960 |
-
<div class="glyph glyph-demo">
|
961 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
962 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09b;" > </a>
|
963 |
-
</div>
|
964 |
-
<div class="glyph glyph-demo">
|
965 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
966 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09c;" > </a>
|
967 |
-
</div>
|
968 |
-
<div class="glyph glyph-demo">
|
969 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
970 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09d;" > </a>
|
971 |
-
</div>
|
972 |
-
<div class="glyph glyph-demo">
|
973 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
974 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09e;" > </a>
|
975 |
-
</div>
|
976 |
-
<div class="glyph glyph-demo">
|
977 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
978 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe09f;" > </a>
|
979 |
-
</div>
|
980 |
-
<div class="glyph glyph-demo">
|
981 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
982 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a0;" > </a>
|
983 |
-
</div>
|
984 |
-
<div class="glyph glyph-demo">
|
985 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
986 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a1;" > </a>
|
987 |
-
</div>
|
988 |
-
<div class="glyph glyph-demo">
|
989 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
990 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a2;" > </a>
|
991 |
-
</div>
|
992 |
-
<div class="glyph glyph-demo">
|
993 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
994 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a3;" > </a>
|
995 |
-
</div>
|
996 |
-
<div class="glyph glyph-demo">
|
997 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
998 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a4;" > </a>
|
999 |
-
</div>
|
1000 |
-
<div class="glyph glyph-demo">
|
1001 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1002 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a5;" > </a>
|
1003 |
-
</div>
|
1004 |
-
<div class="glyph glyph-demo">
|
1005 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1006 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a6;" > </a>
|
1007 |
-
</div>
|
1008 |
-
<div class="glyph glyph-demo">
|
1009 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1010 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a7;" > </a>
|
1011 |
-
</div>
|
1012 |
-
<div class="glyph glyph-demo">
|
1013 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1014 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a8;" > </a>
|
1015 |
-
</div>
|
1016 |
-
<div class="glyph glyph-demo">
|
1017 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1018 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0a9;" > </a>
|
1019 |
-
</div>
|
1020 |
-
<div class="glyph glyph-demo">
|
1021 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1022 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0aa;" > </a>
|
1023 |
-
</div>
|
1024 |
-
<div class="glyph glyph-demo">
|
1025 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1026 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ab;" > </a>
|
1027 |
-
</div>
|
1028 |
-
<div class="glyph glyph-demo">
|
1029 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1030 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ac;" > </a>
|
1031 |
-
</div>
|
1032 |
-
<div class="glyph glyph-demo">
|
1033 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1034 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ad;" > </a>
|
1035 |
-
</div>
|
1036 |
-
<div class="glyph glyph-demo">
|
1037 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1038 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ae;" > </a>
|
1039 |
-
</div>
|
1040 |
-
<div class="glyph glyph-demo">
|
1041 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1042 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0af;" > </a>
|
1043 |
-
</div>
|
1044 |
-
<div class="glyph glyph-demo">
|
1045 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1046 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b0;" > </a>
|
1047 |
-
</div>
|
1048 |
-
<div class="glyph glyph-demo">
|
1049 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1050 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b1;" > </a>
|
1051 |
-
</div>
|
1052 |
-
<div class="glyph glyph-demo">
|
1053 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1054 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b2;" > </a>
|
1055 |
-
</div>
|
1056 |
-
<div class="glyph glyph-demo">
|
1057 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1058 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b3;" > </a>
|
1059 |
-
</div>
|
1060 |
-
<div class="glyph glyph-demo">
|
1061 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1062 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b4;" > </a>
|
1063 |
-
</div>
|
1064 |
-
<div class="glyph glyph-demo">
|
1065 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1066 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b5;" > </a>
|
1067 |
-
</div>
|
1068 |
-
<div class="glyph glyph-demo">
|
1069 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1070 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b6;" > </a>
|
1071 |
-
</div>
|
1072 |
-
<div class="glyph glyph-demo">
|
1073 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1074 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b7;" > </a>
|
1075 |
-
</div>
|
1076 |
-
<div class="glyph glyph-demo">
|
1077 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1078 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b8;" > </a>
|
1079 |
-
</div>
|
1080 |
-
<div class="glyph glyph-demo">
|
1081 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1082 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0b9;" > </a>
|
1083 |
-
</div>
|
1084 |
-
<div class="glyph glyph-demo">
|
1085 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1086 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ba;" > </a>
|
1087 |
-
</div>
|
1088 |
-
<div class="glyph glyph-demo">
|
1089 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1090 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bb;" > </a>
|
1091 |
-
</div>
|
1092 |
-
<div class="glyph glyph-demo">
|
1093 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1094 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bc;" > </a>
|
1095 |
-
</div>
|
1096 |
-
<div class="glyph glyph-demo">
|
1097 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1098 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bd;" > </a>
|
1099 |
-
</div>
|
1100 |
-
<div class="glyph glyph-demo">
|
1101 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1102 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0be;" > </a>
|
1103 |
-
</div>
|
1104 |
-
<div class="glyph glyph-demo">
|
1105 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1106 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0bf;" > </a>
|
1107 |
-
</div>
|
1108 |
-
<div class="glyph glyph-demo">
|
1109 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1110 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c0;" > </a>
|
1111 |
-
</div>
|
1112 |
-
<div class="glyph glyph-demo">
|
1113 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1114 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c1;" > </a>
|
1115 |
-
</div>
|
1116 |
-
<div class="glyph glyph-demo">
|
1117 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1118 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c2;" > </a>
|
1119 |
-
</div>
|
1120 |
-
<div class="glyph glyph-demo">
|
1121 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1122 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c3;" > </a>
|
1123 |
-
</div>
|
1124 |
-
<div class="glyph glyph-demo">
|
1125 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1126 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c4;" > </a>
|
1127 |
-
</div>
|
1128 |
-
<div class="glyph glyph-demo">
|
1129 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1130 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c5;" > </a>
|
1131 |
-
</div>
|
1132 |
-
<div class="glyph glyph-demo">
|
1133 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1134 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c6;" > </a>
|
1135 |
-
</div>
|
1136 |
-
<div class="glyph glyph-demo">
|
1137 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1138 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c7;" > </a>
|
1139 |
-
</div>
|
1140 |
-
<div class="glyph glyph-demo">
|
1141 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1142 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c8;" > </a>
|
1143 |
-
</div>
|
1144 |
-
<div class="glyph glyph-demo">
|
1145 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1146 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0c9;" > </a>
|
1147 |
-
</div>
|
1148 |
-
<div class="glyph glyph-demo">
|
1149 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1150 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ca;" > </a>
|
1151 |
-
</div>
|
1152 |
-
<div class="glyph glyph-demo">
|
1153 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1154 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cb;" > </a>
|
1155 |
-
</div>
|
1156 |
-
<div class="glyph glyph-demo">
|
1157 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1158 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cc;" > </a>
|
1159 |
-
</div>
|
1160 |
-
<div class="glyph glyph-demo">
|
1161 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1162 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cd;" > </a>
|
1163 |
-
</div>
|
1164 |
-
<div class="glyph glyph-demo">
|
1165 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1166 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ce;" > </a>
|
1167 |
-
</div>
|
1168 |
-
<div class="glyph glyph-demo">
|
1169 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1170 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0cf;" > </a>
|
1171 |
-
</div>
|
1172 |
-
<div class="glyph glyph-demo">
|
1173 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1174 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d0;" > </a>
|
1175 |
-
</div>
|
1176 |
-
<div class="glyph glyph-demo">
|
1177 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1178 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d1;" > </a>
|
1179 |
-
</div>
|
1180 |
-
<div class="glyph glyph-demo">
|
1181 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1182 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d2;" > </a>
|
1183 |
-
</div>
|
1184 |
-
<div class="glyph glyph-demo">
|
1185 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1186 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d3;" > </a>
|
1187 |
-
</div>
|
1188 |
-
<div class="glyph glyph-demo">
|
1189 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1190 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d4;" > </a>
|
1191 |
-
</div>
|
1192 |
-
<div class="glyph glyph-demo">
|
1193 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1194 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d5;" > </a>
|
1195 |
-
</div>
|
1196 |
-
<div class="glyph glyph-demo">
|
1197 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1198 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d6;" > </a>
|
1199 |
-
</div>
|
1200 |
-
<div class="glyph glyph-demo">
|
1201 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1202 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d7;" > </a>
|
1203 |
-
</div>
|
1204 |
-
<div class="glyph glyph-demo">
|
1205 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1206 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d8;" > </a>
|
1207 |
-
</div>
|
1208 |
-
<div class="glyph glyph-demo">
|
1209 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1210 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0d9;" > </a>
|
1211 |
-
</div>
|
1212 |
-
<div class="glyph glyph-demo">
|
1213 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1214 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0da;" > </a>
|
1215 |
-
</div>
|
1216 |
-
<div class="glyph glyph-demo">
|
1217 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1218 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0db;" > </a>
|
1219 |
-
</div>
|
1220 |
-
<div class="glyph glyph-demo">
|
1221 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1222 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dc;" > </a>
|
1223 |
-
</div>
|
1224 |
-
<div class="glyph glyph-demo">
|
1225 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1226 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0dd;" > </a>
|
1227 |
-
</div>
|
1228 |
-
<div class="glyph glyph-demo">
|
1229 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1230 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0de;" > </a>
|
1231 |
-
</div>
|
1232 |
-
<div class="glyph glyph-demo">
|
1233 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1234 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0df;" > </a>
|
1235 |
-
</div>
|
1236 |
-
<div class="glyph glyph-demo">
|
1237 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1238 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e0;" > </a>
|
1239 |
-
</div>
|
1240 |
-
<div class="glyph glyph-demo">
|
1241 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1242 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e1;" > </a>
|
1243 |
-
</div>
|
1244 |
-
<div class="glyph glyph-demo">
|
1245 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1246 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e2;" > </a>
|
1247 |
-
</div>
|
1248 |
-
<div class="glyph glyph-demo">
|
1249 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1250 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e3;" > </a>
|
1251 |
-
</div>
|
1252 |
-
<div class="glyph glyph-demo">
|
1253 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1254 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e4;" > </a>
|
1255 |
-
</div>
|
1256 |
-
<div class="glyph glyph-demo">
|
1257 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1258 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e5;" > </a>
|
1259 |
-
</div>
|
1260 |
-
<div class="glyph glyph-demo">
|
1261 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1262 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e6;" > </a>
|
1263 |
-
</div>
|
1264 |
-
<div class="glyph glyph-demo">
|
1265 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1266 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e7;" > </a>
|
1267 |
-
</div>
|
1268 |
-
<div class="glyph glyph-demo">
|
1269 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1270 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e8;" > </a>
|
1271 |
-
</div>
|
1272 |
-
<div class="glyph glyph-demo">
|
1273 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1274 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0e9;" > </a>
|
1275 |
-
</div>
|
1276 |
-
<div class="glyph glyph-demo">
|
1277 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1278 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ea;" > </a>
|
1279 |
-
</div>
|
1280 |
-
<div class="glyph glyph-demo">
|
1281 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1282 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0eb;" > </a>
|
1283 |
-
</div>
|
1284 |
-
<div class="glyph glyph-demo">
|
1285 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1286 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ec;" > </a>
|
1287 |
-
</div>
|
1288 |
-
<div class="glyph glyph-demo">
|
1289 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1290 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ed;" > </a>
|
1291 |
-
</div>
|
1292 |
-
<div class="glyph glyph-demo">
|
1293 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1294 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ee;" > </a>
|
1295 |
-
</div>
|
1296 |
-
<div class="glyph glyph-demo">
|
1297 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1298 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ef;" > </a>
|
1299 |
-
</div>
|
1300 |
-
<div class="glyph glyph-demo">
|
1301 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1302 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f0;" > </a>
|
1303 |
-
</div>
|
1304 |
-
<div class="glyph glyph-demo">
|
1305 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1306 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f1;" > </a>
|
1307 |
-
</div>
|
1308 |
-
<div class="glyph glyph-demo">
|
1309 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1310 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f2;" > </a>
|
1311 |
-
</div>
|
1312 |
-
<div class="glyph glyph-demo">
|
1313 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1314 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f3;" > </a>
|
1315 |
-
</div>
|
1316 |
-
<div class="glyph glyph-demo">
|
1317 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1318 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f4;" > </a>
|
1319 |
-
</div>
|
1320 |
-
<div class="glyph glyph-demo">
|
1321 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1322 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f5;" > </a>
|
1323 |
-
</div>
|
1324 |
-
<div class="glyph glyph-demo">
|
1325 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1326 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f6;" > </a>
|
1327 |
-
</div>
|
1328 |
-
<div class="glyph glyph-demo">
|
1329 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1330 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f7;" > </a>
|
1331 |
-
</div>
|
1332 |
-
<div class="glyph glyph-demo">
|
1333 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1334 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f8;" > </a>
|
1335 |
-
</div>
|
1336 |
-
<div class="glyph glyph-demo">
|
1337 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1338 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0f9;" > </a>
|
1339 |
-
</div>
|
1340 |
-
<div class="glyph glyph-demo">
|
1341 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1342 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fa;" > </a>
|
1343 |
-
</div>
|
1344 |
-
<div class="glyph glyph-demo">
|
1345 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1346 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fb;" > </a>
|
1347 |
-
</div>
|
1348 |
-
<div class="glyph glyph-demo">
|
1349 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1350 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fc;" > </a>
|
1351 |
-
</div>
|
1352 |
-
<div class="glyph glyph-demo">
|
1353 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1354 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fd;" > </a>
|
1355 |
-
</div>
|
1356 |
-
<div class="glyph glyph-demo">
|
1357 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1358 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0fe;" > </a>
|
1359 |
-
</div>
|
1360 |
-
<div class="glyph glyph-demo">
|
1361 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1362 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe0ff;" > </a>
|
1363 |
-
</div>
|
1364 |
-
<div class="glyph glyph-demo">
|
1365 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1366 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe100;" > </a>
|
1367 |
-
</div>
|
1368 |
-
<div class="glyph glyph-demo">
|
1369 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1370 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe101;" > </a>
|
1371 |
-
</div>
|
1372 |
-
<div class="glyph glyph-demo">
|
1373 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1374 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe102;" > </a>
|
1375 |
-
</div>
|
1376 |
-
<div class="glyph glyph-demo">
|
1377 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1378 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe103;" > </a>
|
1379 |
-
</div>
|
1380 |
-
<div class="glyph glyph-demo">
|
1381 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1382 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe104;" > </a>
|
1383 |
-
</div>
|
1384 |
-
<div class="glyph glyph-demo">
|
1385 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1386 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe105;" > </a>
|
1387 |
-
</div>
|
1388 |
-
<div class="glyph glyph-demo">
|
1389 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1390 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe106;" > </a>
|
1391 |
-
</div>
|
1392 |
-
<div class="glyph glyph-demo">
|
1393 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1394 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe107;" > </a>
|
1395 |
-
</div>
|
1396 |
-
<div class="glyph glyph-demo">
|
1397 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1398 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe108;" > </a>
|
1399 |
-
</div>
|
1400 |
-
<div class="glyph glyph-demo">
|
1401 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1402 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe109;" > </a>
|
1403 |
-
</div>
|
1404 |
-
<div class="glyph glyph-demo">
|
1405 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1406 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10a;" > </a>
|
1407 |
-
</div>
|
1408 |
-
<div class="glyph glyph-demo">
|
1409 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1410 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10b;" > </a>
|
1411 |
-
</div>
|
1412 |
-
<div class="glyph glyph-demo">
|
1413 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1414 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10c;" > </a>
|
1415 |
-
</div>
|
1416 |
-
<div class="glyph glyph-demo">
|
1417 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1418 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10d;" > </a>
|
1419 |
-
</div>
|
1420 |
-
<div class="glyph glyph-demo">
|
1421 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1422 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10e;" > </a>
|
1423 |
-
</div>
|
1424 |
-
<div class="glyph glyph-demo">
|
1425 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1426 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe10f;" > </a>
|
1427 |
-
</div>
|
1428 |
-
<div class="glyph glyph-demo">
|
1429 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1430 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe110;" > </a>
|
1431 |
-
</div>
|
1432 |
-
<div class="glyph glyph-demo">
|
1433 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1434 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe111;" > </a>
|
1435 |
-
</div>
|
1436 |
-
<div class="glyph glyph-demo">
|
1437 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1438 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe112;" > </a>
|
1439 |
-
</div>
|
1440 |
-
<div class="glyph glyph-demo">
|
1441 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1442 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe113;" > </a>
|
1443 |
-
</div>
|
1444 |
-
<div class="glyph glyph-demo">
|
1445 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1446 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe114;" > </a>
|
1447 |
-
</div>
|
1448 |
-
<div class="glyph glyph-demo">
|
1449 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1450 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe115;" > </a>
|
1451 |
-
</div>
|
1452 |
-
<div class="glyph glyph-demo">
|
1453 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1454 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe116;" > </a>
|
1455 |
-
</div>
|
1456 |
-
<div class="glyph glyph-demo">
|
1457 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1458 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe117;" > </a>
|
1459 |
-
</div>
|
1460 |
-
<div class="glyph glyph-demo">
|
1461 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1462 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe118;" > </a>
|
1463 |
-
</div>
|
1464 |
-
<div class="glyph glyph-demo">
|
1465 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1466 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe119;" > </a>
|
1467 |
-
</div>
|
1468 |
-
<div class="glyph glyph-demo">
|
1469 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1470 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11a;" > </a>
|
1471 |
-
</div>
|
1472 |
-
<div class="glyph glyph-demo">
|
1473 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1474 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11b;" > </a>
|
1475 |
-
</div>
|
1476 |
-
<div class="glyph glyph-demo">
|
1477 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1478 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11c;" > </a>
|
1479 |
-
</div>
|
1480 |
-
<div class="glyph glyph-demo">
|
1481 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1482 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11d;" > </a>
|
1483 |
-
</div>
|
1484 |
-
<div class="glyph glyph-demo">
|
1485 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1486 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11e;" > </a>
|
1487 |
-
</div>
|
1488 |
-
<div class="glyph glyph-demo">
|
1489 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1490 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe11f;" > </a>
|
1491 |
-
</div>
|
1492 |
-
<div class="glyph glyph-demo">
|
1493 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1494 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe120;" > </a>
|
1495 |
-
</div>
|
1496 |
-
<div class="glyph glyph-demo">
|
1497 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1498 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe121;" > </a>
|
1499 |
-
</div>
|
1500 |
-
<div class="glyph glyph-demo">
|
1501 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1502 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe122;" > </a>
|
1503 |
-
</div>
|
1504 |
-
<div class="glyph glyph-demo">
|
1505 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1506 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe123;" > </a>
|
1507 |
-
</div>
|
1508 |
-
<div class="glyph glyph-demo">
|
1509 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1510 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe124;" > </a>
|
1511 |
-
</div>
|
1512 |
-
<div class="glyph glyph-demo">
|
1513 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1514 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe125;" > </a>
|
1515 |
-
</div>
|
1516 |
-
<div class="glyph glyph-demo">
|
1517 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1518 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe126;" > </a>
|
1519 |
-
</div>
|
1520 |
-
<div class="glyph glyph-demo">
|
1521 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1522 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe127;" > </a>
|
1523 |
-
</div>
|
1524 |
-
<div class="glyph glyph-demo">
|
1525 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1526 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe128;" > </a>
|
1527 |
-
</div>
|
1528 |
-
<div class="glyph glyph-demo">
|
1529 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1530 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe129;" > </a>
|
1531 |
-
</div>
|
1532 |
-
<div class="glyph glyph-demo">
|
1533 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1534 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12a;" > </a>
|
1535 |
-
</div>
|
1536 |
-
<div class="glyph glyph-demo">
|
1537 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1538 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12b;" > </a>
|
1539 |
-
</div>
|
1540 |
-
<div class="glyph glyph-demo">
|
1541 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1542 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12c;" > </a>
|
1543 |
-
</div>
|
1544 |
-
<div class="glyph glyph-demo">
|
1545 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1546 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12d;" > </a>
|
1547 |
-
</div>
|
1548 |
-
<div class="glyph glyph-demo">
|
1549 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1550 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12e;" > </a>
|
1551 |
-
</div>
|
1552 |
-
<div class="glyph glyph-demo">
|
1553 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1554 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe12f;" > </a>
|
1555 |
-
</div>
|
1556 |
-
<div class="glyph glyph-demo">
|
1557 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1558 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe130;" > </a>
|
1559 |
-
</div>
|
1560 |
-
<div class="glyph glyph-demo">
|
1561 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1562 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe131;" > </a>
|
1563 |
-
</div>
|
1564 |
-
<div class="glyph glyph-demo">
|
1565 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1566 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe132;" > </a>
|
1567 |
-
</div>
|
1568 |
-
<div class="glyph glyph-demo">
|
1569 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1570 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe133;" > </a>
|
1571 |
-
</div>
|
1572 |
-
<div class="glyph glyph-demo">
|
1573 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1574 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe134;" > </a>
|
1575 |
-
</div>
|
1576 |
-
<div class="glyph glyph-demo">
|
1577 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1578 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe135;" > </a>
|
1579 |
-
</div>
|
1580 |
-
<div class="glyph glyph-demo">
|
1581 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1582 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe136;" > </a>
|
1583 |
-
</div>
|
1584 |
-
<div class="glyph glyph-demo">
|
1585 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1586 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe137;" > </a>
|
1587 |
-
</div>
|
1588 |
-
<div class="glyph glyph-demo">
|
1589 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1590 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe138;" > </a>
|
1591 |
-
</div>
|
1592 |
-
<div class="glyph glyph-demo">
|
1593 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1594 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe139;" > </a>
|
1595 |
-
</div>
|
1596 |
-
<div class="glyph glyph-demo">
|
1597 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1598 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13a;" > </a>
|
1599 |
-
</div>
|
1600 |
-
<div class="glyph glyph-demo">
|
1601 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1602 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13b;" > </a>
|
1603 |
-
</div>
|
1604 |
-
<div class="glyph glyph-demo">
|
1605 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1606 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13c;" > </a>
|
1607 |
-
</div>
|
1608 |
-
<div class="glyph glyph-demo">
|
1609 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1610 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13d;" > </a>
|
1611 |
-
</div>
|
1612 |
-
<div class="glyph glyph-demo">
|
1613 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1614 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe13e;" > </a>
|
1615 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe145;" > </a>
|
1616 |
-
</div>
|
1617 |
-
<div class="glyph glyph-demo">
|
1618 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1619 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe146;" > </a>
|
1620 |
-
</div>
|
1621 |
-
<div class="glyph glyph-demo">
|
1622 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1623 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe147;" > </a>
|
1624 |
-
</div>
|
1625 |
-
<div class="glyph glyph-demo">
|
1626 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1627 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe148;" > </a>
|
1628 |
-
</div>
|
1629 |
-
<div class="glyph glyph-demo">
|
1630 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1631 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe149;" > </a>
|
1632 |
-
</div>
|
1633 |
-
<div class="glyph glyph-demo">
|
1634 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1635 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14a;" > </a>
|
1636 |
-
</div>
|
1637 |
-
<div class="glyph glyph-demo">
|
1638 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1639 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14b;" > </a>
|
1640 |
-
</div>
|
1641 |
-
<div class="glyph glyph-demo">
|
1642 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1643 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14c;" > </a>
|
1644 |
-
</div>
|
1645 |
-
<div class="glyph glyph-demo">
|
1646 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1647 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14d;" > </a>
|
1648 |
-
</div>
|
1649 |
-
<div class="glyph glyph-demo">
|
1650 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1651 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14e;" > </a>
|
1652 |
-
</div>
|
1653 |
-
<div class="glyph glyph-demo">
|
1654 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1655 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe14f;" > </a>
|
1656 |
-
</div>
|
1657 |
-
<div class="glyph glyph-demo">
|
1658 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1659 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe150;" > </a>
|
1660 |
-
</div>
|
1661 |
-
<div class="glyph glyph-demo">
|
1662 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1663 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe151;" > </a>
|
1664 |
-
</div>
|
1665 |
-
<div class="glyph glyph-demo">
|
1666 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1667 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe152;" > </a>
|
1668 |
-
</div>
|
1669 |
-
<div class="glyph glyph-demo">
|
1670 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1671 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe153;" > </a>
|
1672 |
-
</div>
|
1673 |
-
<div class="glyph glyph-demo">
|
1674 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1675 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe154;" > </a>
|
1676 |
-
</div>
|
1677 |
-
<div class="glyph glyph-demo">
|
1678 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1679 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe155;" > </a>
|
1680 |
-
</div>
|
1681 |
-
<div class="glyph glyph-demo">
|
1682 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1683 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe156;" > </a>
|
1684 |
-
</div>
|
1685 |
-
<div class="glyph glyph-demo">
|
1686 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1687 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe157;" > </a>
|
1688 |
-
</div>
|
1689 |
-
<div class="glyph glyph-demo">
|
1690 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1691 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe158;" > </a>
|
1692 |
-
</div>
|
1693 |
-
<div class="glyph glyph-demo">
|
1694 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1695 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe159;" > </a>
|
1696 |
-
</div>
|
1697 |
-
<div class="glyph glyph-demo">
|
1698 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1699 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15a;" > </a>
|
1700 |
-
</div>
|
1701 |
-
<div class="glyph glyph-demo">
|
1702 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1703 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15b;" > </a>
|
1704 |
-
</div>
|
1705 |
-
<div class="glyph glyph-demo">
|
1706 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1707 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15c;" > </a>
|
1708 |
-
</div>
|
1709 |
-
<div class="glyph glyph-demo">
|
1710 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1711 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15d;" > </a>
|
1712 |
-
</div>
|
1713 |
-
<div class="glyph glyph-demo">
|
1714 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1715 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15e;" > </a>
|
1716 |
-
</div>
|
1717 |
-
<div class="glyph glyph-demo">
|
1718 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1719 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe15f;" > </a>
|
1720 |
-
</div>
|
1721 |
-
<div class="glyph glyph-demo">
|
1722 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1723 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe160;" > </a>
|
1724 |
-
</div>
|
1725 |
-
<div class="glyph glyph-demo">
|
1726 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1727 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe161;" > </a>
|
1728 |
-
</div>
|
1729 |
-
<div class="glyph glyph-demo">
|
1730 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1731 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe162;" > </a>
|
1732 |
-
</div>
|
1733 |
-
<div class="glyph glyph-demo">
|
1734 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1735 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe163;" > </a>
|
1736 |
-
</div>
|
1737 |
-
<div class="glyph glyph-demo">
|
1738 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1739 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe164;" > </a>
|
1740 |
-
</div>
|
1741 |
-
<div class="glyph glyph-demo">
|
1742 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1743 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe165;" > </a>
|
1744 |
-
</div>
|
1745 |
-
<div class="glyph glyph-demo">
|
1746 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1747 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe166;" > </a>
|
1748 |
-
</div>
|
1749 |
-
<div class="glyph glyph-demo">
|
1750 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1751 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe167;" > </a>
|
1752 |
-
</div>
|
1753 |
-
<div class="glyph glyph-demo">
|
1754 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1755 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe168;" > </a>
|
1756 |
-
</div>
|
1757 |
-
<div class="glyph glyph-demo">
|
1758 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1759 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe169;" > </a>
|
1760 |
-
</div>
|
1761 |
-
<div class="glyph glyph-demo">
|
1762 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1763 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16a;" > </a>
|
1764 |
-
</div>
|
1765 |
-
<div class="glyph glyph-demo">
|
1766 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1767 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16b;" > </a>
|
1768 |
-
</div>
|
1769 |
-
<div class="glyph glyph-demo">
|
1770 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1771 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16c;" > </a>
|
1772 |
-
</div>
|
1773 |
-
<div class="glyph glyph-demo">
|
1774 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1775 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16d;" > </a>
|
1776 |
-
</div>
|
1777 |
-
<div class="glyph glyph-demo">
|
1778 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1779 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16e;" > </a>
|
1780 |
-
</div>
|
1781 |
-
<div class="glyph glyph-demo">
|
1782 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1783 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe16f;" > </a>
|
1784 |
-
</div>
|
1785 |
-
<div class="glyph glyph-demo">
|
1786 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1787 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe170;" > </a>
|
1788 |
-
</div>
|
1789 |
-
<div class="glyph glyph-demo">
|
1790 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1791 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe171;" > </a>
|
1792 |
-
</div>
|
1793 |
-
<div class="glyph glyph-demo">
|
1794 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1795 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe172;" > </a>
|
1796 |
-
</div>
|
1797 |
-
<div class="glyph glyph-demo">
|
1798 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1799 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe173;" > </a>
|
1800 |
-
</div>
|
1801 |
-
<div class="glyph glyph-demo">
|
1802 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1803 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe174;" > </a>
|
1804 |
-
</div>
|
1805 |
-
<div class="glyph glyph-demo">
|
1806 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1807 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe175;" > </a>
|
1808 |
-
</div>
|
1809 |
-
<div class="glyph glyph-demo">
|
1810 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1811 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe176;" > </a>
|
1812 |
-
</div>
|
1813 |
-
<div class="glyph glyph-demo">
|
1814 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1815 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe177;" > </a>
|
1816 |
-
</div>
|
1817 |
-
<div class="glyph glyph-demo">
|
1818 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1819 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe178;" > </a>
|
1820 |
-
</div>
|
1821 |
-
<div class="glyph glyph-demo">
|
1822 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1823 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe179;" > </a>
|
1824 |
-
</div>
|
1825 |
-
<div class="glyph glyph-demo">
|
1826 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1827 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17a;" > </a>
|
1828 |
-
</div>
|
1829 |
-
<div class="glyph glyph-demo">
|
1830 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1831 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17b;" > </a>
|
1832 |
-
</div>
|
1833 |
-
<div class="glyph glyph-demo">
|
1834 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1835 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17c;" > </a>
|
1836 |
-
</div>
|
1837 |
-
<div class="glyph glyph-demo">
|
1838 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1839 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17d;" > </a>
|
1840 |
-
</div>
|
1841 |
-
<div class="glyph glyph-demo">
|
1842 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1843 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17e;" > </a>
|
1844 |
-
</div>
|
1845 |
-
<div class="glyph glyph-demo">
|
1846 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1847 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe17f;" > </a>
|
1848 |
-
</div>
|
1849 |
-
<div class="glyph glyph-demo">
|
1850 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1851 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe180;" > </a>
|
1852 |
-
</div>
|
1853 |
-
<div class="glyph glyph-demo">
|
1854 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1855 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe181;" > </a>
|
1856 |
-
</div>
|
1857 |
-
<div class="glyph glyph-demo">
|
1858 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1859 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe182;" > </a>
|
1860 |
-
</div>
|
1861 |
-
<div class="glyph glyph-demo">
|
1862 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1863 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe183;" > </a>
|
1864 |
-
</div>
|
1865 |
-
<div class="glyph glyph-demo">
|
1866 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1867 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe184;" > </a>
|
1868 |
-
</div>
|
1869 |
-
<div class="glyph glyph-demo">
|
1870 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1871 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe185;" > </a>
|
1872 |
-
</div>
|
1873 |
-
<div class="glyph glyph-demo">
|
1874 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1875 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe186;" > </a>
|
1876 |
-
</div>
|
1877 |
-
<div class="glyph glyph-demo">
|
1878 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1879 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe187;" > </a>
|
1880 |
-
</div>
|
1881 |
-
<div class="glyph glyph-demo">
|
1882 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1883 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe188;" > </a>
|
1884 |
-
</div>
|
1885 |
-
<div class="glyph glyph-demo">
|
1886 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1887 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe189;" > </a>
|
1888 |
-
</div>
|
1889 |
-
<div class="glyph glyph-demo">
|
1890 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1891 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18a;" > </a>
|
1892 |
-
</div>
|
1893 |
-
<div class="glyph glyph-demo">
|
1894 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1895 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18b;" > </a>
|
1896 |
-
</div>
|
1897 |
-
<div class="glyph glyph-demo">
|
1898 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1899 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18c;" > </a>
|
1900 |
-
</div>
|
1901 |
-
<div class="glyph glyph-demo">
|
1902 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1903 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18d;" > </a>
|
1904 |
-
</div>
|
1905 |
-
<div class="glyph glyph-demo">
|
1906 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1907 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18e;" > </a>
|
1908 |
-
</div>
|
1909 |
-
<div class="glyph glyph-demo">
|
1910 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1911 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe18f;" > </a>
|
1912 |
-
</div>
|
1913 |
-
<div class="glyph glyph-demo">
|
1914 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1915 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe190;" > </a>
|
1916 |
-
</div>
|
1917 |
-
<div class="glyph glyph-demo">
|
1918 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1919 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe191;" > </a>
|
1920 |
-
</div>
|
1921 |
-
<div class="glyph glyph-demo">
|
1922 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1923 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe192;" > </a>
|
1924 |
-
</div>
|
1925 |
-
<div class="glyph glyph-demo">
|
1926 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1927 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe193;" > </a>
|
1928 |
-
</div>
|
1929 |
-
<div class="glyph glyph-demo">
|
1930 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1931 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe194;" > </a>
|
1932 |
-
</div>
|
1933 |
-
<div class="glyph glyph-demo">
|
1934 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1935 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe195;" > </a>
|
1936 |
-
</div>
|
1937 |
-
<div class="glyph glyph-demo">
|
1938 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1939 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe196;" > </a>
|
1940 |
-
</div>
|
1941 |
-
<div class="glyph glyph-demo">
|
1942 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1943 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe197;" > </a>
|
1944 |
-
</div>
|
1945 |
-
<div class="glyph glyph-demo">
|
1946 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1947 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe198;" > </a>
|
1948 |
-
</div>
|
1949 |
-
<div class="glyph glyph-demo">
|
1950 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1951 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe199;" > </a>
|
1952 |
-
</div>
|
1953 |
-
<div class="glyph glyph-demo">
|
1954 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1955 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19a;" > </a>
|
1956 |
-
</div>
|
1957 |
-
<div class="glyph glyph-demo">
|
1958 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1959 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19b;" > </a>
|
1960 |
-
</div>
|
1961 |
-
<div class="glyph glyph-demo">
|
1962 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1963 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19c;" > </a>
|
1964 |
-
</div>
|
1965 |
-
<div class="glyph glyph-demo">
|
1966 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1967 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19d;" > </a>
|
1968 |
-
</div>
|
1969 |
-
<div class="glyph glyph-demo">
|
1970 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1971 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19e;" > </a>
|
1972 |
-
</div>
|
1973 |
-
<div class="glyph glyph-demo">
|
1974 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1975 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe19f;" > </a>
|
1976 |
-
</div>
|
1977 |
-
<div class="glyph glyph-demo">
|
1978 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1979 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a0;" > </a>
|
1980 |
-
</div>
|
1981 |
-
<div class="glyph glyph-demo">
|
1982 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1983 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a1;" > </a>
|
1984 |
-
</div>
|
1985 |
-
<div class="glyph glyph-demo">
|
1986 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1987 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a2;" > </a>
|
1988 |
-
</div>
|
1989 |
-
<div class="glyph glyph-demo">
|
1990 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1991 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a3;" > </a>
|
1992 |
-
</div>
|
1993 |
-
<div class="glyph glyph-demo">
|
1994 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1995 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a4;" > </a>
|
1996 |
-
</div>
|
1997 |
-
<div class="glyph glyph-demo">
|
1998 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
1999 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a5;" > </a>
|
2000 |
-
</div>
|
2001 |
-
<div class="glyph glyph-demo">
|
2002 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2003 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a6;" > </a>
|
2004 |
-
</div>
|
2005 |
-
<div class="glyph glyph-demo">
|
2006 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2007 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a7;" > </a>
|
2008 |
-
</div>
|
2009 |
-
<div class="glyph glyph-demo">
|
2010 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2011 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a8;" > </a>
|
2012 |
-
</div>
|
2013 |
-
<div class="glyph glyph-demo">
|
2014 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2015 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1a9;" > </a>
|
2016 |
-
</div>
|
2017 |
-
<div class="glyph glyph-demo">
|
2018 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2019 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1aa;" > </a>
|
2020 |
-
</div>
|
2021 |
-
<div class="glyph glyph-demo">
|
2022 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2023 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ab;" > </a>
|
2024 |
-
</div>
|
2025 |
-
<div class="glyph glyph-demo">
|
2026 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2027 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ac;" > </a>
|
2028 |
-
</div>
|
2029 |
-
<div class="glyph glyph-demo">
|
2030 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2031 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ad;" > </a>
|
2032 |
-
</div>
|
2033 |
-
<div class="glyph glyph-demo">
|
2034 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2035 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ae;" > </a>
|
2036 |
-
</div>
|
2037 |
-
<div class="glyph glyph-demo">
|
2038 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2039 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1af;" > </a>
|
2040 |
-
</div>
|
2041 |
-
<div class="glyph glyph-demo">
|
2042 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2043 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b0;" > </a>
|
2044 |
-
</div>
|
2045 |
-
<div class="glyph glyph-demo">
|
2046 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2047 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b1;" > </a>
|
2048 |
-
</div>
|
2049 |
-
<div class="glyph glyph-demo">
|
2050 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2051 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b2;" > </a>
|
2052 |
-
</div>
|
2053 |
-
<div class="glyph glyph-demo">
|
2054 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2055 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b3;" > </a>
|
2056 |
-
</div>
|
2057 |
-
<div class="glyph glyph-demo">
|
2058 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2059 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b4;" > </a>
|
2060 |
-
</div>
|
2061 |
-
<div class="glyph glyph-demo">
|
2062 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2063 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b5;" > </a>
|
2064 |
-
</div>
|
2065 |
-
<div class="glyph glyph-demo">
|
2066 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2067 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b6;" > </a>
|
2068 |
-
</div>
|
2069 |
-
<div class="glyph glyph-demo">
|
2070 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2071 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b7;" > </a>
|
2072 |
-
</div>
|
2073 |
-
<div class="glyph glyph-demo">
|
2074 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2075 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b8;" > </a>
|
2076 |
-
</div>
|
2077 |
-
<div class="glyph glyph-demo">
|
2078 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2079 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1b9;" > </a>
|
2080 |
-
</div>
|
2081 |
-
<div class="glyph glyph-demo">
|
2082 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2083 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ba;" > </a>
|
2084 |
-
</div>
|
2085 |
-
<div class="glyph glyph-demo">
|
2086 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2087 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bb;" > </a>
|
2088 |
-
</div>
|
2089 |
-
<div class="glyph glyph-demo">
|
2090 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2091 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bc;" > </a>
|
2092 |
-
</div>
|
2093 |
-
<div class="glyph glyph-demo">
|
2094 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2095 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bd;" > </a>
|
2096 |
-
</div>
|
2097 |
-
<div class="glyph glyph-demo">
|
2098 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2099 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1be;" > </a>
|
2100 |
-
</div>
|
2101 |
-
<div class="glyph glyph-demo">
|
2102 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2103 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1bf;" > </a>
|
2104 |
-
</div>
|
2105 |
-
<div class="glyph glyph-demo">
|
2106 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2107 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c0;" > </a>
|
2108 |
-
</div>
|
2109 |
-
<div class="glyph glyph-demo">
|
2110 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2111 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c1;" > </a>
|
2112 |
-
</div>
|
2113 |
-
<div class="glyph glyph-demo">
|
2114 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2115 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c2;" > </a>
|
2116 |
-
</div>
|
2117 |
-
<div class="glyph glyph-demo">
|
2118 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2119 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c3;" > </a>
|
2120 |
-
</div>
|
2121 |
-
<div class="glyph glyph-demo">
|
2122 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2123 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c4;" > </a>
|
2124 |
-
</div>
|
2125 |
-
<div class="glyph glyph-demo">
|
2126 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2127 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c5;" > </a>
|
2128 |
-
</div>
|
2129 |
-
<div class="glyph glyph-demo">
|
2130 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2131 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c6;" > </a>
|
2132 |
-
</div>
|
2133 |
-
<div class="glyph glyph-demo">
|
2134 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2135 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c7;" > </a>
|
2136 |
-
</div>
|
2137 |
-
<div class="glyph glyph-demo">
|
2138 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2139 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c8;" > </a>
|
2140 |
-
</div>
|
2141 |
-
<div class="glyph glyph-demo">
|
2142 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2143 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1c9;" > </a>
|
2144 |
-
</div>
|
2145 |
-
<div class="glyph glyph-demo">
|
2146 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2147 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ca;" > </a>
|
2148 |
-
</div>
|
2149 |
-
<div class="glyph glyph-demo">
|
2150 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2151 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cb;" > </a>
|
2152 |
-
</div>
|
2153 |
-
<div class="glyph glyph-demo">
|
2154 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2155 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cc;" > </a>
|
2156 |
-
</div>
|
2157 |
-
<div class="glyph glyph-demo">
|
2158 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2159 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cd;" > </a>
|
2160 |
-
</div>
|
2161 |
-
<div class="glyph glyph-demo">
|
2162 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2163 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ce;" > </a>
|
2164 |
-
</div>
|
2165 |
-
<div class="glyph glyph-demo">
|
2166 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2167 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1cf;" > </a>
|
2168 |
-
</div>
|
2169 |
-
<div class="glyph glyph-demo">
|
2170 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2171 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d0;" > </a>
|
2172 |
-
</div>
|
2173 |
-
<div class="glyph glyph-demo">
|
2174 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2175 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d1;" > </a>
|
2176 |
-
</div>
|
2177 |
-
<div class="glyph glyph-demo">
|
2178 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2179 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d2;" > </a>
|
2180 |
-
</div>
|
2181 |
-
<div class="glyph glyph-demo">
|
2182 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2183 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d3;" > </a>
|
2184 |
-
</div>
|
2185 |
-
<div class="glyph glyph-demo">
|
2186 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2187 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d4;" > </a>
|
2188 |
-
</div>
|
2189 |
-
<div class="glyph glyph-demo">
|
2190 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2191 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d5;" > </a>
|
2192 |
-
</div>
|
2193 |
-
<div class="glyph glyph-demo">
|
2194 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2195 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d6;" > </a>
|
2196 |
-
</div>
|
2197 |
-
<div class="glyph glyph-demo">
|
2198 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2199 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d7;" > </a>
|
2200 |
-
</div>
|
2201 |
-
<div class="glyph glyph-demo">
|
2202 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2203 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d8;" > </a>
|
2204 |
-
</div>
|
2205 |
-
<div class="glyph glyph-demo">
|
2206 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2207 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1d9;" > </a>
|
2208 |
-
</div>
|
2209 |
-
<div class="glyph glyph-demo">
|
2210 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2211 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1da;" > </a>
|
2212 |
-
</div>
|
2213 |
-
<div class="glyph glyph-demo">
|
2214 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2215 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1db;" > </a>
|
2216 |
-
</div>
|
2217 |
-
<div class="glyph glyph-demo">
|
2218 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2219 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dc;" > </a>
|
2220 |
-
</div>
|
2221 |
-
<div class="glyph glyph-demo">
|
2222 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2223 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1dd;" > </a>
|
2224 |
-
</div>
|
2225 |
-
<div class="glyph glyph-demo">
|
2226 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2227 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1de;" > </a>
|
2228 |
-
</div>
|
2229 |
-
<div class="glyph glyph-demo">
|
2230 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2231 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1df;" > </a>
|
2232 |
-
</div>
|
2233 |
-
<div class="glyph glyph-demo">
|
2234 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2235 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e0;" > </a>
|
2236 |
-
</div>
|
2237 |
-
<div class="glyph glyph-demo">
|
2238 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2239 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e1;" > </a>
|
2240 |
-
</div>
|
2241 |
-
<div class="glyph glyph-demo">
|
2242 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2243 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e2;" > </a>
|
2244 |
-
</div>
|
2245 |
-
<div class="glyph glyph-demo">
|
2246 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2247 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e3;" > </a>
|
2248 |
-
</div>
|
2249 |
-
<div class="glyph glyph-demo">
|
2250 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2251 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e4;" > </a>
|
2252 |
-
</div>
|
2253 |
-
<div class="glyph glyph-demo">
|
2254 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2255 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e5;" > </a>
|
2256 |
-
</div>
|
2257 |
-
<div class="glyph glyph-demo">
|
2258 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2259 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e6;" > </a>
|
2260 |
-
</div>
|
2261 |
-
<div class="glyph glyph-demo">
|
2262 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2263 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e7;" > </a>
|
2264 |
-
</div>
|
2265 |
-
<div class="glyph glyph-demo">
|
2266 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2267 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e8;" > </a>
|
2268 |
-
</div>
|
2269 |
-
<div class="glyph glyph-demo">
|
2270 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2271 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1e9;" > </a>
|
2272 |
-
</div>
|
2273 |
-
<div class="glyph glyph-demo">
|
2274 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2275 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ea;" > </a>
|
2276 |
-
</div>
|
2277 |
-
<div class="glyph glyph-demo">
|
2278 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2279 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1eb;" > </a>
|
2280 |
-
</div>
|
2281 |
-
<div class="glyph glyph-demo">
|
2282 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2283 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ec;" > </a>
|
2284 |
-
</div>
|
2285 |
-
<div class="glyph glyph-demo">
|
2286 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2287 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ed;" > </a>
|
2288 |
-
</div>
|
2289 |
-
<div class="glyph glyph-demo">
|
2290 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2291 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ee;" > </a>
|
2292 |
-
</div>
|
2293 |
-
<div class="glyph glyph-demo">
|
2294 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2295 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1ef;" > </a>
|
2296 |
-
</div>
|
2297 |
-
<div class="glyph glyph-demo">
|
2298 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2299 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f0;" > </a>
|
2300 |
-
</div>
|
2301 |
-
<div class="glyph glyph-demo">
|
2302 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2303 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f1;" > </a>
|
2304 |
-
</div>
|
2305 |
-
<div class="glyph glyph-demo">
|
2306 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2307 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f2;" > </a>
|
2308 |
-
</div>
|
2309 |
-
<div class="glyph glyph-demo">
|
2310 |
-
<div class="fs1" aria-hidden="true" data-icon=""></div>
|
2311 |
-
<a class="glyph-link" href="#"><input class="glyph_unicode" type="text" readonly="readonly" value="&#xe1f3;" > </a>
|
2312 |
-
</div>
|
2313 |
-
</section>
|
2314 |
-
<span style="display:inline-block"><h3 style="float:left;margin-bottom:0;font-size:1.5em;"> Expansion Pack </h3></span>
|
2315 |
-
<p>Welcome to the expansion pack section! This section will grow as time progresses. But in the meantime, here's a rounded linked in icon for you!</p>
|
2316 |
-
|
2317 |
-
<div class="expansion-Glyph">
|
2318 |
-
<span class="fs1 wp-svg-icon-set1-expansion-linkedin_circle" style="padding:0;"></span>
|
2319 |
-
<a class="glyph-link" href="#"><input class="expansion_glyph_unicode" type="text" readonly="readonly" value="wp-svg-icon-set1-expansion-linkedin_circle" > </a>
|
2320 |
-
</div>
|
2321 |
-
</div>
|
2322 |
-
<div class="clear"></div>
|
2323 |
-
<footer>
|
2324 |
-
<p>Plugin Created By <a style="color:#B35047;" href="http://www.Evan-Herman.com" target="_blank">Evan Herman</a></p>
|
2325 |
-
</footer>
|
2326 |
-
</div>
|
2327 |
-
|
2328 |
-
</body>
|
2329 |
-
</html>
|
2330 |
-
<?php
|
2331 |
-
}
|
2332 |
-
|
2333 |
-
// move it to its own file, with its own stylesheet and use an include()
|
2334 |
-
function wp_svg_icons_upload_custom_pack_callback() {
|
2335 |
-
?>
|
2336 |
-
<style>
|
2337 |
-
.mhl > h1:first-child, .mbl, .bgc1 > .mhl { display:none; }
|
2338 |
-
.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; }
|
2339 |
-
.glyph:hover { cursor:pointer; color:#ff8000; }
|
2340 |
-
.glyph fieldset, .glyph .fs0 { display:none; }
|
2341 |
-
.glyph span:first-child { display:block; width:100%; font-size:1.5em; }
|
2342 |
-
.glyph span:last-child { line-height:.9;font-size:15px; display:none; }
|
2343 |
-
.glyph { color:#333333; }
|
2344 |
-
.selected { color: #FF8800; background:#d8d8d8; }
|
2345 |
-
.selected span:last-child { color:#666666; }
|
2346 |
-
.wp-svg-icon-preview-box { margin-top:-6em; }
|
2347 |
-
.wp-svg-icon-preview { font-size:8em; }
|
2348 |
-
.wp-svg-icon-preview-box i { display:block; margin-top:-.5em; padding-top:5px; }
|
2349 |
-
.wp-svg-icon-preview div { margin-top: 10px; }
|
2350 |
-
</style>
|
2351 |
-
|
2352 |
-
<img class="wp-sv-gcustom-icon-upload-new-image" src="<?php echo plugins_url( '/svg-vector-icon-plugin/includes/images/New-Logo.png' ); ?>" />
|
2353 |
-
<div class="wp-svg-custom-upload-wrap wrap" style="width:93.5%;min-width:900px;">
|
2354 |
-
<!-- get uploaded file, unzip .zip, store files in appropriate locations, populate page with custom icons -->
|
2355 |
-
<!-- wp_handle_upload ( http://codex.wordpress.org/Function_Reference/wp_handle_upload ) -->
|
2356 |
-
<!-- ** TO DO RENAME UPLOADED FILE TO wp-svg-custom-pack.zip ** -->
|
2357 |
-
<?php
|
2358 |
-
if (isset($_FILES['custom_icon_pack'])) {
|
2359 |
-
|
2360 |
-
$uploadedfile = $_FILES['custom_icon_pack'];
|
2361 |
-
$upload_overrides = array( 'test_form' => false );
|
2362 |
-
|
2363 |
-
// TO DO
|
2364 |
-
// get filename dynamically so user doesn't need to customize zip name
|
2365 |
-
// ERROR CHECKING SO ONLY .ZIP's ARE UPLOADED
|
2366 |
-
// hide ajax loader if no pack is uploaded
|
2367 |
-
|
2368 |
-
// export json file for importing back to icomoon - spit back out json file
|
2369 |
-
// create a 'Download Pack' button and 'Download .json' button
|
2370 |
-
|
2371 |
-
/*
|
2372 |
-
$filename = $uploadedFile
|
2373 |
-
*/
|
2374 |
-
|
2375 |
-
// move the file to the custom upload path set above on line 63
|
2376 |
-
$movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
|
2377 |
-
// if upload was not successful
|
2378 |
-
if ( is_wp_error( $movefile ) ) {
|
2379 |
-
echo '<h2>We have encountered an error :</h2>';
|
2380 |
-
wp_die( $movefile->get_error_message() , 'Error' );
|
2381 |
-
}
|
2382 |
-
|
2383 |
-
|
2384 |
-
if ( $movefile ) {
|
2385 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".preview-icon-code-box").show(); jQuery(".wp-svg-custom-pack-preloader").show(); jQuery("#uninstall-pack-button").removeAttr("disabled"); jQuery("#wp_svg_custom_pack_field").attr("disabled","disabled"); jQuery("input[value=Import]").attr("disabled","disabled"); jQuery(".wp-svg-custom-pack-buttons").after("<div class=updated><p class=fontPackUploadedSuccess>Custom font pack successfully uploaded!</p></div>"); });</script>';
|
2386 |
-
// unzip the file contents to the same directory
|
2387 |
-
WP_Filesystem();
|
2388 |
-
$dest = wp_upload_dir();
|
2389 |
-
$dest_path = $dest['path'];
|
2390 |
-
$fileNameNoSpaces = str_replace(' ', '-',$uploadedfile['name']);
|
2391 |
-
$unzipfile = unzip_file( $dest_path.'/'.$fileNameNoSpaces, $dest_path );
|
2392 |
-
|
2393 |
-
// if unzip was not successful
|
2394 |
-
if ( is_wp_error( $unzipfile ) ) {
|
2395 |
-
echo '<h2>We have encountered an error :</h2>';
|
2396 |
-
wp_die( $unzipfile->get_error_message() , 'Error' );
|
2397 |
-
}
|
2398 |
-
|
2399 |
-
if ( $unzipfile ) {
|
2400 |
-
rename($dest_path.'/'.$fileNameNoSpaces,$dest_path.'/'.'wp-svg-custom-pack.zip');
|
2401 |
-
rename($dest_path.'/'.'selection.json',$dest_path.'/'.'wp-svg-custom-pack.json');
|
2402 |
-
$file = $dest_path.'/demo.html';
|
2403 |
-
// Open the file to get existing content
|
2404 |
-
$current = file_get_contents($file);
|
2405 |
-
// remove the link tags
|
2406 |
-
// for css and js files that are not needed any more
|
2407 |
-
$current = str_replace('<link rel="stylesheet" href="demo-files/demo.css">','',$current);
|
2408 |
-
$current = str_replace('<link rel="stylesheet" href="style.css"></head>','',$current);
|
2409 |
-
$current = str_replace('<script src="demo-files/demo.js"></script>','',$current);
|
2410 |
-
// Write the contents back to the file
|
2411 |
-
$file_put_contents = file_put_contents($file, $current);
|
2412 |
-
|
2413 |
-
// change path of linked font files in style.css
|
2414 |
-
$styleCSS = $dest_path.'/style.css';
|
2415 |
-
$currentStyles = file_get_contents($styleCSS);
|
2416 |
-
// remove the link tags
|
2417 |
-
// for css and js files that are not needed any more
|
2418 |
-
$newStyles = str_replace("url('fonts/","url('".site_url()."/wp-content/uploads/wp-svg-icons/custom-pack/fonts/",$currentStyles);
|
2419 |
-
// Write the contents back to the file
|
2420 |
-
$file_put_contents = file_put_contents($styleCSS, $newStyles);
|
2421 |
-
|
2422 |
-
// delete unecessary files
|
2423 |
-
// demo files packaged with icomoon
|
2424 |
-
// add error checking
|
2425 |
-
if (file_exists( $dest_path.'/demo-files' )) {
|
2426 |
-
rrmdir($dest_path.'/demo-files');
|
2427 |
-
}
|
2428 |
-
if (file_exists( $dest_path.'/Read Me.txt' )) {
|
2429 |
-
unlink($dest_path.'/Read Me.txt');
|
2430 |
-
}
|
2431 |
-
|
2432 |
-
// display success message
|
2433 |
-
// disable file upload field
|
2434 |
-
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!</p></div>"); });</script>';
|
2435 |
-
|
2436 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".fontPackSuccessUnzip").parent("div").after("<div class=updated><p>Custom font pack successfully installed, enjoy!</p></div>"); setTimeout(function() { jQuery(".updated").fadeOut(); }, 5000); });</script>';
|
2437 |
-
|
2438 |
-
// ajax get demo.html file
|
2439 |
-
// ajax get style.css file and append to head to show icons
|
2440 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".current-font-pack").load("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/demo.html"); jQuery.get("'.site_url().'/wp-content/uploads/wp-svg-icons/custom-pack/style.css", function( data ) { jQuery("head").append("<style>"+data+"</style>"); }); }); </script>';
|
2441 |
-
|
2442 |
-
|
2443 |
-
} else {
|
2444 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".fontPackUploadedSuccess").parent("div").after("<div class=error><p>There was a problem unzipping the file.</p></div>"); });</script>';
|
2445 |
-
}
|
2446 |
-
} else {
|
2447 |
-
echo '<script>jQuery(document).ready(function() { jQuery(".wp-svg-custom-pack-buttons").after("<div class=error><p class=fontPackUploadedError>There was a problem importing the file.</p></div>"); });</script>';
|
2448 |
-
}
|
2449 |
-
}
|
2450 |
-
?>
|
2451 |
-
|
2452 |
-
|
2453 |
-
<h1><span style="color:#FF8000;">WordPress SVG Icons</span> | Import a Custom Icon Pack</h1>
|
2454 |
-
|
2455 |
-
<p>Welcome to the highly requested Custom Font Pack section! Use the importer below to import custom icon packs downloaded from <a href="http://icomoon.io/app/#/select" target="_blank">IcoMoon</a>.</p>
|
2456 |
-
<p>For a step-by-step tutorial on how to download and install a custom icon pack visit the <a href="http://www.evan-herman.com/wp-svg-icons/#customPackUploader" target="_blank">plugin site</a>.</p>
|
2457 |
-
<p><span style="font-size:11px; color: #EE3B3B;">Note:</span> Only one icon pack may be active at a time.</p>
|
2458 |
-
|
2459 |
-
<div class="preview-icon-code-box" style="display:none;float:right;width:350px;">
|
2460 |
-
<!-- paypal donate button -->
|
2461 |
-
<form action="https://www.paypal.com/cgi-bin/webscr" style=" float:left;" method="post" target="_top">
|
2462 |
-
<input type="hidden" name="cmd" value="_donations">
|
2463 |
-
<input type="hidden" name="business" value="evan.m.herman@gmail.com">
|
2464 |
-
<input type="hidden" name="lc" value="US">
|
2465 |
-
<input type="hidden" name="item_name" value="Donation for the WP SVG Icon Custom Pack Importer">
|
2466 |
-
<input type="hidden" name="no_note" value="0">
|
2467 |
-
<input type="hidden" name="currency_code" value="USD">
|
2468 |
-
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donate_SM.gif:NonHostedGuest">
|
2469 |
-
<input type="image" style="padding:0;float:left;margin-top:1.5em;" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
2470 |
-
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
2471 |
-
</form>
|
2472 |
-
|
2473 |
-
<p style="position: absolute;margin-top: 4.25em;color: #EE3B3B;">Generated Code:</p>
|
2474 |
-
<div class="wp-svg-icon-preview-box" style="float:right;margin-right:0px;">
|
2475 |
-
<i style="font-size:14px;" class="copy-paste-text">Icon Preview:</i>
|
2476 |
-
</div>
|
2477 |
-
<input class="copy_paste_input" style="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="<div class="Icon Name Here" ></div>">
|
2478 |
-
</div>
|
2479 |
-
|
2480 |
-
<script>
|
2481 |
-
jQuery(document).ready(function() {
|
2482 |
-
|
2483 |
-
setTimeout(function() {
|
2484 |
-
var fontNameString = jQuery(".mhmm").text();
|
2485 |
-
var newfontNameString = fontNameString.replace("Font Name:","");
|
2486 |
-
var customPackFontName = newfontNameString.split("(")[0];
|
2487 |
-
var customPackFontName = jQuery.trim(customPackFontName);
|
2488 |
-
jQuery('.downloadFontZipLink').parent('li').find('img').remove();
|
2489 |
-
jQuery('.downloadFontZipLink').text('Download '+customPackFontName+'.zip');
|
2490 |
-
jQuery('.downloadFontjSonLink').parent('li').find('img').remove();
|
2491 |
-
jQuery('.downloadFontjSonLink').text('Download '+customPackFontName+'.json');
|
2492 |
-
|
2493 |
-
|
2494 |
-
jQuery('.glyph').click(function() {
|
2495 |
-
jQuery('.glyph').removeClass("selected");
|
2496 |
-
jQuery(this).addClass("selected");
|
2497 |
-
jQuery('html, body').animate({ scrollTop: 0 }, 'slow');
|
2498 |
-
|
2499 |
-
var glyphCode = jQuery(this).find('.mls').text();
|
2500 |
-
var glyphCode = jQuery.trim(glyphCode);
|
2501 |
-
|
2502 |
-
//console.log(glyphCode);
|
2503 |
-
jQuery('.wp-svg-icon-preview').remove();
|
2504 |
-
jQuery('.wp-svg-icon-preview-box > i').after("<b class='wp-svg-icon-preview'><div class='"+glyphCode+" previewIcon' style='display:none;'></div></b>");
|
2505 |
-
jQuery('.previewIcon').fadeIn();
|
2506 |
-
|
2507 |
-
jQuery('.copy_paste_input').val('<div class="'+glyphCode+' custom-pack-icon"></div>');
|
2508 |
-
|
2509 |
-
});
|
2510 |
-
|
2511 |
-
}, 2000);
|
2512 |
-
});
|
2513 |
-
</script>
|
2514 |
-
<style>
|
2515 |
-
.dropdown-menu img {
|
2516 |
-
display:block;
|
2517 |
-
width:15px;
|
2518 |
-
margin:0 auto;
|
2519 |
-
}
|
2520 |
-
.ptl { min-width:540px; }
|
2521 |
-
#wpbody-content { min-width:900px; }
|
2522 |
-
|
2523 |
-
|
2524 |
-
.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; }
|
2525 |
-
.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; }
|
2526 |
-
.dropDownButton { padding-left:24px !important; 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; }
|
2527 |
-
#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; }
|
2528 |
-
</style>
|
2529 |
-
<!-- file upload input field -->
|
2530 |
-
<!-- Handling Custom Font Pack Uploads -->
|
2531 |
-
<!-- currently uploads to Uploads > 2014 > month# -->
|
2532 |
-
<form id="wp_svg_icons_upload_custom_pack_form" enctype="multipart/form-data" action="" method="POST">
|
2533 |
-
<p id="async-upload-wrap" style="margin-bottom:0;">
|
2534 |
-
<label for="async-upload">Import a Custom Font Pack :</label><br />
|
2535 |
-
<input type="file" id="wp_svg_custom_pack_field" name="custom_icon_pack">
|
2536 |
-
<p style="margin:0;">
|
2537 |
-
<span class="custom-icons-file-upload-note">note: file must be a .zip downloaded from icomoon<span>
|
2538 |
-
</p>
|
2539 |
-
<span class="wp-svg-custom-pack-buttons">
|
2540 |
-
<p>
|
2541 |
-
<?php
|
2542 |
-
// print form submission button
|
2543 |
-
echo submit_button( 'Import', 'primary', '', false, '' );
|
2544 |
-
?>
|
2545 |
-
</p>
|
2546 |
-
<p style="margin-left:2em;">
|
2547 |
-
<?php
|
2548 |
-
$other_attributes = array( 'onclick' => 'wp_svg_uninstall_font_pack(); return false;' );
|
2549 |
-
echo submit_button( ' Uninstall Pack', 'delete', 'uninstall-pack-button', false, $other_attributes );
|
2550 |
-
$dest = wp_upload_dir();
|
2551 |
-
$dest_url = $dest['url'];
|
2552 |
-
$dest_path = $dest['path'];
|
2553 |
-
?>
|
2554 |
-
</p>
|
2555 |
-
|
2556 |
-
<p>
|
2557 |
-
<button style="height:28px; margin-left:2em;" type="button" disabled value="Dropdown" data-dropdown="#dropdown-1" class="dropDownButton button-secondary">Download</button>
|
2558 |
-
</p>
|
2559 |
-
<!-- jquery download dropdown menu -->
|
2560 |
-
<div id="dropdown-1" style="left:286px !important; top:260.8125px !important;" class="dropdown dropdown-anchor-left dropdown-tip">
|
2561 |
-
<ul class="dropdown-menu">
|
2562 |
-
<li><a class="downloadFontZipLink" href="<?php echo $dest_url.'/wp-svg-custom-pack.zip'; ?>"></a><img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader"></li>
|
2563 |
-
<li class="dropdown-divider"></li>
|
2564 |
-
<li><a title="You can use this .json file to export your custom pack back into icomoon and then add or remove icons as you please" class="downloadFontjSonLink" download="wp-svg-custom-pack.json" href="<?php echo $dest_url.'/wp-svg-custom-pack.json'; ?>"></a><img src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader"></li>
|
2565 |
-
</ul>
|
2566 |
-
</div>
|
2567 |
-
</div>
|
2568 |
-
</span>
|
2569 |
-
<!-- display success or error message after font pack deletion -->
|
2570 |
-
<p id="delete_succes_and_error_message"></p>
|
2571 |
-
<p id="unzip_succes_and_error_message"></p>
|
2572 |
-
</p>
|
2573 |
-
</form>
|
2574 |
-
|
2575 |
-
<div class="current-font-pack" style="float:left; margin-left:4em;">
|
2576 |
-
<!-- scandir, or some other php function to loop through the upload directory to check if any files exist -->
|
2577 |
-
<!-- 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 -->
|
2578 |
-
<img style="display:none;" class="wp-svg-custom-pack-preloader" src="<?php echo site_url().'/wp-admin/images/wpspin_light.gif'?>" alt="preloader">
|
2579 |
-
</div>
|
2580 |
-
<!-- plugin footer -->
|
2581 |
-
<footer style="margin-left:4em; width:95%;">
|
2582 |
-
<?php
|
2583 |
-
if (file_exists( $dest_path.'/wp-svg-custom-pack.zip' )) {
|
2584 |
-
$fontPackLocationString = 'Your Custom Icon Pack is located in: ';
|
2585 |
-
} else {
|
2586 |
-
$fontPackLocationString = 'Your Custom Icon Pack will be installed to: ';
|
2587 |
-
}
|
2588 |
-
?>
|
2589 |
-
<p style="float:left;">Plugin Created By <a style="color:#B35047;" href="http://www.Evan-Herman.com" target="_blank">Evan Herman</a></p><p style="float:right; margin-right:2em;"><?php echo $fontPackLocationString.'<b>'.$dest_path.'</b>'; ?></p>
|
2590 |
-
</footer>
|
2591 |
-
<?php
|
2592 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-svg-icons.php
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @link http://evan-herman.com/wordpress-plugin/wp-svg-icons
|
4 |
+
* @since 3.0
|
5 |
+
* @package WP_SVG_Icons
|
6 |
+
*
|
7 |
+
* @wordpress-plugin
|
8 |
+
* Plugin Name: WP SVG Icons
|
9 |
+
* Plugin URI: http://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.0
|
12 |
+
* Author: EH Dev Shop
|
13 |
+
* Author URI: http://evan-herman.com
|
14 |
+
* License: GPL-3.0+
|
15 |
+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
16 |
+
* Text Domain: wp-svg-icons
|
17 |
+
* Domain Path: /languages
|
18 |
+
*/
|
19 |
+
|
20 |
+
// If this file is called directly, abort.
|
21 |
+
if ( ! defined( 'WPINC' ) ) {
|
22 |
+
die;
|
23 |
+
}
|
24 |
+
|
25 |
+
/**
|
26 |
+
* The code that runs during plugin activation.
|
27 |
+
* This action is documented in includes/class-wp-svg-icons-activator.php
|
28 |
+
*/
|
29 |
+
function activate_wp_svg_icons() {
|
30 |
+
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wp-svg-icons-activator.php';
|
31 |
+
WP_SVG_Icons_Activator::activate();
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* The code that runs during plugin deactivation.
|
36 |
+
* This action is documented in includes/class-wp-svg-icons-deactivator.php
|
37 |
+
*/
|
38 |
+
function deactivate_wp_svg_icons() {
|
39 |
+
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wp-svg-icons-deactivator.php';
|
40 |
+
WP_SVG_Icons_Deactivator::deactivate();
|
41 |
+
}
|
42 |
+
|
43 |
+
register_activation_hook( __FILE__, 'activate_wp_svg_icons' );
|
44 |
+
register_deactivation_hook( __FILE__, 'deactivate_wp_svg_icons' );
|
45 |
+
|
46 |
+
/**
|
47 |
+
* The core plugin class that is used to define internationalization,
|
48 |
+
* dashboard-specific hooks, and public-facing site hooks.
|
49 |
+
*/
|
50 |
+
require plugin_dir_path( __FILE__ ) . 'includes/class-wp-svg-icons.php';
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Begins execution of the plugin.
|
54 |
+
*
|
55 |
+
* Since everything within the plugin is registered via hooks,
|
56 |
+
* then kicking off the plugin from this point in the file does
|
57 |
+
* not affect the page life cycle.
|
58 |
+
*
|
59 |
+
* @since 3.0.0
|
60 |
+
*/
|
61 |
+
function run_wp_svg_icons() {
|
62 |
+
$plugin = new WP_SVG_Icons();
|
63 |
+
$plugin->run();
|
64 |
+
}
|
65 |
+
run_wp_svg_icons();
|