<?xml version="1.0" encoding="UTF-8"?>
<tickets type="array">
  <ticket>
    <assigned-user-id type="integer" nil="true"></assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-07-17T03:22:39-07:00</created-at>
    <creator-id type="integer">63086</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">12</number>
    <permalink>position-the-footer-at-the-bottom</permalink>
    <priority type="integer">126584</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>absolute bottom foot position</tag>
    <title>position the footer at the bottom</title>
    <updated-at type="datetime">2009-07-17T03:22:44-07:00</updated-at>
    <user-id type="integer">63086</user-id>
    <user-name>marco</user-name>
    <creator-name>marco</creator-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/12</url>
    <original-body>Hi,

I would like to thank you for this great project and to illuminate me in this.

I would like to suggest the follow amendment to the foot class so it can stay always on the bottom.

.foot{
	clear:both;
	position:absolute;
	bottom:0;
	height:100px;
}

Ciao</original-body>
    <latest-body>Hi,

I would like to thank you for this great project and to illuminate me in this.

I would like to suggest the follow amendment to the foot class so it can stay always on the bottom.

.foot{
	clear:both;
	position:absolute;
	bottom:0;
	height:100px;
}

Ciao</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I would like to thank you for this great project and to
illuminate me in this.&lt;/p&gt;
&lt;p&gt;I would like to suggest the follow amendment to the foot class
so it can stay always on the bottom.&lt;/p&gt;
&lt;p&gt;.foot{&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;clear:both;
position:absolute;
bottom:0;
height:100px;
&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Ciao&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer" nil="true"></assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-05-12T08:12:29-07:00</created-at>
    <creator-id type="integer">25734</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">10</number>
    <permalink>replace-b-with-a-more-specific-selector</permalink>
    <priority type="integer">106221</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>css mods</tag>
    <title>Replace b {..} with a more specific selector?</title>
    <updated-at type="datetime">2009-05-19T13:18:19-07:00</updated-at>
    <user-id type="integer">25734</user-id>
    <user-name>cfenzo</user-name>
    <creator-name>cfenzo</creator-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/10</url>
    <original-body>Since the single selector &quot;b&quot; is used for selecting the extra rounded corners markup, all use of the &lt;b&gt; tag in it's original use fails miserably unless the css is overwritten for certain areas.
 
While the inability to use &lt;b&gt; in other contexts certainly isn't a problem for most front-end developers, we aren't the only ones writing content for the sites we develop (quite often we don't even touch the content).
The content could (and proberably will) be generated by a variety of sources: directly from users, developers, management, through a CMS or news aggregator.
Thus resulting in malformed (non-visible) content whenever a &lt;b&gt; is present.

So, my suggested solution is to add a few bytes and avoid obvious content-problems, like so:
@@@ css
.top, .bottom, .tl, .tr, .bl, .br {display:block;background-repeat:no-repeat;font-size:1%;position:relative;z-index:10;}
@@@

Yes, it will make the selectors for the module skins a bit longer, but that's a small price to pay for the added unobtrusivity (is that even a word?) :)


Nice OOCSS aproach, btw :)
Cheers!</original-body>
    <latest-body>Since the single selector &quot;b&quot; is used for selecting the extra rounded corners markup, all use of the &lt;b&gt; tag in it's original use fails miserably unless the css is overwritten for certain areas.
 
While the inability to use &lt;b&gt; in other contexts certainly isn't a problem for most front-end developers, we aren't the only ones writing content for the sites we develop (quite often we don't even touch the content).
The content could (and proberably will) be generated by a variety of sources: directly from users, developers, management, through a CMS or news aggregator.
Thus resulting in malformed (non-visible) content whenever a &lt;b&gt; is present.

So, my suggested solution is to add a few bytes and avoid obvious content-problems, like so:
@@@ css
.top, .bottom, .tl, .tr, .bl, .br {display:block;background-repeat:no-repeat;font-size:1%;position:relative;z-index:10;}
@@@

Yes, it will make the selectors for the module skins a bit longer, but that's a small price to pay for the added unobtrusivity (is that even a word?) :)


Nice OOCSS aproach, btw :)
Cheers!</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Since the single selector &quot;b&quot; is used for selecting the extra
rounded corners markup, all use of the tag in it's original use
fails miserably unless the css is overwritten for certain
areas.&lt;/p&gt;
&lt;p&gt;While the inability to use in other contexts certainly isn't a
problem for most front-end developers, we aren't the only ones
writing content for the sites we develop (quite often we don't even
touch the content). The content could (and proberably will) be
generated by a variety of sources: directly from users, developers,
management, through a CMS or news aggregator. Thus resulting in
malformed (non-visible) content whenever a is present.&lt;/p&gt;
&lt;p&gt;So, my suggested solution is to add a few bytes and avoid
obvious content-problems, like so:&lt;/p&gt;


&lt;pre&gt;&lt;code class=&quot;css&quot;&gt;
.top, .bottom, .tl, .tr, .bl, .br {display:block;background-repeat:no-repeat;font-size:1%;position:relative;z-index:10;}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Yes, it will make the selectors for the module skins a bit
longer, but that's a small price to pay for the added unobtrusivity
(is that even a word?) :)&lt;/p&gt;
&lt;p&gt;Nice OOCSS aproach, btw :) Cheers!&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer" nil="true"></assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-05-13T00:41:00-07:00</created-at>
    <creator-id type="integer">25734</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">11</number>
    <permalink>use-position-absolute-on-tl-and-tr</permalink>
    <priority type="integer">106433</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>css mods</tag>
    <title>Use position absolute on .tl and .tr?</title>
    <updated-at type="datetime">2009-05-15T00:24:25-07:00</updated-at>
    <user-id type="integer">25734</user-id>
    <user-name>cfenzo</user-name>
    <creator-name>cfenzo</creator-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/11</url>
    <original-body>Case:
