@unlk/keymaster 1.5.7 → 1.5.9
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/CHANGELOG.md +10 -0
- package/dist/css/keymaster.css +10 -5
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +2 -2
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +1 -1
- package/dist/js/keymaster.min.js +1 -1
- package/package.json +1 -1
- package/scss/theme/_modal.scss +5 -0
- package/scss/theme/_variables-overrides.scss +2 -2
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.5.9] - 2026-05-11
|
|
6
|
+
|
|
7
|
+
### Update
|
|
8
|
+
- Modal Backdrop saturation
|
|
9
|
+
|
|
10
|
+
## [1.5.8] - 2026-05-08
|
|
11
|
+
|
|
12
|
+
### Modify
|
|
13
|
+
- Modal Backdrop
|
|
14
|
+
|
|
5
15
|
## [1.5.7] - 2026-05-08
|
|
6
16
|
|
|
7
17
|
### Update
|
package/dist/css/keymaster.css
CHANGED
|
@@ -22575,7 +22575,7 @@
|
|
|
22575
22575
|
}
|
|
22576
22576
|
|
|
22577
22577
|
/*!
|
|
22578
|
-
* Keymaster v1.5.
|
|
22578
|
+
* Keymaster v1.5.9 (https://keymaster.unlock.com)
|
|
22579
22579
|
* Copyright 2022-2025 Unlk Developers
|
|
22580
22580
|
* Licensed under MIT
|
|
22581
22581
|
*/
|
|
@@ -28366,8 +28366,8 @@ textarea.form-control-lg {
|
|
|
28366
28366
|
|
|
28367
28367
|
.modal-backdrop {
|
|
28368
28368
|
--bs-backdrop-zindex: 1050;
|
|
28369
|
-
--bs-backdrop-bg:
|
|
28370
|
-
--bs-backdrop-opacity:
|
|
28369
|
+
--bs-backdrop-bg: rgba(153, 166.6, 255, 0.15);
|
|
28370
|
+
--bs-backdrop-opacity: 1;
|
|
28371
28371
|
position: fixed;
|
|
28372
28372
|
top: 0;
|
|
28373
28373
|
left: 0;
|
|
@@ -29671,13 +29671,13 @@ textarea.form-control-lg {
|
|
|
29671
29671
|
z-index: 1040;
|
|
29672
29672
|
width: 100vw;
|
|
29673
29673
|
height: 100vh;
|
|
29674
|
-
background-color:
|
|
29674
|
+
background-color: rgba(153, 166.6, 255, 0.15);
|
|
29675
29675
|
}
|
|
29676
29676
|
.offcanvas-backdrop.fade {
|
|
29677
29677
|
opacity: 0;
|
|
29678
29678
|
}
|
|
29679
29679
|
.offcanvas-backdrop.show {
|
|
29680
|
-
opacity:
|
|
29680
|
+
opacity: 1;
|
|
29681
29681
|
}
|
|
29682
29682
|
|
|
29683
29683
|
.offcanvas-header {
|
|
@@ -37479,6 +37479,11 @@ textarea.form-control-lg {
|
|
|
37479
37479
|
margin-right: 1.5rem;
|
|
37480
37480
|
}
|
|
37481
37481
|
}
|
|
37482
|
+
.modal-backdrop,
|
|
37483
|
+
.offcanvas-backdrop {
|
|
37484
|
+
backdrop-filter: blur(3px) saturate(100%);
|
|
37485
|
+
}
|
|
37486
|
+
|
|
37482
37487
|
.modal-dialog-media {
|
|
37483
37488
|
--bs-modal-close-zindex: 1060;
|
|
37484
37489
|
}
|