Skip to content

Commit

Permalink
Fixes super datepicker in ie11 (elastic#33325)
Browse files Browse the repository at this point in the history
  • Loading branch information
snide committed Mar 15, 2019
1 parent 87b7899 commit a371cc0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/legacy/ui/public/query_bar/components/_query_bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
}
}

// IE specific fix for the datepicker to not collapse
@include euiBreakpoint('m', 'l', 'xl') {
.kbnQueryBar__datePickerWrapper {
max-width: 40vw;
flex-grow: 0;
flex-basis: auto;
// sass-lint:disable-block no-important
flex-grow: 0 !important;
flex-basis: auto !important;
}
}

0 comments on commit a371cc0

Please sign in to comment.