With the current float based solution, any content (text, image) in .inner/.bd/.hd will gain a right/left indent from the floated .tl and .tr.
This will limit the flexibility of the module content in such way that the space (padding) between the border and the content can never be smaller than the width of .tl and .tr.

The problem seems to be non-existent for .bl and .br.

Solution:
Adding position absolute and top/right/left values for .tl and .tr will prevent this, while still working as expected (as far as I can confirm, testing in IE (6,7,8), Opera (9.6), Firefox (3.0.1), and Safari (4.0 beta win)).</original-body>
    <latest-body>Case:
With the current float based solution, any content (text, image) in .inner/.bd/.hd will gain a right/left indent from the floated .tl and .tr.
This will limit the flexibility of the module content in such way that the space (padding) between the border and the content can never be smaller than the width of .tl and .tr.

The problem seems to be non-existent for .bl and .br.

Solution:
Adding position absolute and top/right/left values for .tl and .tr will prevent this, while still working as expected (as far as I can confirm, testing in IE (6,7,8), Opera (9.6), Firefox (3.0.1), and Safari (4.0 beta win)).</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Case: With the current float based solution, any content (text,
image) in .inner/.bd/.hd will gain a right/left indent from the
floated .tl and .tr. This will limit the flexibility of the module
content in such way that the space (padding) between the border and
the content can never be smaller than the width of .tl and .tr.&lt;/p&gt;
&lt;p&gt;The problem seems to be non-existent for .bl and .br.&lt;/p&gt;
&lt;p&gt;Solution: Adding position absolute and top/right/left values for
.tl and .tr will prevent this, while still working as expected (as
far as I can confirm, testing in IE (6,7,8), Opera (9.6), Firefox
(3.0.1), and Safari (4.0 beta win)).&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">true</closed>
    <created-at type="datetime">2009-03-07T00:37:11-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime">2009-03-13T00:00:00-07:00</milestone-due-on>
    <milestone-id type="integer">33395</milestone-id>
    <number type="integer">2</number>
    <permalink>ag-block-adapt-code-to-oo-style</permalink>
    <priority type="integer">1</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>resolved</state>
    <tag nil="true"></tag>
    <title>AG block - adapt code to OO style</title>
    <updated-at type="datetime">2009-04-26T10:16:33-07:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/2</url>
    <milestone-title>Modules released</milestone-title>
    <original-body>Basic transparent inside block adapted to OO style, ready for release.</original-body>
    <latest-body>Basic transparent inside block adapted to OO style, ready for release.</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Basic transparent inside block adapted to OO style, ready for
release.&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">true</closed>
    <created-at type="datetime">2009-03-07T00:38:25-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime">2009-03-13T00:00:00-07:00</milestone-due-on>
    <milestone-id type="integer">33395</milestone-id>
    <number type="integer">3</number>
    <permalink>mojo-block-adapted-to-oo-style</permalink>
    <priority type="integer">2</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>resolved</state>
    <tag nil="true"></tag>
    <title>Mojo block adapted to OO style</title>
    <updated-at type="datetime">2009-04-26T10:15:38-07:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/3</url>
    <milestone-title>Modules released</milestone-title>
    <original-body>adapt and release Leslie Sommers Mojo block in OO code style.

http://www.lesliesommer.com/wdw07/html/</original-body>
    <latest-body>adapt and release Leslie Sommers Mojo block in OO code style.

