filter-table.less 991 B

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