tabbar.css 733 B

12345678910111213141516171819202122232425262728
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .lm-TabBar .lm-TabBar-addButton {
  6. align-items: center;
  7. display: flex;
  8. padding: 4px;
  9. margin-right: 1px;
  10. background-color: var(--jp-layout-color2);
  11. }
  12. .lm-TabBar .lm-TabBar-addButton:hover {
  13. background-color: var(--jp-layout-color1);
  14. }
  15. .lm-DockPanel-tabBar .lm-TabBar-tab {
  16. width: var(--jp-private-horizontal-tab-width);
  17. }
  18. .lm-DockPanel-tabBar .lm-TabBar-content {
  19. flex: unset;
  20. }
  21. .lm-DockPanel-tabBar[data-orientation='horizontal'] {
  22. flex: 1 1 auto;
  23. }