From: joshtriplett Date: Tue, 24 Apr 2007 20:53:36 +0000 (+0000) Subject: * Change basewiki CSS to not put a border around images used as links. X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/04583383192d23e0d5341d2688feb0460c71a7b1 * Change basewiki CSS to not put a border around images used as links. --- diff --git a/debian/changelog b/debian/changelog index 7822a4eb0..57a5bd4a2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ ikiwiki (1.51) UNRELEASED; urgency=low + [ Joey Hess ] * Support setting svnpath to "" for wikis that are rooted at the top of their svn repositories, with no trunk directory. * Minor template improvements by Alessandro. @@ -9,7 +10,10 @@ ikiwiki (1.51) UNRELEASED; urgency=low * Work around bug #420636 by, if XML::Parser crashes, running the feed content though Encode::decode_utf8. - -- Joey Hess Mon, 23 Apr 2007 14:31:57 -0400 + [ Josh Triplett ] + * Change basewiki CSS to not put a border around images used as links. + + -- Josh Triplett Tue, 24 Apr 2007 13:50:51 -0700 ikiwiki (1.50) unstable; urgency=low diff --git a/doc/style.css b/doc/style.css index 5ba8b299c..0143b8fac 100644 --- a/doc/style.css +++ b/doc/style.css @@ -60,6 +60,10 @@ div.tags { width: 100%; } +img { + border: 0px; +} + /* Stuff for the RecentChanges table. */ tr.changeheader { background: #eee; diff --git a/doc/todo/Fix_CSS_to_not_put_a_border_around_image_links.mdwn b/doc/todo/Fix_CSS_to_not_put_a_border_around_image_links.mdwn index 589e32b6f..f6cafe376 100644 --- a/doc/todo/Fix_CSS_to_not_put_a_border_around_image_links.mdwn +++ b/doc/todo/Fix_CSS_to_not_put_a_border_around_image_links.mdwn @@ -2,4 +2,6 @@ Browsers, by default, put a link-colored border around images used as links: [![ikiwiki logo](http://ikiwiki.info/logo/ikiwiki.png)](http://ikiwiki.info) -We should fix the CSS to not do that. --[[JoshTriplett]] \ No newline at end of file +We should fix the CSS to not do that. --[[JoshTriplett]] + +[[todo/done]] --[[JoshTriplett]]