Plugin Directory

Changeset 1158133


Ignore:
Timestamp:
05/11/2015 06:30:22 PM (11 years ago)
Author:
jasonmj
Message:

Updated User Experience

Location:
auto-collapse/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • auto-collapse/trunk/auto-collapse.php

    r1023115 r1158133  
    33 * Plugin Name: Auto Collapse
    44 * Description: A simple script to auto collapse the admin sidebar.
    5  * Version: 1.1.3
     5 * Version: 1.1.4
    66 * Author: FullSteam Labs
    77 */
  • auto-collapse/trunk/readme.txt

    r1023115 r1158133  
    3939= 1.1.3 =
    4040* Quick bug fix for the floating admin menu.
     41= 1.1.4 =
     42* Removed animations
     43* Added hover on current item to keep icons in place.
    4144
    4245== Upgrade Notice ==
  • auto-collapse/trunk/style.css

    r1021707 r1158133  
    44#adminmenu .wp-submenu {background: rgba(0,0,0,0.75);}
    55#adminmenu, #adminmenu .wp-submenu, #adminmenuback, #adminmenuwrap {
    6     transition: width 200ms linear;
     6    /*transition: width 200ms linear;*/
    77    z-index: 10000 !important;
    88    overflow-x: visible;
     
    1515.folded #wpcontent, .folded #wpfooter { margin-left: auto; }
    1616.folded #adminmenu, .folded #adminmenu .wp-submenu, .folded #adminmenuback, .folded #adminmenuwrap {
    17     transition: width 100ms 0ms linear;
     17    /*transition: width 100ms 0ms linear; */
    1818    overflow: hidden;
    1919    z-index: 10000 !important;
     
    2929#adminmenu .wp-menu-name {
    3030    opacity: 1;
    31     transition: all 200ms 200ms linear;
     31    /*transition: all 200ms 200ms linear;*/
    3232}
    3333.wp-full-overlay a.collapse-sidebar {
     
    4444}
    4545
     46#adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open {
     47    display: none;
     48}
     49#adminmenu .wp-has-current-submenu:hover .wp-submenu, #adminmenu .wp-has-current-submenu:hover .wp-submenu.sub-open {
     50    background: rgba(0,0,0,0.8);
     51    display: inline-block !important;
     52    float: right !important;
     53    left: 160px;
     54    margin-bottom: -100%;
     55    position: absolute !important;
     56    top: 0;
     57}
     58
    4659.wp-full-overlay .collapse-sidebar-arrow:before, .collapse-sidebar-label {display: none;}
Note: See TracChangeset for help on using the changeset viewer.