Docked View Shadow

I have a docked view with a transparent background that I have set up to cover/show on all pages. It works as expected, but there's a shadow on the edge that's undesirable. Any way to remove this? (preferably only for this dock, but if removed for all docks, that would be acceptable).

Assuming something CSS, but the only thing in the dock.css file is the handle.

in the view in your dock, but a styleclass named YOURCLASSNAME;

then put this in your stylesheet.css

.docked-view:has(.psc-YOURCLASSNAME) {
    box-shadow: unset !important;
}
1 Like

Perfect. Thanks!

1 Like