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. git-svn-id: https://develop.svn.wordpress.org/trunk@37984 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0037aa1dd5
commit
50007cf37d
@ -277,9 +277,9 @@ h3.customize-section-title {
|
|||||||
.accordion-sub-container.control-panel-content {
|
.accordion-sub-container.control-panel-content {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 300px;
|
left: 100%;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 300px;
|
width: 100%;
|
||||||
-webkit-transition: left ease-in-out .18s;
|
-webkit-transition: left ease-in-out .18s;
|
||||||
transition: left ease-in-out .18s;
|
transition: left ease-in-out .18s;
|
||||||
}
|
}
|
||||||
@ -427,8 +427,8 @@ h3.customize-section-title {
|
|||||||
|
|
||||||
.in-sub-panel #customize-info,
|
.in-sub-panel #customize-info,
|
||||||
.in-sub-panel #customize-theme-controls > ul > .accordion-section {
|
.in-sub-panel #customize-theme-controls > ul > .accordion-section {
|
||||||
left: -300px;
|
left: -100%;
|
||||||
width: 300px;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.in-sub-panel #customize-theme-controls .accordion-section.current-panel {
|
.in-sub-panel #customize-theme-controls .accordion-section.current-panel {
|
||||||
|
Loading…
Reference in New Issue
Block a user