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

Link text in API docs is reversed in Internet Explorer #16138

Closed
osobolev opened this issue Jul 31, 2014 · 2 comments · Fixed by #16165
Closed

Link text in API docs is reversed in Internet Explorer #16138

osobolev opened this issue Jul 31, 2014 · 2 comments · Fixed by #16165

Comments

@osobolev
Copy link

CSS style "pre.rust" declares scaleX(-1), which reverses text in Internet Explorer.

@huonw
Copy link
Member

huonw commented Jul 31, 2014

It actually declares pre.rust a, and is designed to reverse text, to flip the arrow in the "run on playpen" link:

screenshot from 2014-08-01 08 18 59

(Of course, doing it in a less hacky manner is good.)

@tinaun
Copy link
Contributor

tinaun commented Jul 31, 2014

the arrow has its own css class .test-arrow. the transform should be defined there, not over a more general selector

in addition, transform: scaleX() doesn't work in chrome, needs to be -webkit-transform

tinaun added a commit to tinaun/rust that referenced this issue Aug 1, 2014
remove unneeded `pre.rust a' selector

move transform into `.test-arrow`

fixes rust-lang#16138
bors added a commit that referenced this issue Aug 2, 2014
remove unneeded `pre.rust a' selector

move transform into `.test-arrow`

fixes #16138
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants