logo

pleroma-fe

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

underlay.style.js (571B)


  1. export default {
  2. name: 'Underlay',
  3. selector: '#content',
  4. // Out of tree selector: Most components are laid over underlay, but underlay itself is not part of the DOM tree,
  5. // i.e. it's a separate absolutely-positioned component, so we need to treat it differently depending on whether
  6. // we are searching for underlay specifically or for whatever is laid on top of it.
  7. outOfTreeSelector: '.underlay',
  8. validInnerComponents: [
  9. 'Panel'
  10. ],
  11. defaultRules: [
  12. {
  13. directives: {
  14. background: '#000000',
  15. opacity: 0.2
  16. }
  17. }
  18. ]
  19. }