Is there a way to get a blurred background instead of getting a partial transparent background when loading a popup window in the foreground?
Got it.
adding class .blur by $(’.webix_view’).addClass(‘blur’);
in which
.blur {
-webkit-filter: blur(3px) !important;
filter: url('/css/svg/blur.svg#blur')!important;
filter: blur(3px) !important;
}
and blur.svg contains:
(<) svg version=“1.1” xmlns=“SVG namespace”>
(<)filter id=“blur”>
(<)feGaussianBlur stdDeviation="10" />
(<)/filter>
(<)/svg >
and with $(’.webix_view’).removeClass(‘blur’);
to come back