diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-06 19:50:32 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-06 19:50:32 +0000 |
commit | 723ebda4760d7e6bb848f1b1d39706f441d3f209 (patch) | |
tree | 1bf079366dc0959a81e4eb13e221424b871a1b54 /basewiki | |
parent | 89697f2c7a9cebc9e0c33ca1d056388b9e827eb8 (diff) | |
download | ikiwiki-723ebda4760d7e6bb848f1b1d39706f441d3f209.tar ikiwiki-723ebda4760d7e6bb848f1b1d39706f441d3f209.tar.gz |
some stylesheet improvements for the table, also add a bit more border
between items to avoid them running together in some cases
Diffstat (limited to 'basewiki')
-rw-r--r-- | basewiki/style.css | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/basewiki/style.css b/basewiki/style.css index c7988b7b7..74186ab3b 100644 --- a/basewiki/style.css +++ b/basewiki/style.css @@ -31,12 +31,26 @@ } /* Stuff for the RecentChanges table. */ -.changeheader { +tr.changeheader { background: #eee; color: black !important; } -.changetime { +tr.changeinfo { + background: #eee; + color: black !important; +} +th.changeheader { + padding: 1px .3em; +} +td.changeinfo { + padding: 1px .3em; +} +td.changetime { white-space: nowrap; + padding: 1px .3em; +} +td.changelog { + font-style: italic; } /* Used for adding a blog page. */ |