summaryrefslogtreecommitdiffstats
path: root/htdocs/exilog_jscript.js
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-12-13 09:56:41 +0100
committerAndreas Unterkircher <unki@netshadow.at>2008-12-13 10:03:09 +0100
commit7760d9cdd909258591ebeb28a0b4d94ce00eeb31 (patch)
treeff5df28b3ea1a678b96770a2a7611b160ebc6ab8 /htdocs/exilog_jscript.js
parent250c31d5ff01722e35888c6b92bd0969a6a51aef (diff)
downloadexilog-7760d9cdd909258591ebeb28a0b4d94ce00eeb31.zip
exilog-7760d9cdd909258591ebeb28a0b4d94ce00eeb31.tar.gz
exilog-7760d9cdd909258591ebeb28a0b4d94ce00eeb31.tar.bz2
* add missing units to some padding-definitions
* remove 'cursor: hand' - hopefully nobody longer uses internet explorers < 5.5 * fix 'vertical­align:center' in exilog_jscript.js, 'middle' has to be used instead of 'center' * use background-color instead of layer-background-color, this way Netscape-style - old fashioned fixes #130 Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'htdocs/exilog_jscript.js')
-rw-r--r--htdocs/exilog_jscript.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/exilog_jscript.js b/htdocs/exilog_jscript.js
index e08d79d..e3aaef0 100644
--- a/htdocs/exilog_jscript.js
+++ b/htdocs/exilog_jscript.js
@@ -1068,7 +1068,7 @@ function getCalendarStyles() {
var p = "";
if (this!=null && typeof(this.cssPrefix)!="undefined" && this.cssPrefix!=null && this.cssPrefix!="") { p=this.cssPrefix; }
result += "<STYLE>\n";
- result += "."+p+"cpYearNavigation,."+p+"cpMonthNavigation { background-color:#C0C0C0; text-align:center; vertical-align:center; text-decoration:none; color:#000000; font-weight:bold; }\n";
+ result += "."+p+"cpYearNavigation,."+p+"cpMonthNavigation { background-color:#C0C0C0; text-align:center; vertical-align:middle; text-decoration:none; color:#000000; font-weight:bold; }\n";
result += "."+p+"cpDayColumnHeader, ."+p+"cpYearNavigation,."+p+"cpMonthNavigation,."+p+"cpCurrentMonthDate,."+p+"cpCurrentMonthDateDisabled,."+p+"cpOtherMonthDate,."+p+"cpOtherMonthDateDisabled,."+p+"cpCurrentDate,."+p+"cpCurrentDateDisabled,."+p+"cpTodayText,."+p+"cpTodayTextDisabled,."+p+"cpText { font-family:arial; font-size:8pt; }\n";
result += "TD."+p+"cpDayColumnHeader { text-align:right; border:solid thin #C0C0C0;border-width:0px 0px 1px 0px; }\n";
result += "."+p+"cpCurrentMonthDate, ."+p+"cpOtherMonthDate, ."+p+"cpCurrentDate { text-align:right; text-decoration:none; }\n";