@sankhyalabs/ez-design 2.3.0 → 2.4.0
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/default/ez-themed.css +20 -1
- package/dist/default/ez-themed.min.css +1 -1
- package/dist/default/icons/fonts/ez-icons.css +6 -6
- package/dist/default/icons/fonts/ez-icons.eot +0 -0
- package/dist/default/icons/fonts/ez-icons.less +6 -6
- package/dist/default/icons/fonts/ez-icons.module.less +6 -6
- package/dist/default/icons/fonts/ez-icons.scss +6 -6
- package/dist/default/icons/fonts/ez-icons.styl +6 -6
- package/dist/default/icons/fonts/ez-icons.ttf +0 -0
- package/dist/default/icons/fonts/ez-icons.woff +0 -0
- package/dist/default/icons/fonts/ez-icons.woff2 +0 -0
- package/dist/default/icons/fonts/unicode.html +4 -4
- package/package.json +1 -1
|
@@ -106,7 +106,11 @@
|
|
|
106
106
|
--scrollbar--default: #626e82;
|
|
107
107
|
--scrollbar--background: #e5eaf0;
|
|
108
108
|
--scrollbar--hover: #2b3a54;
|
|
109
|
-
--scrollbar--clicked: #a2abb9;
|
|
109
|
+
--scrollbar--clicked: #a2abb9;
|
|
110
|
+
--rgb-background--overlay: 43, 58, 84;
|
|
111
|
+
--opacity--bright: 0.1;
|
|
112
|
+
--opacity--soft: 0.4;
|
|
113
|
+
--background-blur--medium: 4px; }
|
|
110
114
|
|
|
111
115
|
html,
|
|
112
116
|
body,
|
|
@@ -2581,6 +2585,21 @@ body {
|
|
|
2581
2585
|
.ez-toggle-group__item--disabled:hover {
|
|
2582
2586
|
background-color: #e5eaf0; }
|
|
2583
2587
|
|
|
2588
|
+
.ez-scrim {
|
|
2589
|
+
position: fixed;
|
|
2590
|
+
z-index: 1;
|
|
2591
|
+
padding: 0;
|
|
2592
|
+
top: 0px;
|
|
2593
|
+
left: 0px;
|
|
2594
|
+
width: 100%;
|
|
2595
|
+
height: 100vh;
|
|
2596
|
+
box-sizing: border-box; }
|
|
2597
|
+
.ez-scrim-light {
|
|
2598
|
+
background-color: rgba(var(--rgb-background--overlay), var(--opacity--bright)); }
|
|
2599
|
+
.ez-scrim-medium {
|
|
2600
|
+
background-color: rgba(var(--rgb-background--overlay), var(--opacity--soft));
|
|
2601
|
+
backdrop-filter: blur(var(--background-blur--medium)); }
|
|
2602
|
+
|
|
2584
2603
|
/**
|
|
2585
2604
|
****************************
|
|
2586
2605
|
* Generic Styles
|