From 93d3a8efd0c1fb69612a60c9e7fbf1c19677a07f Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 7 Dec 2009 00:24:36 +0000 Subject: [PATCH] Fix styling of calendar to make it more usable, fixes issue2550608 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4401 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + doc/acknowledgements.txt | 1 + share/roundup/templates/classic/html/style.css | 12 ++++++++++++ share/roundup/templates/minimal/html/style.css | 15 +++++++++++++++ 4 files changed, 29 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 910448e..8b31648 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -33,6 +33,7 @@ Fixes: funding the fix. - Add documentation for migrating to the Register permission and fix mailgw to use Register permission, fixes issue2550599 +- Fix styling of calendar to make it more usable, fixes issue2550608 2009-10-09 1.4.10 (r4374) diff --git a/doc/acknowledgements.txt b/doc/acknowledgements.txt index f287c44..744e4a3 100644 --- a/doc/acknowledgements.txt +++ b/doc/acknowledgements.txt @@ -130,4 +130,5 @@ William (Wilk), Tue Wennerberg, Matt Wilbert, Chris Withers, +David Wolever, Milan Zamazal. diff --git a/share/roundup/templates/classic/html/style.css b/share/roundup/templates/classic/html/style.css index 6fca7ec..fe9eef4 100644 --- a/share/roundup/templates/classic/html/style.css +++ b/share/roundup/templates/classic/html/style.css @@ -421,5 +421,17 @@ textarea:focus, select:focus { background-color: #ffffc0; } +.calendar_display { + text-align: center; +} + +.calendar_display td { + padding: 1px 4px 1px 4px; +} + +.calendar_display .today { + background-color: #afafaf; +} + /* vim: sts=2 sw=2 et */ diff --git a/share/roundup/templates/minimal/html/style.css b/share/roundup/templates/minimal/html/style.css index f7d7eb4..1f62052 100644 --- a/share/roundup/templates/minimal/html/style.css +++ b/share/roundup/templates/minimal/html/style.css @@ -421,3 +421,18 @@ table.otherinfo th { font-weight: bold; text-align: left; } + +.calendar_display { + text-align: center; +} + +.calendar_display td { + padding: 1px 4px 1px 4px; +} + +.calendar_display .today { + background-color: #afafaf; +} + +/* vim: sts=2 sw=2 et +*/ -- 2.30.2