Plugin Directory

Changeset 1280893


Ignore:
Timestamp:
11/06/2015 04:46:47 AM (10 years ago)
Author:
websightdesigns
Message:

version 1.0.7

Location:
wp-customize/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-customize/trunk/README.md

    r1280877 r1280893  
    44http://www.websightdesigns.com/
    55
    6 @version 1.0.6
     6@version 1.0.7
    77
    88This 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  
    2020    width: 50px;
    2121}
    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  
    55Requires at least: 3.5
    66Tested up to: 4.3.1
    7 Stable tag: 1.0.6
     7Stable tag: 1.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.0.7 =
     57* Fixes custom CSS not parsing on login page template.
    5558
    5659= 1.0.6 =
  • wp-customize/trunk/template-login.php

    r1280418 r1280893  
    3838        echo '<style type="text/css">';
    3939        if( get_option('wpcustomize_admin_logo_image_url') ) {
    40             echo '#login h1 a {
     40            echo '
     41            #login h1 a {
    4142                background-image:url(' . html_entity_decode(get_option('wpcustomize_admin_logo_image_url')) . ') !important;
    4243                background-size: ' . html_entity_decode(get_option('wpcustomize_admin_logo_width')) . 'px ' . html_entity_decode(get_option('wpcustomize_admin_logo_height')) . 'px !important;
     
    4647        }
    4748        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; }';
    4951        }
    5052        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; }';
    5255        }
    5356        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; }';
    5559        }
    5660        if( get_option('wpcustomize_admin_login_background_url') ) {
    57             echo 'body {
     61            echo '
     62            body {
    5863                background-image: url(' . html_entity_decode(get_option('wpcustomize_admin_login_background_url')) . ') !important;
    5964                background-repeat: ' . html_entity_decode(get_option('wpcustomize_admin_login_background_repeat')) . ';
     
    6469        }
    6570        if( get_option('wpcustomize_hide_register_forgot_links') ) {
    66             echo 'p#nav {
     71            echo '
     72            p#nav {
    6773                display: none;
    6874            }';
    6975        }
    7076        if( get_option('wpcustomize_hide_back_link') ) {
    71             echo 'p#backtoblog {
     77            echo '
     78            p#backtoblog {
    7279                display: none;
    7380            }';
    7481        }
    7582        if( get_option('wpcustomize_admin_loginstyles') ) {
     83            echo '
     84            ';
    7685            echo html_entity_decode(get_option('wpcustomize_admin_loginstyles'));
    7786        }
  • wp-customize/trunk/wp-customize.php

    r1280877 r1280893  
    22/**
    33 * @package WP_Customize
    4  * @version 1.0.6
     4 * @version 1.0.7
    55 */
    66
     
    99Description: This plugin allows you to customize the WordPress login page and set your own footer for the WordPress Admin.
    1010Author: WebSight Designs
    11 Version: 1.0.6
     11Version: 1.0.7
    1212Author URI: http://websightdesigns.com/
    1313License: GPL2
     
    8585        'media-upload',
    8686        'thickbox'
    87     ), '1.0.6', true );
     87    ), '1.0.7', true );
    8888}
    8989add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
Note: See TracChangeset for help on using the changeset viewer.