Skip to content

Commit fe1e310

Browse files
committed
fix(inline edit): remove clear element in internet explorer
fix patternfly#1076
1 parent 54bd6dc commit fe1e310

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

src/less/forms.less

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ span.required-pf {
164164
position: relative;
165165
input {
166166
padding-right: @input-height-base;
167+
&::-ms-clear {
168+
display: none;
169+
}
167170
}
168171
.form-control-pf-empty {
169172
background: none;

src/sass/converted/patternfly/_forms.scss

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ span.required-pf {
164164
position: relative;
165165
input {
166166
padding-right: $input-height-base;
167+
&::-ms-clear {
168+
display: none;
169+
}
167170
}
168171
.form-control-pf-empty {
169172
background: none;

src/sass/converted/rcue/_forms.scss

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ span.required-pf {
164164
position: relative;
165165
input {
166166
padding-right: $input-height-base;
167+
&::-ms-clear {
168+
display: none;
169+
}
167170
}
168171
.form-control-pf-empty {
169172
background: none;

0 commit comments

Comments
 (0)