http://www.lesliesommer.com/wdw07/html/</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;adapt and release Leslie Sommers Mojo block in OO code
style.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.lesliesommer.com/wdw07/html/&quot;&gt;http://www.lesliesommer.com/wdw0...&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">true</closed>
    <created-at type="datetime">2009-03-07T00:45:16-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime">2009-03-13T00:00:00-07:00</milestone-due-on>
    <milestone-id type="integer">33395</milestone-id>
    <number type="integer">5</number>
    <permalink>docs-for-standard-module-format</permalink>
    <priority type="integer">3</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>resolved</state>
    <tag>docs</tag>
    <title>Docs for standard module format</title>
    <updated-at type="datetime">2009-04-26T10:14:23-07:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/5</url>
    <milestone-title>Modules released</milestone-title>
    <original-body>mod (extensions here) 
  inner (no other classes here)
    hd (0-1)
    bd (1)
    ft   (0-1)


Consider YUI take on it.
http://developer.yahoo.com/yui/examples/container/module.html</original-body>
    <latest-body>mod (extensions here) 
  inner (no other classes here)
    hd (0-1)
    bd (1)
    ft   (0-1)


Consider YUI take on it.
http://developer.yahoo.com/yui/examples/container/module.html</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;mod (extensions here) inner (no other classes here)&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;hd (0-1)
bd (1)
ft   (0-1)
&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;Consider YUI take on it. &lt;a href=&quot;http://developer.yahoo.com/yui/examples/container/module.html&quot;&gt;http://developer.yahoo.com/yui/e...&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer" nil="true"></assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-04-12T00:18:42-07:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">9</number>
    <permalink>fixed-width-units-incorrect-size-lastunit-off-screen</permalink>
    <priority type="integer">99120</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>css grids</tag>
    <title>Fixed width units incorrect size, lastUnit off screen</title>
    <updated-at type="datetime">2009-04-12T00:18:46-07:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/9</url>
    <original-body>I try this 
&lt;div class=&quot;line&quot;&gt; 
  &lt;div class=&quot;unit fixed yahoo&quot;&gt;image or flash&lt;/div&gt; 
  &lt;div class=&quot;unit lastUnit&quot;&gt;Text and other objects&lt;/div&gt; 
&lt;/div&gt; 
But I don't get the correct width for the first div instead if I use a 
class like .size345px{width:345px;}  I get the correct width. 

&gt; &lt;div class=&quot;line&quot;&gt; 
&gt;   &lt;div class=&quot;unit fixed fixedExt&quot;&gt;image or flash&lt;/div&gt; 
&gt;   &lt;div class=&quot;unit lastUnit&quot;&gt;Text and other objects&lt;/div&gt; 
&gt; &lt;/div&gt; 

With this code in IE6 I see the text inside lastUnit that has a margin- 
left:-3px and so it exit from screen.</original-body>
    <latest-body>I try this 
&lt;div class=&quot;line&quot;&gt; 
  &lt;div class=&quot;unit fixed yahoo&quot;&gt;image or flash&lt;/div&gt; 
  &lt;div class=&quot;unit lastUnit&quot;&gt;Text and other objects&lt;/div&gt; 
&lt;/div&gt; 
But I don't get the correct width for the first div instead if I use a 
class like .size345px{width:345px;}  I get the correct width. 

&gt; &lt;div class=&quot;line&quot;&gt; 
&gt;   &lt;div class=&quot;unit fixed fixedExt&quot;&gt;image or flash&lt;/div&gt; 
&gt;   &lt;div class=&quot;unit lastUnit&quot;&gt;Text and other objects&lt;/div&gt; 
&gt; &lt;/div&gt; 

With this code in IE6 I see the text inside lastUnit that has a margin- 
left:-3px and so it exit from screen.</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;I try this&lt;/p&gt;
&lt;p&gt;image or flash Text and other objects&lt;/p&gt;
&lt;p&gt;But I don't get the correct width for the first div instead if I
use a class like .size345px{width:345px;} I get the correct
width.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;image or flash Text and other objects&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;With this code in IE6 I see the text inside lastUnit that has a
margin- left:-3px and so it exit from screen.&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer" nil="true"></assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">true</closed>
    <created-at type="datetime">2009-03-11T23:42:30-07:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">8</number>
    <permalink>add-a-960px-width-template</permalink>
    <priority type="integer">90553</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>resolved</state>
    <tag nil="true"></tag>
    <title>Add a 960px width template</title>
    <updated-at type="datetime">2009-04-12T00:16:16-07:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/8</url>
    <original-body>Suggestion from http://github.com/rlopes divisible by 2,3,4, and 5 after he read about http://960.gs</original-body>
    <latest-body>Suggestion from http://github.com/rlopes divisible by 2,3,4, and 5 after he read about http://960.gs</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Suggestion from &lt;a href=&quot;http://github.com/rlopes&quot;&gt;http://github.com/rlopes&lt;/a&gt; divisible
