logo

pleroma-fe

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

link.style.js (369B)


  1. export default {
  2. name: 'Link',
  3. selector: 'a',
  4. virtual: true,
  5. states: {
  6. faint: '.faint'
  7. },
  8. defaultRules: [
  9. {
  10. component: 'Link',
  11. directives: {
  12. textColor: '--link'
  13. }
  14. },
  15. {
  16. component: 'Link',
  17. state: ['faint'],
  18. directives: {
  19. textOpacity: 0.5,
  20. textOpacityMode: 'fake'
  21. }
  22. }
  23. ]
  24. }