_panel_singlestat.scss 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .singlestat-panel {
  2. position: relative;
  3. display: table;
  4. width: 100%;
  5. }
  6. .singlestat-panel-value-container {
  7. display: table-cell;
  8. vertical-align: middle;
  9. text-align: center;
  10. position: relative;
  11. z-index: 1;
  12. font-size: 3em;
  13. font-weight: bold;
  14. }
  15. .singlestat-panel-prefix {
  16. padding-right: 20px;
  17. }
  18. .singlestat-panel-table {
  19. width: 100%;
  20. td {
  21. padding: 5px 10px;
  22. white-space: nowrap;
  23. text-align: right;
  24. border-bottom: 1px solid $grafanaListBorderBottom;
  25. }
  26. th {
  27. text-align: right;
  28. padding: 5px 10px;
  29. font-weight: bold;
  30. color: $blue
  31. }
  32. td:first-child {
  33. text-align: left;
  34. }
  35. tr:nth-child(odd) td {
  36. background-color: $grafanaListAccent;
  37. }
  38. tr:last-child td {
  39. border: none;
  40. }
  41. }
  42. #flotGagueValue0 {
  43. font-weight: bold; //please dont hurt me for this!
  44. }