Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 2b16d3a

Browse files
authored
Merge pull request #2076 from eBay/16.2.1
PR for patch release v16.2.1
2 parents 00fc451 + 92fab46 commit 2b16d3a

File tree

18 files changed

+80
-20
lines changed

18 files changed

+80
-20
lines changed

dist/alert-dialog/alert-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.alert-dialog[role="alertdialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
align-items: flex-start;

dist/calendar/calendar.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,13 @@
114114
.calendar__range::before {
115115
border: solid transparent;
116116
border-width: 1px 0;
117+
bottom: 0;
117118
content: "";
118-
inset: 0;
119+
left: 0;
119120
pointer-events: none;
120121
position: absolute;
122+
right: 0;
123+
top: 0;
121124
}
122125
.calendar__range--start::before {
123126
border-left-width: 1px;

dist/carousel/carousel.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,13 @@
5656
}
5757
.carousel__list--image-treatment > li::after {
5858
background: rgba(0, 0, 0, 0.05);
59+
bottom: 0;
5960
content: "";
6061
display: block;
61-
inset: 0;
62+
left: 0;
6263
position: absolute;
64+
right: 0;
65+
top: 0;
6366
}
6467
.carousel__list--image-treatment > li > img {
6568
display: inline-block;
@@ -77,10 +80,13 @@
7780
}
7881
.carousel__list--image-treatment-large > li::after {
7982
background: rgba(0, 0, 0, 0.05);
83+
bottom: 0;
8084
content: "";
8185
display: block;
82-
inset: 0;
86+
left: 0;
8387
position: absolute;
88+
right: 0;
89+
top: 0;
8490
}
8591
.carousel__list--image-treatment-large > li > img {
8692
display: inline-block;

dist/confirm-dialog/confirm-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.confirm-dialog[role="dialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
align-items: flex-start;

dist/drawer-dialog/drawer-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.drawer-dialog[role="dialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
align-items: flex-end;

dist/fullscreen-dialog/fullscreen-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.fullscreen-dialog[role="dialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
}

dist/infotip/infotip.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ span.infotip__mask {
105105
right: -4px;
106106
}
107107
.infotip__pointer--right-bottom {
108-
inset: auto -4px 12px auto;
108+
bottom: 12px;
109+
left: auto;
110+
right: -4px;
111+
top: auto;
109112
}
110113
.infotip__pointer--right-top {
111114
left: auto;

dist/lightbox-dialog/lightbox-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.lightbox-dialog[role="dialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
align-items: flex-start;

dist/panel-dialog/panel-dialog.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
}
77
.panel-dialog[role="dialog"] {
88
background-color: var(--dialog-scrim-color-show);
9-
inset: 0;
9+
bottom: 0;
10+
left: 0;
1011
-webkit-overflow-scrolling: touch;
1112
overflow-y: auto;
1213
position: fixed;
14+
right: 0;
15+
top: 0;
1316
will-change: background-color;
1417
z-index: 100000;
1518
flex-direction: column;

dist/tooltip/tooltip.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ button.tooltip__close {
120120
right: -4px;
121121
}
122122
.tooltip__pointer--right-bottom {
123-
inset: auto -4px 12px auto;
123+
bottom: 12px;
124+
left: auto;
125+
right: -4px;
126+
top: auto;
124127
}
125128
.tooltip__pointer--right-top {
126129
left: auto;

0 commit comments

Comments
 (0)