datagrid.css 561 B

123456789101112131415161718192021222324
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .lm-DataGrid {
  6. min-width: 64px;
  7. min-height: 64px;
  8. border: 1px solid #a0a0a0;
  9. }
  10. .lm-DataGrid-scrollCorner {
  11. background-color: #f0f0f0;
  12. }
  13. .lm-DataGrid-scrollCorner::after {
  14. content: '';
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 1px;
  19. height: 1px;
  20. background-color: #a0a0a0;
  21. }