Changeset 1280893
- Timestamp:
- 11/06/2015 04:46:47 AM (10 years ago)
- Location:
- wp-customize/trunk
- Files:
-
- 5 edited
-
README.md (modified) (1 diff)
-
css/admin.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
template-login.php (modified) (3 diffs)
-
wp-customize.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-customize/trunk/README.md
r1280877 r1280893 4 4 http://www.websightdesigns.com/ 5 5 6 @version 1.0. 66 @version 1.0.7 7 7 8 8 This plugin allows you to set up a custom login page and set a custom footer message in the WordPress Admin. -
wp-customize/trunk/css/admin.css
r1280428 r1280893 20 20 width: 50px; 21 21 } 22 23 /* chosen select - dark theme */24 /*.chosen-container {25 border: 1px solid #ddd;26 }27 .chosen-container,28 .chosen-container-active,29 .chosen-container .chosen-results li,30 .chosen-container .chosen-with-drop,31 .chosen-container .chosen-single,32 .chosen-container-single .chosen-single,33 .chosen-container .chosen-single > span,34 .chosen-container .chosen-drop,35 .chosen-results {36 color: #fff;37 background: #000;38 background-color: #000;39 border: 0;40 -webkit-border-radius: 0;41 -moz-border-radius: 0;42 border-radius: 0;43 }44 .chosen-container-active.chosen-with-drop .chosen-single {45 border: 0;46 background-image: none;47 box-shadow: none;48 }49 .chosen-container-single .chosen-single {50 box-shadow: none;51 }52 .chosen-container-single .chosen-single span {53 margin-right: 0;54 }55 .chosen-container.chosen-with-drop .chosen-drop {56 border-top: 1px solid #ddd;57 border-bottom: 1px solid #ddd;58 }59 .chosen-container .chosen-results li {60 padding: 5px 3px;61 }*/ -
wp-customize/trunk/readme.txt
r1280877 r1280893 5 5 Requires at least: 3.5 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 67 Stable tag: 1.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 1.0.7 = 57 * Fixes custom CSS not parsing on login page template. 55 58 56 59 = 1.0.6 = -
wp-customize/trunk/template-login.php
r1280418 r1280893 38 38 echo '<style type="text/css">'; 39 39 if( get_option('wpcustomize_admin_logo_image_url') ) { 40 echo '#login h1 a { 40 echo ' 41 #login h1 a { 41 42 background-image:url(' . html_entity_decode(get_option('wpcustomize_admin_logo_image_url')) . ') !important; 42 43 background-size: ' . html_entity_decode(get_option('wpcustomize_admin_logo_width')) . 'px ' . html_entity_decode(get_option('wpcustomize_admin_logo_height')) . 'px !important; … … 46 47 } 47 48 if( get_option('wpcustomize_admin_bgcolor', '000') ) { 48 echo 'body { background-color:' . html_entity_decode(get_option('wpcustomize_admin_bgcolor', '000')) . ' !important; }'; 49 echo ' 50 body { background-color:' . html_entity_decode(get_option('wpcustomize_admin_bgcolor', '000')) . ' !important; }'; 49 51 } 50 52 if( get_option('wpcustomize_admin_linkcolor', 'fff') ) { 51 echo '#login #nav a, #login #backtoblog a { color:' . html_entity_decode(get_option('wpcustomize_admin_linkcolor', 'fff')) . ' !important; text-shadow: none !important; }'; 53 echo ' 54 #login #nav a, #login #backtoblog a { color:' . html_entity_decode(get_option('wpcustomize_admin_linkcolor', 'fff')) . ' !important; text-shadow: none !important; }'; 52 55 } 53 56 if( get_option('wpcustomize_admin_linkhovercolor', 'cfcfcf') ) { 54 echo '#login #nav a:hover, #login #backtoblog a:hover { color: ' . html_entity_decode(get_option('wpcustomize_admin_linkhovercolor', 'cfcfcf')) . ' !important; text-shadow: none !important; }'; 57 echo ' 58 #login #nav a:hover, #login #backtoblog a:hover { color: ' . html_entity_decode(get_option('wpcustomize_admin_linkhovercolor', 'cfcfcf')) . ' !important; text-shadow: none !important; }'; 55 59 } 56 60 if( get_option('wpcustomize_admin_login_background_url') ) { 57 echo 'body { 61 echo ' 62 body { 58 63 background-image: url(' . html_entity_decode(get_option('wpcustomize_admin_login_background_url')) . ') !important; 59 64 background-repeat: ' . html_entity_decode(get_option('wpcustomize_admin_login_background_repeat')) . '; … … 64 69 } 65 70 if( get_option('wpcustomize_hide_register_forgot_links') ) { 66 echo 'p#nav { 71 echo ' 72 p#nav { 67 73 display: none; 68 74 }'; 69 75 } 70 76 if( get_option('wpcustomize_hide_back_link') ) { 71 echo 'p#backtoblog { 77 echo ' 78 p#backtoblog { 72 79 display: none; 73 80 }'; 74 81 } 75 82 if( get_option('wpcustomize_admin_loginstyles') ) { 83 echo ' 84 '; 76 85 echo html_entity_decode(get_option('wpcustomize_admin_loginstyles')); 77 86 } -
wp-customize/trunk/wp-customize.php
r1280877 r1280893 2 2 /** 3 3 * @package WP_Customize 4 * @version 1.0. 64 * @version 1.0.7 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. 611 Version: 1.0.7 12 12 Author URI: http://websightdesigns.com/ 13 13 License: GPL2 … … 85 85 'media-upload', 86 86 'thickbox' 87 ), '1.0. 6', true );87 ), '1.0.7', true ); 88 88 } 89 89 add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
Note: See TracChangeset
for help on using the changeset viewer.