@dnncommunity/dnn-elements 0.15.0 → 0.15.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/dnn-button_17.cjs.entry.js +1 -1
- package/dist/cjs/dnn-button_17.cjs.entry.js.map +1 -1
- package/dist/collection/components/dnn-modal/dnn-modal.css +1 -1
- package/dist/dnn/dnn.esm.js +1 -1
- package/dist/dnn/{p-1893c229.system.entry.js → p-3155c8a8.system.entry.js} +2 -2
- package/dist/dnn/{p-1893c229.system.entry.js.map → p-3155c8a8.system.entry.js.map} +1 -1
- package/dist/dnn/p-5bcf3629.system.js +1 -1
- package/dist/dnn/{p-058a3145.entry.js → p-909f2db9.entry.js} +2 -2
- package/dist/dnn/{p-058a3145.entry.js.map → p-909f2db9.entry.js.map} +1 -1
- package/dist/esm/dnn-button_17.entry.js +1 -1
- package/dist/esm/dnn-button_17.entry.js.map +1 -1
- package/dist/esm-es5/dnn-button_17.entry.js +1 -1
- package/dist/esm-es5/dnn-button_17.entry.js.map +1 -1
- package/package.json +15 -14
|
@@ -1252,7 +1252,7 @@ const DnnImageCropper = class {
|
|
|
1252
1252
|
};
|
|
1253
1253
|
DnnImageCropper.style = dnnImageCropperCss;
|
|
1254
1254
|
|
|
1255
|
-
const dnnModalCss = ":host{display:block}:host .overlay{background-color:rgba(0, 0, 0, 0.5);position:fixed;top:0;left:0;width:100%;height:100%;z-index:
|
|
1255
|
+
const dnnModalCss = ":host{display:block}:host .overlay{background-color:rgba(0, 0, 0, 0.5);position:fixed;top:0;left:0;width:100%;height:100%;z-index:1002;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;visibility:hidden;opacity:0}:host .overlay .modal{max-width:var(--max-width, 1200px);background-color:white;padding:30px;-webkit-transform:scale(2);transform:scale(2);-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;z-index:2;position:relative;margin:10%;max-height:80%;border-radius:var(--dnn-controls-radius, 5px);-webkit-box-shadow:10px 10px 20px 0 rgba(0, 0, 0, 0.5);box-shadow:10px 10px 20px 0 rgba(0, 0, 0, 0.5);display:block}:host .overlay .modal .close{position:absolute;background-color:white;border:2px solid white;border-radius:50%;padding:0;margin:0;top:-12px;right:-12px;outline:none;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}:host .overlay .modal .close:focus,:host .overlay .modal .close:hover{-webkit-box-shadow:0 0 2px 2px var(--dnn-color-primary, blue);box-shadow:0 0 2px 2px var(--dnn-color-primary, blue)}:host .overlay .modal .close svg{width:24px;height:24px;color:grey}:host .overlay.visible{visibility:visible;opacity:1}:host .overlay.visible .modal{-webkit-transform:scale(1);transform:scale(1);-webkit-box-shadow:4px 4px 10px 0px rgba(0, 0, 0, 0.5);box-shadow:4px 4px 10px 0px rgba(0, 0, 0, 0.5);display:block}";
|
|
1256
1256
|
|
|
1257
1257
|
const DnnModal = class {
|
|
1258
1258
|
constructor(hostRef) {
|