cafeXE 메인의 카페 생성 부분에 글자수 제한 및 input size 조절

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6178 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-24 00:34:56 +00:00
parent 3396917f64
commit 4926b4e39a
2 changed files with 5 additions and 4 deletions

View file

@ -80,7 +80,7 @@
<form action="./" method="post" onsubmit="return procFilter(this, cafe_creation);">
<table cellspacing="0" class="cafeTable">
<tr>
<th><div>{$lang->cafe_id}</div></th>
<th><div>{$lang->cafe_id} <span>(4~12)</span></div></th>
</tr>
<tr>
<td class="wide">
@ -88,13 +88,13 @@
</td>
</tr>
<tr>
<th><div>{$lang->cafe_title}</div></th>
<th><div>{$lang->cafe_title} <span>(4~20)</span></div></th>
</tr>
<tr>
<td class="wide"><input type="text" name="cafe_title" class="inputTypeText cafeTitle"/></td>
</tr>
<tr>
<th><div>{$lang->cafe_description}</div></th>
<th><div>{$lang->cafe_description} <span>(10~200)</span></div></th>
</tr>
<tr>
<td><textarea name="cafe_description" class="inputTypeTextArea cafeDescription"></textarea></td>

View file

@ -115,6 +115,7 @@ div.cafeContext ul li a img { vertical-align:middle; }
.cafeTable td.alert { color:red !important; }
.cafeTable td.alert a { text-decoration:none; color:red !important; }
input.cafeID { width:150px; }
input.cafeID { width:90%; }
input.cafeTitle { width:90%; }
textarea.cafeDescription{ width:90%; height:40px;}
.cafeTable th span { font-size:10px; font-family:tahoma; color:#aaa; font-weight:normal;}