Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #1269: Add missing units of measure to style declarations (Fix …
…from ITed)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/stable_plus@3340 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Thibault Le Meur committed Oct 6, 2007
1 parent 23c5cd9 commit afac7d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions admin/admin.php
Expand Up @@ -394,13 +394,13 @@ function helpscreen()
."\t\t\t\t\t</font></td>\n"
."\t\t\t\t</tr>\n"
."\t\t\t\t<tr>\n"
."\t\t\t\t\t<td align='center' bgcolor='#AAAAAA' style='border-style: solid; border-width: 1; border-color: #555555'>\n"
."\t\t\t\t\t<td align='center' bgcolor='#AAAAAA' style='border-style: solid; border-width: 1px; border-color: #555555'>\n"
."\t\t\t\t\t\t<img src='$imagefiles/blank.gif' alt='' width='20' hspace='0' border='0' align='left' />\n"
."\t\t\t\t\t\t<input type='image' src='$imagefiles/close.gif' name='CloseHelp' align='right' onclick=\"showhelp('hide')\" />\n"
."\t\t\t\t\t</td>\n"
."\t\t\t\t</tr>\n"
."\t\t\t\t<tr>\n"
."\t\t\t\t\t<td bgcolor='silver' height='100%' style='border-style: solid; border-width: 1; border-color: #333333'>\n";
."\t\t\t\t\t<td bgcolor='silver' height='100%' style='border-style: solid; border-width: 1px; border-color: #333333'>\n";
//determine which help document to show
if (!$surveyid && $action != "editusers")
{
Expand Down
2 changes: 1 addition & 1 deletion common.php
Expand Up @@ -2428,7 +2428,7 @@ function getAdminFooter($url, $explanation)
{
global $versionnumber, $setfont, $imagefiles, $clang;
$strHTMLFooter = "<div class='footer'>\n"
. "\t\t\t<div style='float:left; min-width:107;'><img alt='LimeSurvey - ".$clang->gT("Online Manual")."' title='LimeSurvey - ".$clang->gT("Online Manual")."' src='$imagefiles/help.gif' "
. "\t\t\t<div style='float:left;'><img alt='LimeSurvey - ".$clang->gT("Online Manual")."' title='LimeSurvey - ".$clang->gT("Online Manual")."' src='$imagefiles/help.gif' "
. "onclick=\"window.open('$url')\" onmouseover=\"document.body.style.cursor='pointer'\" "
. "onmouseout=\"document.body.style.cursor='auto'\" /></div>\n"
. "\t\t\t<div style='float:right;'><img alt='".$clang->gT("Support this project - Donate to ")."LimeSurvey' title='".$clang->gT("Support this project - Donate to ")."LimeSurvey!' src='$imagefiles/donate.png' "
Expand Down
4 changes: 2 additions & 2 deletions qanda.php
Expand Up @@ -792,7 +792,7 @@ function do_list_radio($ia)
while ($ansrow = $ansresult->FetchRow())
{
$rowcounter++;
$answer .= "\t\t\t\t\t\t\t\t<div style='text-indent: -22; margin: 0 0 0 22;'> <input class='radio' type='radio' value='{$ansrow['code']}' name='$ia[1]' id='answer$ia[1]{$ansrow['code']}'";
$answer .= "\t\t\t\t\t\t\t\t<div style='text-indent: -22px; margin: 0px 0px 0px 22px;'> <input class='radio' type='radio' value='{$ansrow['code']}' name='$ia[1]' id='answer$ia[1]{$ansrow['code']}'";
if ($_SESSION[$ia[1]] == $ansrow['code'])
{
$answer .= " checked='checked'";
Expand All @@ -808,7 +808,7 @@ function do_list_radio($ia)
if (isset($other) && $other=="Y")
{
$rowcounter++;
$answer .= "\t\t\t\t\t\t\t\t <div style='text-indent: -22; margin: 0 0 0 22;'> <input class='radio' type='radio' value='-oth-' name='$ia[1]' id='SOTH$ia[1]'";
$answer .= "\t\t\t\t\t\t\t\t <div style='text-indent: -22px; margin: 0px 0px 0px 22px;'> <input class='radio' type='radio' value='-oth-' name='$ia[1]' id='SOTH$ia[1]'";
if ($_SESSION[$ia[1]] == "-oth-")
{
$answer .= " checked='checked'";
Expand Down
6 changes: 3 additions & 3 deletions templates/blue_heaven/startpage.pstpl
Expand Up @@ -45,8 +45,8 @@ body
color: #333333;
font-size: 9pt;
font-family: verdana;
width: 400;
height: 100;
width: 400px;
height: 100px;
}
.clearall
{
Expand Down Expand Up @@ -83,7 +83,7 @@ body
.graph
{
border: solid;
border-width: 1;
border-width: 1px;
border-color: #0A47FF;
background-color: #E5F9FF;
}
Expand Down

0 comments on commit afac7d7

Please sign in to comment.