-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken date range look #14837
Fix broken date range look #14837
Conversation
the PR this is fixing #11980 is talking about a broken link not broken styles ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, @cjcenizal want to give this a quick look ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
This PR fixes the broken date range look as described in #12731Sorry I missread there. This issue fixes the broken date range look (that wasn't described in #12731, but was visible there in the screenshot).
The
kbn-timepicker
classes have always been on these elements, but PR #11980 now applieddisplay: flex
to them thus destroying the defaultdisplay: table-cell
which was needed for the styling. I checked, that thesekbn-timepicker
classes haven't set any other styling on that element or any child elements, and are not used in tests, so they can safely be removed from the date range table cells to fix this bug.UPDATE: This actually doesn't fix #12731 (which I misread), this fixes the broken styling, that can be seen in #12731. The issue itself is already fixed by #14630