Skip to content

Commit

Permalink
Fixed issue #4459: Text in template HTML/CSS editor has a shadow, is …
Browse files Browse the repository at this point in the history
…hard to read in Safari 5

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@8897 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Jul 5, 2010
1 parent bd040a0 commit 8b695df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion admin/scripts/edit_area/edit_area.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@

if( t.isSafari ){
t.editor_area.style.position = "absolute";
a.style.marginLeft ="-3px";
if( t.isSafari < 5)
a.style.marginLeft ="-3px";
if( t.isSafari < 3.2 ) // Safari 3.0 (3.1?)
a.style.marginTop ="1px";
}
Expand Down Expand Up @@ -525,3 +526,5 @@
function init(){
setTimeout("editArea.init(); ", 10);
};


0 comments on commit 8b695df

Please sign in to comment.