2023/12/18 알림목록 NEW 아이콘 수정

This commit is contained in:
ITN_디자인팀 2023-12-18 17:25:38 +09:00
parent 884b16f17d
commit 0aff077f86
2 changed files with 8 additions and 9 deletions

View File

@ -102,14 +102,14 @@ function fn_goDetail(cmmNotifyOrd){
<div class="list tbType01"> <div class="list tbType01">
<table> <table>
<colgroup> <colgroup>
<col style="width: 3%"> <%-- <col style="width: 3%"> --%>
<col style="width: 3%"> <col style="width: 6%">
<col style="width: 15%"> <col style="width: 15%">
<col style="width: 10%"> <col style="width: 10%">
</colgroup> </colgroup>
<thead> <thead>
<tr> <tr>
<th scope="col">확인여부</th> <!-- <th scope="col">확인여부</th> -->
<th scope="col">분야</th> <th scope="col">분야</th>
<th scope="col">메세지</th> <th scope="col">메세지</th>
<th scope="col">등록일</th> <th scope="col">등록일</th>
@ -118,18 +118,18 @@ function fn_goDetail(cmmNotifyOrd){
<tbody> <tbody>
<c:forEach var="list" items="${list}" varStatus="status"> <c:forEach var="list" items="${list}" varStatus="status">
<tr onclick="fn_goDetail('${list.cmmNotifyOrd}')" style="cursor: pointer;" > <tr onclick="fn_goDetail('${list.cmmNotifyOrd}')" style="cursor: pointer;" >
<td> <%-- <td>
<c:choose> <c:choose>
<c:when test="${list.notifyChk ne 'Y'}"> <c:when test="${list.notifyChk ne 'Y'}">
new new
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<span class="new_icon">NEW</span>확인완료 확인완료
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
</td> </td> --%>
<td> <td>
<ve:code codeId="VE0011" code="${list.lctrDivCd}"/> <span class="new_icon">NEW</span><ve:code codeId="VE0011" code="${list.lctrDivCd}"/>
</td> </td>
<td> <td>
<c:out value="${list.notifyCn}"/> <c:out value="${list.notifyCn}"/>

View File

@ -103,8 +103,7 @@
/*관리자 NEW 아이콘 추가*/ /*관리자 NEW 아이콘 추가*/
.new_icon{background-color: #e95504; font-size: 12px; color: #fff; border-radius: 5px; padding: 0 5px 2px 5px; margin: 0 4px 0 -33PX;} .new_icon{background-color: #e95504; font-size: 12px; color: #fff; border-radius: 5px; padding: 0 5px 2px 5px; margin: 0 4px 0 -33PX;}
@media all and (max-width: 1750px){ @media all and (max-width: 1700px){
/*관리자 NEW 아이콘 추가*/ /*관리자 NEW 아이콘 추가*/
.new_icon{display: block; width: 30px; margin: 0 auto; padding: 1px 5px 2px 5px;} .new_icon{display: block; width: 30px; margin: 0 auto; padding: 1px 5px 2px 5px;}
} }