[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Firefox 3.5 and magnifier
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Firefox 3.5 and magnifier
- From: Tom Georgoulias <tomg (at) mcclatchyinteractive.com>
- Date: Fri, 17 Jul 2009 09:20:42 -0400
- Organization: McClatchy Interactive
- References: <OF74EC0A34.BE7F5717-ONC12575E6.0047C4A5-C12575E6.00481060 (at) kreis-steinfurt.de> <4A4B6F2C.9050904 (at) schoot.org> <4A4B719F.4070903 (at) unil.ch> <1F7B01020EC4D04DA17703634B9E888E0DBA3497 (at) ULPGCTMVMAI003.EU.COLT> <4A4B865F.2040607 (at) schoot.org> <1F7B01020EC4D04DA17703634B9E888E0DBA356B (at) ULPGCTMVMAI003.EU.COLT> <e73320da0907160648l2a5de059pa1ecd19a8c2858a (at) mail.gmail.com>
- User-agent: Thunderbird 2.0.0.21 (X11/20090320)
mario andre wrote:
I've solved this by changing *hobbitgraph.c *adding *opacity:0.5; and
**opacity:0; *
I can confirm this fix on Firefox 3.5 for Linux, Mac OS X, and Safari.
Not sure about any other platforms.
I made a quick patch for this in case others on the list want to apply it.
Tom
--- web/hobbitgraph.c.orig 2009-07-17 09:04:33.000000000 -0400
+++ web/hobbitgraph.c 2009-07-17 09:06:57.000000000 -0400
@@ -574,8 +574,8 @@
headfoot(stdout, "graphs", "", "header", bgcolor);
- fprintf(stdout, " <div id='zoomBox' style='position:absolute; overflow:none; left:0px; top:0px; width:0px; height:0px; visibility:visible; background:red; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity:0.5'></div>\n");
- fprintf(stdout, " <div id='zoomSensitiveZone' style='position:absolute; overflow:none; left:0px; top:0px; width:0px; height:0px; visibility:visible; cursor:crosshair; background:blue; filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0'></div>\n");
+ fprintf(stdout, " <div id='zoomBox' style='position:absolute; overflow:none; left:0px; top:0px; width:0px; height:0px; visibility:visible; background:red; filter:alpha(opacity=50);opacity:0.5; -moz-opacity:0.5; -khtml-opacity:0.5'></div>\n");
+ fprintf(stdout, " <div id='zoomSensitiveZone' style='position:absolute; overflow:none; left:0px; top:0px; width:0px; height:0px; visibility:visible; cursor:crosshair; background:blue; filter:alpha(opacity=0);opacity:0; -moz-opacity:0; -khtml-opacity:0'></div>\n");
fprintf(stdout, "<table align=\"center\" summary=\"Graphs\">\n");
graph_link(stdout, okuri, gtype, 0);