Hides 'micro' toolbars in notebook (#6791)

* Hides 'micro' toolbars in notebook

* Incremental change for more specific selector

* Fix rule, remove redundant rule

* Moves rule to application extension
This commit is contained in:
Jason Weill 2023-03-28 01:51:59 -07:00 committed by GitHub
parent e78f05b5f6
commit b7b822a9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,3 +27,9 @@
.jp-MimeDocument .jp-RenderedJSON {
background: var(--jp-layout-color0);
}
/* Hide the stub toolbar that appears above terminals and documents */
.jp-MainAreaWidget > .jp-Toolbar-micro {
display: none;
}