_panel_table2.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // .ReactVirtualized__Table {
  2. // }
  3. // .ReactVirtualized__Table__Grid {
  4. // }
  5. .ReactVirtualized__Table__headerRow {
  6. font-weight: 700;
  7. display: flex;
  8. flex-direction: row;
  9. align-items: left;
  10. background: $list-item-bg;
  11. border-top: 2px solid $body-bg;
  12. border-bottom: 2px solid $body-bg;
  13. color: $blue;
  14. }
  15. .ReactVirtualized__Table__row {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. border-bottom: 2px solid $body-bg;
  20. }
  21. .ReactVirtualized__Table__headerTruncatedText {
  22. display: inline-block;
  23. max-width: 100%;
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. overflow: hidden;
  27. }
  28. .ReactVirtualized__Table__headerColumn,
  29. .ReactVirtualized__Table__rowColumn {
  30. margin-right: 10px;
  31. min-width: 0px;
  32. }
  33. .ReactVirtualized__Table__rowColumn {
  34. text-overflow: ellipsis;
  35. white-space: nowrap;
  36. border-right: 2px solid $body-bg;
  37. }
  38. .ReactVirtualized__Table__headerColumn:first-of-type,
  39. .ReactVirtualized__Table__rowColumn:first-of-type {
  40. margin-left: 10px;
  41. }
  42. .ReactVirtualized__Table__sortableHeaderColumn {
  43. cursor: pointer;
  44. }
  45. .ReactVirtualized__Table__sortableHeaderIconContainer {
  46. display: flex;
  47. align-items: center;
  48. }
  49. .ReactVirtualized__Table__sortableHeaderIcon {
  50. flex: 0 0 24px;
  51. height: 1em;
  52. width: 1em;
  53. fill: currentColor;
  54. }