logo

pleroma-fe

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

alert.style.js (818B)


  1. export default {
  2. name: 'Alert',
  3. selector: '.alert',
  4. validInnerComponents: [
  5. 'Text',
  6. 'Icon',
  7. 'Link',
  8. 'Border',
  9. 'ButtonUnstyled'
  10. ],
  11. variants: {
  12. normal: '.neutral',
  13. error: '.error',
  14. warning: '.warning',
  15. success: '.success'
  16. },
  17. defaultRules: [
  18. {
  19. directives: {
  20. background: '--text',
  21. opacity: 0.5,
  22. blur: '9px'
  23. }
  24. },
  25. {
  26. parent: {
  27. component: 'Alert'
  28. },
  29. component: 'Border',
  30. textColor: '--parent'
  31. },
  32. {
  33. variant: 'error',
  34. directives: {
  35. background: '--cRed'
  36. }
  37. },
  38. {
  39. variant: 'warning',
  40. directives: {
  41. background: '--cOrange'
  42. }
  43. },
  44. {
  45. variant: 'success',
  46. directives: {
  47. background: '--cGreen'
  48. }
  49. }
  50. ]
  51. }