Changeset 1409875
- Timestamp:
- 05/03/2016 08:20:07 PM (10 years ago)
- Location:
- customize-wp-login/trunk
- Files:
-
- 3 edited
-
customize-wp-login.php (modified) (1 diff)
-
public/views/customize-wp-login-page.php (modified) (8 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
customize-wp-login/trunk/customize-wp-login.php
r1175172 r1409875 11 11 * Plugin URI: http://blog.altertech.it/customize-wp-login/ 12 12 * Description: Customize WP-Login by AlterTech provide a visual editor to customize the wp-login page and if you want should enable social login. There is also a security feature that you can enable in Advanced Settings, to rewrite the url of the login. 13 * Version: 1.2. 513 * Version: 1.2.6 14 14 * Author: Bigbabert 15 15 * Author URI: http://blog.altertech.it/alberto-cocchiara/ -
customize-wp-login/trunk/public/views/customize-wp-login-page.php
r1164376 r1409875 17 17 #login { 18 18 width: 300px; 19 padding: 2% 5% 5% 5% ;20 margin: auto ;19 padding: 2% 5% 5% 5% !important; 20 margin: auto !important; 21 21 } 22 22 .login form { 23 padding: 1% 24px 46px ;23 padding: 1% 24px 46px !important; 24 24 } 25 25 <?php if( !get_option( 'customize-wp-login-wp_login_logo_image' ) ) {} else { ?> 26 26 .login h1 a { 27 background-image: url(<?php echo esc_attr( get_option('customize-wp-login-wp_login_logo_image') ); ?>) ;28 background-size:90% 100% ;29 background-position: center top ;30 background-repeat: no-repeat ;31 color: #999 ;32 height: 2 20px;33 font-size: 0px ;34 margin: 0 ;35 width: 300px;36 text-indent: -9999px ;27 background-image: url(<?php echo esc_attr( get_option('customize-wp-login-wp_login_logo_image') ); ?>) !important; 28 background-size:90% 100% !important; 29 background-position: center top !important; 30 background-repeat: no-repeat !important; 31 color: #999 !important; 32 height: 260px !important; 33 font-size: 0px !important; 34 margin: 0 !important; 35 width: 100% !important; 36 text-indent: -9999px !important; 37 37 display: block; 38 38 } 39 39 .login label , .login label { 40 40 font-size:22px !important; 41 line-height: 2.2 41 line-height: 2.2 !important; 42 42 } 43 43 .login form .forgetmenot label { … … 46 46 <?php } ?> 47 47 <?php if( !get_option( 'customize-wp-login-wp_links_below' ) ) {} else { ?> .login p#nav { 48 display:none ;48 display:none !important; 49 49 } 50 50 <?php } ?> … … 74 74 background-image:url(<?php echo esc_attr( get_option('customize-wp-login-wp_login_bg_logo_image') ); ?>) !important; 75 75 background-repeat: no-repeat; 76 background-size: 100% 100% ;76 background-size: 100% 100% !important; 77 77 } 78 78 <?php } ?> … … 81 81 } 82 82 .login form { 83 background:<?php echo esc_attr( get_option('customize-wp-login-wp_login_form_bg') ); ?> ;83 background:<?php echo esc_attr( get_option('customize-wp-login-wp_login_form_bg') ); ?> !important; 84 84 border:none; 85 -webkit-box-shadow: none ;86 box-shadow:none ;85 -webkit-box-shadow: none !important; 86 box-shadow:none !important; 87 87 } 88 88 .login .message { 89 background:<?php echo esc_attr( get_option('customize-wp-login-wp_login_form_bg') ); ?> ;89 background:<?php echo esc_attr( get_option('customize-wp-login-wp_login_form_bg') ); ?> !important; 90 90 border:none; 91 91 text-align:center; 92 -webkit-box-shadow: none ;93 box-shadow:none ;92 -webkit-box-shadow: none !important; 93 box-shadow:none !important; 94 94 } 95 95 .login p.message::before { 96 font-family: "dashicons" ;96 font-family: "dashicons" !important; 97 97 content: "\f488 "; 98 font-size:28px ;98 font-size:28px !important; 99 99 font-weight:bolder; 100 100 line-height:0; … … 106 106 } elseif( selected( get_option( 'customize-wp-login_login_button_style' ), 'round', false)) { ?> 107 107 input#wp-submit.button.button-primary.button-large, .login input[type="submit"] { 108 border-radius: 100% ;109 height: 90px ;110 width:90px ;111 font-size: 18px ;108 border-radius: 100% !important; 109 height: 90px !important; 110 width:90px !important; 111 font-size: 18px !important; 112 112 font-weight: bold; 113 113 position: relative; 114 left: -76px ;114 left: -76px !important; 115 115 } 116 116 input#wp-submit.button.button-primary.button-large:hover { 117 border-radius: 100% ;117 border-radius: 100% !important; 118 118 } 119 119 .login form .forgetmenot label { 120 line-height:90px ;120 line-height:90px !important; 121 121 } 122 122 .login form input[type=checkbox] { … … 126 126 .login label #user_login , .login label #user_pass { 127 127 font-size:24px !important; 128 line-height: 2.2 128 line-height: 2.2 !important; 129 129 } 130 130 input#wp-submit.button.button-primary.button-large, .login input[type="submit"] { 131 background: #3498db ;132 background-image: -webkit-linear-gradient(top, #3498db, #2980b9) ;133 background-image: -moz-linear-gradient(top, #3498db, #2980b9) ;134 background-image: -ms-linear-gradient(top, #3498db, #2980b9) ;135 background-image: -o-linear-gradient(top, #3498db, #2980b9) ;136 background-image: linear-gradient(to bottom, #3498db, #2980b9) ;137 -webkit-border-radius: 2 ;138 -moz-border-radius: 2 ;139 border-radius: 2px ;140 text-shadow: 2px 1px 4px #666666 ;141 -webkit-box-shadow: 1px 1px 3px #666666 ;142 -moz-box-shadow: 1px 1px 3px #666666 ;143 box-shadow: 1px 1px 3px #666666 ;131 background: #3498db !important; 132 background-image: -webkit-linear-gradient(top, #3498db, #2980b9) !important; 133 background-image: -moz-linear-gradient(top, #3498db, #2980b9) !important; 134 background-image: -ms-linear-gradient(top, #3498db, #2980b9) !important; 135 background-image: -o-linear-gradient(top, #3498db, #2980b9) !important; 136 background-image: linear-gradient(to bottom, #3498db, #2980b9) !important; 137 -webkit-border-radius: 2 !important; 138 -moz-border-radius: 2 !important; 139 border-radius: 2px !important; 140 text-shadow: 2px 1px 4px #666666 !important; 141 -webkit-box-shadow: 1px 1px 3px #666666 !important; 142 -moz-box-shadow: 1px 1px 3px #666666 !important; 143 box-shadow: 1px 1px 3px #666666 !important; 144 144 color: #ffffff; 145 145 font-size: 32px; 146 padding: 18px 30px 18px 30px ;146 padding: 18px 30px 18px 30px !important; 147 147 text-decoration: none; 148 148 height:100%; … … 152 152 input#wp-submit.button.button-primary.button-large:hover { 153 153 background: #3cb0fd; 154 background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db) ;155 background-image: -moz-linear-gradient(top, #3cb0fd, #3498db) ;156 background-image: -ms-linear-gradient(top, #3cb0fd, #3498db) ;157 background-image: -o-linear-gradient(top, #3cb0fd, #3498db) ;158 background-image: linear-gradient(to bottom, #3cb0fd, #3498db) ;154 background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db) !important; 155 background-image: -moz-linear-gradient(top, #3cb0fd, #3498db) !important; 156 background-image: -ms-linear-gradient(top, #3cb0fd, #3498db) !important; 157 background-image: -o-linear-gradient(top, #3cb0fd, #3498db) !important; 158 background-image: linear-gradient(to bottom, #3cb0fd, #3498db) !important; 159 159 text-decoration: none; 160 160 } … … 173 173 } 174 174 #login { 175 width: 300px ;176 padding: 2% 5% 5% 5% ;177 margin: auto ;175 width: 300px !important; 176 padding: 2% 5% 5% 5% !important; 177 margin: auto !important; 178 178 } 179 179 button#wp-submit.button-primary { -
customize-wp-login/trunk/readme.txt
r1175172 r1409875 4 4 Tags: login, customize, social, custom login, login editor, social login, login button 5 5 Requires at least: 3.9 6 Tested up to: 4. 27 Stable tag: 1.2. 56 Tested up to: 4.5 7 Stable tag: 1.2.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 <p>Once you installed and activated the plugin settings will need to see changes in the login page, you can choose between various graphics settings and more, thanks to a simple and intuitive administration panel.</p> 18 18 <p>Security tweaks, you can rename wp-login slug: In the advanced settings you can enable the function for rewriting url login.</p> 19 <h4>This is stable version 1.2. 5 and is compatible up to 4.2.2</h4>19 <h4>This is stable version 1.2.6 and is compatible up to 4.5.1</h4> 20 20 21 21 … … 69 69 == Changelog == 70 70 71 = 1.2.6 = 72 * Fixed login logo issue. 73 71 74 = 1.2.5 = 72 75 * Add background image feature.
Note: See TracChangeset
for help on using the changeset viewer.