Changeset 760431
- Timestamp:
- 08/21/2013 11:19:59 PM (13 years ago)
- Location:
- admin-bar-login
- Files:
-
- 6 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/admin-bar-login.css (added)
-
tags/1.0.1/admin-bar-login.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/screenshot-1.png (added)
-
trunk/admin-bar-login.css (modified) (3 diffs)
-
trunk/admin-bar-login.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/screenshot-1.png (added)
Legend:
- Unmodified
- Added
- Removed
-
admin-bar-login/trunk/admin-bar-login.css
r503281 r760431 1 #wpadminbar{ 2 height: 30px!important; 3 } 1 4 #adminloginform p { 2 5 display: inline; … … 25 28 background: -webkit-gradient(linear, left bottom, left top, from(#aaa), to(#ccc)); 26 29 padding: 2px 10px; 27 height: 2 4px;30 height: 22px; 28 31 font: bold 12px sans-serif !important; 29 32 color: #444 !important; … … 32 35 -moz-border-radius: 1em; 33 36 -webkit-border-radius: 1em; 34 border-radius: 1em;37 border-radius: 0.5em; 35 38 } 36 39 -
admin-bar-login/trunk/admin-bar-login.php
r509825 r760431 2 2 /* 3 3 Plugin Name: Admin Bar Login 4 Version: 1.0.1 -alpha4 Version: 1.0.1 5 5 Description: Show login form in the admin bar for non-logged-in users. 6 6 Author: scribu … … 8 8 */ 9 9 10 add_action( 'show_admin_bar', '__return_true' );10 add_action( 'show_admin_bar', '__return_true', 999 ); 11 11 12 12 add_action( 'template_redirect', 'admin_bar_login_css' ); … … 17 17 return; 18 18 19 wp_enqueue_style( 'admin-bar-login', plugins_url( 'admin-bar-login.css', __FILE__ ), array(), '1.0 ' );19 wp_enqueue_style( 'admin-bar-login', plugins_url( 'admin-bar-login.css', __FILE__ ), array(), '1.0.1' ); 20 20 21 21 add_action( 'admin_bar_menu', 'admin_bar_login_menu' ); -
admin-bar-login/trunk/readme.txt
r598639 r760431 1 1 === Admin Bar Login === 2 Contributors: scribu, appthemes 2 Contributors: scribu, appthemes, m_uysl 3 3 Tags: login, admin bar, 4 4 Requires at least: 3.2 5 Tested up to: 3. 36 Stable tag: 1.0 5 Tested up to: 3.7 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 = 1.0.1 = 27 27 * show Register link only when registration is enabled 28 * small css changes 28 29 29 30 = 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.