@itwin/itwinui-css 1.0.0-dev.6 → 1.0.0-dev.7

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/css/all.css CHANGED
@@ -2514,7 +2514,7 @@ a.iui-breadcrumbs-text:focus{
2514
2514
  border-color:var(--iui-color-foreground-primary);
2515
2515
  }
2516
2516
  .iui-dialog-wrapper{
2517
- position:relative;
2517
+ position:fixed;
2518
2518
  overflow:hidden;
2519
2519
  top:0;
2520
2520
  left:0;
@@ -2523,6 +2523,9 @@ a.iui-breadcrumbs-text:focus{
2523
2523
  pointer-events:none;
2524
2524
  transform:translateX(0);
2525
2525
  }
2526
+ .iui-dialog-wrapper[data-iui-relative=true]{
2527
+ position:absolute;
2528
+ }
2526
2529
 
2527
2530
  .iui-dialog{
2528
2531
  z-index:999;
@@ -2531,7 +2534,6 @@ a.iui-breadcrumbs-text:focus{
2531
2534
  box-shadow:var(--iui-shadow-5);
2532
2535
  position:fixed;
2533
2536
  padding:var(--iui-size-s) var(--iui-size-m);
2534
- overflow:hidden;
2535
2537
  pointer-events:auto;
2536
2538
  background-color:var(--iui-color-background-1);
2537
2539
  transition:visibility var(--iui-duration-0) linear, opacity var(--iui-duration-1) ease-out;
@@ -2609,10 +2611,6 @@ a.iui-breadcrumbs-text:focus{
2609
2611
  }
2610
2612
 
2611
2613
  .iui-dialog-draggable{
2612
- max-width:100%;
2613
- max-height:100vh;
2614
- min-width:380px;
2615
- min-height:144px;
2616
2614
  display:flex;
2617
2615
  flex-direction:column;
2618
2616
  border:1px solid var(--iui-color-background-border);
package/css/dialog.css CHANGED
@@ -3,7 +3,7 @@
3
3
  * See LICENSE.md in the project root for license terms and full copyright notice.
4
4
  *--------------------------------------------------------------------------------------------*/
5
5
  .iui-dialog-wrapper{
6
- position:relative;
6
+ position:fixed;
7
7
  overflow:hidden;
8
8
  top:0;
9
9
  left:0;
@@ -12,6 +12,9 @@
12
12
  pointer-events:none;
13
13
  transform:translateX(0);
14
14
  }
15
+ .iui-dialog-wrapper[data-iui-relative=true]{
16
+ position:absolute;
17
+ }
15
18
 
16
19
  .iui-dialog{
17
20
  z-index:999;
@@ -20,7 +23,6 @@
20
23
  box-shadow:var(--iui-shadow-5);
21
24
  position:fixed;
22
25
  padding:var(--iui-size-s) var(--iui-size-m);
23
- overflow:hidden;
24
26
  pointer-events:auto;
25
27
  background-color:var(--iui-color-background-1);
26
28
  transition:visibility var(--iui-duration-0) linear, opacity var(--iui-duration-1) ease-out;
@@ -98,10 +100,6 @@
98
100
  }
99
101
 
100
102
  .iui-dialog-draggable{
101
- max-width:100%;
102
- max-height:100vh;
103
- min-width:380px;
104
- min-height:144px;
105
103
  display:flex;
106
104
  flex-direction:column;
107
105
  border:1px solid var(--iui-color-background-border);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/itwinui-css",
3
- "version": "1.0.0-dev.6",
3
+ "version": "1.0.0-dev.7",
4
4
  "author": "Bentley Systems",
5
5
  "license": "MIT",
6
6
  "main": "css/all.css",