1
0

trumbowyg.mention.scss 770 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Trumbowyg v2.22.0 - A lightweight WYSIWYG editor
  3. * Default stylesheet for Trumbowyg editor plugin
  4. * ------------------------
  5. * @link http://alex-d.github.io/Trumbowyg
  6. * @license MIT
  7. * @author Alexandre Demode (Alex-D)
  8. * Twitter : @AlexandreDemode
  9. * Website : alex-d.fr
  10. */
  11. .trumbowyg-dropdown-mention {
  12. button {
  13. position: relative;
  14. white-space: nowrap;
  15. &:after {
  16. content: "";
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. width: 15%;
  21. height: 100%;
  22. background-size: 100%;
  23. background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%);
  24. pointer-events: none;
  25. }
  26. }
  27. }