logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

popover.style.js (551B)


  1. export default {
  2. name: 'Popover',
  3. selector: '.popover',
  4. lazy: true,
  5. variants: {
  6. modal: '.modal'
  7. },
  8. validInnerComponents: [
  9. 'Text',
  10. 'Link',
  11. 'Icon',
  12. 'Border',
  13. 'Button',
  14. 'ButtonUnstyled',
  15. 'Input',
  16. 'MenuItem',
  17. 'Post',
  18. 'UserCard'
  19. ],
  20. defaultRules: [
  21. {
  22. directives: {
  23. background: '--bg',
  24. blur: '10px',
  25. shadow: [{
  26. x: 2,
  27. y: 2,
  28. blur: 3,
  29. spread: 0,
  30. color: '#000000',
  31. alpha: 0.5
  32. }]
  33. }
  34. }
  35. ]
  36. }