Make WordPress Core

Changeset 32103


Ignore:
Timestamp:
04/10/2015 02:43:20 AM (10 years ago)
Author:
helen
Message:

Customizer theme switcher: Fix some esoteric breakage in iOS Safari.

This manifested in only being able to switch your theme once in the customizer before the "Change" button would appear to stop responding, though a switch to "Preview" and back to "Customize" would reveal the theme switcher after all. Animated positioning appears to be the problem here. The animations are not critical to the experience, particularly on touch+smaller screen devices.

props iseulde.
see #31794.

File:
1 edited

Legend:

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

    r32051 r32103  
    243243}
    244244
     245.ios .control-panel-back {
     246    -webkit-transition: left 0s;
     247    transition: left 0s;
     248}
     249
    245250.collapsed .control-panel-back {
    246251    display: none;
     
    305310}
    306311
     312.ios #customize-info,
     313.ios #customize-theme-controls > ul > .accordion-section {
     314    -webkit-transition: left 0s;
     315    transition: left 0s;
     316}
     317
    307318.in-sub-panel #customize-info,
    308319.in-sub-panel #customize-theme-controls > ul > .accordion-section {
     
    328339    -webkit-transition: left ease-in-out .18s;
    329340    transition: left ease-in-out .18s;
     341}
     342
     343.ios #customize-theme-controls .control-section.current-panel > h3.accordion-section-title {
     344    -webkit-transition: left 0s;
     345    transition: left 0s;
    330346}
    331347
Note: See TracChangeset for help on using the changeset viewer.