Files
wordpress/wp-includes/css/dist/admin-ui/style-rtl.css
ellatrix c2bd5cd429 Editor: update packages.
Updates the packages to match Gutenberg version 21.9.0 RC2.

Also updates the sync script to work with the new `package-lock.json` format.
Some reusable block tests were adjusted to work with more render arguments.
Added `core-data` to the ignore list for `verify:source-maps` because Yjs has been bundled by accident. To be removed in a follow-up. See https://core.trac.wordpress.org/ticket/64120. See https://github.com/WordPress/gutenberg/pull/72503.

See: https://github.com/WordPress/wordpress-develop/pull/10355.
See: https://core.trac.wordpress.org/ticket/64117.

Props ellatrix, dmsnell.
Fixes #64117.
Built from https://develop.svn.wordpress.org/trunk@61009


git-svn-id: http://core.svn.wordpress.org/trunk@60345 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2025-10-21 07:14:02 +00:00

65 lines
1.3 KiB
CSS

.admin-ui-page{
background-color:#fff;
color:#2f2f2f;
container:admin-ui-page/inline-size;
display:flex;
flex-flow:column;
height:100%;
position:relative;
z-index:1;
}
@media not (prefers-reduced-motion){
.admin-ui-page{
transition:width .2s ease-out;
}
}
.admin-ui-page__header{
background:#fff;
border-bottom:1px solid #f0f0f0;
padding:16px 48px;
position:sticky;
top:0;
}
@container (max-width: 430px){
.admin-ui-page__header{
padding:16px 24px;
}
}
.admin-ui-page__header-subtitle{
color:#757575;
font-family:-apple-system,"system-ui",Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
font-size:13px;
font-weight:400;
line-height:20px;
margin:0;
padding-block-end:8px;
}
.admin-ui-page__content{
display:flex;
flex-direction:column;
flex-grow:1;
overflow:auto;
}
.admin-ui-page__content.has-padding{
padding:16px 20px;
}
@container (max-width: 430px){
.admin-ui-page__content.has-padding{
padding:16px 24px;
}
}
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon{
padding:0 8px;
width:auto;
}
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon svg{
display:none;
}
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon:after{
content:attr(aria-label);
font-size:12px;
}