| Summary: | Username and documentation overlaps with OPENSHIFT ORIGIN logo on /console page for IE11 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | OKD | Reporter: | Yadan Pei <yapei> | ||||||||
| Component: | Management Console | Assignee: | Robb Hamilton <rhamilto> | ||||||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Yadan Pei <yapei> | ||||||||
| Severity: | low | Docs Contact: | |||||||||
| Priority: | medium | ||||||||||
| Version: | 3.x | CC: | aos-bugs, mmccomas | ||||||||
| Target Milestone: | --- | ||||||||||
| Target Release: | --- | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Whiteboard: | |||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||
| Doc Text: | Story Points: | --- | |||||||||
| Clone Of: | Environment: | ||||||||||
| Last Closed: | 2016-05-12 17:14:53 UTC | Type: | Bug | ||||||||
| Regression: | --- | Mount Type: | --- | ||||||||
| Documentation: | --- | CRM: | |||||||||
| Verified Versions: | Category: | --- | |||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||
| Attachments: |
|
||||||||||
|
Description
Yadan Pei
2016-02-18 02:23:15 UTC
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 |