Skip to content
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

Text rendering fix for Android (and arguably for Windows) #132

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions bootstrap-1.1.1.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Fri Aug 26 19:31:44 PDT 2011
* Date: Wed Aug 31 14:03:54 EDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -394,7 +394,6 @@ body {
font-weight: normal;
line-height: 18px;
color: #808080;
text-rendering: optimizeLegibility;
}
.container {
width: 940px;
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-1.1.1.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion lib/scaffolding.less
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ body {
margin: 0;
#font > .sans-serif(normal,@basefont,@baseline);
color: @gray;
text-rendering: optimizeLegibility;

// The following line breaks text rendering on Android and degrades it on
// Windows:
//
// text-rendering: optimizeLegibility;
}

// Container (centered, fixed-width layouts)
Expand Down