logo

pleroma-fe

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

attachment.style.js (422B)


  1. export default {
  2. name: 'Attachment',
  3. selector: '.Attachment',
  4. notEditable: true,
  5. validInnerComponents: [
  6. 'Border',
  7. 'ButtonUnstyled',
  8. 'Input'
  9. ],
  10. defaultRules: [
  11. {
  12. directives: {
  13. roundness: 3
  14. }
  15. },
  16. {
  17. component: 'ButtonUnstyled',
  18. parent: { component: 'Attachment' },
  19. directives: {
  20. background: '#FFFFFF',
  21. opacity: 0.5
  22. }
  23. }
  24. ]
  25. }