<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to scale the jQuery UI font size for just the UI widgets</title>
	<atom:link href="http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/</link>
	<description>Duncan&#039;s musings on tech related topics</description>
	<lastBuildDate>Tue, 07 Feb 2012 22:31:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: bzt</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-3539</link>
		<dc:creator>bzt</dc:creator>
		<pubDate>Mon, 14 Nov 2011 14:56:08 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-3539</guid>
		<description>Very helpful. Thanks!</description>
		<content:encoded><![CDATA[<p>Very helpful. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaime</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-3395</link>
		<dc:creator>Jaime</dc:creator>
		<pubDate>Thu, 20 Oct 2011 21:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-3395</guid>
		<description>Thanks, it was really helpful</description>
		<content:encoded><![CDATA[<p>Thanks, it was really helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enrique</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-2816</link>
		<dc:creator>Enrique</dc:creator>
		<pubDate>Fri, 02 Sep 2011 18:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-2816</guid>
		<description>Thanks! :)</description>
		<content:encoded><![CDATA[<p>Thanks! <img src='http://www.fbloggs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanitogan</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-2022</link>
		<dc:creator>juanitogan</dc:creator>
		<pubDate>Fri, 25 Mar 2011 23:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-2022</guid>
		<description>Ignore my last post -- I was in quirks mode (who knew?) -- the content behaves much differently in the dialog in quirks mode and I got way off track.  Anyhow, long story short, I eventually decided on the following if you don&#039;t like the default font size in ui.theme.css:

div.ui-widget {font-size: 1em;}
div.ui-datepicker {font-size: 70%;}
div.ui-dialog-buttonpane {font-size: 80%;}
... and so on...

This allows full-size content in the dialog with smaller dialog buttons and a small datepicker.  This also works well in quirks mode and standards mode.</description>
		<content:encoded><![CDATA[<p>Ignore my last post &#8212; I was in quirks mode (who knew?) &#8212; the content behaves much differently in the dialog in quirks mode and I got way off track.  Anyhow, long story short, I eventually decided on the following if you don&#8217;t like the default font size in ui.theme.css:</p>
<p>div.ui-widget {font-size: 1em;}<br />
div.ui-datepicker {font-size: 70%;}<br />
div.ui-dialog-buttonpane {font-size: 80%;}<br />
&#8230; and so on&#8230;</p>
<p>This allows full-size content in the dialog with smaller dialog buttons and a small datepicker.  This also works well in quirks mode and standards mode.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanitogan</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-2020</link>
		<dc:creator>juanitogan</dc:creator>
		<pubDate>Fri, 25 Mar 2011 14:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-2020</guid>
		<description>So far, this is what works best for me with both datepickers and dialogs without editing the ui.theme.css (and is the most zoom and ADA friendly):

div.ui-widget {font-size: 62.5% !important;}

Without the &quot;div&quot; the percentage is applied twice to inner ui widgets such as dialog buttons making them tiny.  The &quot;!important&quot; is not really needed in my situation but is there just in case.  As I begin to work it other jQuery UI objects I may find exceptions but, like I said, this works well for me for now.</description>
		<content:encoded><![CDATA[<p>So far, this is what works best for me with both datepickers and dialogs without editing the ui.theme.css (and is the most zoom and ADA friendly):</p>
<p>div.ui-widget {font-size: 62.5% !important;}</p>
<p>Without the &#8220;div&#8221; the percentage is applied twice to inner ui widgets such as dialog buttons making them tiny.  The &#8220;!important&#8221; is not really needed in my situation but is there just in case.  As I begin to work it other jQuery UI objects I may find exceptions but, like I said, this works well for me for now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-1959</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Sat, 05 Mar 2011 19:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-1959</guid>
		<description>Hey, this helped a lot! Thanx!</description>
		<content:encoded><![CDATA[<p>Hey, this helped a lot! Thanx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fbloggs</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-1692</link>
		<dc:creator>fbloggs</dc:creator>
		<pubDate>Tue, 21 Dec 2010 05:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-1692</guid>
		<description>Thanks! Great suggestion.</description>
		<content:encoded><![CDATA[<p>Thanks! Great suggestion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiyang Xu</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-1691</link>
		<dc:creator>Jiyang Xu</dc:creator>
		<pubDate>Tue, 21 Dec 2010 03:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-1691</guid>
		<description>A slightly more convenient way of doing the same thing, w/o touching generated css file, is to override
the entry after loading the standard css, by including the following in the source or your own css:


.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana,
 Arial, sans-serif; font-size: 11px; }
</description>
		<content:encoded><![CDATA[<p>A slightly more convenient way of doing the same thing, w/o touching generated css file, is to override<br />
the entry after loading the standard css, by including the following in the source or your own css:</p>
<p>.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana,<br />
 Arial, sans-serif; font-size: 11px; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My only jQuery UI complaint &#124; Marcus McDuffie</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-1306</link>
		<dc:creator>My only jQuery UI complaint &#124; Marcus McDuffie</dc:creator>
		<pubDate>Fri, 22 Oct 2010 20:11:50 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-1306</guid>
		<description>[...] I know you may think I&#8217;m beating a dead horse, as this issue has already been discussed here and here, but I just wanted to add my take on the issue.   This entry was posted in Uncategorized. [...]</description>
		<content:encoded><![CDATA[<p>[...] I know you may think I&#8217;m beating a dead horse, as this issue has already been discussed here and here, but I just wanted to add my take on the issue.   This entry was posted in Uncategorized. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ncorpse</title>
		<link>http://www.fbloggs.com/2009/03/03/how-to-scale-the-jquery-ui-font-size-for-just-the-ui-widgets/comment-page-1/#comment-1229</link>
		<dc:creator>ncorpse</dc:creator>
		<pubDate>Sun, 10 Oct 2010 16:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://fbloggs.wordpress.com/?p=17#comment-1229</guid>
		<description>thx! exactly what i was looking for</description>
		<content:encoded><![CDATA[<p>thx! exactly what i was looking for</p>
]]></content:encoded>
	</item>
</channel>
</rss>

