logo

pleroma-fe

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

post.style.js (503B)


  1. export default {
  2. name: 'Post',
  3. selector: '.Status',
  4. states: {
  5. selected: '.-focused'
  6. },
  7. validInnerComponents: [
  8. 'Text',
  9. 'Link',
  10. 'Icon',
  11. 'Border',
  12. 'Button',
  13. 'ButtonUnstyled',
  14. 'RichContent',
  15. 'Input',
  16. 'Avatar',
  17. 'Attachment',
  18. 'PollGraph'
  19. ],
  20. defaultRules: [
  21. {
  22. directives: {
  23. background: '--bg'
  24. }
  25. },
  26. {
  27. state: ['selected'],
  28. directives: {
  29. background: '--inheritedBackground, 10'
  30. }
  31. }
  32. ]
  33. }