trumbowyg.emoji.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-emoji {
  12. width: 265px;
  13. padding: 7px 0 7px 5px;
  14. }
  15. .trumbowyg-dropdown-emoji svg {
  16. display: none !important;
  17. }
  18. .trumbowyg-dropdown-emoji button {
  19. display: block;
  20. position: relative;
  21. float: left;
  22. height: 26px;
  23. width: 26px;
  24. padding: 0;
  25. margin: 2px;
  26. line-height: 24px;
  27. text-align: center;
  28. &:hover,
  29. &:focus {
  30. &::after {
  31. display: block;
  32. position: absolute;
  33. top: -5px;
  34. left: -5px;
  35. height: 27px;
  36. width: 27px;
  37. background: inherit;
  38. box-shadow: #000 0 0 2px;
  39. z-index: 10;
  40. background-color: transparent;
  41. }
  42. }
  43. }
  44. .trumbowyg .emoji {
  45. width: 22px;
  46. height: 22px;
  47. display: inline-block;
  48. }