_plugins.scss 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .plugin-header {
  2. @include clearfix();
  3. padding: $spacer 0 $spacer/2 0;
  4. margin-bottom: 2rem;
  5. }
  6. .plugin-header-logo {
  7. float: left;
  8. width: 7rem;
  9. img {
  10. width: 7rem;
  11. }
  12. margin-right: $spacer;
  13. }
  14. .plugin-header-info-block {
  15. float: left;
  16. }
  17. .plugin-header-author {
  18. }
  19. .plugin-header-stamps-type {
  20. color: $link-color-disabled;
  21. text-transform: uppercase;
  22. }
  23. .plugin-info-list-item {
  24. img {
  25. width: 16px;
  26. }
  27. white-space: nowrap;
  28. max-width: $page-sidebar-width;
  29. text-overflow: ellipsis;
  30. overflow: hidden;
  31. }
  32. .get-more-plugins-link {
  33. color: $text-muted;
  34. font-size: $font-size-sm;
  35. padding-right: 7rem;
  36. background: url(../img/grafana_net_logo.svg);
  37. background-size: 6.5rem 3rem;
  38. background-repeat: no-repeat;
  39. background-position: right;
  40. position: relative;
  41. top: 1.2rem;
  42. &:hover {
  43. color: $link-hover-color;
  44. }
  45. }
  46. @include media-breakpoint-down(sm) {
  47. .get-more-plugins-link {
  48. display: none;
  49. }
  50. }