logo

pleroma-fe

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

chat_message.style.js (479B)


  1. export default {
  2. name: 'ChatMessage',
  3. selector: '.chat-message',
  4. variants: {
  5. outgoing: '.outgoing'
  6. },
  7. validInnerComponents: [
  8. 'Text',
  9. 'Icon',
  10. 'Border',
  11. 'Button',
  12. 'RichContent',
  13. 'Attachment',
  14. 'PollGraph'
  15. ],
  16. defaultRules: [
  17. {
  18. directives: {
  19. background: '--bg, 2',
  20. backgroundNoCssColor: 'yes'
  21. }
  22. },
  23. {
  24. variant: 'outgoing',
  25. directives: {
  26. background: '--bg, 5'
  27. }
  28. }
  29. ]
  30. }