trumbowyg.mention.scss 629 B

12345678910111213141516171819202122232425262728
  1. .trumbowyg-dropdown-mention {
  2. height: calc(75%);
  3. width: 300px;
  4. max-width: 300px;
  5. overflow-y: scroll;
  6. overflow-x: hidden;
  7. svg {
  8. display: none !important;
  9. }
  10. button {
  11. position: relative;
  12. white-space: nowrap;
  13. &:after {
  14. content: "";
  15. position: absolute;
  16. top: 0;
  17. right: 0;
  18. width: 15%;
  19. height: 100%;
  20. background-size: 100%;
  21. background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%);
  22. pointer-events: none;
  23. }
  24. }
  25. }