logo

pleroma-fe

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

panel.style.js (661B)


  1. export default {
  2. name: 'Panel',
  3. selector: '.panel',
  4. validInnerComponents: [
  5. 'Text',
  6. 'Link',
  7. 'Icon',
  8. 'Border',
  9. 'Button',
  10. 'ButtonUnstyled',
  11. 'Input',
  12. 'PanelHeader',
  13. 'MenuItem',
  14. 'Post',
  15. 'Notification',
  16. 'Alert',
  17. 'UserCard',
  18. 'Chat',
  19. 'Attachment',
  20. 'Tab',
  21. 'ListItem'
  22. ],
  23. defaultRules: [
  24. {
  25. directives: {
  26. backgroundNoCssColor: 'yes',
  27. background: '--bg',
  28. roundness: 3,
  29. blur: '5px',
  30. shadow: [{
  31. x: 1,
  32. y: 1,
  33. blur: 4,
  34. spread: 0,
  35. color: '#000000',
  36. alpha: 0.6
  37. }]
  38. }
  39. }
  40. ]
  41. }