Make WordPress Core


Ignore:
Timestamp:
11/30/2021 05:46:22 AM (3 years ago)
Author:
noisysocks
Message:

Update @wordpress packages

Update packages to include these bug fixes from Gutenberg:

  • Include cascading properties in Navigation deprecation
  • Reorganize e2e tests folders and file
  • Border panel: Update to display multiple palette origins
  • Add CSS fix for 33580
  • Add: Uneditable duotone palette on the palette gradient panel
  • Site Editor: Allow editing custom template title
  • Writing Flow: Double escape unselects all blocks
  • Fix icon scaling.
  • [Block Library - Query Pagination Next/Previous]: Remove text and link color support
  • Add: Border indication to global styles colors.
  • Color Picker: Improve border, padding, and box shadow styles.
  • theme.json: sort keys alphabetically
  • Remove navigationArea context.

See #54487.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/legacy-widget.php

    r51421 r52277  
    109109                margin: 0 !important;
    110110            }
     111
     112            /* Hide root level text nodes */
     113            body {
     114                font-size: 0 !important;
     115            }
     116
     117            /* Hide non-widget elements */
     118            body *:not(#page):not(#content):not(.widget):not(.widget *) {
     119                display: none !important;
     120                font-size: 0 !important;
     121                height: 0 !important;
     122                left: -9999px !important;
     123                max-height: 0 !important;
     124                max-width: 0 !important;
     125                opacity: 0 !important;
     126                pointer-events: none !important;
     127                position: absolute !important;
     128                top: -9999px !important;
     129                transform: translate(-9999px, -9999px) !important;
     130                visibility: hidden !important;
     131                z-index: -999 !important;
     132            }
     133
     134            /* Restore widget font-size */
     135            .widget {
     136                font-size: var(--global--font-size-base);
     137            }
    111138        </style>
    112139    </head>
Note: See TracChangeset for help on using the changeset viewer.