Skip to content

Commit 2cc96cc

Browse files
author
Luke Bowerman
authored
Message Bar uses flex instead of grid (IE fix) (#1551)
* MessageBar story and preliminary snapshots * Replace MessageBar grid w/ flex * Incorporate PR suggestions and snapshot update
1 parent 38c11fc commit 2cc96cc

File tree

16 files changed

+183
-17
lines changed

16 files changed

+183
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4747
- `ComboboxMulti` issue with chips not updating reflecting updated option labels
4848
- `DialogFooter` & `DialogHeader` will no longer shrink in Safari when vertical space is limited
4949
- `InputTimeSelect` disabled state
50+
- `MessageBar` now displays properly in IE11 (switched from grid to flex layout)
5051

5152
### Removed
5253

5.19 KB
Loading
5.17 KB
Loading
5.91 KB
Loading
7.25 KB
Loading
5.19 KB
Loading
2.95 KB
Loading
5.3 KB
Loading
5.21 KB
Loading

packages/components/src/Dialog/Layout/__snapshots__/DialogFooter.test.tsx.snap

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ exports[`DialogFooter with Button 1`] = `
1919
-webkit-flex-direction: row-reverse;
2020
-ms-flex-direction: row-reverse;
2121
flex-direction: row-reverse;
22+
-webkit-flex-shrink: 0;
23+
-ms-flex-negative: 0;
24+
flex-shrink: 0;
2225
-webkit-box-pack: justify;
2326
-webkit-justify-content: space-between;
2427
-ms-flex-pack: justify;
@@ -39,6 +42,9 @@ exports[`DialogFooter with Button 1`] = `
3942
-webkit-flex-direction: row-reverse;
4043
-ms-flex-direction: row-reverse;
4144
flex-direction: row-reverse;
45+
-webkit-flex-shrink: 0;
46+
-ms-flex-negative: 0;
47+
flex-shrink: 0;
4248
}
4349
4450
.c1 {
@@ -107,6 +113,9 @@ exports[`DialogFooter with DialogContext 1`] = `
107113
-webkit-flex-direction: row-reverse;
108114
-ms-flex-direction: row-reverse;
109115
flex-direction: row-reverse;
116+
-webkit-flex-shrink: 0;
117+
-ms-flex-negative: 0;
118+
flex-shrink: 0;
110119
-webkit-box-pack: justify;
111120
-webkit-justify-content: space-between;
112121
-ms-flex-pack: justify;
@@ -127,6 +136,9 @@ exports[`DialogFooter with DialogContext 1`] = `
127136
-webkit-flex-direction: row-reverse;
128137
-ms-flex-direction: row-reverse;
129138
flex-direction: row-reverse;
139+
-webkit-flex-shrink: 0;
140+
-ms-flex-negative: 0;
141+
flex-shrink: 0;
130142
}
131143
132144
.c1 {

0 commit comments

Comments
 (0)