tabs.css 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .sphinx-tabs {
  2. margin-bottom: 2em;
  3. }
  4. .sphinx-tabs .sphinx-menu a.item {
  5. color: #2980b9 !important;
  6. }
  7. .sphinx-tabs .sphinx-menu {
  8. border-bottom-color: #a0b3bf !important;
  9. display: flex;
  10. flex-direction: row;
  11. flex-wrap: wrap;
  12. }
  13. .sphinx-tabs .sphinx-menu a.active.item {
  14. border-color: #a0b3bf !important;
  15. }
  16. .sphinx-tab {
  17. border-color: #a0b3bf !important;
  18. box-sizing: border-box;
  19. }
  20. .tab div[class^='highlight']:last-child {
  21. margin-bottom: 0;
  22. }
  23. .tab .wy-plain-list-disc:last-child,
  24. .rst-content .section ul:last-child,
  25. .rst-content .toctree-wrapper ul:last-child,
  26. article ul:last-child {
  27. margin-bottom: 0;
  28. }
  29. /* Code tabs don't need the code-block border */
  30. .code-tab.tab {
  31. padding: 0.4em !important;
  32. }
  33. .code-tab.tab div[class^='highlight'] {
  34. border: none;
  35. }