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 (804B)


  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. validInnerComponentsLite: [
  24. 'Text',
  25. 'Link',
  26. 'Icon',
  27. 'Border',
  28. 'Button',
  29. 'Input',
  30. 'PanelHeader',
  31. 'Alert'
  32. ],
  33. defaultRules: [
  34. {
  35. directives: {
  36. backgroundNoCssColor: 'yes',
  37. background: '--bg',
  38. roundness: 3,
  39. blur: '5px',
  40. shadow: [{
  41. x: 1,
  42. y: 1,
  43. blur: 4,
  44. spread: 0,
  45. color: '#000000',
  46. alpha: 0.6
  47. }]
  48. }
  49. }
  50. ]
  51. }