Created
March 26, 2013 02:58
-
-
Save sheabunge/5242788 to your computer and use it in GitHub Desktop.
Makes the WordPress admin bar a small button on the left and expands on hover.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| * Plugin Name: Mini Admin Bar | |
| * Plugin URI: | |
| * Description: Makes the admin bar a small button on the left and expands on hover. | |
| * Version: 1.0 | |
| * Author: Shea Bunge | |
| * Author URI: http://bungeshea.com | |
| * License: MIT | |
| */ | |
| add_action('get_header', 'my_filter_head'); | |
| function my_filter_head() { remove_action('wp_head', '_admin_bar_bump_cb'); } | |
| function my_admin_css() { | |
| if ( is_user_logged_in() ) { | |
| ?> | |
| <style type="text/css"> | |
| #wpadminbar { | |
| width: 47px; | |
| min-width: auto; | |
| overflow: hidden; | |
| -webkit-transition: .4s width; | |
| -webkit-transition-delay: 1s; | |
| -moz-transition: .4s width; | |
| -moz-transition-delay: 1s; | |
| -o-transition: .4s width; | |
| -o-transition-delay: 1s; | |
| -ms-transition: .4s width; | |
| -ms-transition-delay: 1s; | |
| transition: .4s width; | |
| transition-delay: 1s; | |
| } | |
| #wpadminbar:hover { | |
| width: 100%; | |
| overflow: visible; | |
| -webkit-transition-delay: 0; | |
| -moz-transition-delay: 0; | |
| -o-transition-delay: 0; | |
| -ms-transition-delay: 0; | |
| transition-delay: 0; | |
| } | |
| </style> | |
| <?php } | |
| } | |
| add_action('wp_head', 'my_admin_css'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment