tables_lists.less 988 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .grafana-options-table {
  2. width: 100%;
  3. th {
  4. text-align: left;
  5. padding: 5px 10px;
  6. border-bottom: 4px solid @grafanaPanelBackground;
  7. }
  8. tr td {
  9. background-color: @grafanaListBackground;
  10. padding: 5px 10px;
  11. white-space: nowrap;
  12. border-bottom: 4px solid @grafanaPanelBackground;
  13. &.nobg {
  14. background-color: transparent;
  15. }
  16. }
  17. .max-width-btns {
  18. padding-right: 0px;
  19. .btn {
  20. box-sizing: border-box;
  21. width: 100%;
  22. }
  23. }
  24. }
  25. .max-width {
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. -o-text-overflow: ellipsis;
  29. white-space: nowrap;
  30. }
  31. .grafana-options-list {
  32. list-style: none;
  33. margin: 0;
  34. max-width: 450px;
  35. li:nth-child(odd) {
  36. background-color: @grafanaListAccent;
  37. }
  38. li {
  39. float: left;
  40. margin: 2px;
  41. padding: 5px 10px;
  42. border: 1px solid @grafanaListBorderBottom;
  43. border: 1px solid @grafanaListBorderBottom;
  44. }
  45. li:first-child {
  46. border: 1px solid @grafanaListBorderBottom;
  47. }
  48. }