summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4148b05)
raw | patch | inline | side by side (parent: 4148b05)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 7 Dec 2009 00:24:36 +0000 (00:24 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 7 Dec 2009 00:24:36 +0000 (00:24 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4401 57a73879-2fb5-44c3-a270-3262357dd7e2
diff --git a/CHANGES.txt b/CHANGES.txt
index 910448e692dd9b3eedccd5ed064a5c7ae47cfb32..8b3164844fb293e0f02259ad3e214241bac7d48c 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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)
index f287c446d9ec9c57ec8a78c1027c7d3f89319509..744e4a337e16ac7e825de7367afcb207cd85b497 100644 (file)
--- a/doc/acknowledgements.txt
+++ b/doc/acknowledgements.txt
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 6fca7ec33b7c6c88e7d78dedfa6da5cc7ec03ed9..fe9eef4013c45ac9fccad8b63db74e045f6a24b9 100644 (file)
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 f7d7eb411d041947130612fdf508a88c9014de71..1f620529f475cd623947389d26607dcf636e3530 100644 (file)
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
+*/