@consent.software/catalog 1.5.1 → 1.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@consent.software/catalog",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "private": false,
5
5
  "description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
6
6
  "exports": {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@consent.software/catalog',
6
- version: '1.5.1',
6
+ version: '1.5.3',
7
7
  description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
8
8
  }
@@ -80,14 +80,13 @@ export class ConsentsoftwareCookieconsent extends LitElement {
80
80
 
81
81
  .pageOverlay.shake {
82
82
  background: rgba(0, 0, 0, 0.5) !important;
83
- backdrop-filter: blur(20px) !important;
84
83
  }
85
84
 
86
85
  .modalBox {
87
86
  display: block;
88
87
  color: var(--text-color);
89
88
  background: var(--background-color);
90
- box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
89
+ box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
91
90
  position: realtive;
92
91
  border: 1px dotted rgba(255, 255, 255, 0.1);
93
92
  border-top: 1px solid var(--accent-color);
@@ -104,7 +103,6 @@ export class ConsentsoftwareCookieconsent extends LitElement {
104
103
 
105
104
  .modalBox.shake {
106
105
  animation: shake 150ms 2 linear;
107
- box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
108
106
  }
109
107
 
110
108
  @keyframes shake {
@@ -286,8 +284,8 @@ export class ConsentsoftwareCookieconsent extends LitElement {
286
284
  await this.updated();
287
285
  const pageOverlay: HTMLDivElement = this.shadowRoot?.querySelector('.pageOverlay');
288
286
  if (pageOverlay) {
289
- pageOverlay.style.background = 'rgba(255,255,255, 0.1)';
290
- pageOverlay.style.backdropFilter = 'blur(0px)';
287
+ pageOverlay.style.background = 'rgba(0,0,0, 0.5)';
288
+ pageOverlay.style.backdropFilter = 'blur(20px)';
291
289
  }
292
290
  const modalBox: HTMLDivElement = this.shadowRoot?.querySelector('.modalBox');
293
291
  if (modalBox) {