_infobox.scss 561 B

12345678910111213141516171819202122232425262728293031323334
  1. .grafana-info-box {
  2. position: relative;
  3. background: $info-box-background;
  4. box-shadow: $card-shadow;
  5. padding: 1rem;
  6. border-radius: 4px;
  7. margin-bottom: $spacer;
  8. margin-right: $gf-form-margin;
  9. flex-grow: 1;
  10. color: $info-box-color;
  11. h5 {
  12. color: $info-box-color;
  13. }
  14. h5 {
  15. margin-bottom: $spacer;
  16. }
  17. ul {
  18. padding-left: $spacer * 1.5;
  19. }
  20. a {
  21. @extend .external-link;
  22. }
  23. }
  24. .grafana-info-box__close {
  25. text-align: center;
  26. display: block;
  27. color: $link-color !important;
  28. height: 0;
  29. position: relative;
  30. top: -9px;
  31. }