[Mono-docs-list] MonoDoc helpsource improvement

John Luke jluke@cfl.rr.com
21 May 2003 22:18:09 -0400


--=-EWPQEB8a+fNRZFfNLtuZ
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

On Wed, 2003-05-21 at 21:17, Joshua Tauberer wrote:
> Ben Maurer wrote:
> > NO! NO! You must mean setting a CSS property! (and I hope <blockquote>
> > didn't even cross your mind)
> 
> I think I had copied what used to be used, and since I don't know the 
> capabilities of the HTML widget, I didn't touch it.  I'll fix it up with 
> CSS if it works.

Unfortunately, I do not think css works with the gtkhtml version we are
using in Gtk#. So I think tables have to be used for now.

Here is my little test that mozilla displays the text red, but in
gtkhtml the color is not changed.

Anyone know where to find out more about the capabilities of gtkhtml3?

John Luke

--=-EWPQEB8a+fNRZFfNLtuZ
Content-Disposition: attachment; filename=test.cs
Content-Type: text/plain; name=test.cs; charset=UTF-8
Content-Transfer-Encoding: 7bit

using System;
using Gtk;
using GtkSharp;

class test
{
	static void Main ()
	{

		Application.Init();

		string tester="<html><body STYLE=\"color: red;\">Do you support CSS?</body></html>";
		
		Window win = new Window ("Html CSS test");
		HTML html = new HTML (tester);
		win.Add (html);

		win.ShowAll ();

		Application.Run();

	}
}

--=-EWPQEB8a+fNRZFfNLtuZ--