1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- /*-----------------------------------------------------------------------------
- | Variables
- |----------------------------------------------------------------------------*/
- :root {
- --jp-notebook-toolbar-padding: 2px 5px 2px 2px;
- }
- /*-----------------------------------------------------------------------------
- /*-----------------------------------------------------------------------------
- | Styles
- |----------------------------------------------------------------------------*/
- .jp-Toolbar.jp-NotebookPanel-toolbar {
- align-items: center;
- background-color: #f7f9fd;
- border: none;
- box-shadow: none;
- padding: 0 24px;
- }
- .jp-Toolbar.jp-NotebookPanel-toolbar > .jp-Toolbar-item {
- height: auto;
- }
- .jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {
- border: none;
- box-shadow: none;
- }
- .jp-Notebook-toolbarCellTypeDropdown select {
- height: 24px;
- font-size: var(--jp-ui-font-size1);
- line-height: 14px;
- border-radius: 0;
- display: block;
- }
- .jp-Notebook-toolbarCellTypeDropdown span {
- top: 5px !important;
- }
- .jp-Toolbar-responsive-popup {
- position: absolute;
- height: fit-content;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: flex-end;
- border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
- box-shadow: var(--jp-toolbar-box-shadow);
- background: var(--jp-toolbar-background);
- min-height: var(--jp-toolbar-micro-height);
- padding: var(--jp-notebook-toolbar-padding);
- z-index: 1;
- right: 0px;
- top: 0px;
- }
- .jp-Toolbar > .jp-Toolbar-responsive-opener {
- margin-left: auto;
- }
|