toolbar.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /*-----------------------------------------------------------------------------
  6. | Variables
  7. |----------------------------------------------------------------------------*/
  8. /*-----------------------------------------------------------------------------
  9. /*-----------------------------------------------------------------------------
  10. | Styles
  11. |----------------------------------------------------------------------------*/
  12. .jp-NotebookPanel-toolbar {
  13. padding: 2px;
  14. }
  15. /* select wrapper */
  16. .jp-Toolbar-item.jp-Notebook-toolbarCellType > .jp-select-wrapper {
  17. height: 100%;
  18. background-color: var(--jp-notebook-select-background);
  19. }
  20. .jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {
  21. border: none;
  22. box-shadow: none;
  23. }
  24. /* Actual select element */
  25. .jp-Notebook-toolbarCellType select.jp-Notebook-toolbarCellTypeDropdown {
  26. font-size: var(--jp-ui-font-size1);
  27. background-size: 16px;
  28. padding-right: 16px;
  29. border: none;
  30. border-radius: 0;
  31. outline: none;
  32. background-color: transparent;
  33. }