forked from science-ation/science-ation
CSS fixups
This commit is contained in:
parent
14c192d69f
commit
80ec239bd9
@ -338,11 +338,11 @@ function draw_conferences_list(){
|
||||
else echo 'even';
|
||||
echo '">';
|
||||
echo "<td>{$row['name']}</td><td>{$row['type']}</td><td>{$row['status']}</td>";
|
||||
echo "<td><img onclick=\"editConference({$row['id']});return false;\" alt=\"" . i18n("Edit") . "\" src=\"/icons/16/edit.png\"/></td>";
|
||||
echo "<td><img style=\"cursor: pointer;\" onclick=\"editConference({$row['id']});return false;\" alt=\"" . i18n("Edit") . "\" src=\"/icons/16/edit.png\"/></td>";
|
||||
if($row['status'] == 'running'){
|
||||
echo "<td></td>"; // can't delete a running conference
|
||||
}else{
|
||||
echo "<td><img onclick=\"dropConference({$row['id']});return false;\" alt=\"" . i18n("Delete") . "\" src=\"/icons/16/button_cancel.png\"/></td>";
|
||||
echo "<td><img style=\"cursor: pointer;\" onclick=\"dropConference({$row['id']});return false;\" alt=\"" . i18n("Delete") . "\" src=\"/icons/16/button_cancel.png\"/></td>";
|
||||
}
|
||||
echo "</tr>";
|
||||
}
|
||||
@ -569,7 +569,7 @@ function build_enter_name_step(){
|
||||
$result = mysql_fetch_assoc(mysql_query($query));
|
||||
$val = ' VALUE="' . $result['name'] . '" ';
|
||||
}
|
||||
echo "<div style=\"margin:1em\"><input type=\"text\" size=\"40\" id=\"name\"$val></input></div>";
|
||||
echo "<div style=\"margin:1em\"><input type=\"text\" style=\"width: 100%;\" id=\"name\"$val></input></div>";
|
||||
}
|
||||
|
||||
function handle_enter_name_step(){
|
||||
|
Loading…
Reference in New Issue
Block a user