add editorfont url style

This commit is contained in:
Amberstone 2024-09-30 18:44:45 +09:00
parent ecf7751bcf
commit 354705d489
Signed by: amber
GPG key ID: 094B0E55F98D8BF1

View file

@ -49,6 +49,17 @@ EventHandler::triggerEvent("amber.admin.editor_font_form_before");
th a+a {
margin-top: 3px;
}
td pre {
overflow: hidden;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
word-break: break-all;
overflow-wrap: break-word;
}
</style>
<section>
<h2>폰트 등록</h2>
@ -124,11 +135,11 @@ EventHandler::triggerEvent("amber.admin.editor_font_form_before");
$font_id = $row['font_id'];
?>
<tr>
<td class="td_left"><?php echo get_text($row['font_name']); ?></td>
<td class="td_left"><?php echo get_text($row['font_family']); ?></td>
<td class="td_left"><?php echo get_text($row['font_url']); ?></td>
<td class="td_left"><?php echo get_text($row['font_weight']); ?></td>
<td class="td_left"><?php echo get_text($row['font_style']); ?></td>
<td class="td_left"><?php echo get_text(html_purifier($row['font_name'])); ?></td>
<td class="td_left"><?php echo get_text(html_purifier($row['font_family'])); ?></td>
<td class="td_left"><pre><?php echo get_text(html_purifier($row['font_url'])); ?></pre></td>
<td class="td_left"><?php echo get_text(html_purifier($row['font_weight'])); ?></td>
<td class="td_left"><?php echo get_text(html_purifier($row['font_style'])); ?></td>
<td class="td_mng td_mng_l">
<a href="./editor_font_update.php?w=d&amp;font_id=<?php echo $font_id ?>"
onclick="return delete_confirm(this);" class="btn btn_02">삭제</a>