From abe5a9a048dc50d66df1faf1fc8faffde3215be6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 29 Apr 2004 01:59:58 +0000 Subject: [PATCH] Comments, fix for creator --- stylesheets/feed.css | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) 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; } -- 2.20.1