Make WordPress Core

Changeset 62190


Ignore:
Timestamp:
04/01/2026 07:33:34 AM (4 months ago)
Author:
wildworks
Message:

Administration: Prevent horizontal scrollbar in contextual help panel.

In [62145], an ::after CSS rule was added that caused an overflow, resulting in an unintended scrollbar always appearing on Windows OS for example. This changeset removes the related CSS rule which is unnecessary to fix the initial issue.

Follow-up to [62145].

Reviewed by wildworks, SergeyBiryukov.
Merges [62187] to the 7.0 branch.

Props wildworks, SergeyBiryukov, sabernhardt, audrasjb, huzaifaalmesbah, mehrazmorshed, mukesh27.
Fixes #64744.

Location:
branches/7.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0

  • branches/7.0/src/wp-admin/css/common.css

    r62172 r62190  
    20782078}
    20792079
    2080 .contextual-help-tabs .active::after {
    2081         content: "";
    2082         position: absolute;
    2083         top: 0;
    2084         right: -1px;
    2085         width: 2px;
    2086         height: 100%;
    2087         background: inherit;
    2088         z-index: 2;
    2089 }
    2090 
    20912080.contextual-help-tabs .active a {
    20922081        border-color: #c3c4c7;
Note: See TracChangeset for help on using the changeset viewer.