File size: 931 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
@import "./features/live-preview";
.blog-onboarding-hide {
.components-external-link, // "Connect an account" link in Jetpack sidebar
.editor-post-trash, // "Move to trash" button in sidebar.
.launchpad__save-modal, // "Great progress" modal popup after publishing a post. Used in other flows.
.edit-post-post-schedule, // Schedule post in sidebar.
.block-editor-publish-date-time-picker, // Schedule post date/time picker panel in publish confirmation panel.
#wpadminbar { // Masterbar on mobile.
display: none !important;
}
// Adjusts elements up after hiding the Masterbar.
.interface-interface-skeleton,
.edit-post-layout .editor-post-publish-panel {
top: 0;
}
}
// Hotfix to prevent the site editor's W logo to cover the whole top bar on small screens.
// @see https://github.com/Automattic/wp-calypso/issues/87247
.edit-site-layout.is-full-canvas .edit-site-layout__hub {
padding-right: 0;
width: 60px;
}
|