_plugins.scss 445 B

1234567891011121314151617181920212223242526272829
  1. .get-more-plugins-link {
  2. color: $gray-3;
  3. font-size: $font-size-sm;
  4. position: relative;
  5. top: 1.2rem;
  6. &:hover {
  7. color: $link-hover-color;
  8. }
  9. img {
  10. vertical-align: top;
  11. }
  12. }
  13. @include media-breakpoint-down(sm) {
  14. .get-more-plugins-link {
  15. display: none;
  16. }
  17. }
  18. .plugin-info-list-item {
  19. img {
  20. width: 16px;
  21. }
  22. white-space: nowrap;
  23. max-width: $page-sidebar-width;
  24. text-overflow: ellipsis;
  25. overflow: hidden;
  26. }