scrollableTable.html.j2 367 B

1234567891011121314151617181920
  1. <div class="scrollableTable jp-RenderedHTMLCommon">
  2. {{ table }}
  3. </div>
  4. <style>
  5. .scrollableTable {
  6. overflow-y: auto;
  7. max-height: {{ max_height }};
  8. }
  9. .scrollableTable table {
  10. width: 100%;
  11. }
  12. .scrollableTable table :is(th,td) {
  13. text-align: left !important;
  14. }
  15. .scrollableTable th {
  16. background: var(--jp-layout-color1);
  17. position: sticky;
  18. top: 0;
  19. }
  20. </style>