_tables_lists.scss 726 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .grafana-options-table {
  2. width: 100%;
  3. th {
  4. text-align: left;
  5. padding: 5px 10px;
  6. border-bottom: 4px solid $panel-bg;
  7. }
  8. tr td {
  9. background-color: $list-item-bg;
  10. padding: 5px 10px;
  11. white-space: nowrap;
  12. border-bottom: 4px solid $panel-bg;
  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-list-item {
  32. display: block;
  33. padding: 1px 10px;
  34. line-height: 34px;
  35. background-color: $list-item-bg;
  36. margin-bottom: 4px;
  37. cursor: pointer;
  38. }