Menu

#100 Safari 5 on OSX text blurry

open
nobody
None
5
2016-10-07
2011-10-02
Anonymous
No

The text in the edit area is blurry on Safari 5 in OSX. It seems that it is the css code
.hidden {
opacity: 0.2;
filter: alpha(opacity=20);
}
that is causing this. Setting the opacity to 0 seems to fix it. Haven't found where that is in the source file yet.

when i do i will post an update.

cheers and thanks for the great work

Kris

Discussion

  • Sven Buijsrogge

    Sven Buijsrogge - 2012-02-20

    In Safari on OSX it's not the opacity, it's the margin-left -3px. The opacity will fix the bug on the windows browsers of Google Chrome and Firefox.

    I have found the solution for this bug, open edit_erea_full.js, search for .hidden and set opacity:0.2; to opacity:0; and filter: alpha(opacity=20); to filter: alpha(opacity=0);
    That's the fix for windows, notice that on safari it's still blurry.

    Now we will be fixing the bug with safari, search for:
    if(t.isSafari){t.editor_area.Ç.position=\"absolute\";a.Ç.marginLeft=\"-3px\";
    and replace it by:
    if(t.isSafari){t.editor_area.Ç.position=\"absolute\";a.Ç.marginLeft=\"0px\";

    and your done!

    Good Luck

     
  • daniel savage

    daniel savage - 2016-10-07

    On osx 10 firefox the opacity fix causes the cursor/caret to disappear.

     

Log in to post a comment.

MongoDB Logo MongoDB