[Bug 19394] New: WIKI Reference pages Index tables overflow the page wrapper.

https://www.w3.org/Bugs/Public/show_bug.cgi?id=19394

           Summary: WIKI Reference pages Index tables overflow the page
                    wrapper.
           Product: webplatform.org
           Version: unspecified
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: info architecture
        AssignedTo: schepers@w3.org
        ReportedBy: jaredhall05@gmail.com
         QAContact: public-webplatform-bugs@w3.org


Index tables on the WIKI reference pages overflow the mw-content-text wrapper
div.

This can be fixed by adding the following CSS:

For the table:
{
  table-layout: fixed;
}

For every td
{
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
}

and add a title to the anchor tag under each td so that a mouseover will
display the full text in a tooltip.

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Tuesday, 9 October 2012 16:12:45 UTC