by 2,3,4, and 5 after he read about &lt;a href=&quot;http://960.gs&quot;&gt;http://960.gs&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-03-07T00:49:53-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">7</number>
    <permalink>js-to-height-align-modules</permalink>
    <priority type="integer">3</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>js</tag>
    <title>js to height align modules</title>
    <updated-at type="datetime">2009-03-07T00:49:57-08:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/7</url>
    <original-body>Script which measures the difference in height between units in the same line and splits the difference across the modules in the smaller unit to align height.</original-body>
    <latest-body>Script which measures the difference in height between units in the same line and splits the difference across the modules in the smaller unit to align height.</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Script which measures the difference in height between units in
the same line and splits the difference across the modules in the
smaller unit to align height.&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-03-07T00:47:51-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">6</number>
    <permalink>script-to-insert-presentational-elems</permalink>
    <priority type="integer">2</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag>js</tag>
    <title>Script to insert presentational elems</title>
    <updated-at type="datetime">2009-03-07T00:47:52-08:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/6</url>
    <original-body>JavaScript and PHP version?</original-body>
    <latest-body>JavaScript and PHP version?</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;JavaScript and PHP version?&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">false</closed>
    <created-at type="datetime">2009-03-07T00:42:09-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime">2009-03-21T00:00:00-07:00</milestone-due-on>
    <milestone-id type="integer">33396</milestone-id>
    <number type="integer">4</number>
    <permalink>write-css-for-oo-tabs</permalink>
    <priority type="integer">1</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>new</state>
    <tag nil="true"></tag>
    <title>Write CSS for OO tabs</title>
    <updated-at type="datetime">2009-03-07T00:42:12-08:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/4</url>
    <milestone-title>Tabs released</milestone-title>
    <original-body>Set up the CSS for OO tabs.  They need to:

1. Have a base tab class which extends mod.
2. Have a hd which contains the tabs
3. Have a class which extends hd to place the tabs to the right or left (bottom too?)
4. Consider a class which allows the tabs to live inside or outside the contour.</original-body>
    <latest-body>Set up the CSS for OO tabs.  They need to:

1. Have a base tab class which extends mod.
2. Have a hd which contains the tabs
3. Have a class which extends hd to place the tabs to the right or left (bottom too?)
4. Consider a class which allows the tabs to live inside or outside the contour.</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Set up the CSS for OO tabs. They need to:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Have a base tab class which extends mod.&lt;/li&gt;
&lt;li&gt;Have a hd which contains the tabs&lt;/li&gt;
&lt;li&gt;Have a class which extends hd to place the tabs to the right or
left (bottom too?)&lt;/li&gt;
&lt;li&gt;Consider a class which allows the tabs to live inside or
outside the contour.&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;</original-body-html>
  </ticket>
  <ticket>
    <assigned-user-id type="integer">49551</assigned-user-id>
    <attachments-count type="integer">0</attachments-count>
    <closed type="boolean">true</closed>
    <created-at type="datetime">2009-03-04T12:06:42-08:00</created-at>
    <creator-id type="integer">49551</creator-id>
    <milestone-due-on type="datetime" nil="true"></milestone-due-on>
    <milestone-id type="integer" nil="true"></milestone-id>
    <number type="integer">1</number>
    <permalink>arnaud-gueras-test-wrapping-on-ie</permalink>
    <priority type="integer">1</priority>
    <project-id type="integer">26663</project-id>
    <raw-data type="binary" nil="true" encoding="base64"></raw-data>
    <state>resolved</state>
    <tag>css framework grids ie</tag>
    <title>Arnaud Gueras test wrapping on IE</title>
    <updated-at type="datetime">2009-03-07T00:31:24-08:00</updated-at>
    <user-id type="integer">49551</user-id>
    <user-name>nicole (at stubbornella)</user-name>
    <creator-name>nicole (at stubbornella)</creator-name>
    <assigned-user-name>nicole (at stubbornella)</assigned-user-name>
    <url>http://stubbornella.lighthouseapp.com/projects/26663/tickets/1</url>
    <original-body>Sender didn't provide version number of IE or any other details.</original-body>
    <latest-body>Sender didn't provide version number of IE or any other details.</latest-body>
    <original-body-html>&lt;div&gt;&lt;p&gt;Sender didn't provide version number of IE or any other
details.&lt;/p&gt;&lt;/div&gt;</original-body-html>
  </ticket>
</tickets>
