We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Summary: The bug is provoked by this portion of the page's CSS:
.navbar-fixed-top, .navbar-fixed-bottom { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
Removing these translate3d transforms avoids the bug. translate3d(0, 0, 0) is commonly used to increase performance by attempting to force GPU acceleration; see e.g. http://aerotwist.com/blog/on-translate3d-and-layer-creation-hacks/
Steps to Reproduce:
Expected Results: The menu that appears below the right Dropdown should render normally/correctly.
Actual Results: The menu that appears below the right Dropdown misrenders, with a white rectangle obscuring the right half of the menu.
Version: iOS 8
Notes: Also reported as https://bugs.webkit.org/show_bug.cgi?id=138162 Original Bootstrap bug report: twbs/bootstrap#14603
Configuration:
Attachments: 'bugvid.gif' was successfully uploaded.
Product Version: Created: 2014-10-29T00:47:24.348248 Originated: 2014-10-28T17:42:00 Open Radar Link: http://www.openradar.me/18804973
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Summary:
The bug is provoked by this portion of the page's CSS:
.navbar-fixed-top,
.navbar-fixed-bottom
{
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
Removing these translate3d transforms avoids the bug.
translate3d(0, 0, 0) is commonly used to increase performance by attempting to force GPU acceleration; see e.g. http://aerotwist.com/blog/on-translate3d-and-layer-creation-hacks/
Steps to Reproduce:
Expected Results:
The menu that appears below the right Dropdown should render normally/correctly.
Actual Results:
The menu that appears below the right Dropdown misrenders, with a white rectangle obscuring the right half of the menu.
Version:
iOS 8
Notes:
Also reported as https://bugs.webkit.org/show_bug.cgi?id=138162
Original Bootstrap bug report: twbs/bootstrap#14603
Configuration:
Attachments:
'bugvid.gif' was successfully uploaded.
Product Version:
Created: 2014-10-29T00:47:24.348248
Originated: 2014-10-28T17:42:00
Open Radar Link: http://www.openradar.me/18804973
The text was updated successfully, but these errors were encountered: