diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-04-15 20:12:03 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-04-15 20:12:03 -0400 |
commit | 142e025ae471c91e68a23476f700df0b8ad6b31d (patch) | |
tree | c802104d6d0ce345f034a0df0a87712b593b915e /doc | |
parent | 425f6a8de2ed66b934c16c102456b15da4ff5a14 (diff) | |
download | ikiwiki-142e025ae471c91e68a23476f700df0b8ad6b31d.tar ikiwiki-142e025ae471c91e68a23476f700df0b8ad6b31d.tar.gz |
calendar: Improved display of arrows.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/plugins/calendar.mdwn | 2 | ||||
-rw-r--r-- | doc/style.css | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/plugins/calendar.mdwn b/doc/plugins/calendar.mdwn index 49fd90627..76e718a3b 100644 --- a/doc/plugins/calendar.mdwn +++ b/doc/plugins/calendar.mdwn @@ -14,6 +14,7 @@ customization. * `month-calendar` - The month calendar as a whole. * `month-calendar-head` - The head of the month calendar (ie,"March"). +* `month-calendar-arrow` - Arrow pointing to previous/next month. * `month-calendar-day-head` - A column head in the month calendar (ie, a day-of-week abbreviation). * `month-calendar-day-noday`, `month-calendar-day-link`, @@ -27,6 +28,7 @@ customization. weekends. * `year-calendar` - The year calendar as a whole. * `year-calendar-head` - The head of the year calendar (ie, "2007"). +* `year-calendar-arrow` - Arrow pointing to previous/next year. * `year-calendar-subhead` - For example, "Months". * `year-calendar-month-link`, `year-calendar-month-nolink`, `year-calendar-month-future`, `year-calendar-this-month` - The month diff --git a/doc/style.css b/doc/style.css index 44e06ae4f..7ffcf9fe2 100644 --- a/doc/style.css +++ b/doc/style.css @@ -431,3 +431,11 @@ pre.hl { color:#000000; background-color:#ffffff; } /* For the calendar plugin. */ .month-calendar-day-this-day { background-color: #eee; } .year-calendar-this-month { background-color: #eee; } +.month-calendar-arrow A:link, +.year-calendar-arrow A:link, +.month-calendar-arrow A:visited, +.year-calendar-arrow A:visited { + text-decoration: none; + font-weight: normal; + font-size: 150%; +} |