_panel_piechart.scss 682 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .piechart-panel {
  2. position: relative;
  3. display: table;
  4. width: 100%;
  5. height: 100%;
  6. .piechart-container {
  7. top: 10px;
  8. margin: auto;
  9. svg {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. }
  14. .piechart-tooltip {
  15. white-space: nowrap;
  16. font-size: 12px;
  17. background-color: #141414;
  18. color: #d8d9da;
  19. opacity: 0;
  20. position: absolute;
  21. .piechart-tooltip-time {
  22. text-align: center;
  23. position: relative;
  24. padding: $space-xxs;
  25. font-weight: bold;
  26. color: #d8d9da;
  27. .piechart-tooltip-value {
  28. display: table-cell;
  29. font-weight: bold;
  30. padding: 15px;
  31. text-align: right;
  32. }
  33. }
  34. }
  35. }