From: Brion Vibber Date: Thu, 29 Apr 2004 01:59:58 +0000 (+0000) Subject: Comments, fix for creator X-Git-Tag: 1.3.0beta1~205 X-Git-Url: http://git.cyclocoop.org/%22%20%20.%20generer_url_ecrire%28%22mots_tous%22%29%20.%20%22?a=commitdiff_plain;h=abe5a9a048dc50d66df1faf1fc8faffde3215be6;p=lhc%2Fweb%2Fwiklou.git Comments, fix for creator --- diff --git a/stylesheets/feed.css b/stylesheets/feed.css index 73cce5415a..1f0e0903a0 100644 --- a/stylesheets/feed.css +++ b/stylesheets/feed.css @@ -1,6 +1,21 @@ -/* Make RSS and Atom feeds at least semi-legible to folk who accidentally load them in a browser */ +/* +Make RSS and Atom feeds at least semi-legible to folk who accidentally +load them in a browser... -/* RSS: */ rss, channel, title, link, description, language, generator, lastBuildDate, item, pubDate, author, comments, +Compatibility: +* Mozilla is fine. +* Safari 1.2: the RSS text isn't shown +* Opera 7.5 uses the style sheet instead of its native RSS mode. +* IE/Mac 5.2: none of the :before content works; doesn't get the charset right and displays garbage for non-ASCII. +* IE/Win 6.0: No background color, borders, font size, font weight, or :before content. + +Basic bugs: +* The Atom puts its actual URL in an attribute. Not sure how to + extract that, if it's possible. + +*/ + +/* RSS: */ rss, channel, title, link, description, language, generator, lastBuildDate, item, pubDate, author, comments, creator, /* Atom: */ feed, modified, tagline, entry, issued, created, summary, comment { display: block; } @@ -53,7 +68,7 @@ item>description, entry>summary { pubDate:before { content: "Date: " } link:before { content: "Link: " } -author:before { content: "Author: " } +author:before, creator:before { content: "Author: " } description:before { content: "Description: " } generator:before { content: "Generator: " } @@ -71,7 +86,7 @@ comment:before { content: "Comment: " } pubDate:before, link:before, author:before, description:before, language:before, generator:before, lastBuildDate:before, comments:before, tagline:before, issued:before, created:before, modified:before, -summary:before, comment:before { +summary:before, comment:before, creator:before { color: #224; font-weight: bold; }