Changeset 1279936
- Timestamp:
- 11/05/2015 02:13:36 AM (10 years ago)
- Location:
- wp-customize
- Files:
-
- 4 edited
-
tags/1.0.2/readme.txt (modified) (3 diffs)
-
tags/1.0.2/wp-customize.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-customize.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-customize/tags/1.0.2/readme.txt
r1279181 r1279936 3 3 Donate link: http://www.websightdesigns.com/ 4 4 Tags: admin, customize, login logo, admin footer, custom login, login page, custom page, footer 5 Requires at least: 3. 15 Requires at least: 3.5 6 6 Tested up to: 4.3.1 7 7 Stable tag: 1.0.2 … … 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 This plugin allows you to set up a custom login page and set a custom footer message in the WordPress Admin.11 This plugin allows you to set up a custom login page, and set a custom footer message in the WordPress Admin. 12 12 13 13 == Description == … … 106 106 == Upgrade Notice == 107 107 108 = 1.0.2 =109 110 This version fixes a bug that caused the media library uploads to not show.111 112 108 = 0.5 = 113 109 This version adds color picker widgets to easily select RGB color codes. -
wp-customize/tags/1.0.2/wp-customize.php
r1279171 r1279936 2 2 /** 3 3 * @package WP_Customize 4 * @version 1.0. 14 * @version 1.0.2 5 5 */ 6 6 … … 9 9 Description: This plugin allows you to customize the WordPress login page and set your own footer for the WordPress Admin. 10 10 Author: WebSight Designs 11 Version: 1.0. 111 Version: 1.0.2 12 12 Author URI: http://websightdesigns.com/ 13 13 License: GPL2 … … 35 35 } 36 36 37 if ( version_compare( $GLOBALS['wp_version'], '3. 1', '<' ) ) {37 if ( version_compare( $GLOBALS['wp_version'], '3.5', '<' ) ) { 38 38 return; 39 39 } … … 68 68 wp_enqueue_style('thickbox'); 69 69 wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true ); 70 wp_enqueue_script( 'wp-customize-chosen-js', plugin_dir_url(__FILE__) . 'js/chosen/chosen.jquery.min.js', array( 'jquery' ), '1.4.2', true ); 70 71 wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum.css', null, '1.7.0' ); 72 wp_enqueue_style( 'wp-customize-chosen', plugin_dir_url(__FILE__) . 'js/chosen/chosen.min.css', null, '1.4.2' ); 71 73 wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum.js', array( 'jquery' ), '1.7.0', true ); 72 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 'wp-customize-ace-js', 'wp-customize-spectrum-js', 'jquery', 'media-upload', 'thickbox' ), '1.0.1', true ); 74 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 75 'wp-customize-chosen-js', 76 'wp-customize-ace-js', 77 'wp-customize-spectrum-js', 78 'jquery', 79 'media-upload', 80 'thickbox' 81 ), '1.0.2', true ); 73 82 } 74 83 add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' ); … … 100 109 */ 101 110 function wpcustomize_admin_styles() { 102 echo '<style type="text/css">'; 103 104 echo 'form[name="wpcustomize_customize"] input[type="text"], 105 form[name="wpcustomize_customize"] textarea { 106 width: 100%; 107 padding: 4px 8px; 108 } 109 @media (min-width: 783px) { 110 form[name="wpcustomize_customize"] input.upload_button { 111 float: right; 112 clear: none; 113 position: relative; 114 right: 0; 115 top: -2.25em; 116 height: 27px; 117 } 118 } 119 form[name="wpcustomize_customize"] input.smallinput[type="text"] { 120 width: 50px; 121 }'; 122 123 echo '</style>'; 111 wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin.css', null, '1.7.0' ); 124 112 } 125 113 add_action('admin_head', 'wpcustomize_admin_styles'); -
wp-customize/trunk/readme.txt
r1279177 r1279936 3 3 Donate link: http://www.websightdesigns.com/ 4 4 Tags: admin, customize, login logo, admin footer, custom login, login page, custom page, footer 5 Requires at least: 3. 15 Requires at least: 3.5 6 6 Tested up to: 4.3.1 7 7 Stable tag: 1.0.2 -
wp-customize/trunk/wp-customize.php
r1279175 r1279936 35 35 } 36 36 37 if ( version_compare( $GLOBALS['wp_version'], '3. 1', '<' ) ) {37 if ( version_compare( $GLOBALS['wp_version'], '3.5', '<' ) ) { 38 38 return; 39 39 } … … 68 68 wp_enqueue_style('thickbox'); 69 69 wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true ); 70 wp_enqueue_script( 'wp-customize-chosen-js', plugin_dir_url(__FILE__) . 'js/chosen/chosen.jquery.min.js', array( 'jquery' ), '1.4.2', true ); 70 71 wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum.css', null, '1.7.0' ); 72 wp_enqueue_style( 'wp-customize-chosen', plugin_dir_url(__FILE__) . 'js/chosen/chosen.min.css', null, '1.4.2' ); 71 73 wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum.js', array( 'jquery' ), '1.7.0', true ); 72 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 'wp-customize-ace-js', 'wp-customize-spectrum-js', 'jquery', 'media-upload', 'thickbox' ), '1.0.1', true ); 74 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.js', array( 75 'wp-customize-chosen-js', 76 'wp-customize-ace-js', 77 'wp-customize-spectrum-js', 78 'jquery', 79 'media-upload', 80 'thickbox' 81 ), '1.0.2', true ); 73 82 } 74 83 add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' ); … … 100 109 */ 101 110 function wpcustomize_admin_styles() { 102 echo '<style type="text/css">'; 103 104 echo 'form[name="wpcustomize_customize"] input[type="text"], 105 form[name="wpcustomize_customize"] textarea { 106 width: 100%; 107 padding: 4px 8px; 108 } 109 @media (min-width: 783px) { 110 form[name="wpcustomize_customize"] input.upload_button { 111 float: right; 112 clear: none; 113 position: relative; 114 right: 0; 115 top: -2.25em; 116 height: 27px; 117 } 118 } 119 form[name="wpcustomize_customize"] input.smallinput[type="text"] { 120 width: 50px; 121 }'; 122 123 echo '</style>'; 111 wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin.css', null, '1.7.0' ); 124 112 } 125 113 add_action('admin_head', 'wpcustomize_admin_styles');
Note: See TracChangeset
for help on using the changeset viewer.