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

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
@@ -1614,7 +1614,6 @@ a.iui-breadcrumbs-text:focus{
1614
1614
  padding:0;
1615
1615
  border:none;
1616
1616
  vertical-align:baseline;
1617
- flex:2;
1618
1617
  max-width:calc(var(--iui-size-2xl) * 4);
1619
1618
  border-radius:var(--iui-border-radius-1);
1620
1619
  white-space:nowrap;
@@ -2514,7 +2513,7 @@ a.iui-breadcrumbs-text:focus{
2514
2513
  border-color:var(--iui-color-foreground-primary);
2515
2514
  }
2516
2515
  .iui-dialog-wrapper{
2517
- position:relative;
2516
+ position:fixed;
2518
2517
  overflow:hidden;
2519
2518
  top:0;
2520
2519
  left:0;
@@ -2523,6 +2522,9 @@ a.iui-breadcrumbs-text:focus{
2523
2522
  pointer-events:none;
2524
2523
  transform:translateX(0);
2525
2524
  }
2525
+ .iui-dialog-wrapper[data-iui-relative=true]{
2526
+ position:absolute;
2527
+ }
2526
2528
 
2527
2529
  .iui-dialog{
2528
2530
  z-index:999;
@@ -2531,7 +2533,6 @@ a.iui-breadcrumbs-text:focus{
2531
2533
  box-shadow:var(--iui-shadow-5);
2532
2534
  position:fixed;
2533
2535
  padding:var(--iui-size-s) var(--iui-size-m);
2534
- overflow:hidden;
2535
2536
  pointer-events:auto;
2536
2537
  background-color:var(--iui-color-background-1);
2537
2538
  transition:visibility var(--iui-duration-0) linear, opacity var(--iui-duration-1) ease-out;
@@ -2609,10 +2610,6 @@ a.iui-breadcrumbs-text:focus{
2609
2610
  }
2610
2611
 
2611
2612
  .iui-dialog-draggable{
2612
- max-width:100%;
2613
- max-height:100vh;
2614
- min-width:380px;
2615
- min-height:144px;
2616
2613
  display:flex;
2617
2614
  flex-direction:column;
2618
2615
  border:1px solid var(--iui-color-background-border);
@@ -4011,7 +4008,7 @@ div.iui-header-breadcrumb-button-icon{
4011
4008
  .iui-menu.iui-scroll{
4012
4009
  overflow-y:auto;
4013
4010
  overflow-y:overlay;
4014
- --iui-menu-max-height:315px;
4011
+ --iui-menu-max-height:calc((var(--iui-component-height) - 1px) * 8.5);
4015
4012
  }
4016
4013
 
4017
4014
  .iui-menu-item{
package/css/carousel.css CHANGED
@@ -58,7 +58,6 @@
58
58
  padding:0;
59
59
  border:none;
60
60
  vertical-align:baseline;
61
- flex:2;
62
61
  max-width:calc(var(--iui-size-2xl) * 4);
63
62
  border-radius:var(--iui-border-radius-1);
64
63
  white-space:nowrap;
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/css/menu.css CHANGED
@@ -44,7 +44,7 @@
44
44
  .iui-menu.iui-scroll{
45
45
  overflow-y:auto;
46
46
  overflow-y:overlay;
47
- --iui-menu-max-height:315px;
47
+ --iui-menu-max-height:calc((var(--iui-component-height) - 1px) * 8.5);
48
48
  }
49
49
 
50
50
  .iui-menu-item{
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.8",
4
4
  "author": "Bentley Systems",
5
5
  "license": "MIT",
6
6
  "main": "css/all.css",