Экшны, всплывание поверх, опечатка в стилях.
This commit is contained in:
parent
54dc2b620a
commit
3116b8a5eb
@ -83,7 +83,7 @@ $contacts_list = db::c()->query('SELECT `friend`,`comment` FROM `friends` WHERE
|
||||
<small><?= $row['comment'] ?></small>
|
||||
</TD>
|
||||
<TD width="1%">
|
||||
<input type='button' style="float: right background: darkgrey; border: 1px solid grey; border-radius: 2px;" value="Редактировать"
|
||||
<input type='button' style="background: darkgrey; border: 1px solid grey; border-radius: 2px;" value="Редактировать"
|
||||
onclick='editcontact("<?= $us['login'] ?>", "<?= $row['comment'] ?>")'>
|
||||
</TD>
|
||||
</TR>
|
||||
@ -99,7 +99,7 @@ $contacts_list = db::c()->query('SELECT `friend`,`comment` FROM `friends` WHERE
|
||||
<script>
|
||||
function editcontact(login, comment) {
|
||||
var s = '<table width=250 bgcolor=CCC3AA><tr><td align=center><b>Редактировать контакт</b></td><td width=20 align=right valign=top style="cursor: hand" onclick="closehint();"><b>x</td></tr><tr><td colspan=2>';
|
||||
s += '<table width=100% align=center bgcolor=FFF6DD><form method=POST>';
|
||||
s += '<table width=100% align=center bgcolor=FFF6DD><form action="contacts.php" method=POST>';
|
||||
s += '<tr><td><input type="hidden" name="friendedit" value="' + login + '">';
|
||||
s += '<input name="comment" value="' + comment + '" placeholder="Комментарий" style="width: 105px"> ';
|
||||
s += '<input type="submit" value="Сохранить"></td></tr></form></table>';
|
||||
@ -114,7 +114,7 @@ $contacts_list = db::c()->query('SELECT `friend`,`comment` FROM `friends` WHERE
|
||||
|
||||
function addcontact() {
|
||||
var s = '<table width=250 bgcolor=CCC3AA><tr><td align=center><B>Добавить контакт</td><td width=20 align=right valign=top style="cursor: hand" onclick="closehint();"><b>x</td></tr><tr><td colspan=2>';
|
||||
s += '<table width=100% bgcolor=FFF6DD align=center><form method=POST>';
|
||||
s += '<table width=100% bgcolor=FFF6DD align=center><form action="contacts.php" method=POST>';
|
||||
s += '<tr><td><input name="friendadd" placeholder="Логин" style="width:105px"> ';
|
||||
s += '<input name="comment" placeholder="Комментарий" style="width:105px"></td></tr>';
|
||||
s += '<tr><td><input type="submit" value="Добавить запись"></td></tr></form></table>';
|
||||
@ -129,7 +129,7 @@ $contacts_list = db::c()->query('SELECT `friend`,`comment` FROM `friends` WHERE
|
||||
|
||||
function removecontact() {
|
||||
var s = '<table width=250 bgcolor=CCC3AA><tr><td align=center><b>Удалить контакт</b></td><td width=20 align=right valign=top style="cursor: hand" onclick="closehint();"><b>x</td></tr><tr><td colspan=2>';
|
||||
s += '<table width=100% align=center bgcolor=FFF6DD><form method=POST>';
|
||||
s += '<table width=100% align=center bgcolor=FFF6DD><form action="contacts.php" method=POST>';
|
||||
s += '<tr><td><input name="friendremove" placeholder="Логин" style="width: 105px"> ';
|
||||
s += '<input type="submit" value="Удалить"></td></tr></form></table>';
|
||||
s += '</td></tr></table>';
|
||||
|
@ -75,7 +75,8 @@ SELECT, TEXTAREA, INPUT {
|
||||
.ahint {
|
||||
FONT-SIZE: 8px;
|
||||
COLOR: #000080;
|
||||
TEXT-DECORATION: none
|
||||
TEXT-DECORATION: none;
|
||||
z-index: 50;
|
||||
}
|
||||
|
||||
#hint3 {
|
||||
|
Loading…
Reference in New Issue
Block a user