<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Much ado about pixels &#187; Gadgets</title>
	<atom:link href="http://blog.seanmartell.com/ramblings/gadgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.seanmartell.com</link>
	<description></description>
	<lastBuildDate>Fri, 11 Jun 2010 03:18:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS3 &amp; Flexible UI: Avoid Recutting UI Graphics for Mobile</title>
		<link>http://blog.seanmartell.com/2009/04/21/css3-flexible-ui-avoid-recutting-ui-graphics-for-mobile/</link>
		<comments>http://blog.seanmartell.com/2009/04/21/css3-flexible-ui-avoid-recutting-ui-graphics-for-mobile/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 01:55:25 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=310</guid>
		<description><![CDATA[Working on the Fennec UI has been an amazing experience.
Designing UI elements for a mobile browser has taught me a great deal when it comes to creating interactive graphical elements that are to be used in a very small space.Â  Of course, when I say small space, I mean a small space that has the [...]]]></description>
			<content:encoded><![CDATA[<p>Working on the Fennec UI has been an amazing experience.</p>
<p>Designing UI elements for a mobile browser has taught me a great deal when it comes to creating interactive graphical elements that are to be used in a very small space.Â  Of course, when I say small space, I mean a small space that has the potential to be different for each handset out there.Â  Not only are we talking resolution differences, but  the screen DPI can change from device to device as well.</p>
<p>So after resizing and re-slicing the Fennec UI for the second time, I quickly realized that this could be a full-time job for a team of designers depending on the list of handsets Fennec will be appearing on.</p>
<p>Hold the phone&#8230;Â  whats this?Â  <a href="https://developer.mozilla.org/en/Firefox_3.5_for_developers">Firefox 3.5 enables a new slew of fun CSS3 design styles</a> eh? Rounded edges eh?Â  Embedded fonts eh?</p>
<p>* gears turning, monkeys typing, hamsters running *</p>
<p>What if we could replace almost all of the graphical UI elements within Fennec with CSS created equivalents?Â  As a designer, am I comfortable bypassing Photoshop and letting CSS run the pixel rodeo?Â  After a few initial tests, the answer to both of those questions was a very solid &#8220;yes&#8221;.Â  A solid &#8220;friggin&#8217; right&#8221; if in Cape Breton.</p>
<p><span style="color: #993300;"><em>DISCLAIMER: These design tests are done to see how close we can get CSS to replicate rasterized images. The elements you will see here may or may not appear in any Fennec builds. </em></span></p>
<h2>Toggles and Options</h2>
<p>The first challenge was creating &#8220;on/off&#8221; toggles for the preferences pane within Fennec.Â  Doing some quick research into what could be done with CSS3 in Firefox 3.5, the ultimate arsenal was discovered: the <em>-moz-border-radius, -moz-border-color, @font-face,</em> and <em>opacity</em> styles.</p>
<div id="attachment_319" class="wp-caption alignnone" style="width: 660px"><img class="size-full wp-image-319 postImg" title="12" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/12.jpg" alt="12" width="650" height="327" /><p class="wp-caption-text">Glorious CSS3 comes to the mobile UI rescue!</p></div>
<p>As you can see, the resulting UI is super crisp.Â  There are zero graphics involved in any of these toggles.Â  Here is an example of the code for the first &#8220;on/off&#8221; set:</p>
<p><em>.toggleONleft {<br />
font-family: &#8216;DroidSans-Bold&#8217;;<br />
text-transform:uppercase;<br />
padding: 0px 8px 0px 12px;<br />
-moz-border-radius-topleft: 0.5em;<br />
-moz-border-radius-bottomleft: 0.5em;<br />
-webkit-border-top-left-radius: 0.5em;<br />
-webkit-border-bottom-left-radius: 0.5em;<br />
border-top: 4px solid #aaa;<br />
border-left: 4px solid #ccc;<br />
border-right: 4px solid #ccc;<br />
border-bottom: 4px solid #ccc;<br />
-moz-border-top-colors:#aaa #bbb #ccc #ddd;<br />
-moz-border-left-colors:#aaa #bbb #ccc #ddd;<br />
-moz-border-bottom-colors:#aaa #bbb #ccc #ddd;<br />
-moz-border-right-colors:#aaa #bbb #ccc #ddd;<br />
background-color: #ddd;<br />
display: inline;<br />
}</em></p>
<p><em>.toggleOFFright {<br />
font-family: &#8216;DroidSans-Bold&#8217;;<br />
text-transform:uppercase;<br />
color:#414141;<br />
padding: 0px 12px 0px 8px;<br />
-moz-border-radius-topright: 0.5em;<br />
-moz-border-radius-bottomright: 0.5em;<br />
-webkit-border-top-right-radius: 0.5em;<br />
-webkit-border-bottom-right-radius: 0.5em;<br />
border-top: 4px solid #ccc;<br />
border-left: 4px solid #ccc;<br />
border-right: 4px solid #ccc;<br />
border-bottom: 4px solid #aaa;<br />
-moz-border-top-colors:#aaa #fff #fff #fff;<br />
-moz-border-right-colors:#aaa #dedede #efefef #fafafa;<br />
-moz-border-left-colors:#aaa #dedede #efefef #fafafa;<br />
-moz-border-bottom-colors:#aaa #dedede #efefef #fafafa;<br />
background-color: #fff;<br />
display: inline;<br />
}</em></p>
<h2>Dark Toggles</h2>
<div id="attachment_318" class="wp-caption alignnone" style="width: 660px"><img class="size-full wp-image-318 postImg" title="22" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/22.jpg" alt="22" width="650" height="286" /><p class="wp-caption-text">The dark toggles really give off a 3D effect</p></div>
<p>Dark toggles were very simple to create now that  the above CSS was already written.Â  It was just a matter of setting the fill colors, border radius, and gradient border colors.Â  Resizing these for different resolutions takes minutes of hex color and margin/padding tweaks!Â  That&#8217;s it.</p>
<h2>Buttons</h2>
<div id="attachment_315" class="wp-caption alignnone" style="width: 660px"><img class="size-full wp-image-315 postImg" title="51" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/51.jpg" alt="The only graphical element of the buttons is now the center glyph!" width="650" height="159" /><p class="wp-caption-text">The only graphical element of the buttons is now the center glyph!</p></div>
<p>Next was the challenge of seeing how close we could get to matching <a href="http://blog.seanmartell.com/2009/04/06/revisiting-the-fennec-default-theme/">the mockups I created a while back</a>.Â  Turns out, pretty close indeed.Â  Having to use an image for only the glyph in the middle makes button creation much, much easier.</p>
<p><em>.button {<br />
padding: 8px 4px;<br />
font-family: &#8216;DroidSans-Bold&#8217;;<br />
color:#fff;<br />
width: 24px;<br />
-moz-border-radius: 0.5em;<br />
-webkit-border-radius: 0.5em;<br />
border-top: 4px solid #ccc;<br />
border-left: 4px solid #ccc;<br />
border-right: 4px solid #ccc;<br />
border-bottom: 4px solid #aaa;<br />
-moz-border-top-colors:#3b3b3b #6d6d6d #535353 #494949;<br />
-moz-border-right-colors:#2d2d2d #484848 #484848 #414141;<br />
-moz-border-left-colors:#2d2d2d #484848 #484848 #414141;<br />
-moz-border-bottom-colors:#111111 #484848 #484848 #414141;<br />
background: #414141 url(&#8216;buttonBg.png&#8217;) repeat-x top center;<br />
display: inline;<br />
}</em></p>
<p><em>.buttonDisabled {<br />
padding: 8px 4px;<br />
font-family: &#8216;DroidSans-Bold&#8217;;<br />
color:#999;<br />
width: 24px;<br />
-moz-border-radius: 0.5em;<br />
-webkit-border-radius: 0.5em;<br />
border-top: 4px solid #ccc;<br />
border-left: 4px solid #ccc;<br />
border-right: 4px solid #ccc;<br />
border-bottom: 4px solid #aaa;<br />
-moz-border-top-colors:#3b3b3b #6d6d6d #535353 #494949;<br />
-moz-border-right-colors:#3b3b3b #484848 #484848 #414141;<br />
-moz-border-left-colors:#3b3b3b #484848 #484848 #414141;<br />
-moz-border-bottom-colors:#2d2d2d #484848 #484848 #414141;<br />
background: #414141 url(&#8216;buttonBg.png&#8217;) repeat-x top center;<br />
display: inline;<br />
}</em></p>
<p><em>.buttonPressed {<br />
padding: 4px 0px;<br />
font-family: &#8216;DroidSans-Bold&#8217;;<br />
color:#fff;<br />
width: 24px;<br />
-moz-border-radius: 0.5em;<br />
-webkit-border-radius: 0.5em;<br />
border-top: 8px solid #ccc;<br />
border-left: 8px solid #ccc;<br />
border-right: 8px solid #ccc;<br />
border-bottom: 9px solid #aaa;<br />
-moz-border-top-colors:#323232 #111111 #111111 #1f1f1f #272727 #2a2a2a #2c2c2c #2d2d2d;<br />
-moz-border-right-colors:#323232 #111111 #1f1f1f #272727 #292929 #2a2a2a #2c2c2c #2d2d2d;<br />
-moz-border-left-colors:#323232 #111111 #1f1f1f #272727 #292929 #2a2a2a #2c2c2c #2d2d2d;<br />
-moz-border-bottom-colors:#515151 #111111 #1f1f1f #272727 #292929 #2a2a2a #2c2c2c #2d2d2d;<br />
background-color: #2d2d2d;<br />
display: inline;<br />
}</em></p>
<h2>Address Bar</h2>
<p>The focus moving forward will be the address bar.Â  Copy and pasting code used in the above elements, playing around with padding and border radius, a fairly close representation can be made.Â  An example of the first pass:</p>
<div id="attachment_313" class="wp-caption alignnone" style="width: 660px"><img class="size-full wp-image-313 postImg" title="7" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/7.jpg" alt="I've started recreating the address bar using only CSS3 and glyphs" width="650" height="159" /><p class="wp-caption-text">I&#39;ve started recreating the address bar using only CSS3 and glyphs</p></div>
<p>Now that I&#8217;ve shown you all of these examples (I&#8217;ve used images here so everyone can see the results), go check out everything on the <a href="http://mozilla.seanmartell.com/fennec/">demo</a> <a href="http://mozilla.seanmartell.com/fennec/index2.html">pages</a>.Â  For some added fun, zoom in and out within Firefox to see the UI scale!</p>
<p><em>DISCLAIMER (again): None of the elements on the demo page are interactive as this is just a CSS test for visual design only.</em></p>
<p>These are all design challenges that Firefox 3.5 has enabled me to solve.Â  I&#8217;m very excited to see what designers can create using all the new CSS3 styles and feel free to examine the screen.css file on the demo page to nab the code previewed here.</p>
<p>Go design happy and give it a whirl, but remember, you need the <a href="http://www.mozilla.com/en-US/firefox/all-beta.html">latest Firefox</a> to join in on the fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2009/04/21/css3-flexible-ui-avoid-recutting-ui-graphics-for-mobile/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Revisiting the Fennec Default Theme</title>
		<link>http://blog.seanmartell.com/2009/04/06/revisiting-the-fennec-default-theme/</link>
		<comments>http://blog.seanmartell.com/2009/04/06/revisiting-the-fennec-default-theme/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:01:46 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=261</guid>
		<description><![CDATA[With the release of Fennec Alpha, (Fennec is now in Beta) we showcased an initial default theme created to make mobile browsing easy on the fingers as well as the eyes.Â  Now that a bit of time has passed, we&#8217;ve begun brainstorming what another pass at the UI might look like &#8211; seeing how we [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of Fennec Alpha, (Fennec is now in <a href="http://www.mozilla.org/projects/fennec/1.0b1/releasenotes/" target="_blank">Beta</a>) we showcased an initial default theme created to make mobile browsing easy on the fingers as well as the eyes.Â  Now that a bit of time has passed, we&#8217;ve begun brainstorming what another pass at the UI might look like &#8211; seeing how we can add to an already clean and easy-to-use interface.</p>
<p>The <a href="http://blog.seanmartell.com/2008/09/05/skinning-fennec-initial-screens/" target="_self">initial designs</a> were created <a href="http://blog.seanmartell.com/2008/09/05/skinning-fennec-preferenes-side-pane/" target="_self">using strong glyphs</a> on <a href="http://blog.seanmartell.com/2008/09/07/skinning-fennec-awesomebar/" target="_self">subtle embedded touch areas</a> as the main control scheme for the theme.Â  The purpose of the glyphs were to act as easily identifiable symbols that could stand out on a mobile screen through the use of high contrast white on a darker background.Â  Reaction to the first pass was that the background greys were much too light and they should be revisited to bump the readability of the glyphs.Â  Additional feedback spoke on the lack of color within the theme, another area that was added to the list of things to investigate.Â  As the pixel man on the job, I wanted to bring a finer level of pixel detail to the UI, so I threw that on the to-do pile as well.</p>
<p>Lets get started showing where we&#8217;ve made it to thus far.Â  To be clear, the work showcased in this post is all a work-in-progress and may not reflect the UI seen in future Fennec builds.</p>
<h2>Button Look n&#8217; Feel</h2>
<p>The first thing I wanted to do was take a step back and revisit how the buttons were created.Â  Instead of beginning in Illustrator, I decided to get the right level of pixel fidelity, I&#8217;d work exclusively in Photoshop.Â  Thanks to the glory of layer styles, the entire look and feel is now set in style sets that can be copied and applied to any UI shape needed.Â  Quick and painless when you&#8217;re dealing with so many resolutions in the mobile world.</p>
<p><img class="alignnone size-full wp-image-267 postImg" title="1" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/1.jpg" alt="1" width="400" height="204" /></p>
<p>The newer style is much more clickable and thanks to the darker background, the glyphs really pop on the almost rubber-like button tops.Â  Each glyph is softly outlined with a darker stroke to give it that extra bit of pop also.</p>
<p>Now, let&#8217;s look at a few more examples.</p>
<h2>Bookmarks</h2>
<p>With the new style comes the addition of color to some of the revised glyphs. The bookmarks buttons have been updated as shown in the example below:</p>
<p><img class="alignnone size-full wp-image-266 postImg" title="2" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/2.jpg" alt="2" width="400" height="234" /></p>
<p>As you can see, when a page is bookmarked, the star now fills in with a frosted yellow.Â  The small star within the bookmarks panel button also fills in if the page you are currently on has already been bookmarked.Â  Subtle colors,Â  adding a bit of variety but not too overpowering so that it becomes distracting.</p>
<h2>Endcaps</h2>
<p>Next we visit the endcaps within the location bar.</p>
<p>In the first pass of the Fennec UI, the endcaps were very rounded, similar to the encaps in Firefox on Mac.Â  While the style is very nice, on mobile you need as many pixels as you can get when it comes to UI, and having extra pixels taken up by flashy unneeded graphics can limit your on-screen real estate, sometimes making things pretty much unreadable.</p>
<p>Realizing this, we decided to test the waters on a few different designs:</p>
<p><img class="alignnone size-full wp-image-265 postImg" title="3" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/3.jpg" alt="3" width="400" height="147" /></p>
<p>The first is basically the same as Fennec Alpha 1, except that the inner edge of the cap is now squared.Â  The second set also uses the squared interior edge, but also squares up the outer edge a bit more as well.Â  The third set has rounded edges for both inner and outer, but is not as extreme in its radius as the original caps.</p>
<p>Based on some mockup testing, we&#8217;re leaning towards the second set of endcaps, a nice mix of rounded outer edges and flush inner edges, giving us some much needed pixels in return.</p>
<p>Now that we have a set to focus on, lets take a look at how it could be applied.</p>
<h2>Awesomebar</h2>
<p>The awesomebar was the next visual overhaul we thought we&#8217;d have a crack at.Â  With our newly minted endcaps, I started chipping away at the design to see what could be revealed.Â  The result is a much cleaner and clearer awesomebar as seen here:</p>
<div id="attachment_264" class="wp-caption alignnone" style="width: 410px"><img class="size-full wp-image-264 postImg" title="4" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/4.jpg" alt="4" width="400" height="253" /><p class="wp-caption-text">You will be able to swipe the bottom search bar across with your finger. </p></div>
<p>Sharp contrasts, cleaner graphics, a touch sliding search bar at the bottom, all make for a much better experience.Â  This look n&#8217; feel starts to show off where we&#8217;d like to go with the UI for Fennec throughout the browser &#8211; using this high contrast menu system for all the preference/setting/addon panels.Â  Let us know what you think &#8211; we&#8217;re pretty happy with where this is going.</p>
<h2>Past and Present</h2>
<p>So, lets step back and take a look at where we&#8217;re coming from, and where we are at the moment:</p>
<p><img class="alignnone size-full wp-image-263 postImg" title="5" src="http://blog.seanmartell.com/wp-content/uploads/2009/04/5.jpg" alt="5" width="660" height="320" /></p>
<p>(note: the above screens do not represent an actual state of the browser in which all toolbars can be accessed at once.)</p>
<p>As you can see, things are starting to get a little crisper, and we&#8217;re also introducing glyphs from the bigger brother Firefox (see back and forward buttons) for further consistency.Â  The &#8220;before&#8221; image on the left is actually a further revision to the initial UI as you can see the grey is darker than the <a href="http://blog.seanmartell.com/2008/09/05/skinning-fennec-initial-screens/">initial screens</a>.</p>
<p>As always, please give any and all feedback on these work-in-progress designs.Â  This is an open process and nothing you see here is set in stone.Â  If you&#8217;d like to share thoughts or concerns with us on anything previewed here, please do!Â  It&#8217;s your browser &#8211; help us shape it and make it look great!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2009/04/06/revisiting-the-fennec-default-theme/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Skinning Fennec &#8211; Awesomebar</title>
		<link>http://blog.seanmartell.com/2008/09/07/skinning-fennec-awesomebar/</link>
		<comments>http://blog.seanmartell.com/2008/09/07/skinning-fennec-awesomebar/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 17:07:32 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=115</guid>
		<description><![CDATA[Next we have the awesomebar and its awesomeness in weeee mobile form.

Awesomebar

list appears with bookmarked sites marked to the right
close button in upper right to exit the awesomebar overlay
search toolbar on the bottom



 
 
Alerts

left endcap becomes highlighted and glyph appears indicating alert
once endcap is pressed, arrow points to opened alert information beneath awesomebar


 

 [...]]]></description>
			<content:encoded><![CDATA[<p>Next we have the awesomebar and its awesomeness in weeee mobile form.</p>
<p><span id="more-115"></span></p>
<h2><span style="color: #808080;"><strong>Awesomebar</strong></span></h2>
<ul>
<li>list appears with bookmarked sites marked to the right</li>
<li>close button in upper right to exit the awesomebar overlay</li>
<li>search toolbar on the bottom</li>
</ul>
<address><em><strong><br />
</strong></em><em></em></address>
<address> </address>
<div id="attachment_116" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_7.jpg" rel="lightbox[115]"><img class="size-full wp-image-116 " style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_7" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_7.jpg" alt="Dark on light awesomebar" width="500" height="300" /></a><p class="wp-caption-text">Dark on light awesomebar</p></div>
<address> </address>
<div id="attachment_117" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_8.jpg" rel="lightbox[115]"><img class="size-full wp-image-117 " style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_8" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_8.jpg" alt="Light on dark awesomebar" width="500" height="300" /></a><p class="wp-caption-text">Light on dark awesomebar</p></div>
<h2><span style="color: #808080;"><strong>Alerts</strong></span></h2>
<ul>
<li>left endcap becomes highlighted and glyph appears indicating alert</li>
<li>once endcap is pressed, arrow points to opened alert information beneath awesomebar</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_9.jpg" rel="lightbox[115]"><img class="size-full wp-image-128 alignnone" style="border: 6px solid #efefef;" title="fennec_screen_9" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_9.jpg" alt="" width="500" height="300" /></a></p>
<address> </address>
<address><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_10.jpg" rel="lightbox[115]"><img class="size-full wp-image-129 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_10" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_10.jpg" alt="" width="500" height="300" /></a></address>
<address> </address>
<address><em><strong>Note: </strong>Please refer to </em><em><a href="https://wiki.mozilla.org/Mobile/UI/Designs/TouchScreen/workingUI " target="_blank">https://wiki.mozilla.org/Mobile/UI/Designs/TouchScreen/workingUI</a> </em><em> for all the UI wireframes with more detailed descriptions.</em></address>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/09/07/skinning-fennec-awesomebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skinning Fennec &#8211; Preferenes side pane</title>
		<link>http://blog.seanmartell.com/2008/09/05/skinning-fennec-preferenes-side-pane/</link>
		<comments>http://blog.seanmartell.com/2008/09/05/skinning-fennec-preferenes-side-pane/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 21:16:31 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=103</guid>
		<description><![CDATA[Yet another screen for your viewing pleasure!Â  This time we visit the preferences pane and all the goodies you can toggle within.


main browser scoots off to the left and becomes faded as its priority lowers
browser tools icon becomes pressed and links across to a pressed prefereneces icon
top area lists the sections within preferences
sections flow vertically, [...]]]></description>
			<content:encoded><![CDATA[<p>Yet another screen for your viewing pleasure!Â  This time we visit the preferences pane and all the goodies you can toggle within.</p>
<p><span id="more-103"></span></p>
<ul>
<li>main browser scoots off to the left and becomes faded as its priority lowers</li>
<li>browser tools icon becomes pressed and links across to a pressed prefereneces icon</li>
<li>top area lists the sections within preferences</li>
<li>sections flow vertically, with toggles on some, other bars open for more options on touch</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_53.jpg" rel="lightbox[103]"><img class="size-full wp-image-122 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_53" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_53.jpg" alt="" width="500" height="300" /></a></p>
<p>and a dropdown selector example:</p>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_62.jpg" rel="lightbox[103]"><img class="size-full wp-image-123 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_62" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_62.jpg" alt="" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/09/05/skinning-fennec-preferenes-side-pane/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skinning Fennec &#8211; Initial Screens</title>
		<link>http://blog.seanmartell.com/2008/09/05/skinning-fennec-initial-screens/</link>
		<comments>http://blog.seanmartell.com/2008/09/05/skinning-fennec-initial-screens/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 17:27:36 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=87</guid>
		<description><![CDATA[We&#8217;ve been plugging away at the default theme for Fennec and I&#8217;d like to share where we are thus far in the design.Â  The following screens are the work in progress and any comments/concerns are always welcome!

Initial Page Load
This state of the browser would be visible when you are viewing a page and not at [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been plugging away at the default theme for Fennec and I&#8217;d like to share where we are thus far in the design.Â  The following screens are the work in progress and any comments/concerns are always welcome!</p>
<p><span id="more-87"></span></p>
<h2><span style="color: #808080;"><strong>Initial Page Load</strong></span></h2>
<p>This state of the browser would be visible when you are viewing a page and not at the top.</p>
<ul>
<li>browser name to the left is visible</li>
<li>device system icons to the right are visible</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_1.jpg" rel="lightbox[87]"><img class="size-full wp-image-88 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_1" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_1.jpg" alt="" width="500" height="300" /></a></p>
<h2 style="text-align: left;"><span style="color: #808080;"><strong>Page with Address Bar</strong></span></h2>
<p style="text-align: left;">This state would be when the page is scrolled to the top.</p>
<ul>
<li>system bar elements fade to 50% as they become lower priority</li>
<li>address bar becomes visible</li>
<li>bookmarks button becomes visible</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_2.jpg" rel="lightbox[87]"><img class="size-full wp-image-91 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_2" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_2.jpg" alt="" width="500" height="300" /></a></p>
<h2 style="text-align: left;"><strong><span style="color: #808080;">Page with Right Side Control Strip</span><br />
</strong></h2>
<p style="text-align: left;">As the user slides the page to the left, the control strip appears on the right.</p>
<ul>
<li>address bar remains visible</li>
<li>control strip houses, in order, &#8220;add to bookmarks&#8221;, &#8220;back&#8221;, &#8220;forward&#8221;, &#8220;page tools&#8221;, and &#8220;browser tools&#8221;.</li>
<li>website area is offset fro the strip with a shadow, making the site look as if it is sitting above the controls.</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_3.jpg" rel="lightbox[87]"><img class="size-full wp-image-90 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_3" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_3.jpg" alt="" width="500" height="300" /></a></p>
<h2 style="text-align: left;"><span style="color: #808080;"><strong>Page with Left Side Tab Bar</strong></span></h2>
<p style="text-align: left;">As the user slides the page to the right, the tab bar appears on the left.</p>
<ul>
<li>page thumbnails appear vertically</li>
<li>thumbnails have a close button in the upper left</li>
<li>two buttons appear at the bottom &#8211; the first to &#8220;open a new tab&#8221;, the second to &#8220;open a tab from your desktop (utilizing weave)&#8221;</li>
</ul>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_4.jpg" rel="lightbox[87]"><img class="size-full wp-image-89 alignnone" style="border: 6px solid #efefef; margin-top: 15px; margin-bottom: 15px;" title="fennec_screen_4" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec_screen_4.jpg" alt="" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/09/05/skinning-fennec-initial-screens/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Browsing on the go, Mozilla style.</title>
		<link>http://blog.seanmartell.com/2008/09/02/fennec-browsing-on-the-go-mozilla-style/</link>
		<comments>http://blog.seanmartell.com/2008/09/02/fennec-browsing-on-the-go-mozilla-style/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 16:27:54 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=74</guid>
		<description><![CDATA[Hello all!Â  Welcome to the beginnings of what will be a series of posts detailing the work I am currently involved in designing the default theme for Mozilla&#8217;s answer to mobile browsing, currently codenamed Fennec.
To start things off, I thought I&#8217;d share an example of the look and feel I&#8217;m playing around with at the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all!Â  Welcome to the beginnings of what will be a series of posts detailing the work I am currently involved in designing the default theme for Mozilla&#8217;s answer to mobile browsing, currently codenamed Fennec.</p>
<p>To start things off, I thought I&#8217;d share an example of the look and feel I&#8217;m playing around with at the moment:</p>
<p><a href="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec.jpg" rel="lightbox[74]"><img class="size-full wp-image-75 alignnone" style="border: 6px solid #efefef;" title="fennec" src="http://blog.seanmartell.com/wp-content/uploads/2008/09/fennec.jpg" alt="A sample of icon symbols in the works for Fennec." width="450" height="249" /></a></p>
<p><span id="more-74"></span></p>
<p>As you can see, so far I have been focused on creating the symbols for the buttons within the browser.  The challenge is to make &#8220;recognition at a glance&#8221; icons that will hold up on the various resolutions of any handheld device this browser may be housed on.  I&#8217;ve descided to go with what I think is a graceful solution &#8211; simply creating a &#8220;clickable&#8221; outer border in which the icon symbol sits &#8211; allowing the underlying stylings of whatever area/themed background the button sits on to shine through.</p>
<p>The top row of buttons show some of the various states used within the browser &#8211; default, disabled, pressed, active, and a solid fill colored version for alerts (will be used in various colors).</p>
<p>As for the rest of the icons, they are for various functions/sections within the browser and I will be labeling them later on in the process once we nail down what they should be used for.</p>
<p>Feel free to check in from time to time to track my progress!*</p>
<p>*note &#8211; Everything you see here is a work in progress. <img src='http://blog.seanmartell.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/09/02/fennec-browsing-on-the-go-mozilla-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Summit 2008: Mobile UX</title>
		<link>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-mobile-ux/</link>
		<comments>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-mobile-ux/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 23:50:29 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=65</guid>
		<description><![CDATA[Madhava Enros hosted a talk on Mobile UI and where Mozilla is going within that realm.
There was a very enlightening Q&#38;A session in which devs from around the world described how they use mobile in their regions and what is needed in order to advance the platform.
]]></description>
			<content:encoded><![CDATA[<p>Madhava Enros hosted a talk on Mobile UI and where Mozilla is going within that realm.</p>
<p>There was a very enlightening Q&amp;A session in which devs from around the world described how they use mobile in their regions and what is needed in order to advance the platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-mobile-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Summit 2008: Fennec (Firefox Mobile)</title>
		<link>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-fennec-firefox-mobile-2/</link>
		<comments>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-fennec-firefox-mobile-2/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 21:30:24 +0000</pubDate>
		<dc:creator>mart3ll</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.seanmartell.com/?p=54</guid>
		<description><![CDATA[This session deals with the mobile version of Firefox codenamed Fennec.  I&#8217;m designing the UI for it now and I will upload screenshots of what may appear in the alpha build later this afternoon.
]]></description>
			<content:encoded><![CDATA[<p>This session deals with the mobile version of Firefox codenamed Fennec.  I&#8217;m designing the UI for it now and I will upload screenshots of what may appear in the alpha build later this afternoon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seanmartell.com/2008/07/30/mozilla-summit-2008-fennec-firefox-mobile-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
