Code Monkey home page Code Monkey logo

Comments (5)

adamschwartz avatar adamschwartz commented on July 24, 2024

I know you mention it, but for those out there wondering, here are all of the ways you can do it now:

  1. Set overlayClassName for a particular dialog and make that hidden in your stylesheet
  2. Set overlayCSS for a particular dialog to { display: 'none' }
  3. Style all overlays for a particular theme targeting .vex.vex-theme-default .vex-overlay

@m4nuC how would you want the option to actually implement the hiding?

Because, if you're thinking just add style="display: none" to it, I would argue that's redundant when overlayCSS accomplishes the same, and actually that the current way would be more clear:

vex.open
    content: 'Dialog without an overlay'
    hideOverlay: true

vs

vex.open
    content: 'Dialog without an overlay'
    overlayCSS: display: 'none'

If you're thinking it would remove it from the DOM entirely, that's a whole other story. I could maybe get behind that. Then I'd make the property something like useOverlay which would default to true. Thoughts?

from vex.

m4nuC avatar m4nuC commented on July 24, 2024

Actually I need to interact with whatever is beneath Vex when it's open. So my first idea was to hide the overlay but obviously that doesn't cut it as the .vex element takes up the whole view port. So I understand that this is an entirely different issue but do you see any way to make that happen?

As for the overlay hiding, i agree that it is straight forward enough to have it done with inline CSS, although i would personally prefer have a hideOverlay option like your exemple.

from vex.

adamschwartz avatar adamschwartz commented on July 24, 2024

There are a number of ways to allow interactivity with the page below a dialog:

  1. Set appendLocation from "body" (its default) to the selector of an element on the page you control, and style that element with position: relative to contain .vex and its children. The Vex home page actually implements this method.

  2. An approach that will work more universally is to use pointer-events. (But keep in mind the browser support for pointer events.)

    .vex
        pointer-events: none
    
        .vex-overlay
            display: none
    
        .vex-content
            pointer-events: all

from vex.

m4nuC avatar m4nuC commented on July 24, 2024

Thanks Adam, I will try the first method ( I need IE8 + support )

from vex.

adamschwartz avatar adamschwartz commented on July 24, 2024

No problem, happy to help

from vex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.