Created
July 8, 2015 21:01
-
-
Save jfeliweb/69d85cdbcf014688c845 to your computer and use it in GitHub Desktop.
Move the admin bar to the left side like a sidebar.
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
| /** Turn it on its side (sidebar) **/ | |
| /* WordPress Admin Bar Styles */ | |
| #wpadminbar { | |
| width:120px; | |
| min-width:120px; | |
| height:100%; | |
| } | |
| #wpadminbar ul li { | |
| width:100%; | |
| } | |
| #wpadminbar .quicklinks > ul > li > a { | |
| border-width:0 0 1px 0; | |
| } | |
| #wpadminbar .quicklinks li#wp-admin-bar-my-account-with-avatar ul, | |
| div#wpadminbar ul li.menupop ul { | |
| z-index:1000; | |
| margin-top:-28px; | |
| left:114px; | |
| } | |
| #wpadminbar .quicklinks .menupop ul { | |
| border-top:1px solid #DFDFDF; | |
| } | |
| #wpadminbar div#adminbarsearch-wrap { | |
| display:none; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment