filter-table.less 848 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // ==========================================================================
  2. // FILTER TABLE
  3. // ==========================================================================
  4. // Table
  5. // --------------------------------------------------------------------------
  6. .filter-table * {
  7. box-sizing: border-box;
  8. }
  9. .filter-table {
  10. width: 100%;
  11. table-layout: fixed;
  12. border-collapse: collapse;
  13. }
  14. .filter-table tr {
  15. background: @grafanaPanelBackground;
  16. border-bottom: 2px solid @bodyBackground;
  17. }
  18. .filter-table th {
  19. padding: 10px 15px 10px 0;
  20. text-align: left;
  21. &:first-child {
  22. padding-left: 15px;
  23. }
  24. }
  25. .filter-table td {
  26. padding: 15px 15px 15px 0;
  27. &:first-child {
  28. padding-left: 15px;
  29. }
  30. }
  31. .filter-table .ellipsis {
  32. display: block;
  33. width: 100%;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. }