* Change basewiki CSS to not put a border around images used as links.
authorjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 24 Apr 2007 20:53:36 +0000 (20:53 +0000)
committerjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 24 Apr 2007 20:53:36 +0000 (20:53 +0000)
debian/changelog
doc/style.css
doc/todo/Fix_CSS_to_not_put_a_border_around_image_links.mdwn

index 7822a4eb0f8e2131ad26be95ba3744db975b10e0..57a5bd4a27100bca600a80085bff0033e7ff82df 100644 (file)
@@ -1,5 +1,6 @@
 ikiwiki (1.51) UNRELEASED; urgency=low
 
 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.
   * 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.
 
   * Work around bug #420636 by, if XML::Parser crashes, running the feed
     content though Encode::decode_utf8.
 
- -- Joey Hess <joeyh@debian.org>  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 <josh@freedesktop.org>  Tue, 24 Apr 2007 13:50:51 -0700
 
 ikiwiki (1.50) unstable; urgency=low
 
 
 ikiwiki (1.50) unstable; urgency=low
 
index 5ba8b299cc3bb6a2a9a5d9d245c7514cfa7ad1ed..0143b8facf4fe4c5ff8ab58e33ced6da6ea7ca82 100644 (file)
@@ -60,6 +60,10 @@ div.tags {
        width: 100%;
 }
 
        width: 100%;
 }
 
+img {
+       border: 0px;
+}
+
 /* Stuff for the RecentChanges table. */
 tr.changeheader {
        background: #eee;
 /* Stuff for the RecentChanges table. */
 tr.changeheader {
        background: #eee;
index 589e32b6feac6318c6bd5197f079bdbb9db04486..f6cafe376686e9dc2ebf8bc97b83759c2b1bcdef 100644 (file)
@@ -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)
 
 
 [![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]]