diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-12-13 09:56:41 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-12-13 10:03:09 +0100 |
commit | 7760d9cdd909258591ebeb28a0b4d94ce00eeb31 (patch) | |
tree | ff5df28b3ea1a678b96770a2a7611b160ebc6ab8 /cgi | |
parent | 250c31d5ff01722e35888c6b92bd0969a6a51aef (diff) | |
download | exilog-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 'verticalalign: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 'cgi')
-rw-r--r-- | cgi/exilog_cgi_html.pm | 2 | ||||
-rw-r--r-- | cgi/exilog_cgi_messages.pm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cgi/exilog_cgi_html.pm b/cgi/exilog_cgi_html.pm index bfb207c..020617e 100644 --- a/cgi/exilog_cgi_html.pm +++ b/cgi/exilog_cgi_html.pm @@ -974,7 +974,7 @@ sub _item { $html .= $q->td({-class=>"item_text", ($link ? ( -onClick=>"javascript:document.location.href='$link';", - -style=>(exists($part->{style}) ? $part->{style} : "")."cursor:pointer;cursor:hand;", + -style=>(exists($part->{style}) ? $part->{style} : "")."cursor:pointer;", -onMouseOver=>"javascript:link_on(this);", -onMouseOut=>"javascript:link_off(this);" ) : ( diff --git a/cgi/exilog_cgi_messages.pm b/cgi/exilog_cgi_messages.pm index bbcb062..18131fc 100644 --- a/cgi/exilog_cgi_messages.pm +++ b/cgi/exilog_cgi_messages.pm @@ -781,7 +781,7 @@ sub _print_Messages_selector { -style=>"height: 18px; width: 18px;", -id=>"anchor1x" })." - ". $q->div({ -id=>'caldiv1x', - -style=>"position:absolute;visibility:hidden;background-color:white;layer-background-color:white;" }) + -style=>"position:absolute;visibility:hidden;background-color:white;background-color:white;" }) ), $q->td({-align=>"left",-style=>"padding-left:0px;"}, $q->input({-name=>"tde", @@ -795,7 +795,7 @@ sub _print_Messages_selector { -style=>"height: 18px; width: 18px;", -id=>"anchor2x" }). $q->div({ -id=>'caldiv2x', - -style=>"position:absolute;visibility:hidden;background-color:white;layer-background-color:white;" }) + -style=>"position:absolute;visibility:hidden;background-color:white;background-color:white;" }) ) ) ) |