Make WordPress Core

Changeset 37984


Ignore:
Timestamp:
07/06/2016 11:31:22 AM (7 years ago)
Author:
ocean90
Message:

Customize: Fix panel indentation in Firefox.

In Firefox on Windows the menus and widgets panel weren't fully visible due to a miscalculation of the width of a panel, caused by a visible scrollbar.

Props wpfo.
Fixes #34622.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/customize-controls.css

    r37957 r37984  
    278278    display: none;
    279279    position: absolute;
    280     left: 300px;
     280    left: 100%;
    281281    top: 0;
    282     width: 300px;
     282    width: 100%;
    283283    -webkit-transition: left ease-in-out .18s;
    284284    transition: left ease-in-out .18s;
     
    428428.in-sub-panel #customize-info,
    429429.in-sub-panel #customize-theme-controls > ul > .accordion-section {
    430     left: -300px;
    431     width: 300px;
     430    left: -100%;
     431    width: 100%;
    432432}
    433433
Note: See TracChangeset for help on using the changeset viewer.