@dialpad/dialtone 7.13.0 → 7.13.1

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.
@@ -55,6 +55,14 @@
55
55
 
56
56
  .d-modal--transparent {
57
57
  --modal-backdrop-color-background: var(--d-bgc-transparent);
58
+
59
+ &[aria-hidden='false'] {
60
+ position: fixed;
61
+ top: 0;
62
+ left: 0;
63
+ width: 100%;
64
+ min-height: 100%;
65
+ }
58
66
  }
59
67
 
60
68
  // $$ MODAL DIALOG
@@ -65,6 +73,7 @@
65
73
  display: flex;
66
74
  flex-direction: column;
67
75
  gap: var(--space-500); //
76
+ box-sizing: border-box;
68
77
  width: 100%;
69
78
  max-width: calc(var(--size-300) * 157); // 628
70
79
  max-height: 100%;
@@ -2021,12 +2021,20 @@ legend .d-label {
2021
2021
  .d-modal--transparent {
2022
2022
  --modal-backdrop-color-background: var(--d-bgc-transparent);
2023
2023
  }
2024
+ .d-modal--transparent[aria-hidden='false'] {
2025
+ position: fixed;
2026
+ top: 0;
2027
+ left: 0;
2028
+ width: 100%;
2029
+ min-height: 100%;
2030
+ }
2024
2031
  .d-modal__dialog {
2025
2032
  position: relative;
2026
2033
  z-index: var(--zi-hide);
2027
2034
  display: flex;
2028
2035
  flex-direction: column;
2029
2036
  gap: var(--space-500);
2037
+ box-sizing: border-box;
2030
2038
  width: 100%;
2031
2039
  max-width: calc(var(--size-300) * 157);
2032
2040
  max-height: 100%;