Skip to content

Commit

Permalink
fix(inline edit): remove clear element in internet explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoker committed Aug 2, 2018
1 parent 54bd6dc commit fe1e310
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ span.required-pf {
position: relative;
input {
padding-right: @input-height-base;
&::-ms-clear {
display: none;
}
}
.form-control-pf-empty {
background: none;
Expand Down
3 changes: 3 additions & 0 deletions src/sass/converted/patternfly/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ span.required-pf {
position: relative;
input {
padding-right: $input-height-base;
&::-ms-clear {
display: none;
}
}
.form-control-pf-empty {
background: none;
Expand Down
3 changes: 3 additions & 0 deletions src/sass/converted/rcue/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ span.required-pf {
position: relative;
input {
padding-right: $input-height-base;
&::-ms-clear {
display: none;
}
}
.form-control-pf-empty {
background: none;
Expand Down

0 comments on commit fe1e310

Please sign in to comment.