fix(my-joy-beta): fix selects in IE11

This commit is contained in:
Sara Vieira 2018-01-31 15:08:17 +00:00 committed by Sérgio Ramos
parent 38d162843d
commit 1c1909324f
38 changed files with 38 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -97,6 +97,10 @@ exports[`renders <Rule/> without throwing 1`] = `
margin: 0 0.375rem;
}
.c5::-ms-expand {
display: none;
}
.c7 {
width: 5.625rem;
position: relative;
@ -119,6 +123,10 @@ exports[`renders <Rule/> without throwing 1`] = `
margin: 0 0.375rem;
}
.c7::-ms-expand {
display: none;
}
.c10 {
width: 7.5rem;
position: relative;
@ -141,6 +149,10 @@ exports[`renders <Rule/> without throwing 1`] = `
margin: 0 0.375rem;
}
.c10::-ms-expand {
display: none;
}
.c2 {
color: rgba(73,73,73,1);
font-weight: normal;
@ -771,6 +783,10 @@ exports[`renders <Rule/> without throwing 2`] = `
margin: 0 0.375rem;
}
.c5::-ms-expand {
display: none;
}
.c7 {
width: 5.625rem;
position: relative;
@ -793,6 +809,10 @@ exports[`renders <Rule/> without throwing 2`] = `
margin: 0 0.375rem;
}
.c7::-ms-expand {
display: none;
}
.c10 {
width: 7.5rem;
position: relative;
@ -815,6 +835,10 @@ exports[`renders <Rule/> without throwing 2`] = `
margin: 0 0.375rem;
}
.c10::-ms-expand {
display: none;
}
.c2 {
color: rgba(73,73,73,1);
font-weight: normal;

View File

@ -121,6 +121,10 @@ exports[`renders <Images images=[{name: stuff, imageName: stuff}] /> without thr
padding-right: 1.5625rem;
}
.c8::-ms-expand {
display: none;
}
.c4 {
color: rgba(73,73,73,1);
font-weight: 600;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -48,8 +48,8 @@ const PaddingMaxWidth = styled(Padding)`
`;
const Meta = styled(CardHeaderMeta)`
height: ${remcalc(47)}
`
height: ${remcalc(47)};
`;
class ValueTextareaField extends PureComponent {
render() {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -663,6 +663,10 @@ exports[`Form Select 1`] = `
padding-right: 1.5625rem;
}
.c1::-ms-expand {
display: none;
}
<div
className="c0"
disabled={false}

View File

@ -62,6 +62,10 @@ const StyledSelect = select.extend`
padding: ${remcalc(12)};
padding-right: ${remcalc(25)};
&::-ms-expand {
display: none;
}
${is('disabled')`
border-color: ${props => props.theme.grey};
color: ${props => props.theme.grey};