Giter VIP home page Giter VIP logo

Comments (2)

famda avatar famda commented on August 25, 2024 1

Hi @stavroskasidis
Works wonders.. Thanks man!

image

from blazorcontextmenu.

stavroskasidis avatar stavroskasidis commented on August 25, 2024

Hello and thank you for using the library.

Doing a quick research (I am no css expert by any means) I found out that this is a problem affecting position fixed elements when applying a css filter. You can find some info here.

Following the guide on that stack overflow answer I came up with some css that may be close to what you where trying to achieve. The trick is applying the filter on the before element instead of the container. Could you give it a try ?

div.dark-menu {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0);
    padding:0;
}

div.dark-menu:before{
    content:'';
    height:100%;
    width:100%;
    position: absolute;
    backdrop-filter: blur(3px) contrast(0.3);
}

.dark-menu .dark-menu-item--with-submenu:after {
    border-left-color: #d3d3d3;
}

.dark-menu .dark-menu-item--disabled,
.dark-menu .dark-menu-item {
    background-color: rgb(0,0,0,0);
}

    .dark-menu .dark-menu-item--disabled:hover,
    .dark-menu .dark-menu-item:hover {
        background-color: #262323;
    }

image

from blazorcontextmenu.

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.