Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove code for internet explorer #6938

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5154,10 +5154,6 @@ exports[`Button tip 1`] = `

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

<div
class="c0"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3849,14 +3849,6 @@ exports[`Data properties when property is an array 2`] = `

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

<button
aria-label="Open filters"
class="c0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4295,14 +4295,6 @@ exports[`DataFilter select multiple options 1`] = `

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

<div
class="c0"
>
Expand Down Expand Up @@ -5223,23 +5215,6 @@ exports[`DataFilter select multiple options search 2`] = `
}
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
.c1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: stretch;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
.c3 {
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1926,10 +1926,6 @@ exports[`DataFilters layer 2`] = `
}
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {

}

@media only screen and (max-width:768px) {
.c9 {
margin: 0px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15909,19 +15909,6 @@ exports[`DateInput select format 3`] = `
}
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
.c1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: stretch;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
}

@media only screen and (max-width:768px) {
.c6 {
margin: 0px;
Expand Down Expand Up @@ -27958,19 +27945,6 @@ exports[`DateInput select format no timezone 3`] = `
}
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
.c1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: stretch;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
}

@media only screen and (max-width:768px) {
.c6 {
margin: 0px;
Expand Down
6 changes: 0 additions & 6 deletions src/js/components/Drop/StyledDrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,6 @@ const StyledDrop = styled.div`
animation: ${dropKeyFrames} 0.1s forwards;
animation-delay: 0.01s;

/* IE11 hack to get drop contents to not overflow */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
display: flex;
align-items: stretch;
}

${(props) => props.theme.global.drop && props.theme.global.drop.extend}
`;

Expand Down