Hide Forgot
Description of problem: On IE11, when open /console page,user-dropdown element and documentation dropdown overlaps with OPENSHIFT ORIGIN logo on the left upper corner Version-Release number of selected component (if applicable): devenv-rhel7_3449 IE11 How reproducible: Always Steps to Reproduce: 1.Login to openshift web console Actual results: 1.username and documentation overlaps with ORIGIN logo on /console page, refer to attachment Expected results: 1. /console page should display well Additional info: Firefox44, Chrome47, Edge25, Safari9 works fine
Created attachment 1128124 [details] IE11Console
Created attachment 1128125 [details] IE11HomeLink
Ya, I am unable to reproduce this bug in IE11. I can, however, reproduce it in IE10. Can you confirm that you're able to reproduce in IE11?
Created attachment 1128408 [details] IE11Overlap
Add a screenshot to show what happens on my side
Ah ha! This bug is occurring because the CSS builds are different. CSS served over port 8443: @media (min-width: 768px) { .components .components-panel .component-block .component.meta-data { -moz-flex: 1 1 0%; flex: 1 1 0%; } } CSS served over port 9000: @media (min-width:768px){.components .components-panel .component-block .component.meta-data{-webkit-flex:1 1 0;-moz-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0}} Both are problematic. 8443 is missing the additional prefixed values. The latter is missing the "%" unit declarations required to overcome an IE10-11 bug (see https://github.com/philipwalton/flexbugs#workaround-3). Jessica, I've yet to fully understand the Gruntfile. Can you help?
https://github.com/openshift/origin/pull/7475 should resolve this bug.
checked against devenv-rhel7_3568, issue is fixed move to verified