Skip to content

Commit

Permalink
IE11 does not know about 'unset' CSS properties (#56961)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens authored Feb 6, 2020
1 parent bb6dac4 commit a81918c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ export class LegacyCoreEditor implements CoreEditor {
} else {
if (topOrBottom === 'top') {
this.$actions.css({
bottom: 'unset',
bottom: 'auto',
top: value,
visibility: 'visible',
});
} else {
this.$actions.css({
top: 'unset',
top: 'auto',
bottom: value,
visibility: 'visible',
});
Expand Down

0 comments on commit a81918c

Please sign in to comment.