_infobox.scss 694 B

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