[TYPO3-typo3org] http://typo3.org/extensions/repository/view/ columne Dependencies not readable

Andreas Burg typo3 at andreasburg.de
Fri Oct 24 19:00:10 CEST 2008


Hello all,

>>> on pages http://typo3.org/extensions/repository/view/... Text in the
>>> columne "Dependencies" is not readable. Only tested with FF3. Can
>>> someone fix it?
>>>
>>> f.e. http://typo3.org/extensions/repository/view/gzip/current/
>>>
>>
>> seems like FF3 interprets "display: inline-block" correctly while (some)
>> others don't. The problem seems to be caused by terfe.css (line 37).
> 
> perhaps you try:
> /* Overriding for all browsers except IE */
> html>body #main-column .extensions li {
>     display: block;
> }
> 
> instead:
> 
> /* Overriding for all browsers except IE */
> html>body .extensions li {
>     display: block;
> }

I fixed it in my browser FF 3.0.3 by inserting following code in FF3.0.3-file userContent.css =>

@-moz-document url-prefix(http://typo3.org/extensions/repository/view/typo3_tut/current/) {
   /* Overriding for all browsers except IE */
   html>body #main-column .extensions li {
   	display: block;
   }
}

Now the text in comumne "Dependencies" is readable.

Andreas


More information about the TYPO3-team-typo3org mailing list