24 lines
602 B
SCSS
24 lines
602 B
SCSS
@import './lib/base-styles';
|
|
@import '~@wordpress/interface/src/style';
|
|
|
|
// In order to use mix-blend-mode, this element needs to have an explicitly set background-color
|
|
// We scope it to .wp-toolbar to be wp-admin only, to prevent bleed into other implementations
|
|
html.wp-toolbar {
|
|
background: $white;
|
|
}
|
|
|
|
.jp-search-configure-sidebar .components-button.interface-complementary-area__pin-unpin-item {
|
|
display: none;
|
|
}
|
|
|
|
// Customberg is an inappropriate place to show a wp-admin notice.
|
|
#wpbody-content > .notice {
|
|
display: none;
|
|
}
|
|
|
|
#wpfooter {
|
|
display: none;
|
|
}
|
|
|
|
@include wordpress-admin-schemes();
|